Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 MEGA
Holders
84
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,103,315.669102582720987783 MEGAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MegaBit
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-21 */ /* * SPDX-License-Identifier: MIT */ /* A permissionless platform to launch and govern 1:1 asset-backed currencies. Website: https://www.megabitfinance.com DApp: https://app.megabitfinance.com Medium: https://medium.com/@megabitfi Telegram: https://t.me/megabitfi Twitter: https://twitter.com/megabitfi */ pragma solidity 0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } interface ISwapFactory { 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; } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface ISwapRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract 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 {} } contract MegaBit is ERC20, Ownable { using SafeMath for uint256; ISwapRouter 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 treasury; 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"MegaBit", unicode"MEGA") { uint256 _buyMktFee = 20; uint256 _buyDevFee = 0; uint256 _sellMktFee = 25; uint256 _sellDevFee = 0; uint256 totalSupply = 1_000_000_000 * 10 ** decimals(); maxTx = (totalSupply * 20) / 1000; maxWallet = (totalSupply * 20) / 1000; swapBackValueMin = (totalSupply * 1) / 1000000; swapBackValueMax = (totalSupply * 10) / 1000; buyMktFee = _buyMktFee; buyDevFee = _buyDevFee; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = _sellMktFee; sellDevFee = _sellDevFee; totalSellFee = sellMktFee + sellDevFee; treasury = address(0x61ABa509b126ab695527693Aa78e720b3D1d26CC); devReceiver = address(msg.sender); // exclude from paying fees or having max transaction amount excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(treasury, true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(treasury, 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 (treasury, 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 start() 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 removeLimit() external onlyOwner { buyMktFee = 2; buyDevFee = 0; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = 2; sellDevFee = 0; totalSellFee = sellMktFee + sellDevFee; 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 setMarketing(address newWallet) external onlyOwner { emit mktReceiverUpdated(newWallet, treasury); treasury = 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; if ( canSwap && swapbackEnabled && amount >= swapBackValueMin && !swapping && !automatedMarketMakerPairs[from] && !isFeeExempt[from] && !isFeeExempt[to] ) { swapping = true; swapBack(min(amount, min(contractTokenBalance, swapBackValueMax))); 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 sendETHToFees(uint256 amount) private { require(amount > 0, "amount must be greeter than 0"); payable(treasury).transfer(amount / 2); payable(devReceiver).transfer(amount / 2); } function addLiquidity() external payable onlyOwner { ISwapRouter _router = ISwapRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); router = _router; _approve(address(this), address(router), ~uint256(0)); pair = ISwapFactory(_router.factory()).createPair( address(this), _router.WETH() ); excludeFromMaxTransaction(address(pair), true); _setAutomatedMarketMakerPair(address(pair), true); _router.addLiquidityETH{value: msg.value}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } 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 swapBack(uint256 amountToSwapForETH) private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } swapTokensForEth(amountToSwapForETH); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFees(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":"addLiquidity","outputs":[],"stateMutability":"payable","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":"removeLimit","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":"setMarketing","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":"start","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
60806040526007805460ff60a81b19169055600a805462ffffff19166001179055600f805460ff191690553480156200003757600080fd5b5060405180604001604052806007815260200166135959d8509a5d60ca1b815250604051806040016040528060048152602001634d45474160e01b8152508160039081620000869190620005a3565b506004620000958282620005a3565b505050620000b2620000ac6200026c60201b60201c565b62000270565b6014600060198180620000c86012600a62000784565b620000d890633b9aca006200079c565b90506103e8620000ea8260146200079c565b620000f69190620007b6565b600c556103e8620001098260146200079c565b620001159190620007b6565b600b55620f4240620001298260016200079c565b620001359190620007b6565b6008556103e86200014882600a6200079c565b620001549190620007b6565b600955601285905560138490556200016d8486620007d9565b60115560158390556016829055620001868284620007d9565b601455600f8054610100600160a81b0319167461aba509b126ab695527693aa78e720b3d1d26cc0017905560108054336001600160a01b03199091168117909155620001d4906001620002c2565b620001e1306001620002c2565b620001f061dead6001620002c2565b600f546200020e9061010090046001600160a01b03166001620002c2565b6200021b33600162000371565b6200022830600162000371565b6200023761dead600162000371565b600f54620002559061010090046001600160a01b0316600162000371565b62000261338262000415565b5050505050620007ef565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003115760405162461bcd60e51b815260206004820181905260248201526000805160206200342483398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314620003bc5760405162461bcd60e51b8152602060048201819052602482015260008051602062003424833981519152604482015260640162000308565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162000365565b6001600160a01b0382166200046d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000308565b8060026000828254620004819190620007d9565b90915550506001600160a01b03821660009081526020819052604081208054839290620004b0908490620007d9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200052a57607f821691505b6020821081036200054b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004fa57600081815260208120601f850160051c810160208610156200057a5750805b601f850160051c820191505b818110156200059b5782815560010162000586565b505050505050565b81516001600160401b03811115620005bf57620005bf620004ff565b620005d781620005d0845462000515565b8462000551565b602080601f8311600181146200060f5760008415620005f65750858301515b600019600386901b1c1916600185901b1785556200059b565b600085815260208120601f198616915b8281101562000640578886015182559484019460019091019084016200061f565b50858210156200065f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006c6578160001904821115620006aa57620006aa6200066f565b80851615620006b857918102915b93841c93908002906200068a565b509250929050565b600082620006df575060016200077e565b81620006ee575060006200077e565b8160018114620007075760028114620007125762000732565b60019150506200077e565b60ff8411156200072657620007266200066f565b50506001821b6200077e565b5060208310610133831016604e8410600b841016171562000757575081810a6200077e565b62000763838362000685565b80600019048211156200077a576200077a6200066f565b0290505b92915050565b60006200079560ff841683620006ce565b9392505050565b80820281158282048414176200077e576200077e6200066f565b600082620007d457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200077e576200077e6200066f565b612c2580620007ff6000396000f3fe60806040526004361061021d5760003560e01c80638b0414d511610123578063b2d8f208116100ab578063dd62ed3e1161006f578063dd62ed3e14610709578063e8078d941461074f578063e884f26014610757578063f1d5f5171461076c578063f2fde38b1461078c57600080fd5b8063b2d8f2081461067a578063b8f7a6651461069a578063be9a6555146106b4578063c0246668146106c9578063d0889358146106e957600080fd5b80639a7a23d6116100f25780639a7a23d6146105da5780639fd8234e146105fa578063a457c2d71461061a578063a8aa1b311461063a578063a9059cbb1461065a57600080fd5b80638b0414d5146105005780638da5cb5b14610520578063924f364d1461055257806395d89b41146105c557600080fd5b80635459060d116101a6578063622565891161017557806362256589146104355780636f013db91461044a57806370a0823114610495578063715018a6146104cb5780637571336a146104e057600080fd5b80635459060d1461038957806356224ea7146103c1578063598ae6e4146103d65780635c85974f1461041557600080fd5b806318160ddd116101ed57806318160ddd146102ee5780631f53ac021461030d57806323b872dd1461032d578063313ce5671461034d578063395093511461036957600080fd5b806202eab71461022957806306fdde031461027a578063095ea7b31461029c57806314d178ac146102cc57600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50601154601254601354601454601554601654604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561028657600080fd5b5061028f6107ac565b6040516102719190612736565b3480156102a857600080fd5b506102bc6102b7366004612799565b61083e565b6040519015158152602001610271565b3480156102d857600080fd5b506102ec6102e73660046127da565b610855565b005b3480156102fa57600080fd5b506002545b604051908152602001610271565b34801561031957600080fd5b506102ec61032836600461285e565b6108ff565b34801561033957600080fd5b506102bc61034836600461287b565b610986565b34801561035957600080fd5b5060405160128152602001610271565b34801561037557600080fd5b506102bc610384366004612799565b610a3c565b34801561039557600080fd5b50600f54601054604080516101009093046001600160a01b039081168452909116602083015201610271565b3480156103cd57600080fd5b506102ec610a78565b3480156103e257600080fd5b50600754600854600954600160a81b90920460ff1691604080519315158452602084019290925290820152606001610271565b34801561042157600080fd5b506102ec6104303660046128bc565b610b2a565b34801561044157600080fd5b506102ec610c01565b34801561045657600080fd5b50610473600a54600b54600c5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610271565b3480156104a157600080fd5b506102ff6104b036600461285e565b6001600160a01b031660009081526020819052604090205490565b3480156104d757600080fd5b506102ec610c96565b3480156104ec57600080fd5b506102ec6104fb3660046128d5565b610ccc565b34801561050c57600080fd5b506102ec61051b36600461285e565b610d56565b34801561052c57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610271565b34801561055e57600080fd5b506105a661056d36600461285e565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610271565b3480156105d157600080fd5b5061028f610de8565b3480156105e657600080fd5b506102ec6105f53660046128d5565b610df7565b34801561060657600080fd5b506102ec61061536600461290a565b610eb3565b34801561062657600080fd5b506102bc610635366004612799565b610fa6565b34801561064657600080fd5b5060075461053a906001600160a01b031681565b34801561066657600080fd5b506102bc610675366004612799565b61103f565b34801561068657600080fd5b506102ec61069536600461290a565b61104c565b3480156106a657600080fd5b50600f546102bc9060ff1681565b3480156106c057600080fd5b506102ec611136565b3480156106d557600080fd5b506102ec6106e43660046128d5565b6111ad565b3480156106f557600080fd5b506102ec61070436600461292c565b61122f565b34801561071557600080fd5b506102ff61072436600461295f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102ec6113cd565b34801561076357600080fd5b506102ec611684565b34801561077857600080fd5b506102ec6107873660046128bc565b6116e6565b34801561079857600080fd5b506102ec6107a736600461285e565b6117c2565b6060600380546107bb90612998565b80601f01602080910402602001604051908101604052809291908181526020018280546107e790612998565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b600061084b33848461185d565b5060015b92915050565b6005546001600160a01b031633146108885760405162461bcd60e51b815260040161087f906129d2565b60405180910390fd5b60005b828110156108f95781600e60008686858181106108aa576108aa612a07565b90506020020160208101906108bf919061285e565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f181612a33565b91505061088b565b50505050565b6005546001600160a01b031633146109295760405162461bcd60e51b815260040161087f906129d2565b6010546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610993848484611981565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281108015906109c75750600083115b610a245760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161087f565b610a31853385840361185d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161084b918590610a73908690612a4c565b61185d565b6005546001600160a01b03163314610aa25760405162461bcd60e51b815260040161087f906129d2565b600a5462010000900460ff16610ae85760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b604482015260640161087f565b600a805462ff000019169055601e601281905560006013819055610b0b91612a4c565b6011556028601581905560006016819055610b2591612a4c565b601455565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161087f906129d2565b6002811015610ba55760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161087f565b6103e8610bb160025490565b610bbb9083612a5f565b610bc59190612a76565b600c8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c2b5760405162461bcd60e51b815260040161087f906129d2565b6002601281905560006013819055610c4291612a4c565b6011556002601581905560006016819055610c5c91612a4c565b601455600a805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610cc05760405162461bcd60e51b815260040161087f906129d2565b610cca6000612283565b565b6005546001600160a01b03163314610cf65760405162461bcd60e51b815260040161087f906129d2565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610d805760405162461bcd60e51b815260040161087f906129d2565b600f546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6060600480546107bb90612998565b6005546001600160a01b03163314610e215760405162461bcd60e51b815260040161087f906129d2565b6007546001600160a01b0390811690831603610ea55760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161087f565b610eaf82826122d5565b5050565b6005546001600160a01b03163314610edd5760405162461bcd60e51b815260040161087f906129d2565b60158290556016819055610ef18183612a4c565b601481905560641015610f585760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161087f565b601454601554601654604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161087f565b611035338585840361185d565b5060019392505050565b600061084b338484611981565b6005546001600160a01b031633146110765760405162461bcd60e51b815260040161087f906129d2565b6012829055601381905561108a8183612a4c565b6011819055606410156110f05760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161087f565b601154601254601354604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610f9a565b6005546001600160a01b031633146111605760405162461bcd60e51b815260040161087f906129d2565b600f805460ff191660011790556007805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146111d75760405162461bcd60e51b815260040161087f906129d2565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d4a565b6005546001600160a01b031633146112595760405162461bcd60e51b815260040161087f906129d2565b60018210156112c75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161087f565b8181101561132a5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161087f565b6007805460ff60a81b1916600160a81b851515021790556002546127109083906113549190612a5f565b61135e9190612a76565b6008556127108161136e60025490565b6113789190612a5f565b6113829190612a76565b600955604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113f75760405162461bcd60e51b815260040161087f906129d2565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561142d308260001961185d565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561146b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148f9190612a98565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115009190612a98565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561154d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115719190612a98565b600780546001600160a01b0319166001600160a01b0392909216918217905561159b906001610ccc565b6007546115b2906001600160a01b031660016122d5565b806001600160a01b031663f305d71934306115e2306001600160a01b031660009081526020819052604090205490565b6000806115f76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561165f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108f99190612ab5565b6005546001600160a01b031633146116ae5760405162461bcd60e51b815260040161087f906129d2565b600a805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146117105760405162461bcd60e51b815260040161087f906129d2565b600581101561176d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161087f565b6103e861177960025490565b6117839083612a5f565b61178d9190612a76565b600b8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610bf6565b6005546001600160a01b031633146117ec5760405162461bcd60e51b815260040161087f906129d2565b6001600160a01b0381166118515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087f565b61185a81612283565b50565b6001600160a01b0383166118bf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161087f565b6001600160a01b0382166119205760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161087f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119a75760405162461bcd60e51b815260040161087f90612ae3565b6001600160a01b0382166119cd5760405162461bcd60e51b815260040161087f90612b28565b60008111806119f457506001600160a01b03831660009081526019602052604090205460ff165b611a4b5760405162461bcd60e51b815260206004820152602260248201527f416d6f756e742073686f756c642062652067726561746572207468616e207a65604482015261726f60f01b606482015260840161087f565b600a5460ff1615611f5c576005546001600160a01b03848116911614801590611a8257506005546001600160a01b03838116911614155b8015611a9657506001600160a01b03821615155b8015611aad57506001600160a01b03821661dead14155b8015611ac35750600754600160a01b900460ff16155b15611f5c57600f5460ff16611b68576001600160a01b03831660009081526019602052604090205460ff1680611b1157506001600160a01b03821660009081526019602052604090205460ff165b611b685760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161087f565b600a5462010000900460ff1615611c10576001600160a01b0383166000908152600e602052604090205460ff1680611bb857506001600160a01b0382166000908152600e602052604090205460ff165b611c105760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b606482015260840161087f565b600a54610100900460ff1615611d14576005546001600160a01b03838116911614801590611c4c57506006546001600160a01b03838116911614155b8015611c6657506007546001600160a01b03838116911614155b15611d1457326000908152600d60205260409020544311611d015760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161087f565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611d5557506001600160a01b0382166000908152601a602052604090205460ff16155b15611e2a57600c54811115611dbb5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161087f565b600b546001600160a01b038316600090815260208190526040902054611de19083612a4c565b1115611e255760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087f565b611f5c565b6001600160a01b0382166000908152601b602052604090205460ff168015611e6b57506001600160a01b0383166000908152601a602052604090205460ff16155b15611ed257600c54811115611e255760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161087f565b6001600160a01b0382166000908152601a602052604090205460ff16611f5c57600b546001600160a01b038316600090815260208190526040902054611f189083612a4c565b1115611f5c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087f565b3060009081526020819052604090205460085481108015908190611f895750600754600160a81b900460ff165b8015611f9757506008548310155b8015611fad5750600754600160a01b900460ff16155b8015611fd257506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff757506001600160a01b03851660009081526019602052604090205460ff16155b801561201c57506001600160a01b03841660009081526019602052604090205460ff16155b15612064576007805460ff60a01b1916600160a01b1790556009546120569061205190859061204c908690612329565b612329565b612341565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806120b257506001600160a01b03851660009081526019602052604090205460ff165b156120bb575060005b600754600090600160a81b900460ff1680156120e15750600754600160a01b900460ff16155b1561226f57811561226f576001600160a01b0386166000908152601b602052604090205460ff16801561211657506000601454115b156121a45761213b60646121356014548861237b90919063ffffffff16565b90612387565b90506014546016548261214e9190612a5f565b6121589190612a76565b601860008282546121699190612a4c565b909155505060145460155461217e9083612a5f565b6121889190612a76565b601760008282546121999190612a4c565b909155506122519050565b6001600160a01b0387166000908152601b602052604090205460ff1680156121ce57506000601154115b15612251576121ed60646121356011548861237b90919063ffffffff16565b9050601154601354826122009190612a5f565b61220a9190612a76565b6018600082825461221b9190612a4c565b90915550506011546012546122309083612a5f565b61223a9190612a76565b6017600082825461224b9190612a4c565b90915550505b801561226257612262873083612393565b61226c8186612b6b565b94505b61227a878787612393565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000818311612338578261233a565b815b9392505050565b306000908152602081905260408120549081900361235d575050565b61236682612502565b478015612376576123764761265c565b505050565b600061233a8284612a5f565b600061233a8284612a76565b6001600160a01b0383166123b95760405162461bcd60e51b815260040161087f90612ae3565b6001600160a01b0382166123df5760405162461bcd60e51b815260040161087f90612b28565b6001600160a01b03808416600090815260208190526040808220549285168252902054828210156124615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161087f565b821561246d578261246f565b805b6001600160a01b03808716600090815260208190526040808220938603909355908616815290812080548592906124a7908490612a4c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516124f391815260200190565b60405180910390a35050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061253757612537612a07565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612590573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b49190612a98565b816001815181106125c7576125c7612a07565b6001600160a01b0392831660209182029290920101526006546125ed913091168461185d565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612626908590600090869030904290600401612b7e565b600060405180830381600087803b15801561264057600080fd5b505af1158015612654573d6000803e3d6000fd5b505050505050565b600081116126ac5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726565746572207468616e2030000000604482015260640161087f565b600f5461010090046001600160a01b03166108fc6126cb600284612a76565b6040518115909202916000818181858888f193505050501580156126f3573d6000803e3d6000fd5b506010546001600160a01b03166108fc61270e600284612a76565b6040518115909202916000818181858888f19350505050158015610eaf573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561276357858101830151858201604001528201612747565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461185a57600080fd5b600080604083850312156127ac57600080fd5b82356127b781612784565b946020939093013593505050565b803580151581146127d557600080fd5b919050565b6000806000604084860312156127ef57600080fd5b833567ffffffffffffffff8082111561280757600080fd5b818601915086601f83011261281b57600080fd5b81358181111561282a57600080fd5b8760208260051b850101111561283f57600080fd5b60209283019550935061285591860190506127c5565b90509250925092565b60006020828403121561287057600080fd5b813561233a81612784565b60008060006060848603121561289057600080fd5b833561289b81612784565b925060208401356128ab81612784565b929592945050506040919091013590565b6000602082840312156128ce57600080fd5b5035919050565b600080604083850312156128e857600080fd5b82356128f381612784565b9150612901602084016127c5565b90509250929050565b6000806040838503121561291d57600080fd5b50508035926020909101359150565b60008060006060848603121561294157600080fd5b61294a846127c5565b95602085013595506040909401359392505050565b6000806040838503121561297257600080fd5b823561297d81612784565b9150602083013561298d81612784565b809150509250929050565b600181811c908216806129ac57607f821691505b6020821081036129cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612a4557612a45612a1d565b5060010190565b8082018082111561084f5761084f612a1d565b808202811582820484141761084f5761084f612a1d565b600082612a9357634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612aaa57600080fd5b815161233a81612784565b600080600060608486031215612aca57600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561084f5761084f612a1d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612bce5784516001600160a01b031683529383019391830191600101612ba9565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122067a0f0b1def18fea21c63181da59f4d0208709555781b5659b5791d051200df564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061021d5760003560e01c80638b0414d511610123578063b2d8f208116100ab578063dd62ed3e1161006f578063dd62ed3e14610709578063e8078d941461074f578063e884f26014610757578063f1d5f5171461076c578063f2fde38b1461078c57600080fd5b8063b2d8f2081461067a578063b8f7a6651461069a578063be9a6555146106b4578063c0246668146106c9578063d0889358146106e957600080fd5b80639a7a23d6116100f25780639a7a23d6146105da5780639fd8234e146105fa578063a457c2d71461061a578063a8aa1b311461063a578063a9059cbb1461065a57600080fd5b80638b0414d5146105005780638da5cb5b14610520578063924f364d1461055257806395d89b41146105c557600080fd5b80635459060d116101a6578063622565891161017557806362256589146104355780636f013db91461044a57806370a0823114610495578063715018a6146104cb5780637571336a146104e057600080fd5b80635459060d1461038957806356224ea7146103c1578063598ae6e4146103d65780635c85974f1461041557600080fd5b806318160ddd116101ed57806318160ddd146102ee5780631f53ac021461030d57806323b872dd1461032d578063313ce5671461034d578063395093511461036957600080fd5b806202eab71461022957806306fdde031461027a578063095ea7b31461029c57806314d178ac146102cc57600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50601154601254601354601454601554601654604080519687526020870195909552938501929092526060840152608083015260a082015260c0015b60405180910390f35b34801561028657600080fd5b5061028f6107ac565b6040516102719190612736565b3480156102a857600080fd5b506102bc6102b7366004612799565b61083e565b6040519015158152602001610271565b3480156102d857600080fd5b506102ec6102e73660046127da565b610855565b005b3480156102fa57600080fd5b506002545b604051908152602001610271565b34801561031957600080fd5b506102ec61032836600461285e565b6108ff565b34801561033957600080fd5b506102bc61034836600461287b565b610986565b34801561035957600080fd5b5060405160128152602001610271565b34801561037557600080fd5b506102bc610384366004612799565b610a3c565b34801561039557600080fd5b50600f54601054604080516101009093046001600160a01b039081168452909116602083015201610271565b3480156103cd57600080fd5b506102ec610a78565b3480156103e257600080fd5b50600754600854600954600160a81b90920460ff1691604080519315158452602084019290925290820152606001610271565b34801561042157600080fd5b506102ec6104303660046128bc565b610b2a565b34801561044157600080fd5b506102ec610c01565b34801561045657600080fd5b50610473600a54600b54600c5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610271565b3480156104a157600080fd5b506102ff6104b036600461285e565b6001600160a01b031660009081526020819052604090205490565b3480156104d757600080fd5b506102ec610c96565b3480156104ec57600080fd5b506102ec6104fb3660046128d5565b610ccc565b34801561050c57600080fd5b506102ec61051b36600461285e565b610d56565b34801561052c57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610271565b34801561055e57600080fd5b506105a661056d36600461285e565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610271565b3480156105d157600080fd5b5061028f610de8565b3480156105e657600080fd5b506102ec6105f53660046128d5565b610df7565b34801561060657600080fd5b506102ec61061536600461290a565b610eb3565b34801561062657600080fd5b506102bc610635366004612799565b610fa6565b34801561064657600080fd5b5060075461053a906001600160a01b031681565b34801561066657600080fd5b506102bc610675366004612799565b61103f565b34801561068657600080fd5b506102ec61069536600461290a565b61104c565b3480156106a657600080fd5b50600f546102bc9060ff1681565b3480156106c057600080fd5b506102ec611136565b3480156106d557600080fd5b506102ec6106e43660046128d5565b6111ad565b3480156106f557600080fd5b506102ec61070436600461292c565b61122f565b34801561071557600080fd5b506102ff61072436600461295f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102ec6113cd565b34801561076357600080fd5b506102ec611684565b34801561077857600080fd5b506102ec6107873660046128bc565b6116e6565b34801561079857600080fd5b506102ec6107a736600461285e565b6117c2565b6060600380546107bb90612998565b80601f01602080910402602001604051908101604052809291908181526020018280546107e790612998565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b600061084b33848461185d565b5060015b92915050565b6005546001600160a01b031633146108885760405162461bcd60e51b815260040161087f906129d2565b60405180910390fd5b60005b828110156108f95781600e60008686858181106108aa576108aa612a07565b90506020020160208101906108bf919061285e565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f181612a33565b91505061088b565b50505050565b6005546001600160a01b031633146109295760405162461bcd60e51b815260040161087f906129d2565b6010546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610993848484611981565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281108015906109c75750600083115b610a245760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161087f565b610a31853385840361185d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161084b918590610a73908690612a4c565b61185d565b6005546001600160a01b03163314610aa25760405162461bcd60e51b815260040161087f906129d2565b600a5462010000900460ff16610ae85760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b604482015260640161087f565b600a805462ff000019169055601e601281905560006013819055610b0b91612a4c565b6011556028601581905560006016819055610b2591612a4c565b601455565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161087f906129d2565b6002811015610ba55760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161087f565b6103e8610bb160025490565b610bbb9083612a5f565b610bc59190612a76565b600c8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c2b5760405162461bcd60e51b815260040161087f906129d2565b6002601281905560006013819055610c4291612a4c565b6011556002601581905560006016819055610c5c91612a4c565b601455600a805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610cc05760405162461bcd60e51b815260040161087f906129d2565b610cca6000612283565b565b6005546001600160a01b03163314610cf65760405162461bcd60e51b815260040161087f906129d2565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610d805760405162461bcd60e51b815260040161087f906129d2565b600f546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6060600480546107bb90612998565b6005546001600160a01b03163314610e215760405162461bcd60e51b815260040161087f906129d2565b6007546001600160a01b0390811690831603610ea55760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161087f565b610eaf82826122d5565b5050565b6005546001600160a01b03163314610edd5760405162461bcd60e51b815260040161087f906129d2565b60158290556016819055610ef18183612a4c565b601481905560641015610f585760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161087f565b601454601554601654604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161087f565b611035338585840361185d565b5060019392505050565b600061084b338484611981565b6005546001600160a01b031633146110765760405162461bcd60e51b815260040161087f906129d2565b6012829055601381905561108a8183612a4c565b6011819055606410156110f05760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161087f565b601154601254601354604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610f9a565b6005546001600160a01b031633146111605760405162461bcd60e51b815260040161087f906129d2565b600f805460ff191660011790556007805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146111d75760405162461bcd60e51b815260040161087f906129d2565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d4a565b6005546001600160a01b031633146112595760405162461bcd60e51b815260040161087f906129d2565b60018210156112c75760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161087f565b8181101561132a5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161087f565b6007805460ff60a81b1916600160a81b851515021790556002546127109083906113549190612a5f565b61135e9190612a76565b6008556127108161136e60025490565b6113789190612a5f565b6113829190612a76565b600955604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113f75760405162461bcd60e51b815260040161087f906129d2565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561142d308260001961185d565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561146b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148f9190612a98565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115009190612a98565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561154d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115719190612a98565b600780546001600160a01b0319166001600160a01b0392909216918217905561159b906001610ccc565b6007546115b2906001600160a01b031660016122d5565b806001600160a01b031663f305d71934306115e2306001600160a01b031660009081526020819052604090205490565b6000806115f76005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561165f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108f99190612ab5565b6005546001600160a01b031633146116ae5760405162461bcd60e51b815260040161087f906129d2565b600a805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146117105760405162461bcd60e51b815260040161087f906129d2565b600581101561176d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161087f565b6103e861177960025490565b6117839083612a5f565b61178d9190612a76565b600b8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610bf6565b6005546001600160a01b031633146117ec5760405162461bcd60e51b815260040161087f906129d2565b6001600160a01b0381166118515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087f565b61185a81612283565b50565b6001600160a01b0383166118bf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161087f565b6001600160a01b0382166119205760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161087f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119a75760405162461bcd60e51b815260040161087f90612ae3565b6001600160a01b0382166119cd5760405162461bcd60e51b815260040161087f90612b28565b60008111806119f457506001600160a01b03831660009081526019602052604090205460ff165b611a4b5760405162461bcd60e51b815260206004820152602260248201527f416d6f756e742073686f756c642062652067726561746572207468616e207a65604482015261726f60f01b606482015260840161087f565b600a5460ff1615611f5c576005546001600160a01b03848116911614801590611a8257506005546001600160a01b03838116911614155b8015611a9657506001600160a01b03821615155b8015611aad57506001600160a01b03821661dead14155b8015611ac35750600754600160a01b900460ff16155b15611f5c57600f5460ff16611b68576001600160a01b03831660009081526019602052604090205460ff1680611b1157506001600160a01b03821660009081526019602052604090205460ff165b611b685760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161087f565b600a5462010000900460ff1615611c10576001600160a01b0383166000908152600e602052604090205460ff1680611bb857506001600160a01b0382166000908152600e602052604090205460ff165b611c105760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b606482015260840161087f565b600a54610100900460ff1615611d14576005546001600160a01b03838116911614801590611c4c57506006546001600160a01b03838116911614155b8015611c6657506007546001600160a01b03838116911614155b15611d1457326000908152600d60205260409020544311611d015760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161087f565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601b602052604090205460ff168015611d5557506001600160a01b0382166000908152601a602052604090205460ff16155b15611e2a57600c54811115611dbb5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161087f565b600b546001600160a01b038316600090815260208190526040902054611de19083612a4c565b1115611e255760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087f565b611f5c565b6001600160a01b0382166000908152601b602052604090205460ff168015611e6b57506001600160a01b0383166000908152601a602052604090205460ff16155b15611ed257600c54811115611e255760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161087f565b6001600160a01b0382166000908152601a602052604090205460ff16611f5c57600b546001600160a01b038316600090815260208190526040902054611f189083612a4c565b1115611f5c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161087f565b3060009081526020819052604090205460085481108015908190611f895750600754600160a81b900460ff165b8015611f9757506008548310155b8015611fad5750600754600160a01b900460ff16155b8015611fd257506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff757506001600160a01b03851660009081526019602052604090205460ff16155b801561201c57506001600160a01b03841660009081526019602052604090205460ff16155b15612064576007805460ff60a01b1916600160a01b1790556009546120569061205190859061204c908690612329565b612329565b612341565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806120b257506001600160a01b03851660009081526019602052604090205460ff165b156120bb575060005b600754600090600160a81b900460ff1680156120e15750600754600160a01b900460ff16155b1561226f57811561226f576001600160a01b0386166000908152601b602052604090205460ff16801561211657506000601454115b156121a45761213b60646121356014548861237b90919063ffffffff16565b90612387565b90506014546016548261214e9190612a5f565b6121589190612a76565b601860008282546121699190612a4c565b909155505060145460155461217e9083612a5f565b6121889190612a76565b601760008282546121999190612a4c565b909155506122519050565b6001600160a01b0387166000908152601b602052604090205460ff1680156121ce57506000601154115b15612251576121ed60646121356011548861237b90919063ffffffff16565b9050601154601354826122009190612a5f565b61220a9190612a76565b6018600082825461221b9190612a4c565b90915550506011546012546122309083612a5f565b61223a9190612a76565b6017600082825461224b9190612a4c565b90915550505b801561226257612262873083612393565b61226c8186612b6b565b94505b61227a878787612393565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000818311612338578261233a565b815b9392505050565b306000908152602081905260408120549081900361235d575050565b61236682612502565b478015612376576123764761265c565b505050565b600061233a8284612a5f565b600061233a8284612a76565b6001600160a01b0383166123b95760405162461bcd60e51b815260040161087f90612ae3565b6001600160a01b0382166123df5760405162461bcd60e51b815260040161087f90612b28565b6001600160a01b03808416600090815260208190526040808220549285168252902054828210156124615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161087f565b821561246d578261246f565b805b6001600160a01b03808716600090815260208190526040808220938603909355908616815290812080548592906124a7908490612a4c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516124f391815260200190565b60405180910390a35050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061253757612537612a07565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612590573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b49190612a98565b816001815181106125c7576125c7612a07565b6001600160a01b0392831660209182029290920101526006546125ed913091168461185d565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612626908590600090869030904290600401612b7e565b600060405180830381600087803b15801561264057600080fd5b505af1158015612654573d6000803e3d6000fd5b505050505050565b600081116126ac5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726565746572207468616e2030000000604482015260640161087f565b600f5461010090046001600160a01b03166108fc6126cb600284612a76565b6040518115909202916000818181858888f193505050501580156126f3573d6000803e3d6000fd5b506010546001600160a01b03166108fc61270e600284612a76565b6040518115909202916000818181858888f19350505050158015610eaf573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561276357858101830151858201604001528201612747565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461185a57600080fd5b600080604083850312156127ac57600080fd5b82356127b781612784565b946020939093013593505050565b803580151581146127d557600080fd5b919050565b6000806000604084860312156127ef57600080fd5b833567ffffffffffffffff8082111561280757600080fd5b818601915086601f83011261281b57600080fd5b81358181111561282a57600080fd5b8760208260051b850101111561283f57600080fd5b60209283019550935061285591860190506127c5565b90509250925092565b60006020828403121561287057600080fd5b813561233a81612784565b60008060006060848603121561289057600080fd5b833561289b81612784565b925060208401356128ab81612784565b929592945050506040919091013590565b6000602082840312156128ce57600080fd5b5035919050565b600080604083850312156128e857600080fd5b82356128f381612784565b9150612901602084016127c5565b90509250929050565b6000806040838503121561291d57600080fd5b50508035926020909101359150565b60008060006060848603121561294157600080fd5b61294a846127c5565b95602085013595506040909401359392505050565b6000806040838503121561297257600080fd5b823561297d81612784565b9150602083013561298d81612784565b809150509250929050565b600181811c908216806129ac57607f821691505b6020821081036129cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612a4557612a45612a1d565b5060010190565b8082018082111561084f5761084f612a1d565b808202811582820484141761084f5761084f612a1d565b600082612a9357634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612aaa57600080fd5b815161233a81612784565b600080600060608486031215612aca57600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561084f5761084f612a1d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612bce5784516001600160a01b031683529383019391830191600101612ba9565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122067a0f0b1def18fea21c63181da59f4d0208709555781b5659b5791d051200df564736f6c63430008130033
Deployed Bytecode Sourcemap
25791:22357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32635:513;;;;;;;;;;-1:-1:-1;32954:11:0;;32989:9;;33022;;33058:12;;33095:10;;33130;;32635: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;32635:513:0;;;;;;;;15397:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;17630:194::-;;;;;;;;;;-1:-1:-1;17630:194:0;;;;;:::i;:::-;;:::i;:::-;;;1728:14:1;;1721:22;1703:41;;1691:2;1676:18;17630:194:0;1563:187:1;41056:243:0;;;;;;;;;;-1:-1:-1;41056:243:0;;;;;:::i;:::-;;:::i;:::-;;16517:108;;;;;;;;;;-1:-1:-1;16605:12:0;;16517:108;;;2760:25:1;;;2748:2;2733:18;16517:108:0;2614:177:1;40568:160:0;;;;;;;;;;-1:-1:-1;40568:160:0;;;;;:::i;:::-;;:::i;18302:543::-;;;;;;;;;;-1:-1:-1;18302:543:0;;;;;:::i;:::-;;:::i;16359:93::-;;;;;;;;;;-1:-1:-1;16359:93:0;;16442:2;3651:36:1;;3639:2;3624:18;16359:93:0;3509:184:1;19250:290:0;;;;;;;;;;-1:-1:-1;19250:290:0;;;;;:::i;:::-;;:::i;31999:172::-;;;;;;;;;;-1:-1:-1;32141:8:0;;32151:11;;31999:172;;;32141:8;;;;-1:-1:-1;;;;;32141:8:0;;;3910:34:1;;32151:11:0;;;3975:2:1;3960:18;;3953:43;3845:18;31999:172:0;3698:304:1;40736:312:0;;;;;;;;;;;;;:::i;30603:356::-;;;;;;;;;;-1:-1:-1;30842:15:0;;30888:16;;30935;;-1:-1:-1;;;30842:15:0;;;;;;30603:356;;;4228:14:1;;4221:22;4203:41;;4275:2;4260:18;;4253:34;;;;4303:18;;;4296:34;4191:2;4176:18;30603:356:0;4007:329:1;36330:215:0;;;;;;;;;;-1:-1:-1;36330:215:0;;;;;:::i;:::-;;:::i;34458:326::-;;;;;;;;;;;;;:::i;31380:393::-;;;;;;;;;;;;31638:14;;31731:9;;31760:5;;31638:14;;;;;;31687:20;;;;;31380: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;31380:393:0;4526:411:1;16688:143:0;;;;;;;;;;-1:-1:-1;16688:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;16805:18:0;16778:7;16805:18;;;;;;;;;;;;16688:143;12309:103;;;;;;;;;;;;;:::i;37255:200::-;;;;;;;;;;-1:-1:-1;37255:200:0;;;;;:::i;:::-;;:::i;40240:154::-;;;;;;;;;;-1:-1:-1;40240:154:0;;;;;:::i;:::-;;:::i;11658:87::-;;;;;;;;;;-1:-1:-1;11731:6:0;;-1:-1:-1;;;;;11731:6:0;11658:87;;;-1:-1:-1;;;;;5426:32:1;;;5408:51;;5396:2;5381:18;11658:87:0;5262:203:1;33598:414:0;;;;;;;;;;-1:-1:-1;33598:414:0;;;;;:::i;:::-;-1:-1:-1;;;;;33856:20:0;33714:17;33856:20;;;:11;:20;;;;;;;;;33906:15;:24;;;;;;33970:25;:34;;;;;;33856:20;;;;;33906:24;;;;33970:34;;33598: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;33598:414:0;5470:349:1;15616:104:0;;;;;;;;;;;;;:::i;39555:300::-;;;;;;;;;;-1:-1:-1;39555:300:0;;;;;:::i;:::-;;:::i;38401:419::-;;;;;;;;;;-1:-1:-1;38401:419:0;;;;;:::i;:::-;;:::i;20039:475::-;;;;;;;;;;-1:-1:-1;20039:475:0;;;;;:::i;:::-;;:::i;25901:19::-;;;;;;;;;;-1:-1:-1;25901:19:0;;;;-1:-1:-1;;;;;25901:19:0;;;17044:200;;;;;;;;;;-1:-1:-1;17044:200:0;;;;;:::i;:::-;;:::i;37742:370::-;;;;;;;;;;-1:-1:-1;37742:370:0;;;;;:::i;:::-;;:::i;26480:26::-;;;;;;;;;;-1:-1:-1;26480:26:0;;;;;;;;34155:148;;;;;;;;;;;;;:::i;39069:174::-;;;;;;;;;;-1:-1:-1;39069:174:0;;;;;:::i;:::-;;:::i;35541:553::-;;;;;;;;;;-1:-1:-1;35541:553:0;;;;;:::i;:::-;;:::i;17307:176::-;;;;;;;;;;-1:-1:-1;17307:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;17448:18:0;;;17421:7;17448:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17307:176;46431:729;;;:::i;34924:152::-;;;;;;;;;;;;;:::i;36752:235::-;;;;;;;;;;-1:-1:-1;36752:235:0;;;;;:::i;:::-;;:::i;12567:238::-;;;;;;;;;;-1:-1:-1;12567:238:0;;;;;:::i;:::-;;:::i;15397:100::-;15451:13;15484:5;15477:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15397:100;:::o;17630:194::-;17738:4;17755:39;7149:10;17778:7;17787:6;17755:8;:39::i;:::-;-1:-1:-1;17812:4:0;17630:194;;;;;:::o;41056:243::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;;;;;;;;;41182:9:::1;41177:115;41197:21:::0;;::::1;41177:115;;;41272:8;41240:14;:29;41255:10;;41266:1;41255:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41240:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41240:29:0;:40;;-1:-1:-1;;41240:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41220:3;::::1;::::0;::::1;:::i;:::-;;;;41177:115;;;;41056:243:::0;;;:::o;40568:160::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;40674:11:::1;::::0;40644:42:::1;::::0;-1:-1:-1;;;;;40674:11:0;;::::1;::::0;40644:42;::::1;::::0;::::1;::::0;40674:11:::1;::::0;40644:42:::1;40697:11;:23:::0;;-1:-1:-1;;;;;;40697:23:0::1;-1:-1:-1::0;;;;;40697:23:0;;;::::1;::::0;;;::::1;::::0;;40568:160::o;18302:543::-;18442:4;18459:36;18469:6;18477:9;18488:6;18459:9;:36::i;:::-;-1:-1:-1;;;;;18535:19:0;;18508:24;18535:19;;;:11;:19;;;;;;;;7149:10;18535:33;;;;;;;;18601:26;;;;;;:40;;;18640:1;18631:6;:10;18601:40;18579:130;;;;-1:-1:-1;;;18579:130:0;;8143:2:1;18579: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;;18579:130:0;7941:404:1;18579:130:0;18745:57;18754:6;7149:10;18795:6;18776:16;:25;18745:8;:57::i;:::-;-1:-1:-1;18833:4:0;;18302:543;-1:-1:-1;;;;18302:543:0:o;19250:290::-;7149:10;19363:4;19452:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19452:34:0;;;;;;;;;;19363:4;;19380:130;;19430:7;;19452:47;;19489:10;;19452:47;:::i;:::-;19380:8;:130::i;40736:312::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;40794:7:::1;::::0;;;::::1;;;40786:31;;;::::0;-1:-1:-1;;;40786:31:0;;8682:2:1;40786: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;;40786:31:0::1;8480:335:1::0;40786:31:0::1;40828:7;:15:::0;;-1:-1:-1;;40828:15:0::1;::::0;;40866:2:::1;40854:9;:14:::0;;;40838:5:::1;40879:9;:13:::0;;;40917:21:::1;::::0;::::1;:::i;:::-;40903:11;:35:::0;40964:2:::1;40951:10;:15:::0;;;-1:-1:-1;40977:10:0::1;:14:::0;;;41017:23:::1;::::0;::::1;:::i;:::-;41002:12;:38:::0;40736:312::o;36330:215::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;36414:1:::1;36404:6;:11;;36396:56;;;::::0;-1:-1:-1;;;36396:56:0;;9022:2:1;36396:56:0::1;::::0;::::1;9004:21:1::0;;;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;9152:18;;36396:56:0::1;8820:356:1::0;36396:56:0::1;36498:4;36481:13;16605:12:::0;;;16517:108;36481:13:::1;36472:22;::::0;:6;:22:::1;:::i;:::-;36471:31;;;;:::i;:::-;36463:5;:39:::0;;;36518:19:::1;::::0;2760:25:1;;;36518:19:0::1;::::0;2748:2:1;2733:18;36518:19:0::1;;;;;;;;36330:215:::0;:::o;34458:326::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;34523:1:::1;34511:9;:13:::0;;;34547:1:::1;34535:9;:13:::0;;;34573:21:::1;::::0;::::1;:::i;:::-;34559:11;:35:::0;34620:1:::1;34607:10;:14:::0;;;-1:-1:-1;34632:10:0::1;:14:::0;;;34672:23:::1;::::0;::::1;:::i;:::-;34657:12;:38:::0;34708:14:::1;:22:::0;;-1:-1:-1;;34708:22:0::1;::::0;;34746:30:::1;::::0;34760:15:::1;::::0;34746:30:::1;::::0;34725:5:::1;::::0;34746:30:::1;34458:326::o:0;12309:103::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;12374:30:::1;12401:1;12374:18;:30::i;:::-;12309:103::o:0;37255:200::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37370:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;37370:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37416:31;;1703:41:1;;;37416:31:0::1;::::0;1676:18:1;37416:31:0::1;;;;;;;;37255:200:::0;;:::o;40240:154::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;40346:8:::1;::::0;40316:39:::1;::::0;-1:-1:-1;;;;;40346:8:0::1;::::0;;::::1;::::0;::::1;::::0;40316:39;::::1;::::0;::::1;::::0;;;::::1;40366:8;:20:::0;;-1:-1:-1;;;;;40366:20:0;;::::1;;;-1:-1:-1::0;;;;;;40366:20:0;;::::1;::::0;;;::::1;::::0;;40240:154::o;15616:104::-;15672:13;15705:7;15698:14;;;;;:::i;39555:300::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;39703:4:::1;::::0;-1:-1:-1;;;;;39703:4:0;;::::1;39694:13:::0;;::::1;::::0;39672:120:::1;;;::::0;-1:-1:-1;;;39672:120:0;;9778:2:1;39672:120:0::1;::::0;::::1;9760:21:1::0;9817:2;9797:18;;;9790:30;9856:34;9836:18;;;9829:62;9927:27;9907:18;;;9900:55;9972:19;;39672:120:0::1;9576:421:1::0;39672:120:0::1;39805:42;39834:5;39841;39805:28;:42::i;:::-;39555:300:::0;;:::o;38401:419::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;38517:10:::1;:26:::0;;;38554:10:::1;:20:::0;;;38600:23:::1;38567:7:::0;38530:13;38600:23:::1;:::i;:::-;38585:12;:38:::0;;;38672:3:::1;-1:-1:-1::0;38656:19:0::1;38634:110;;;::::0;-1:-1:-1;;;38634:110:0;;10204:2:1;38634:110:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:39;10382:19;;38634:110:0::1;10002:405:1::0;38634:110:0::1;38775:12;::::0;38789:10:::1;::::0;38801::::1;::::0;38760:52:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;38760:52:0::1;::::0;10602:2:1;10587:18;38760:52:0::1;;;;;;;;38401:419:::0;;:::o;20039:475::-;7149:10;20157:4;20201:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20201:34:0;;;;;;;;;;20268:35;;;;20246:122;;;;-1:-1:-1;;;20246:122:0;;10938:2:1;20246:122:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:34;10996:18;;;10989:62;-1:-1:-1;;;11067:18:1;;;11060:35;11112:19;;20246:122:0;10736:401:1;20246:122:0;20404:67;7149:10;20427:7;20455:15;20436:16;:34;20404:8;:67::i;:::-;-1:-1:-1;20502:4:0;;20039:475;-1:-1:-1;;;20039:475:0:o;17044:200::-;17155:4;17172:42;7149:10;17196:9;17207:6;17172:9;:42::i;37742:370::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;37857:9:::1;:25:::0;;;37893:9:::1;:19:::0;;;37937:21:::1;37905:7:::0;37869:13;37937:21:::1;:::i;:::-;37923:11;:35:::0;;;37992:3:::1;-1:-1:-1::0;37977:18:0::1;37969:71;;;::::0;-1:-1:-1;;;37969:71:0;;11344:2:1;37969:71:0::1;::::0;::::1;11326:21:1::0;11383:2;11363:18;;;11356:30;11422:34;11402:18;;;11395:62;-1:-1:-1;;;11473:18:1;;;11466:38;11521:19;;37969:71:0::1;11142:404:1::0;37969:71:0::1;38070:11;::::0;38083:9:::1;::::0;38094::::1;::::0;38056:48:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;38056:48:0::1;::::0;10602:2:1;10587:18;38056:48:0::1;10412:319:1::0;34155:148:0;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;34202:6:::1;:13:::0;;-1:-1:-1;;34202:13:0::1;34211:4;34202:13;::::0;;34226:15:::1;:22:::0;;-1:-1:-1;;;;34226:22:0::1;-1:-1:-1::0;;;34226:22:0::1;::::0;;34264:31:::1;::::0;34279:15:::1;::::0;34264:31:::1;::::0;34202:6:::1;::::0;34264:31:::1;34155:148::o:0;39069:174::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39154:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;39154:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39201:34;;1703:41:1;;;39201:34:0::1;::::0;1676:18:1;39201:34:0::1;1563:187:1::0;35541:553:0;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;35707:1:::1;35699:4;:9;;35677:111;;;::::0;-1:-1:-1;;;35677:111:0;;11753:2:1;35677:111:0::1;::::0;::::1;11735:21:1::0;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:50;11942:19;;35677:111:0::1;11551:416:1::0;35677:111:0::1;35815:4;35807;:12;;35799:67;;;::::0;-1:-1:-1;;;35799:67:0;;12174:2:1;35799:67:0::1;::::0;::::1;12156:21:1::0;12213:2;12193:18;;;12186:30;12252:34;12232:18;;;12225:62;-1:-1:-1;;;12303:18:1;;;12296:40;12353:19;;35799:67:0::1;11972:406:1::0;35799:67:0::1;35879:15;:26:::0;;-1:-1:-1;;;;35879:26:0::1;-1:-1:-1::0;;;35879:26:0;::::1;;;;::::0;;16605:12;;35960:5:::1;::::0;35952:4;;35936:20:::1;;;;:::i;:::-;35935:30;;;;:::i;:::-;35916:16;:49:::0;36020:5:::1;36012:4:::0;35996:13:::1;16605:12:::0;;;16517:108;35996:13:::1;:20;;;;:::i;:::-;35995:30;;;;:::i;:::-;35976:16;:49:::0;36041:45:::1;::::0;;4228:14:1;;4221:22;4203:41;;4275:2;4260:18;;4253:34;;;4303:18;;;4296:34;;;36041:45:0::1;::::0;4191:2:1;4176:18;36041:45:0::1;;;;;;;35541:553:::0;;;:::o;46431:729::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;46607:6:::1;:16:::0;;-1:-1:-1;;;;;;46607:16:0::1;46541:42;46607:16:::0;;::::1;::::0;;;46636:53:::1;46653:4;46541:42:::0;-1:-1:-1;;46636:8:0::1;:53::i;:::-;46722:7;-1:-1:-1::0;;;;;46722:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46709:42:0::1;;46774:4;46794:7;-1:-1:-1::0;;;;;46794:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46709:110;::::0;-1:-1:-1;;;;;;46709:110:0::1;::::0;;;;;;-1:-1:-1;;;;;3928:15:1;;;46709:110:0::1;::::0;::::1;3910:34:1::0;3980:15;;3960:18;;;3953:43;3845:18;;46709:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46702:4;:117:::0;;-1:-1:-1;;;;;;46702:117:0::1;-1:-1:-1::0;;;;;46702:117:0;;;::::1;::::0;;::::1;::::0;;46830:46:::1;::::0;-1:-1:-1;46830:25:0::1;:46::i;:::-;46924:4;::::0;46887:49:::1;::::0;-1:-1:-1;;;;;46924:4:0::1;::::0;46887:28:::1;:49::i;:::-;46949:7;-1:-1:-1::0;;;;;46949:23:0::1;;46980:9;47013:4;47033:24;47051:4;-1:-1:-1::0;;;;;16805:18:0;16778:7;16805:18;;;;;;;;;;;;16688:143;47033:24:::1;47072:1;47088::::0;47104:7:::1;11731:6:::0;;-1:-1:-1;;;;;11731:6:0;;11658:87;47104:7:::1;46949:203;::::0;::::1;::::0;;;-1:-1:-1;;;;;;46949:203:0;;;-1:-1:-1;;;;;12998:15:1;;;46949:203:0::1;::::0;::::1;12980:34:1::0;13030:18;;;13023:34;;;;13073:18;;;13066:34;;;;13116:18;;;13109:34;13180:15;;;13159:19;;;13152:44;47126:15:0::1;13212:19:1::0;;;13205:35;12914:19;;46949:203:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;34924:152::-:0;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;34986:20:::1;:28:::0;;-1:-1:-1;;34986:28:0::1;::::0;;35030:38:::1;::::0;35052:15:::1;::::0;35030:38:::1;::::0;35009:5:::1;::::0;35030:38:::1;34924:152::o:0;36752:235::-;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;36840:1:::1;36830:6;:11;;36822:60;;;::::0;-1:-1:-1;;;36822:60:0;;13764:2:1;36822: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;;36822:60:0::1;13562:400:1::0;36822:60:0::1;36932:4;36915:13;16605:12:::0;;;16517:108;36915:13:::1;36906:22;::::0;:6;:22:::1;:::i;:::-;36905:31;;;;:::i;:::-;36893:9;:43:::0;;;36952:27:::1;::::0;2760:25:1;;;36952:27:0::1;::::0;2748:2:1;2733:18;36952:27:0::1;2614:177:1::0;12567:238:0;11731:6;;-1:-1:-1;;;;;11731:6:0;7149:10;11878:23;11870:68;;;;-1:-1:-1;;;11870:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12670:22:0;::::1;12648:110;;;::::0;-1:-1:-1;;;12648:110:0;;14169:2:1;12648: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;;12648:110:0::1;13967:402:1::0;12648:110:0::1;12769:28;12788:8;12769:18;:28::i;:::-;12567:238:::0;:::o;23951:380::-;-1:-1:-1;;;;;24087:19:0;;24079:68;;;;-1:-1:-1;;;24079:68:0;;14576:2:1;24079: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;;24079:68:0;14374:400:1;24079:68:0;-1:-1:-1;;;;;24166:21:0;;24158:68;;;;-1:-1:-1;;;24158:68:0;;14981:2:1;24158: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;;24158:68:0;14779:398:1;24158:68:0;-1:-1:-1;;;;;24239:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24291:32;;2760:25:1;;;24291:32:0;;2733:18:1;24291:32:0;;;;;;;23951:380;;;:::o;41422:4774::-;-1:-1:-1;;;;;41554:18:0;;41546:68;;;;-1:-1:-1;;;41546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41633:16:0;;41625:64;;;;-1:-1:-1;;;41625:64:0;;;;;;;:::i;:::-;41733:1;41724:6;:10;:31;;;-1:-1:-1;;;;;;41738:17:0;;;;;;:11;:17;;;;;;;;41724:31;41702:115;;;;-1:-1:-1;;;41702:115:0;;16194:2:1;41702: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;;41702:115:0;15992:398:1;41702:115:0;41834:14;;;;41830:2506;;;11731:6;;-1:-1:-1;;;;;41887:15:0;;;11731:6;;41887:15;;;;:49;;-1:-1:-1;11731:6:0;;-1:-1:-1;;;;;41923:13:0;;;11731:6;;41923:13;;41887:49;:86;;;;-1:-1:-1;;;;;;41957:16:0;;;;41887:86;:128;;;;-1:-1:-1;;;;;;41994:21:0;;42008:6;41994:21;;41887:128;:158;;;;-1:-1:-1;42037:8:0;;-1:-1:-1;;;42037:8:0;;;;42036:9;41887:158;41865:2460;;;42085:6;;;;42080:212;;-1:-1:-1;;;;;42150:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;42171:15:0;;;;;;:11;:15;;;;;;;;42150:36;42116:156;;;;-1:-1:-1;;;42116:156:0;;16597:2:1;42116: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;;42116:156:0;16395:398:1;42116:156:0;42314:7;;;;;;;42310:220;;;-1:-1:-1;;;;;42380:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;42404:18:0;;;;;;:14;:18;;;;;;;;42380:42;42346:164;;;;-1:-1:-1;;;42346:164:0;;17000:2:1;42346: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;;42346:164:0;16798:400:1;42346:164:0;42686:20;;;;;;;42682:623;;;11731:6;;-1:-1:-1;;;;;42761:13:0;;;11731:6;;42761:13;;;;:63;;-1:-1:-1;42817:6:0;;-1:-1:-1;;;;;42803:21:0;;;42817:6;;42803:21;;42761:63;:111;;;;-1:-1:-1;42867:4:0;;-1:-1:-1;;;;;42853:19:0;;;42867:4;;42853:19;;42761:111;42731:555;;;42990:9;42961:39;;;;:28;:39;;;;;;43036:12;-1:-1:-1;42923:258:0;;;;-1:-1:-1;;;42923:258:0;;17405:2:1;42923: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;;42923:258:0;17203:477:1;42923:258:0;43237:9;43208:39;;;;:28;:39;;;;;43250:12;43208:54;;42731:555;-1:-1:-1;;;;;43357:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;43393:19:0;;;;;;:15;:19;;;;;;;;43392:20;43357:55;43353:957;;;43481:5;;43471:6;:15;;43437:139;;;;-1:-1:-1;;;43437:139:0;;17887:2:1;43437: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;;43437:139:0;17685:402:1;43437:139:0;43659:9;;-1:-1:-1;;;;;16805:18:0;;16778:7;16805:18;;;;;;;;;;;43633:22;;:6;:22;:::i;:::-;:35;;43599:140;;;;-1:-1:-1;;;43599:140:0;;18294:2:1;43599:140:0;;;18276:21:1;18333:2;18313:18;;;18306:30;-1:-1:-1;;;18352:18:1;;;18345:49;18411:18;;43599:140:0;18092:343:1;43599:140:0;43353:957;;;-1:-1:-1;;;;;43837:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43871:21:0;;;;;;:15;:21;;;;;;;;43870:22;43837:55;43811:499;;;43979:5;;43969:6;:15;;43935:140;;;;-1:-1:-1;;;43935:140:0;;18642:2:1;43935: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;;43935:140:0;18440:403:1;43811:499:0;-1:-1:-1;;;;;44106:19:0;;;;;;:15;:19;;;;;;;;44101:209;;44210:9;;-1:-1:-1;;;;;16805:18:0;;16778:7;16805:18;;;;;;;;;;;44184:22;;:6;:22;:::i;:::-;:35;;44150:140;;;;-1:-1:-1;;;44150:140:0;;18294:2:1;44150:140:0;;;18276:21:1;18333:2;18313:18;;;18306:30;-1:-1:-1;;;18352:18:1;;;18345:49;18411:18;;44150:140:0;18092:343:1;44150:140:0;44397:4;44348:28;16805:18;;;;;;;;;;;44455:16;;44431:40;;;;;;;44502:39;;-1:-1:-1;44526:15:0;;-1:-1:-1;;;44526:15:0;;;;44502:39;:82;;;;;44568:16;;44558:6;:26;;44502:82;:108;;;;-1:-1:-1;44602:8:0;;-1:-1:-1;;;44602:8:0;;;;44601:9;44502:108;:157;;;;-1:-1:-1;;;;;;44628:31:0;;;;;;:25;:31;;;;;;;;44627:32;44502:157;:192;;;;-1:-1:-1;;;;;;44677:17:0;;;;;;:11;:17;;;;;;;;44676:18;44502:192;:225;;;;-1:-1:-1;;;;;;44712:15:0;;;;;;:11;:15;;;;;;;;44711:16;44502:225;44484:413;;;44754:8;:15;;-1:-1:-1;;;;44754:15:0;-1:-1:-1;;;44754:15:0;;;44833:16;;44786:66;;44795:56;;44799:6;;44807:43;;44811:20;;44807:3;:43::i;:::-;44795:3;:56::i;:::-;44786:8;:66::i;:::-;44869:8;:16;;-1:-1:-1;;;;44869:16:0;;;44484:413;44925:8;;-1:-1:-1;;;;;45035:17:0;;44909:12;45035:17;;;:11;:17;;;;;;44925:8;-1:-1:-1;;;44925:8:0;;;;;44924:9;;45035:17;;:36;;-1:-1:-1;;;;;;45056:15:0;;;;;;:11;:15;;;;;;;;45035:36;45031:84;;;-1:-1:-1;45098:5:0;45031:84;45232:15;;45127:12;;-1:-1:-1;;;45232:15:0;;;;:28;;;;-1:-1:-1;45252:8:0;;-1:-1:-1;;;45252:8:0;;;;45251:9;45232:28;45228:915;;;45281:7;45277:855;;;-1:-1:-1;;;;;45341:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;45389:1;45374:12;;:16;45341:49;45337:626;;;45422:33;45451:3;45422:24;45433:12;;45422:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;45415:40;;45516:12;;45502:10;;45495:4;:17;;;;:::i;:::-;45494:34;;;;:::i;:::-;45478:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;45595:12:0;;45581:10;;45574:17;;:4;:17;:::i;:::-;45573:34;;;;:::i;:::-;45551:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;45337:626:0;;-1:-1:-1;45337:626:0;;-1:-1:-1;;;;;45681:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;45730:1;45716:11;;:15;45681:50;45677:286;;;45763:32;45791:3;45763:23;45774:11;;45763:6;:10;;:23;;;;:::i;:32::-;45756:39;;45855:11;;45842:9;;45835:4;:16;;;;:::i;:::-;45834:32;;;;:::i;:::-;45818:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45932:11:0;;45919:9;;45912:16;;:4;:16;:::i;:::-;45911:32;;;;:::i;:::-;45889:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;45677:286:0;45987:8;;45983:99;;46020:42;46036:4;46050;46057;46020:15;:42::i;:::-;46102:14;46112:4;46102:14;;:::i;:::-;;;45277:855;46155:33;46171:4;46177:2;46181:6;46155:15;:33::i;:::-;41535:4661;;;;41422:4774;;;:::o;12965:191::-;13058:6;;;-1:-1:-1;;;;;13075:17:0;;;-1:-1:-1;;;;;;13075:17:0;;;;;;;13108:40;;13058:6;;;13075:17;13058:6;;13108:40;;13039:16;;13108:40;13028:128;12965:191;:::o;39863:::-;-1:-1:-1;;;;;39947:32:0;;;;;;:25;:32;;;;;;:40;;-1:-1:-1;;39947:40:0;;;;;;;;;;40005:41;;39947:40;;:32;40005:41;;;39863:191;;:::o;41307:107::-;41364:7;41396:1;41392;:5;41391:15;;41405:1;41391:15;;;41401:1;41391:15;41384:22;41307:107;-1:-1:-1;;;41307:107:0:o;47738:407::-;47847:4;47803:23;16805:18;;;;;;;;;;;;47870:20;;;47866:59;;47907:7;47738:407;:::o;47866:59::-;47937:36;47954:18;47937:16;:36::i;:::-;48015:21;48051:22;;48047:91;;48090:36;48104:21;48090:13;:36::i;:::-;47792:353;;47738:407;:::o;3609:98::-;3667:7;3694:5;3698:1;3694;:5;:::i;4008:98::-;4066:7;4093:5;4097:1;4093;:5;:::i;21004:899::-;-1:-1:-1;;;;;21144:20:0;;21136:70;;;;-1:-1:-1;;;21136:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21225:23:0;;21217:71;;;;-1:-1:-1;;;21217:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21385:17:0;;;21361:21;21385:17;;;;;;;;;;;;21440:20;;;;;;;;21495:23;;;;21473:111;;;;-1:-1:-1;;;21473:111:0;;19183:2:1;21473: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;;21473:111:0;18981:402:1;21473:111:0;21691:11;;:39;;21724:6;21691:39;;;21705:16;21691:39;-1:-1:-1;;;;;21620:17:0;;;:9;:17;;;;;;;;;;;21657:74;;;21620:111;;;21753:20;;;;;;;;:30;;21777:6;;21620:9;21753:30;;21777:6;;21753:30;:::i;:::-;;;;;;;;21818:9;-1:-1:-1;;;;;21801:35:0;21810:6;-1:-1:-1;;;;;21801:35:0;;21829:6;21801:35;;;;2760:25:1;;2748:2;2733:18;;2614:177;21801:35:0;;;;;;;;21125:778;;21004:899;;;:::o;47168:562::-;47318:16;;;47332:1;47318:16;;;;;;;;47294:21;;47318:16;;;;;;;;;;-1:-1:-1;47318:16:0;47294:40;;47363:4;47345;47350:1;47345:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47345:23:0;;;:7;;;;;;;;;;:23;;;;47389:6;;:13;;;-1:-1:-1;;;47389:13:0;;;;:6;;;;;:11;;:13;;;;;47345:7;;47389:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47379:4;47384:1;47379:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47379:23:0;;;:7;;;;;;;;;:23;47447:6;;47415:53;;47432:4;;47447:6;47456:11;47415:8;:53::i;:::-;47507:6;;:215;;-1:-1:-1;;;47507:215:0;;-1:-1:-1;;;;;47507:6:0;;;;:57;;:215;;47579:11;;47507:6;;47649:4;;47676;;47696:15;;47507:215;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47223:507;47168:562;:::o;46204:219::-;46279:1;46270:6;:10;46262:52;;;;-1:-1:-1;;;46262:52:0;;20707:2:1;46262:52:0;;;20689:21:1;20746:2;20726:18;;;20719:30;20785:31;20765:18;;;20758:59;20834:18;;46262:52:0;20505:353:1;46262:52:0;46333:8;;;;;-1:-1:-1;;;;;46333:8:0;46325:38;46352:10;46361:1;46352:6;:10;:::i;:::-;46325:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46382:11:0;;-1:-1:-1;;;;;46382:11:0;46374:41;46404:10;46413:1;46404:6;:10;:::i;:::-;46374:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;7004:161;;6791:380;;;:::o;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;12383:251::-;12453:6;12506:2;12494:9;12485:7;12481:23;12477:32;12474:52;;;12522:1;12519;12512:12;12474:52;12554:9;12548:16;12573:31;12598:5;12573:31;:::i;13251:306::-;13339:6;13347;13355;13408:2;13396:9;13387:7;13383:23;13379:32;13376:52;;;13424:1;13421;13414:12;13376:52;13453:9;13447:16;13437:26;;13503:2;13492:9;13488:18;13482:25;13472:35;;13547:2;13536:9;13532:18;13526:25;13516:35;;13251: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://67a0f0b1def18fea21c63181da59f4d0208709555781b5659b5791d051200df5
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.