Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 VERIFY
Holders
167
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,653.037819859253917512 VERIFYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VERIFY
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-07 */ // // .-""-. // / .--. \ // / / \ \ // | | | | // | |.-""-.| // ///`.::::.`\ // ||| ::/ \:: ; $VERIFY // ||; ::\__/:: ; // \\\ '::::' / // `=':-..-'` // // // Ever wanted to try and setup some sort of a verification method for your holders group? Might wanna check us out.. \\ // // Telegram: https://t.me/holdercheck // Twitter/X: https://x.com/holdercheck // // Website: https://holdercheck.xyz/ // Gitbook (Docs): https://verified-eth.gitbook.io/docs/ // // // Bot: https://t.me/verifytokensbot // // pragma solidity 0.8.17; pragma experimental ABIEncoderV2; // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // pragma solidity ^0.8.0; // import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction 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; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { 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; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { 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 removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); 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 VERIFY is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public verifym; address public verifyd; address public verifya; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 private verifybuyFee; uint256 private verifydFee; uint256 private buyVerifyFee; uint256 public sellTotalFees; uint256 private verifysellFee; uint256 private sellVerifyDFee; uint256 private sellVerifyAccFee; uint256 private tokensForVerify; uint256 private tokensForDevShare; uint256 private tokensForVerifyAccount; uint256 private previousFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event verifymUpdated( address indexed newWallet, address indexed oldWallet ); event verifyShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event verifyaUpdated( address indexed newWallet, address indexed oldWallet ); event UniswapV2PairSet(address indexed pair); constructor() ERC20("Verify", "VERIFY") { uint256 totalSupply = 1_000_000 ether; address disperse = 0xD152f549545093347A162Dce210e7293f1452150; uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), type(uint256).max); maxTransactionAmount = totalSupply; maxWallet = totalSupply; swapTokensAtAmount = (totalSupply * 5) / 10000; verifym = address(0xF542C30047b20Ea8F1A97eB018A2Cb2C3BD60AAf); verifyd = address(0x3cbd5Db548543ce9808AEbBb083795437058325d); verifya = address(0x5B724dAF4734411ed02840C0a1B84480b4c04aC6); verifybuyFee = 5; verifydFee = 5; buyVerifyFee = 5; buyTotalFees = verifybuyFee + verifydFee + buyVerifyFee; verifysellFee = 5; sellVerifyDFee = 5; sellVerifyAccFee = 5; sellTotalFees = verifysellFee + sellVerifyDFee + sellVerifyAccFee; previousFee = sellTotalFees; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(verifym, true); excludeFromFees(verifyd, true); excludeFromFees(verifya, true); excludeFromFees(disperse, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(verifym, true); excludeFromMaxTransaction(verifyd, true); excludeFromMaxTransaction(verifya, true); excludeFromMaxTransaction(disperse, true); _mint(owner(), 1_000_000 ether); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); } function enableTrading() external onlyOwner { require(!tradingActive, "Trading already active."); // Check if the pair already exists address existingPair = IUniswapV2Factory(uniswapV2Router.factory()).getPair( address(this), uniswapV2Router.WETH() ); if (existingPair == address(0)) { // Pair does not exist, create a new one uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); } else { // Pair already exists, use the existing pair uniswapV2Pair = existingPair; } _approve(address(this), address(uniswapV2Pair), type(uint256).max); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); maxTransactionAmount = (totalSupply() * 25) / 10000; maxWallet = (totalSupply() * 25) / 10000; tradingActive = true; swapEnabled = true; } function setUniswapV2Pair(address _pair) external onlyOwner { require(_pair != address(0), "Invalid pair address"); uniswapV2Pair = _pair; _approve(address(this), address(uniswapV2Pair), type(uint256).max); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); emit UniswapV2PairSet(uniswapV2Pair); } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "ERC20: Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "ERC20: Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxWalletAndTxnAmount( uint256 newTxnNum, uint256 newMaxWalletNum ) external onlyOwner { require( newTxnNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxTxn lower than 0.5%" ); require( newMaxWalletNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxWallet lower than 0.5%" ); maxWallet = newMaxWalletNum; maxTransactionAmount = newTxnNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _verifyFee, uint256 _devShareFee, uint256 _verifyAccountFee ) external onlyOwner { verifybuyFee = _verifyFee; verifydFee = _devShareFee; buyVerifyFee = _verifyAccountFee; buyTotalFees = verifybuyFee + verifydFee + buyVerifyFee; require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateSellFees( uint256 _verifyFee, uint256 _devShareFee, uint256 _verifyAccountFee ) external onlyOwner { verifysellFee = _verifyFee; sellVerifyDFee = _devShareFee; sellVerifyAccFee = _verifyAccountFee; sellTotalFees = verifysellFee + sellVerifyDFee + sellVerifyAccFee; previousFee = sellTotalFees; require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateVerifyWallet(address _verifym) external onlyOwner { require(_verifym != address(0), "ERC20: Address 0"); address oldWallet = verifym; verifym = _verifym; emit verifymUpdated(verifym, oldWallet); } function updateDevShareWallet(address _verifyd) external onlyOwner { require(_verifyd != address(0), "ERC20: Address 0"); address oldWallet = verifyd; verifyd = _verifyd; emit verifyShareWalletUpdated(verifyd, oldWallet); } function updateVerifyAccountWallet(address _verifya) external onlyOwner { require(_verifya != address(0), "ERC20: Address 0"); address oldWallet = verifya; verifya = _verifya; emit verifyaUpdated(verifya, oldWallet); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function blacklist(address[] calldata accounts, bool value) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (accounts[i] != uniswapV2Pair) && (accounts[i] != address(uniswapV2Router)) && (accounts[i] != address(this)) ) blacklisted[accounts[i]] = value; } } function withdrawStuckETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } function withdrawStuckTokens(address tkn) public onlyOwner { require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "ERC20: bot detected"); require(!blacklisted[msg.sender], "ERC20: bot detected"); require(!blacklisted[tx.origin], "ERC20: bot detected"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != deadAddress && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } // Buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "ERC20: Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } // Sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "ERC20: Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForVerifyAccount += (fees * sellVerifyAccFee) / sellTotalFees; tokensForVerify += (fees * verifysellFee) / sellTotalFees; tokensForDevShare += (fees * sellVerifyDFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForVerifyAccount += (fees * buyVerifyFee) / buyTotalFees; tokensForVerify += (fees * verifybuyFee) / buyTotalFees; tokensForDevShare += (fees * verifydFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = previousFee; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForVerifyAccount + tokensForVerify + tokensForDevShare; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); uint256 ethBalance = address(this).balance; uint256 ethForDevShare = ethBalance.mul(tokensForDevShare).div( totalTokensToSwap ); uint256 ethForVerifyAccount = ethBalance .mul(tokensForVerifyAccount) .div(totalTokensToSwap); tokensForVerify = 0; tokensForDevShare = 0; tokensForVerifyAccount = 0; (success, ) = address(verifya).call{ value: ethForVerifyAccount }(""); (success, ) = address(verifyd).call{value: ethForDevShare}(""); (success, ) = address(verifym).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"pair","type":"address"}],"name":"UniswapV2PairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"verifyShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"verifyaUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"verifymUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_verifyFee","type":"uint256"},{"internalType":"uint256","name":"_devShareFee","type":"uint256"},{"internalType":"uint256","name":"_verifyAccountFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_verifyd","type":"address"}],"name":"updateDevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_verifyFee","type":"uint256"},{"internalType":"uint256","name":"_devShareFee","type":"uint256"},{"internalType":"uint256","name":"_verifyAccountFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_verifya","type":"address"}],"name":"updateVerifyAccountWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_verifym","type":"address"}],"name":"updateVerifyWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verifya","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"verifyd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"verifym","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600d805461ffff191690553480156200001c57600080fd5b506040518060400160405280600681526020016556657269667960d01b8152506040518060400160405280600681526020016556455249465960d01b81525081600390816200006c919062000720565b5060046200007b828262000720565b50505062000098620000926200033660201b60201c565b6200033a565b737a250d5630b4cf539739df2c5dacb4c659f2488d608081905269d3c21bcecceda10000009073d152f549545093347a162dce210e7293f145215090620000e49030906000196200038c565b600a829055600c829055612710620000fe83600562000802565b6200010a919062000822565b600b55600780546001600160a01b031990811673f542c30047b20ea8f1a97eb018a2cb2c3bd60aaf17909155600880548216733cbd5db548543ce9808aebbb083795437058325d17905560098054909116735b724daf4734411ed02840c0a1b84480b4c04ac6179055600560108190556011819055601281905562000190818062000845565b6200019c919062000845565b600f556005601481905560158190556016819055620001bc818062000845565b620001c8919062000845565b6013819055601a55620001ef620001e76005546001600160a01b031690565b6001620004b8565b620001fc306001620004b8565b6200020b61dead6001620004b8565b60075462000224906001600160a01b03166001620004b8565b6008546200023d906001600160a01b03166001620004b8565b60095462000256906001600160a01b03166001620004b8565b62000263816001620004b8565b620002826200027a6005546001600160a01b031690565b600162000521565b6200028f30600162000521565b6200029e61dead600162000521565b608051620002ae90600162000521565b600754620002c7906001600160a01b0316600162000521565b600854620002e0906001600160a01b0316600162000521565b600954620002f9906001600160a01b0316600162000521565b6200030681600162000521565b6200032e6200031d6005546001600160a01b031690565b69d3c21bcecceda100000062000556565b50506200085b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620003f45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620004575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003eb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004c262000619565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200052b62000619565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005ae5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003eb565b8060026000828254620005c2919062000845565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003eb565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006a757607f821691505b602082108103620006c857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067757600081815260208120601f850160051c81016020861015620006f75750805b601f850160051c820191505b81811015620007185782815560010162000703565b505050505050565b81516001600160401b038111156200073c576200073c6200067c565b62000754816200074d845462000692565b84620006ce565b602080601f8311600181146200078c5760008415620007735750858301515b600019600386901b1c1916600185901b17855562000718565b600085815260208120601f198616915b82811015620007bd578886015182559484019460019091019084016200079c565b5085821015620007dc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200081c576200081c620007ec565b92915050565b6000826200084057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200081c576200081c620007ec565b608051612ed5620008bd600039600081816102e401528181610b1401528181610ba501528181610ca601528181610d3701528181610e9d015281816111e20152818161146a01528181612822015281816128db01526129170152612ed56000f3fe60806040526004361061026b5760003560e01c806395d89b4111610144578063c997eb8d116100b6578063dd62ed3e1161007a578063dd62ed3e14610758578063e2f4560514610778578063f2fde38b1461078e578063f5648a4f146107ae578063f8b45b05146107c3578063fe575a87146107d957600080fd5b8063c997eb8d146106c2578063cb963728146106e2578063d257b34f14610702578063d85ba06314610722578063dc020ae81461073857600080fd5b8063a9059cbb11610108578063a9059cbb14610612578063bbc0c74214610632578063c02466681461064c578063c17b5b8c1461066c578063c7dcbbd81461068c578063c8c8ebe4146106ac57600080fd5b806395d89b411461057d57806396188399146105925780639882c27b146105b2578063a29a6089146105d2578063a457c2d7146105f257600080fd5b806349bd5a5e116101dd57806370a08231116101a157806370a08231146104bf578063715018a6146104f55780637571336a1461050a5780638095d5641461052a5780638a8c523c1461054a5780638da5cb5b1461055f57600080fd5b806349bd5a5e146104115780634e391100146104315780634fbee193146104515780636a486a8e1461048a5780636ddd1713146104a057600080fd5b806327c8f8351161022f57806327c8f8351461035d57806329c6d49b14610373578063313ce5671461039557806339509351146103b157806342966c68146103d1578063441cf7cb146103f157600080fd5b806306fdde0314610277578063095ea7b3146102a25780631694505e146102d257806318160ddd1461031e57806323b872dd1461033d57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b604051610299919061298b565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046129ee565b6108a4565b6040519015158152602001610299565b3480156102de57600080fd5b506103067f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561032a57600080fd5b506002545b604051908152602001610299565b34801561034957600080fd5b506102c2610358366004612a1a565b6108be565b34801561036957600080fd5b5061030661dead81565b34801561037f57600080fd5b5061039361038e366004612a5b565b6108e2565b005b3480156103a157600080fd5b5060405160128152602001610299565b3480156103bd57600080fd5b506102c26103cc3660046129ee565b61096a565b3480156103dd57600080fd5b506103936103ec366004612a78565b61098c565b3480156103fd57600080fd5b50600954610306906001600160a01b031681565b34801561041d57600080fd5b50600654610306906001600160a01b031681565b34801561043d57600080fd5b5061039361044c366004612a5b565b610999565b34801561045d57600080fd5b506102c261046c366004612a5b565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561049657600080fd5b5061032f60135481565b3480156104ac57600080fd5b50600d546102c290610100900460ff1681565b3480156104cb57600080fd5b5061032f6104da366004612a5b565b6001600160a01b031660009081526020819052604090205490565b34801561050157600080fd5b50610393610a18565b34801561051657600080fd5b50610393610525366004612a9f565b610a2c565b34801561053657600080fd5b50610393610545366004612ad8565b610a5f565b34801561055657600080fd5b50610393610ab5565b34801561056b57600080fd5b506005546001600160a01b0316610306565b34801561058957600080fd5b5061028c610fa4565b34801561059e57600080fd5b506103936105ad366004612b04565b610fb3565b3480156105be57600080fd5b506103936105cd366004612a5b565b6110c8565b3480156105de57600080fd5b506103936105ed366004612a5b565b611147565b3480156105fe57600080fd5b506102c261060d3660046129ee565b6112ca565b34801561061e57600080fd5b506102c261062d3660046129ee565b611345565b34801561063e57600080fd5b50600d546102c29060ff1681565b34801561065857600080fd5b50610393610667366004612a9f565b611353565b34801561067857600080fd5b50610393610687366004612ad8565b6113ba565b34801561069857600080fd5b50600854610306906001600160a01b031681565b3480156106b857600080fd5b5061032f600a5481565b3480156106ce57600080fd5b506103936106dd366004612b26565b611410565b3480156106ee57600080fd5b506103936106fd366004612a5b565b611572565b34801561070e57600080fd5b506102c261071d366004612a78565b6116fd565b34801561072e57600080fd5b5061032f600f5481565b34801561074457600080fd5b50600754610306906001600160a01b031681565b34801561076457600080fd5b5061032f610773366004612bac565b61183d565b34801561078457600080fd5b5061032f600b5481565b34801561079a57600080fd5b506103936107a9366004612a5b565b611868565b3480156107ba57600080fd5b506103936118de565b3480156107cf57600080fd5b5061032f600c5481565b3480156107e557600080fd5b506102c26107f4366004612a5b565b6001600160a01b03166000908152600e602052604090205460ff1690565b60606003805461082190612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612bda565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000336108b2818585611928565b60019150505b92915050565b6000336108cc858285611a4c565b6108d7858585611ac0565b506001949350505050565b6108ea612283565b6001600160a01b0381166109195760405162461bcd60e51b815260040161091090612c14565b60405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917f956585ab60d0b6391e5ffea4155dd239f66dacdc2c125dbce5f1b11c402e7a9c90600090a35050565b6000336108b281858561097d838361183d565b6109879190612c54565b611928565b61099633826122dd565b50565b6109a1612283565b6001600160a01b0381166109c75760405162461bcd60e51b815260040161091090612c14565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f8b4ebda646e3134794ae047c53d6e489a82cd9a2fd57edd8626280641b9c9d7490600090a35050565b610a20612283565b610a2a600061240f565b565b610a34612283565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b610a67612283565b60108390556011829055601281905580610a818385612c54565b610a8b9190612c54565b600f819055600a1015610ab05760405162461bcd60e51b815260040161091090612c67565b505050565b610abd612283565b600d5460ff1615610b105760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610910565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190612cab565b6001600160a01b031663e6a43905307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190612cab565b90506001600160a01b038116610e4d577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d269190612cab565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db79190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e289190612cab565b600680546001600160a01b0319166001600160a01b0392909216919091179055610e69565b600680546001600160a01b0319166001600160a01b0383161790555b600654610e839030906001600160a01b0316600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b9190612cc8565b50600654610f33906001600160a01b03166001612461565b600654610f4a906001600160a01b03166001610a2c565b612710610f5660025490565b610f61906019612ce5565b610f6b9190612cfc565b600a55612710610f7a60025490565b610f85906019612ce5565b610f8f9190612cfc565b600c5550600d805461ffff1916610101179055565b60606004805461082190612bda565b610fbb612283565b6103e8610fc760025490565b610fd2906005612ce5565b610fdc9190612cfc565b82101561103c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610910565b6103e861104860025490565b611053906005612ce5565b61105d9190612cfc565b8110156110c05760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610910565b600c55600a55565b6110d0612283565b6001600160a01b0381166110f65760405162461bcd60e51b815260040161091090612c14565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc47f4f71c4028ab8d2413c4b26dfb1f8188753d19c1ff29404c4f316494e07bb90600090a35050565b61114f612283565b6001600160a01b03811661119c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610910565b600680546001600160a01b0319166001600160a01b0383169081179091556111c8903090600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561123c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112609190612cc8565b50600654611278906001600160a01b03166001612461565b60065461128f906001600160a01b03166001610a2c565b6006546040516001600160a01b03909116907fb7285c945543323d6c77e154e51651bef3445a7d25101ce12e1fe37e418a5b8990600090a250565b600033816112d8828661183d565b9050838110156113385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610910565b6108d78286868403611928565b6000336108b2818585611ac0565b61135b612283565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113c2612283565b601483905560158290556016819055806113dc8385612c54565b6113e69190612c54565b6013819055601a819055600a1015610ab05760405162461bcd60e51b815260040161091090612c67565b611418612283565b60005b8281101561156c576006546001600160a01b031684848381811061144157611441612d1e565b90506020020160208101906114569190612a5b565b6001600160a01b0316141580156114c557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168484838181106114a4576114a4612d1e565b90506020020160208101906114b99190612a5b565b6001600160a01b031614155b80156115005750308484838181106114df576114df612d1e565b90506020020160208101906114f49190612a5b565b6001600160a01b031614155b1561155a5781600e600086868581811061151c5761151c612d1e565b90506020020160208101906115319190612a5b565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061156481612d34565b91505061141b565b50505050565b61157a612283565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e59190612d4d565b1161161e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610910565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116899190612d4d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab09190612cc8565b6000611707612283565b620186a061171460025490565b61171f906001612ce5565b6117299190612cfc565b82101561179e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610910565b6103e86117aa60025490565b6117b5906005612ce5565b6117bf9190612cfc565b8211156118345760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610910565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611870612283565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b6109968161240f565b6118e6612283565b604051600090339047908381818185875af1925050503d806000811461156c576040519150601f19603f3d011682016040523d82523d6000602084013e61156c565b6001600160a01b03831661198a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610910565b6001600160a01b0382166119eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610910565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611a58848461183d565b9050600019811461156c5781811015611ab35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610910565b61156c8484848403611928565b6001600160a01b038316611ae65760405162461bcd60e51b815260040161091090612d66565b6001600160a01b038216611b0c5760405162461bcd60e51b815260040161091090612dab565b6001600160a01b0383166000908152600e602052604090205460ff1615611b455760405162461bcd60e51b815260040161091090612dee565b336000908152600e602052604090205460ff1615611b755760405162461bcd60e51b815260040161091090612dee565b326000908152600e602052604090205460ff1615611ba55760405162461bcd60e51b815260040161091090612dee565b80600003611bb957610ab0838360006124b5565b6005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b15611f4957600d5460ff16611cc0576001600160a01b0383166000908152601b602052604090205460ff1680611c7457506001600160a01b0382166000908152601b602052604090205460ff165b611cc05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610910565b6001600160a01b0383166000908152601d602052604090205460ff168015611d0157506001600160a01b0382166000908152601c602052604090205460ff16155b15611df757600a54811115611d7e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610910565b600c546001600160a01b038316600090815260208190526040902054611da49083612c54565b1115611df25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610910565b611f49565b6001600160a01b0382166000908152601d602052604090205460ff168015611e3857506001600160a01b0383166000908152601c602052604090205460ff16155b15611eb557600a54811115611df25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610910565b6001600160a01b0382166000908152601c602052604090205460ff16611f4957600c546001600160a01b038316600090815260208190526040902054611efb9083612c54565b1115611f495760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610910565b30600090815260208190526040902054600b5481108015908190611f745750600d54610100900460ff165b8015611f8a5750600654600160a01b900460ff16155b8015611faf57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611fd457506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff957506001600160a01b0384166000908152601b602052604090205460ff16155b15612027576006805460ff60a01b1916600160a01b1790556120196125df565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061207557506001600160a01b0385166000908152601b602052604090205460ff165b1561207e575060005b60008115612269576001600160a01b0386166000908152601d602052604090205460ff1680156120b057506000601354115b1561216e576120d560646120cf601354886127ac90919063ffffffff16565b906127bf565b9050601354601654826120e89190612ce5565b6120f29190612cfc565b601960008282546121039190612c54565b90915550506013546014546121189083612ce5565b6121229190612cfc565b601760008282546121339190612c54565b90915550506013546015546121489083612ce5565b6121529190612cfc565b601860008282546121639190612c54565b9091555061224b9050565b6001600160a01b0387166000908152601d602052604090205460ff16801561219857506000600f54115b1561224b576121b760646120cf600f54886127ac90919063ffffffff16565b9050600f54601254826121ca9190612ce5565b6121d49190612cfc565b601960008282546121e59190612c54565b9091555050600f546010546121fa9083612ce5565b6122049190612cfc565b601760008282546122159190612c54565b9091555050600f5460115461222a9083612ce5565b6122349190612cfc565b601860008282546122459190612c54565b90915550505b801561225c5761225c8730836124b5565b6122668186612e1b565b94505b6122748787876124b5565b5050601a546013555050505050565b6005546001600160a01b03163314610a2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610910565b6001600160a01b03821661233d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610910565b6001600160a01b038216600090815260208190526040902054818110156123b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610910565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124db5760405162461bcd60e51b815260040161091090612d66565b6001600160a01b0382166125015760405162461bcd60e51b815260040161091090612dab565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610910565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361156c565b30600090815260208190526040812054905060006018546017546019546126069190612c54565b6126109190612c54565b9050600082158061261f575081155b1561262957505050565b600b54612637906014612ce5565b83111561264f57600b5461264c906014612ce5565b92505b612658836127cb565b60004790506000612678846120cf601854856127ac90919063ffffffff16565b90506000612695856120cf601954866127ac90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461279c576040519150601f19603f3d011682016040523d82523d6000602084013e6127a1565b606091505b505050505050505050565b60006127b88284612ce5565b9392505050565b60006127b88284612cfc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061280057612800612d1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a29190612cab565b816001815181106128b5576128b5612d1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612900307f000000000000000000000000000000000000000000000000000000000000000084611928565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612955908590600090869030904290600401612e2e565b600060405180830381600087803b15801561296f57600080fd5b505af1158015612983573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129b85785810183015185820160400152820161299c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461099657600080fd5b60008060408385031215612a0157600080fd5b8235612a0c816129d9565b946020939093013593505050565b600080600060608486031215612a2f57600080fd5b8335612a3a816129d9565b92506020840135612a4a816129d9565b929592945050506040919091013590565b600060208284031215612a6d57600080fd5b81356127b8816129d9565b600060208284031215612a8a57600080fd5b5035919050565b801515811461099657600080fd5b60008060408385031215612ab257600080fd5b8235612abd816129d9565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1757600080fd5b50508035926020909101359150565b600080600060408486031215612b3b57600080fd5b833567ffffffffffffffff80821115612b5357600080fd5b818601915086601f830112612b6757600080fd5b813581811115612b7657600080fd5b8760208260051b8501011115612b8b57600080fd5b60209283019550935050840135612ba181612a91565b809150509250925092565b60008060408385031215612bbf57600080fd5b8235612bca816129d9565b91506020830135612acd816129d9565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b8576108b8612c3e565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612cbd57600080fd5b81516127b8816129d9565b600060208284031215612cda57600080fd5b81516127b881612a91565b80820281158282048414176108b8576108b8612c3e565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4657612d46612c3e565b5060010190565b600060208284031215612d5f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b818103818111156108b8576108b8612c3e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e7e5784516001600160a01b031683529383019391830191600101612e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201fe4726d0a6f0ea4b9a70103d86b0a869bbd5987d6abd637b198d3db67ab605864736f6c63430008110033
Deployed Bytecode
0x60806040526004361061026b5760003560e01c806395d89b4111610144578063c997eb8d116100b6578063dd62ed3e1161007a578063dd62ed3e14610758578063e2f4560514610778578063f2fde38b1461078e578063f5648a4f146107ae578063f8b45b05146107c3578063fe575a87146107d957600080fd5b8063c997eb8d146106c2578063cb963728146106e2578063d257b34f14610702578063d85ba06314610722578063dc020ae81461073857600080fd5b8063a9059cbb11610108578063a9059cbb14610612578063bbc0c74214610632578063c02466681461064c578063c17b5b8c1461066c578063c7dcbbd81461068c578063c8c8ebe4146106ac57600080fd5b806395d89b411461057d57806396188399146105925780639882c27b146105b2578063a29a6089146105d2578063a457c2d7146105f257600080fd5b806349bd5a5e116101dd57806370a08231116101a157806370a08231146104bf578063715018a6146104f55780637571336a1461050a5780638095d5641461052a5780638a8c523c1461054a5780638da5cb5b1461055f57600080fd5b806349bd5a5e146104115780634e391100146104315780634fbee193146104515780636a486a8e1461048a5780636ddd1713146104a057600080fd5b806327c8f8351161022f57806327c8f8351461035d57806329c6d49b14610373578063313ce5671461039557806339509351146103b157806342966c68146103d1578063441cf7cb146103f157600080fd5b806306fdde0314610277578063095ea7b3146102a25780631694505e146102d257806318160ddd1461031e57806323b872dd1461033d57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b604051610299919061298b565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046129ee565b6108a4565b6040519015158152602001610299565b3480156102de57600080fd5b506103067f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561032a57600080fd5b506002545b604051908152602001610299565b34801561034957600080fd5b506102c2610358366004612a1a565b6108be565b34801561036957600080fd5b5061030661dead81565b34801561037f57600080fd5b5061039361038e366004612a5b565b6108e2565b005b3480156103a157600080fd5b5060405160128152602001610299565b3480156103bd57600080fd5b506102c26103cc3660046129ee565b61096a565b3480156103dd57600080fd5b506103936103ec366004612a78565b61098c565b3480156103fd57600080fd5b50600954610306906001600160a01b031681565b34801561041d57600080fd5b50600654610306906001600160a01b031681565b34801561043d57600080fd5b5061039361044c366004612a5b565b610999565b34801561045d57600080fd5b506102c261046c366004612a5b565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561049657600080fd5b5061032f60135481565b3480156104ac57600080fd5b50600d546102c290610100900460ff1681565b3480156104cb57600080fd5b5061032f6104da366004612a5b565b6001600160a01b031660009081526020819052604090205490565b34801561050157600080fd5b50610393610a18565b34801561051657600080fd5b50610393610525366004612a9f565b610a2c565b34801561053657600080fd5b50610393610545366004612ad8565b610a5f565b34801561055657600080fd5b50610393610ab5565b34801561056b57600080fd5b506005546001600160a01b0316610306565b34801561058957600080fd5b5061028c610fa4565b34801561059e57600080fd5b506103936105ad366004612b04565b610fb3565b3480156105be57600080fd5b506103936105cd366004612a5b565b6110c8565b3480156105de57600080fd5b506103936105ed366004612a5b565b611147565b3480156105fe57600080fd5b506102c261060d3660046129ee565b6112ca565b34801561061e57600080fd5b506102c261062d3660046129ee565b611345565b34801561063e57600080fd5b50600d546102c29060ff1681565b34801561065857600080fd5b50610393610667366004612a9f565b611353565b34801561067857600080fd5b50610393610687366004612ad8565b6113ba565b34801561069857600080fd5b50600854610306906001600160a01b031681565b3480156106b857600080fd5b5061032f600a5481565b3480156106ce57600080fd5b506103936106dd366004612b26565b611410565b3480156106ee57600080fd5b506103936106fd366004612a5b565b611572565b34801561070e57600080fd5b506102c261071d366004612a78565b6116fd565b34801561072e57600080fd5b5061032f600f5481565b34801561074457600080fd5b50600754610306906001600160a01b031681565b34801561076457600080fd5b5061032f610773366004612bac565b61183d565b34801561078457600080fd5b5061032f600b5481565b34801561079a57600080fd5b506103936107a9366004612a5b565b611868565b3480156107ba57600080fd5b506103936118de565b3480156107cf57600080fd5b5061032f600c5481565b3480156107e557600080fd5b506102c26107f4366004612a5b565b6001600160a01b03166000908152600e602052604090205460ff1690565b60606003805461082190612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612bda565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000336108b2818585611928565b60019150505b92915050565b6000336108cc858285611a4c565b6108d7858585611ac0565b506001949350505050565b6108ea612283565b6001600160a01b0381166109195760405162461bcd60e51b815260040161091090612c14565b60405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917f956585ab60d0b6391e5ffea4155dd239f66dacdc2c125dbce5f1b11c402e7a9c90600090a35050565b6000336108b281858561097d838361183d565b6109879190612c54565b611928565b61099633826122dd565b50565b6109a1612283565b6001600160a01b0381166109c75760405162461bcd60e51b815260040161091090612c14565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f8b4ebda646e3134794ae047c53d6e489a82cd9a2fd57edd8626280641b9c9d7490600090a35050565b610a20612283565b610a2a600061240f565b565b610a34612283565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b610a67612283565b60108390556011829055601281905580610a818385612c54565b610a8b9190612c54565b600f819055600a1015610ab05760405162461bcd60e51b815260040161091090612c67565b505050565b610abd612283565b600d5460ff1615610b105760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610910565b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190612cab565b6001600160a01b031663e6a43905307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190612cab565b90506001600160a01b038116610e4d577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d269190612cab565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db79190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e289190612cab565b600680546001600160a01b0319166001600160a01b0392909216919091179055610e69565b600680546001600160a01b0319166001600160a01b0383161790555b600654610e839030906001600160a01b0316600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b9190612cc8565b50600654610f33906001600160a01b03166001612461565b600654610f4a906001600160a01b03166001610a2c565b612710610f5660025490565b610f61906019612ce5565b610f6b9190612cfc565b600a55612710610f7a60025490565b610f85906019612ce5565b610f8f9190612cfc565b600c5550600d805461ffff1916610101179055565b60606004805461082190612bda565b610fbb612283565b6103e8610fc760025490565b610fd2906005612ce5565b610fdc9190612cfc565b82101561103c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610910565b6103e861104860025490565b611053906005612ce5565b61105d9190612cfc565b8110156110c05760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610910565b600c55600a55565b6110d0612283565b6001600160a01b0381166110f65760405162461bcd60e51b815260040161091090612c14565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc47f4f71c4028ab8d2413c4b26dfb1f8188753d19c1ff29404c4f316494e07bb90600090a35050565b61114f612283565b6001600160a01b03811661119c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610910565b600680546001600160a01b0319166001600160a01b0383169081179091556111c8903090600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561123c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112609190612cc8565b50600654611278906001600160a01b03166001612461565b60065461128f906001600160a01b03166001610a2c565b6006546040516001600160a01b03909116907fb7285c945543323d6c77e154e51651bef3445a7d25101ce12e1fe37e418a5b8990600090a250565b600033816112d8828661183d565b9050838110156113385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610910565b6108d78286868403611928565b6000336108b2818585611ac0565b61135b612283565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113c2612283565b601483905560158290556016819055806113dc8385612c54565b6113e69190612c54565b6013819055601a819055600a1015610ab05760405162461bcd60e51b815260040161091090612c67565b611418612283565b60005b8281101561156c576006546001600160a01b031684848381811061144157611441612d1e565b90506020020160208101906114569190612a5b565b6001600160a01b0316141580156114c557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03168484838181106114a4576114a4612d1e565b90506020020160208101906114b99190612a5b565b6001600160a01b031614155b80156115005750308484838181106114df576114df612d1e565b90506020020160208101906114f49190612a5b565b6001600160a01b031614155b1561155a5781600e600086868581811061151c5761151c612d1e565b90506020020160208101906115319190612a5b565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061156481612d34565b91505061141b565b50505050565b61157a612283565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e59190612d4d565b1161161e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610910565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116899190612d4d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab09190612cc8565b6000611707612283565b620186a061171460025490565b61171f906001612ce5565b6117299190612cfc565b82101561179e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610910565b6103e86117aa60025490565b6117b5906005612ce5565b6117bf9190612cfc565b8211156118345760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610910565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611870612283565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b6109968161240f565b6118e6612283565b604051600090339047908381818185875af1925050503d806000811461156c576040519150601f19603f3d011682016040523d82523d6000602084013e61156c565b6001600160a01b03831661198a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610910565b6001600160a01b0382166119eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610910565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611a58848461183d565b9050600019811461156c5781811015611ab35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610910565b61156c8484848403611928565b6001600160a01b038316611ae65760405162461bcd60e51b815260040161091090612d66565b6001600160a01b038216611b0c5760405162461bcd60e51b815260040161091090612dab565b6001600160a01b0383166000908152600e602052604090205460ff1615611b455760405162461bcd60e51b815260040161091090612dee565b336000908152600e602052604090205460ff1615611b755760405162461bcd60e51b815260040161091090612dee565b326000908152600e602052604090205460ff1615611ba55760405162461bcd60e51b815260040161091090612dee565b80600003611bb957610ab0838360006124b5565b6005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b15611f4957600d5460ff16611cc0576001600160a01b0383166000908152601b602052604090205460ff1680611c7457506001600160a01b0382166000908152601b602052604090205460ff165b611cc05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610910565b6001600160a01b0383166000908152601d602052604090205460ff168015611d0157506001600160a01b0382166000908152601c602052604090205460ff16155b15611df757600a54811115611d7e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610910565b600c546001600160a01b038316600090815260208190526040902054611da49083612c54565b1115611df25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610910565b611f49565b6001600160a01b0382166000908152601d602052604090205460ff168015611e3857506001600160a01b0383166000908152601c602052604090205460ff16155b15611eb557600a54811115611df25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610910565b6001600160a01b0382166000908152601c602052604090205460ff16611f4957600c546001600160a01b038316600090815260208190526040902054611efb9083612c54565b1115611f495760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610910565b30600090815260208190526040902054600b5481108015908190611f745750600d54610100900460ff165b8015611f8a5750600654600160a01b900460ff16155b8015611faf57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611fd457506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff957506001600160a01b0384166000908152601b602052604090205460ff16155b15612027576006805460ff60a01b1916600160a01b1790556120196125df565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061207557506001600160a01b0385166000908152601b602052604090205460ff165b1561207e575060005b60008115612269576001600160a01b0386166000908152601d602052604090205460ff1680156120b057506000601354115b1561216e576120d560646120cf601354886127ac90919063ffffffff16565b906127bf565b9050601354601654826120e89190612ce5565b6120f29190612cfc565b601960008282546121039190612c54565b90915550506013546014546121189083612ce5565b6121229190612cfc565b601760008282546121339190612c54565b90915550506013546015546121489083612ce5565b6121529190612cfc565b601860008282546121639190612c54565b9091555061224b9050565b6001600160a01b0387166000908152601d602052604090205460ff16801561219857506000600f54115b1561224b576121b760646120cf600f54886127ac90919063ffffffff16565b9050600f54601254826121ca9190612ce5565b6121d49190612cfc565b601960008282546121e59190612c54565b9091555050600f546010546121fa9083612ce5565b6122049190612cfc565b601760008282546122159190612c54565b9091555050600f5460115461222a9083612ce5565b6122349190612cfc565b601860008282546122459190612c54565b90915550505b801561225c5761225c8730836124b5565b6122668186612e1b565b94505b6122748787876124b5565b5050601a546013555050505050565b6005546001600160a01b03163314610a2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610910565b6001600160a01b03821661233d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610910565b6001600160a01b038216600090815260208190526040902054818110156123b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610910565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124db5760405162461bcd60e51b815260040161091090612d66565b6001600160a01b0382166125015760405162461bcd60e51b815260040161091090612dab565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610910565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361156c565b30600090815260208190526040812054905060006018546017546019546126069190612c54565b6126109190612c54565b9050600082158061261f575081155b1561262957505050565b600b54612637906014612ce5565b83111561264f57600b5461264c906014612ce5565b92505b612658836127cb565b60004790506000612678846120cf601854856127ac90919063ffffffff16565b90506000612695856120cf601954866127ac90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461279c576040519150601f19603f3d011682016040523d82523d6000602084013e6127a1565b606091505b505050505050505050565b60006127b88284612ce5565b9392505050565b60006127b88284612cfc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061280057612800612d1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a29190612cab565b816001815181106128b5576128b5612d1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612900307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611928565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612955908590600090869030904290600401612e2e565b600060405180830381600087803b15801561296f57600080fd5b505af1158015612983573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129b85785810183015185820160400152820161299c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461099657600080fd5b60008060408385031215612a0157600080fd5b8235612a0c816129d9565b946020939093013593505050565b600080600060608486031215612a2f57600080fd5b8335612a3a816129d9565b92506020840135612a4a816129d9565b929592945050506040919091013590565b600060208284031215612a6d57600080fd5b81356127b8816129d9565b600060208284031215612a8a57600080fd5b5035919050565b801515811461099657600080fd5b60008060408385031215612ab257600080fd5b8235612abd816129d9565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1757600080fd5b50508035926020909101359150565b600080600060408486031215612b3b57600080fd5b833567ffffffffffffffff80821115612b5357600080fd5b818601915086601f830112612b6757600080fd5b813581811115612b7657600080fd5b8760208260051b8501011115612b8b57600080fd5b60209283019550935050840135612ba181612a91565b809150509250925092565b60008060408385031215612bbf57600080fd5b8235612bca816129d9565b91506020830135612acd816129d9565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b8576108b8612c3e565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612cbd57600080fd5b81516127b8816129d9565b600060208284031215612cda57600080fd5b81516127b881612a91565b80820281158282048414176108b8576108b8612c3e565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4657612d46612c3e565b5060010190565b600060208284031215612d5f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b818103818111156108b8576108b8612c3e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e7e5784516001600160a01b031683529383019391830191600101612e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201fe4726d0a6f0ea4b9a70103d86b0a869bbd5987d6abd637b198d3db67ab605864736f6c63430008110033
Deployed Bytecode Sourcemap
36319:15725:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11054:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13555:242;;;;;;;;;;-1:-1:-1;13555:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13555:242:0;1023:187:1;36395:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;36395:51:0;1215:230:1;12183:108:0;;;;;;;;;;-1:-1:-1;12271:12:0;;12183:108;;;1596:25:1;;;1584:2;1569:18;12183:108:0;1450:177:1;14377:295:0;;;;;;;;;;-1:-1:-1;14377:295:0;;;;;:::i;:::-;;:::i;36488:53::-;;;;;;;;;;;;36534:6;36488:53;;44092:275;;;;;;;;;;-1:-1:-1;44092:275:0;;;;;:::i;:::-;;:::i;:::-;;12025:93;;;;;;;;;;-1:-1:-1;12025:93:0;;12108:2;2695:36:1;;2683:2;2668:18;12025:93:0;2553:184:1;15081:270:0;;;;;;;;;;-1:-1:-1;15081:270:0;;;;;:::i;:::-;;:::i;40090:83::-;;;;;;;;;;-1:-1:-1;40090:83:0;;;;;:::i;:::-;;:::i;36638:22::-;;;;;;;;;;-1:-1:-1;36638:22:0;;;;-1:-1:-1;;;;;36638:22:0;;;36453:28;;;;;;;;;;-1:-1:-1;36453:28:0;;;;-1:-1:-1;;;;;36453:28:0;;;44647:282;;;;;;;;;;-1:-1:-1;44647:282:0;;;;;:::i;:::-;;:::i;46189:126::-;;;;;;;;;;-1:-1:-1;46189:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;46279:28:0;46255:4;46279:28;;;:19;:28;;;;;;;;;46189:126;37103:28;;;;;;;;;;;;;;;;36824:31;;;;;;;;;;-1:-1:-1;36824:31:0;;;;;;;;;;;12354:177;;;;;;;;;;-1:-1:-1;12354:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;12505:18:0;12473:7;12505:18;;;;;;;;;;;;12354:177;4434:103;;;;;;;;;;;;;:::i;42979:167::-;;;;;;;;;;-1:-1:-1;42979:167:0;;;;;:::i;:::-;;:::i;43154:412::-;;;;;;;;;;-1:-1:-1;43154:412:0;;;;;:::i;:::-;;:::i;40184:1241::-;;;;;;;;;;;;;:::i;3793:87::-;;;;;;;;;;-1:-1:-1;3866:6:0;;-1:-1:-1;;;;;3866:6:0;3793:87;;11273:104;;;;;;;;;;;;;:::i;42464:507::-;;;;;;;;;;-1:-1:-1;42464:507:0;;;;;:::i;:::-;;:::i;44375:264::-;;;;;;;;;;-1:-1:-1;44375:264:0;;;;;:::i;:::-;;:::i;41429:506::-;;;;;;;;;;-1:-1:-1;41429:506:0;;;;;:::i;:::-;;:::i;15854:505::-;;;;;;;;;;-1:-1:-1;15854:505:0;;;;;:::i;:::-;;:::i;12737:234::-;;;;;;;;;;-1:-1:-1;12737:234:0;;;;;:::i;:::-;;:::i;36784:33::-;;;;;;;;;;-1:-1:-1;36784:33:0;;;;;;;;44937:182;;;;;;;;;;-1:-1:-1;44937:182:0;;;;;:::i;:::-;;:::i;43574:510::-;;;;;;;;;;-1:-1:-1;43574:510:0;;;;;:::i;:::-;;:::i;36609:22::-;;;;;;;;;;-1:-1:-1;36609:22:0;;;;-1:-1:-1;;;;;36609:22:0;;;36669:35;;;;;;;;;;;;;;;;45127:404;;;;;;;;;;-1:-1:-1;45127:404:0;;;;;:::i;:::-;;:::i;45730:255::-;;;;;;;;;;-1:-1:-1;45730:255:0;;;;;:::i;:::-;;:::i;41945:511::-;;;;;;;;;;-1:-1:-1;41945:511:0;;;;;:::i;:::-;;:::i;36964:27::-;;;;;;;;;;;;;;;;36580:22;;;;;;;;;;-1:-1:-1;36580:22:0;;;;-1:-1:-1;;;;;36580:22:0;;;13034:201;;;;;;;;;;-1:-1:-1;13034:201:0;;;;;:::i;:::-;;:::i;36711:33::-;;;;;;;;;;;;;;;;4692:238;;;;;;;;;;-1:-1:-1;4692:238:0;;;;;:::i;:::-;;:::i;45539:183::-;;;;;;;;;;;;;:::i;36751:24::-;;;;;;;;;;;;;;;;46323:113;;;;;;;;;;-1:-1:-1;46323:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;46408:20:0;46384:4;46408:20;;;:11;:20;;;;;;;;;46323:113;11054:100;11108:13;11141:5;11134:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11054:100;:::o;13555:242::-;13674:4;2418:10;13735:32;2418:10;13751:7;13760:6;13735:8;:32::i;:::-;13785:4;13778:11;;;13555:242;;;;;:::o;14377:295::-;14508:4;2418:10;14566:38;14582:4;2418:10;14597:6;14566:15;:38::i;:::-;14615:27;14625:4;14631:2;14635:6;14615:9;:27::i;:::-;-1:-1:-1;14660:4:0;;14377:295;-1:-1:-1;;;;14377:295:0:o;44092:275::-;3679:13;:11;:13::i;:::-;-1:-1:-1;;;;;44199:22:0;::::1;44191:51;;;;-1:-1:-1::0;;;44191:51:0::1;;;;;;;:::i;:::-;;;;;;;;;44273:7;::::0;;-1:-1:-1;;;;;44291:18:0;;::::1;-1:-1:-1::0;;;;;;44291:18:0;::::1;::::0;::::1;::::0;;;44325:34:::1;::::0;44273:7;::::1;::::0;;;44325:34:::1;::::0;44253:17:::1;::::0;44325:34:::1;44180:187;44092:275:::0;:::o;15081:270::-;15196:4;2418:10;15257:64;2418:10;15273:7;15310:10;15282:25;2418:10;15273:7;15282:9;:25::i;:::-;:38;;;;:::i;:::-;15257:8;:64::i;40090:83::-;40140:25;40146:10;40158:6;40140:5;:25::i;:::-;40090:83;:::o;44647:282::-;3679:13;:11;:13::i;:::-;-1:-1:-1;;;;;44761:22:0;::::1;44753:51;;;;-1:-1:-1::0;;;44753:51:0::1;;;;;;;:::i;:::-;44835:7;::::0;;-1:-1:-1;;;;;44853:18:0;;::::1;-1:-1:-1::0;;;;;;44853:18:0;::::1;::::0;::::1;::::0;;;44887:34:::1;::::0;44835:7;::::1;::::0;;;44887:34:::1;::::0;44815:17:::1;::::0;44887:34:::1;44742:187;44647:282:::0;:::o;4434:103::-;3679:13;:11;:13::i;:::-;4499:30:::1;4526:1;4499:18;:30::i;:::-;4434:103::o:0;42979:167::-;3679:13;:11;:13::i;:::-;-1:-1:-1;;;;;43092:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;43092:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42979:167::o;43154:412::-;3679:13;:11;:13::i;:::-;43310:12:::1;:25:::0;;;43346:10:::1;:25:::0;;;43382:12:::1;:32:::0;;;43397:17;43440:25:::1;43359:12:::0;43325:10;43440:25:::1;:::i;:::-;:40;;;;:::i;:::-;43425:12;:55:::0;;;43515:2:::1;-1:-1:-1::0;43499:18:0::1;43491:67;;;;-1:-1:-1::0;;;43491:67:0::1;;;;;;;:::i;:::-;43154:412:::0;;;:::o;40184:1241::-;3679:13;:11;:13::i;:::-;40248::::1;::::0;::::1;;40247:14;40239:50;;;::::0;-1:-1:-1;;;40239:50:0;;6758:2:1;40239:50:0::1;::::0;::::1;6740:21:1::0;6797:2;6777:18;;;6770:30;6836:25;6816:18;;;6809:53;6879:18;;40239:50:0::1;6556:347:1::0;40239:50:0::1;40347:20;40388:15;-1:-1:-1::0;;;;;40388:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40370:52:0::1;;40445:4;40465:15;-1:-1:-1::0;;;;;40465:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40370:128;::::0;-1:-1:-1;;;;;;40370:128:0::1;::::0;;;;;;-1:-1:-1;;;;;7394:15:1;;;40370:128:0::1;::::0;::::1;7376:34:1::0;7446:15;;7426:18;;;7419:43;7311:18;;40370:128:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40347:151:::0;-1:-1:-1;;;;;;40515:26:0;::::1;40511:392;;40646:15;-1:-1:-1::0;;;;;40646:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40628:55:0::1;;40710:4;40734:15;-1:-1:-1::0;;;;;40734:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40628:143;::::0;-1:-1:-1;;;;;;40628:143:0::1;::::0;;;;;;-1:-1:-1;;;;;7394:15:1;;;40628:143:0::1;::::0;::::1;7376:34:1::0;7446:15;;7426:18;;;7419:43;7311:18;;40628:143:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40612:13;:159:::0;;-1:-1:-1;;;;;;40612:159:0::1;-1:-1:-1::0;;;;;40612:159:0;;;::::1;::::0;;;::::1;::::0;;40511:392:::1;;;40863:13;:28:::0;;-1:-1:-1;;;;;;40863:28:0::1;-1:-1:-1::0;;;;;40863:28:0;::::1;;::::0;;40511:392:::1;40947:13;::::0;40915:66:::1;::::0;40932:4:::1;::::0;-1:-1:-1;;;;;40947:13:0::1;-1:-1:-1::0;;40915:8:0::1;:66::i;:::-;40999:13;::::0;40992:111:::1;::::0;-1:-1:-1;;;40992:111:0;;-1:-1:-1;;;;;41044:15:0::1;7665:32:1::0;;40992:111:0::1;::::0;::::1;7647:51:1::0;-1:-1:-1;;7714:18:1;;;7707:34;40999:13:0;;::::1;::::0;40992:29:::1;::::0;7620:18:1;;40992:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;41153:13:0::1;::::0;41116:58:::1;::::0;-1:-1:-1;;;;;41153:13:0::1;::::0;41116:28:::1;:58::i;:::-;41219:13;::::0;41185:55:::1;::::0;-1:-1:-1;;;;;41219:13:0::1;::::0;41185:25:::1;:55::i;:::-;41299:5;41277:13;12271:12:::0;;;12183:108;41277:13:::1;:18;::::0;41293:2:::1;41277:18;:::i;:::-;41276:28;;;;:::i;:::-;41253:20;:51:::0;41350:5:::1;41328:13;12271:12:::0;;;12183:108;41328:13:::1;:18;::::0;41344:2:::1;41328:18;:::i;:::-;41327:28;;;;:::i;:::-;41315:9;:40:::0;-1:-1:-1;41368:13:0::1;:20:::0;;-1:-1:-1;;41399:18:0;;;;;40184:1241::o;11273:104::-;11329:13;11362:7;11355:14;;;;;:::i;42464:507::-;3679:13;:11;:13::i;:::-;42658:4:::1;42637:13;12271:12:::0;;;12183:108;42637:13:::1;:17;::::0;42653:1:::1;42637:17;:::i;:::-;42636:26;;;;:::i;:::-;42622:9;:41;;42600:131;;;::::0;-1:-1:-1;;;42600:131:0;;8599:2:1;42600:131:0::1;::::0;::::1;8581:21:1::0;8638:2;8618:18;;;8611:30;8677:34;8657:18;;;8650:62;-1:-1:-1;;;8728:18:1;;;8721:38;8776:19;;42600:131:0::1;8397:404:1::0;42600:131:0::1;42806:4;42785:13;12271:12:::0;;;12183:108;42785:13:::1;:17;::::0;42801:1:::1;42785:17;:::i;:::-;42784:26;;;;:::i;:::-;42764:15;:47;;42742:140;;;::::0;-1:-1:-1;;;42742:140:0;;9008:2:1;42742:140:0::1;::::0;::::1;8990:21:1::0;9047:2;9027:18;;;9020:30;9086:34;9066:18;;;9059:62;-1:-1:-1;;;9137:18:1;;;9130:41;9188:19;;42742:140:0::1;8806:407:1::0;42742:140:0::1;42893:9;:27:::0;42931:20:::1;:32:::0;42464:507::o;44375:264::-;3679:13;:11;:13::i;:::-;-1:-1:-1;;;;;44461:22:0;::::1;44453:51;;;;-1:-1:-1::0;;;44453:51:0::1;;;;;;;:::i;:::-;44535:7;::::0;;-1:-1:-1;;;;;44553:18:0;;::::1;-1:-1:-1::0;;;;;;44553:18:0;::::1;::::0;::::1;::::0;;;44587:44:::1;::::0;44535:7;::::1;::::0;;;44587:44:::1;::::0;44515:17:::1;::::0;44587:44:::1;44442:197;44375:264:::0;:::o;41429:506::-;3679:13;:11;:13::i;:::-;-1:-1:-1;;;;;41504:19:0;::::1;41496:52;;;::::0;-1:-1:-1;;;41496:52:0;;9420:2:1;41496:52:0::1;::::0;::::1;9402:21:1::0;9459:2;9439:18;;;9432:30;-1:-1:-1;;;9478:18:1;;;9471:50;9538:18;;41496:52:0::1;9218:344:1::0;41496:52:0::1;41555:13;:21:::0;;-1:-1:-1;;;;;;41555:21:0::1;-1:-1:-1::0;;;;;41555:21:0;::::1;::::0;;::::1;::::0;;;41585:66:::1;::::0;41602:4:::1;::::0;-1:-1:-1;;41585:8:0::1;:66::i;:::-;41665:13;::::0;41658:99:::1;::::0;-1:-1:-1;;;41658:99:0;;-1:-1:-1;;;;;41706:15:0::1;7665:32:1::0;;41658:99:0::1;::::0;::::1;7647:51:1::0;-1:-1:-1;;7714:18:1;;;7707:34;41665:13:0;;::::1;::::0;41658:29:::1;::::0;7620:18:1;;41658:99:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;41803:13:0::1;::::0;41766:58:::1;::::0;-1:-1:-1;;;;;41803:13:0::1;::::0;41766:28:::1;:58::i;:::-;41865:13;::::0;41831:55:::1;::::0;-1:-1:-1;;;;;41865:13:0::1;::::0;41831:25:::1;:55::i;:::-;41917:13;::::0;41900:31:::1;::::0;-1:-1:-1;;;;;41917:13:0;;::::1;::::0;41900:31:::1;::::0;41917:13:::1;::::0;41900:31:::1;41429:506:::0;:::o;15854:505::-;15974:4;2418:10;15974:4;16062:25;2418:10;16079:7;16062:9;:25::i;:::-;16035:52;;16140:15;16120:16;:35;;16098:122;;;;-1:-1:-1;;;16098:122:0;;9769:2:1;16098:122:0;;;9751:21:1;9808:2;9788:18;;;9781:30;9847:34;9827:18;;;9820:62;-1:-1:-1;;;9898:18:1;;;9891:35;9943:19;;16098:122:0;9567:401:1;16098:122:0;16256:60;16265:5;16272:7;16300:15;16281:16;:34;16256:8;:60::i;12737:234::-;12852:4;2418:10;12913:28;2418:10;12930:2;12934:6;12913:9;:28::i;44937:182::-;3679:13;:11;:13::i;:::-;-1:-1:-1;;;;;45022:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;45022:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45077:34;;1163:41:1;;;45077:34:0::1;::::0;1136:18:1;45077:34:0::1;;;;;;;44937:182:::0;;:::o;43574:510::-;3679:13;:11;:13::i;:::-;43731::::1;:26:::0;;;43768:14:::1;:29:::0;;;43808:16:::1;:36:::0;;;43827:17;43884:43:::1;43785:12:::0;43747:10;43884:43:::1;:::i;:::-;:75;;;;:::i;:::-;43855:13;:104:::0;;;43970:11:::1;:27:::0;;;44033:2:::1;-1:-1:-1::0;44016:19:0::1;44008:68;;;;-1:-1:-1::0;;;44008:68:0::1;;;;;;;:::i;45127:404::-:0;3679:13;:11;:13::i;:::-;45243:9:::1;45238:286;45258:19:::0;;::::1;45238:286;;;45337:13;::::0;-1:-1:-1;;;;;45337:13:0::1;45322:8:::0;;45331:1;45322:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45322:28:0::1;;;45321:92;;;;;45396:15;-1:-1:-1::0;;;;;45373:39:0::1;:8;;45382:1;45373:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45373:39:0::1;;;45321:92;:143;;;;-1:-1:-1::0;45458:4:0::1;45435:8:::0;;45444:1;45435:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45435:28:0::1;;;45321:143;45299:213;;;45507:5;45480:11;:24;45492:8;;45501:1;45492:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45480:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45480:24:0;:32;;-1:-1:-1;;45480:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45299:213:::1;45279:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45238:286;;;;45127:404:::0;;;:::o;45730:255::-;3679:13;:11;:13::i;:::-;45808:36:::1;::::0;-1:-1:-1;;;45808:36:0;;45838:4:::1;45808:36;::::0;::::1;1388:51:1::0;45847:1:0::1;::::0;-1:-1:-1;;;;;45808:21:0;::::1;::::0;::::1;::::0;1361:18:1;;45808:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;45800:62;;;::::0;-1:-1:-1;;;45800:62:0;;10636:2:1;45800:62:0::1;::::0;::::1;10618:21:1::0;10675:1;10655:18;;;10648:29;-1:-1:-1;;;10693:18:1;;;10686:39;10742:18;;45800:62:0::1;10434:332:1::0;45800:62:0::1;45890:36;::::0;-1:-1:-1;;;45890:36:0;;45920:4:::1;45890:36;::::0;::::1;1388:51:1::0;45873:14:0::1;::::0;-1:-1:-1;;;;;45890:21:0;::::1;::::0;::::1;::::0;1361:18:1;;45890:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45937:40;::::0;-1:-1:-1;;;45937:40:0;;45958:10:::1;45937:40;::::0;::::1;7647:51:1::0;7714:18;;;7707:34;;;45873:53:0;;-1:-1:-1;;;;;;45937:20:0;::::1;::::0;::::1;::::0;7620:18:1;;45937:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41945:511::-:0;42053:4;3679:13;:11;:13::i;:::-;42132:6:::1;42111:13;12271:12:::0;;;12183:108;42111:13:::1;:17;::::0;42127:1:::1;42111:17;:::i;:::-;42110:28;;;;:::i;:::-;42097:9;:41;;42075:151;;;::::0;-1:-1:-1;;;42075:151:0;;10973:2:1;42075:151:0::1;::::0;::::1;10955:21:1::0;11012:2;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;11122:30;11102:18;;;11095:58;11170:19;;42075:151:0::1;10771:424:1::0;42075:151:0::1;42294:4;42273:13;12271:12:::0;;;12183:108;42273:13:::1;:17;::::0;42289:1:::1;42273:17;:::i;:::-;42272:26;;;;:::i;:::-;42259:9;:39;;42237:148;;;::::0;-1:-1:-1;;;42237:148:0;;11402:2:1;42237:148:0::1;::::0;::::1;11384:21:1::0;11441:2;11421:18;;;11414:30;11480:34;11460:18;;;11453:62;11551:29;11531:18;;;11524:57;11598:19;;42237:148:0::1;11200:423:1::0;42237:148:0::1;-1:-1:-1::0;42396:18:0::1;:30:::0;42444:4:::1;::::0;41945:511::o;13034:201::-;-1:-1:-1;;;;;13200:18:0;;;13168:7;13200:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13034:201::o;4692:238::-;3679:13;:11;:13::i;:::-;-1:-1:-1;;;;;4795:22:0;::::1;4773:110;;;::::0;-1:-1:-1;;;4773:110:0;;11830:2:1;4773:110:0::1;::::0;::::1;11812:21:1::0;11869:2;11849:18;;;11842:30;11908:34;11888:18;;;11881:62;-1:-1:-1;;;11959:18:1;;;11952:36;12005:19;;4773:110:0::1;11628:402:1::0;4773:110:0::1;4894:28;4913:8;4894:18;:28::i;45539:183::-:0;3679:13;:11;:13::i;:::-;45632:82:::1;::::0;45595:12:::1;::::0;45640:10:::1;::::0;45664:21:::1;::::0;45595:12;45632:82;45595:12;45632:82;45664:21;45640:10;45632:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19987:380:::0;-1:-1:-1;;;;;20123:19:0;;20115:68;;;;-1:-1:-1;;;20115:68:0;;12447:2:1;20115:68:0;;;12429:21:1;12486:2;12466:18;;;12459:30;12525:34;12505:18;;;12498:62;-1:-1:-1;;;12576:18:1;;;12569:34;12620:19;;20115:68:0;12245:400:1;20115:68:0;-1:-1:-1;;;;;20202:21:0;;20194:68;;;;-1:-1:-1;;;20194:68:0;;12852:2:1;20194:68:0;;;12834:21:1;12891:2;12871:18;;;12864:30;12930:34;12910:18;;;12903:62;-1:-1:-1;;;12981:18:1;;;12974:32;13023:19;;20194:68:0;12650:398:1;20194:68:0;-1:-1:-1;;;;;20275:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20327:32;;1596:25:1;;;20327:32:0;;1569:18:1;20327:32:0;;;;;;;19987:380;;;:::o;20658:502::-;20793:24;20820:25;20830:5;20837:7;20820:9;:25::i;:::-;20793:52;;-1:-1:-1;;20860:16:0;:37;20856:297;;20960:6;20940:16;:26;;20914:117;;;;-1:-1:-1;;;20914:117:0;;13255:2:1;20914:117:0;;;13237:21:1;13294:2;13274:18;;;13267:30;13333:31;13313:18;;;13306:59;13382:18;;20914:117:0;13053:353:1;20914:117:0;21075:51;21084:5;21091:7;21119:6;21100:16;:25;21075:8;:51::i;46444:3900::-;-1:-1:-1;;;;;46576:18:0;;46568:68;;;;-1:-1:-1;;;46568:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46655:16:0;;46647:64;;;;-1:-1:-1;;;46647:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46731:17:0;;;;;;:11;:17;;;;;;;;46730:18;46722:50;;;;-1:-1:-1;;;46722:50:0;;;;;;;:::i;:::-;46804:10;46792:23;;;;:11;:23;;;;;;;;46791:24;46783:56;;;;-1:-1:-1;;;46783:56:0;;;;;;;:::i;:::-;46871:9;46859:22;;;;:11;:22;;;;;;;;46858:23;46850:55;;;;-1:-1:-1;;;46850:55:0;;;;;;;:::i;:::-;46922:6;46932:1;46922:11;46918:93;;46950:28;46966:4;46972:2;46976:1;46950:15;:28::i;46918:93::-;3866:6;;-1:-1:-1;;;;;47041:15:0;;;3866:6;;47041:15;;;;:45;;-1:-1:-1;3866:6:0;;-1:-1:-1;;;;;47073:13:0;;;3866:6;;47073:13;;47041:45;:78;;;;-1:-1:-1;;;;;;47103:16:0;;;;47041:78;:112;;;;-1:-1:-1;;;;;;47136:17:0;;36534:6;47136:17;;47041:112;:138;;;;-1:-1:-1;47171:8:0;;-1:-1:-1;;;47171:8:0;;;;47170:9;47041:138;47023:1503;;;47211:13;;;;47206:210;;-1:-1:-1;;;;;47275:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;47304:23:0;;;;;;:19;:23;;;;;;;;47275:52;47245:155;;;;-1:-1:-1;;;47245:155:0;;14771:2:1;47245:155:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:31;14829:18;;;14822:59;14898:18;;47245:155:0;14569:353:1;47245:155:0;-1:-1:-1;;;;;47474:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;47527:35:0;;;;;;:31;:35;;;;;;;;47526:36;47474:88;47452:1063;;;47637:20;;47627:6;:30;;47597:164;;;;-1:-1:-1;;;47597:164:0;;15129:2:1;47597:164:0;;;15111:21:1;15168:2;15148:18;;;15141:30;15207:34;15187:18;;;15180:62;15278:30;15258:18;;;15251:58;15326:19;;47597:164:0;14927:424:1;47597:164:0;47836:9;;-1:-1:-1;;;;;12505:18:0;;12473:7;12505:18;;;;;;;;;;;47810:22;;:6;:22;:::i;:::-;:35;;47780:135;;;;-1:-1:-1;;;47780:135:0;;15558:2:1;47780:135:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:28;15616:18;;;15609:56;15682:18;;47780:135:0;15356:350:1;47780:135:0;47452:1063;;;-1:-1:-1;;;;;47993:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;48044:37:0;;;;;;:31;:37;;;;;;;;48043:38;47993:88;47971:544;;;48156:20;;48146:6;:30;;48116:165;;;;-1:-1:-1;;;48116:165:0;;15913:2:1;48116:165:0;;;15895:21:1;15952:2;15932:18;;;15925:30;15991:34;15971:18;;;15964:62;16062:31;16042:18;;;16035:59;16111:19;;48116:165:0;15711:425:1;47971:544:0;-1:-1:-1;;;;;48308:35:0;;;;;;:31;:35;;;;;;;;48303:212;;48420:9;;-1:-1:-1;;;;;12505:18:0;;12473:7;12505:18;;;;;;;;;;;48394:22;;:6;:22;:::i;:::-;:35;;48364:135;;;;-1:-1:-1;;;48364:135:0;;15558:2:1;48364:135:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:28;15616:18;;;15609:56;15682:18;;48364:135:0;15356:350:1;48364:135:0;48587:4;48538:28;12505:18;;;;;;;;;;;48645;;48621:42;;;;;;;48694:35;;-1:-1:-1;48718:11:0;;;;;;;48694:35;:61;;;;-1:-1:-1;48747:8:0;;-1:-1:-1;;;48747:8:0;;;;48746:9;48694:61;:110;;;;-1:-1:-1;;;;;;48773:31:0;;;;;;:25;:31;;;;;;;;48772:32;48694:110;:153;;;;-1:-1:-1;;;;;;48822:25:0;;;;;;:19;:25;;;;;;;;48821:26;48694:153;:194;;;;-1:-1:-1;;;;;;48865:23:0;;;;;;:19;:23;;;;;;;;48864:24;48694:194;48676:326;;;48915:8;:15;;-1:-1:-1;;;;48915:15:0;-1:-1:-1;;;48915:15:0;;;48947:10;:8;:10::i;:::-;48974:8;:16;;-1:-1:-1;;;;48974:16:0;;;48676:326;49030:8;;-1:-1:-1;;;;;49055:25:0;;49014:12;49055:25;;;:19;:25;;;;;;49030:8;-1:-1:-1;;;49030:8:0;;;;;49029:9;;49055:25;;:52;;-1:-1:-1;;;;;;49084:23:0;;;;;;:19;:23;;;;;;;;49055:52;49051:100;;;-1:-1:-1;49134:5:0;49051:100;49163:12;49196:7;49192:1061;;;-1:-1:-1;;;;;49248:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;49297:1;49281:13;;:17;49248:50;49244:860;;;49326:34;49356:3;49326:25;49337:13;;49326:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;49319:41;;49475:13;;49434:16;;49427:4;:23;;;;:::i;:::-;49426:62;;;;:::i;:::-;49379:22;;:109;;;;;;;:::i;:::-;;;;-1:-1:-1;;49551:13:0;;49534;;49527:20;;:4;:20;:::i;:::-;49526:38;;;;:::i;:::-;49507:15;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;49630:13:0;;49612:14;;49605:21;;:4;:21;:::i;:::-;49604:39;;;;:::i;:::-;49583:17;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;49244:860:0;;-1:-1:-1;49244:860:0;;-1:-1:-1;;;;;49705:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;49755:1;49740:12;;:16;49705:51;49701:403;;;49784:33;49813:3;49784:24;49795:12;;49784:6;:10;;:24;;;;:::i;:33::-;49777:40;;49928:12;;49891;;49884:4;:19;;;;:::i;:::-;49883:57;;;;:::i;:::-;49836:22;;:104;;;;;;;:::i;:::-;;;;-1:-1:-1;;50002:12:0;;49986;;49979:19;;:4;:19;:::i;:::-;49978:36;;;;:::i;:::-;49959:15;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;50076:12:0;;50062:10;;50055:17;;:4;:17;:::i;:::-;50054:34;;;;:::i;:::-;50033:17;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;49701:403:0;50124:8;;50120:91;;50153:42;50169:4;50183;50190;50153:15;:42::i;:::-;50227:14;50237:4;50227:14;;:::i;:::-;;;49192:1061;50265:33;50281:4;50287:2;50291:6;50265:15;:33::i;:::-;-1:-1:-1;;50325:11:0;;50309:13;:27;-1:-1:-1;;;;;46444:3900:0:o;3958:132::-;3866:6;;-1:-1:-1;;;;;3866:6:0;2418:10;4022:23;4014:68;;;;-1:-1:-1;;;4014:68:0;;16476:2:1;4014:68:0;;;16458:21:1;;;16495:18;;;16488:30;16554:34;16534:18;;;16527:62;16606:18;;4014:68:0;16274:356:1;18874:675:0;-1:-1:-1;;;;;18958:21:0;;18950:67;;;;-1:-1:-1;;;18950:67:0;;16837:2:1;18950:67:0;;;16819:21:1;16876:2;16856:18;;;16849:30;16915:34;16895:18;;;16888:62;-1:-1:-1;;;16966:18:1;;;16959:31;17007:19;;18950:67:0;16635:397:1;18950:67:0;-1:-1:-1;;;;;19117:18:0;;19092:22;19117:18;;;;;;;;;;;19154:24;;;;19146:71;;;;-1:-1:-1;;;19146:71:0;;17239:2:1;19146:71:0;;;17221:21:1;17278:2;17258:18;;;17251:30;17317:34;17297:18;;;17290:62;-1:-1:-1;;;17368:18:1;;;17361:32;17410:19;;19146:71:0;17037:398:1;19146:71:0;-1:-1:-1;;;;;19253:18:0;;:9;:18;;;;;;;;;;;19274:23;;;19253:44;;19392:12;:22;;;;;;;19443:37;1596:25:1;;;19253:9:0;;:18;19443:37;;1569:18:1;19443:37:0;;;;;;;43154:412;;;:::o;5090:191::-;5183:6;;;-1:-1:-1;;;;;5200:17:0;;;-1:-1:-1;;;;;;5200:17:0;;;;;;;5233:40;;5183:6;;;5200:17;5183:6;;5233:40;;5164:16;;5233:40;5153:128;5090:191;:::o;45993:188::-;-1:-1:-1;;;;;46076:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;46076:39:0;;;;;;;;;;46133:40;;46076:39;;:31;46133:40;;;45993:188;;:::o;16829:877::-;-1:-1:-1;;;;;16960:18:0;;16952:68;;;;-1:-1:-1;;;16952:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17039:16:0;;17031:64;;;;-1:-1:-1;;;17031:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17181:15:0;;17159:19;17181:15;;;;;;;;;;;17229:21;;;;17207:109;;;;-1:-1:-1;;;17207:109:0;;17642:2:1;17207:109:0;;;17624:21:1;17681:2;17661:18;;;17654:30;17720:34;17700:18;;;17693:62;-1:-1:-1;;;17771:18:1;;;17764:36;17817:19;;17207:109:0;17440:402:1;17207:109:0;-1:-1:-1;;;;;17352:15:0;;;:9;:15;;;;;;;;;;;17370:20;;;17352:38;;17570:13;;;;;;;;;;:23;;;;;;17622:26;;1596:25:1;;;17570:13:0;;17622:26;;1569:18:1;17622:26:0;;;;;;;17661:37;43154:412;50835:1206;50918:4;50874:23;12505:18;;;;;;;;;;;50874:50;;50935:25;51032:17;;51001:15;;50963:22;;:53;;;;:::i;:::-;:86;;;;:::i;:::-;50935:114;-1:-1:-1;51060:12:0;51089:20;;;:46;;-1:-1:-1;51113:22:0;;51089:46;51085:85;;;51152:7;;;50835:1206::o;51085:85::-;51204:18;;:23;;51225:2;51204:23;:::i;:::-;51186:15;:41;51182:115;;;51262:18;;:23;;51283:2;51262:23;:::i;:::-;51244:41;;51182:115;51309:33;51326:15;51309:16;:33::i;:::-;51355:18;51376:21;51355:42;;51410:22;51435:80;51487:17;51435:33;51450:17;;51435:10;:14;;:33;;;;:::i;:80::-;51410:105;;51528:27;51558:89;51629:17;51558:52;51587:22;;51558:10;:28;;:52;;;;:::i;:89::-;51678:1;51660:15;:19;;;51690:17;:21;;;51722:22;:26;;;51783:7;;51775:77;;51528:119;;-1:-1:-1;;;;;;51783:7:0;;51528:119;;51775:77;51678:1;51775:77;51528:119;51783:7;51775:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51887:7:0;;51879:48;;51761:91;;-1:-1:-1;;;;;;51887:7:0;;51908:14;;51879:48;;;;51908:14;51887:7;51879:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51962:7:0;;51954:79;;51865:62;;-1:-1:-1;;;;;;51962:7:0;;51997:21;;51954:79;;;;51997:21;51962:7;51954:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;50835:1206:0:o;26335:98::-;26393:7;26420:5;26424:1;26420;:5;:::i;:::-;26413:12;26335:98;-1:-1:-1;;;26335:98:0:o;26734:::-;26792:7;26819:5;26823:1;26819;:5;:::i;50352:475::-;50442:16;;;50456:1;50442:16;;;;;;;;50418:21;;50442:16;;;;;;;;;;-1:-1:-1;50442:16:0;50418:40;;50487:4;50469;50474:1;50469:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;50469:23:0;;;-1:-1:-1;;;;;50469:23:0;;;;;50513:15;-1:-1:-1;;;;;50513:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50503:4;50508:1;50503:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50503:32:0;;;-1:-1:-1;;;;;50503:32:0;;;;;50548:62;50565:4;50580:15;50598:11;50548:8;:62::i;:::-;50623:196;;-1:-1:-1;;;50623:196:0;;-1:-1:-1;;;;;50623:15:0;:66;;;;:196;;50704:11;;50730:1;;50746:4;;50773;;50793:15;;50623:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50407:420;50352:475;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2301:247::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2468:9;2455:23;2487:31;2512:5;2487:31;:::i;2742:180::-;2801:6;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;-1:-1:-1;2893:23:1;;2742:180;-1:-1:-1;2742:180:1:o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:248::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;-1:-1:-1;;3926:23:1;;;3996:2;3981:18;;;3968:32;;-1:-1:-1;3758:248:1:o;4011:750::-;4103:6;4111;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4228:9;4215:23;4257:18;4298:2;4290:6;4287:14;4284:34;;;4314:1;4311;4304:12;4284:34;4352:6;4341:9;4337:22;4327:32;;4397:7;4390:4;4386:2;4382:13;4378:27;4368:55;;4419:1;4416;4409:12;4368:55;4459:2;4446:16;4485:2;4477:6;4474:14;4471:34;;;4501:1;4498;4491:12;4471:34;4556:7;4549:4;4539:6;4536:1;4532:14;4528:2;4524:23;4520:34;4517:47;4514:67;;;4577:1;4574;4567:12;4514:67;4608:4;4600:13;;;;-1:-1:-1;4632:6:1;-1:-1:-1;;4673:20:1;;4660:34;4703:28;4660:34;4703:28;:::i;:::-;4750:5;4740:15;;;4011:750;;;;;:::o;4766:388::-;4834:6;4842;4895:2;4883:9;4874:7;4870:23;4866:32;4863:52;;;4911:1;4908;4901:12;4863:52;4950:9;4937:23;4969:31;4994:5;4969:31;:::i;:::-;5019:5;-1:-1:-1;5076:2:1;5061:18;;5048:32;5089:33;5048:32;5089:33;:::i;5159:380::-;5238:1;5234:12;;;;5281;;;5302:61;;5356:4;5348:6;5344:17;5334:27;;5302:61;5409:2;5401:6;5398:14;5378:18;5375:38;5372:161;;5455:10;5450:3;5446:20;5443:1;5436:31;5490:4;5487:1;5480:15;5518:4;5515:1;5508:15;5372:161;;5159:380;;;:::o;5544:340::-;5746:2;5728:21;;;5785:2;5765:18;;;5758:30;-1:-1:-1;;;5819:2:1;5804:18;;5797:46;5875:2;5860:18;;5544:340::o;5889:127::-;5950:10;5945:3;5941:20;5938:1;5931:31;5981:4;5978:1;5971:15;6005:4;6002:1;5995:15;6021:125;6086:9;;;6107:10;;;6104:36;;;6120:18;;:::i;6151:400::-;6353:2;6335:21;;;6392:2;6372:18;;;6365:30;6431:34;6426:2;6411:18;;6404:62;-1:-1:-1;;;6497:2:1;6482:18;;6475:34;6541:3;6526:19;;6151:400::o;6908:251::-;6978:6;7031:2;7019:9;7010:7;7006:23;7002:32;6999:52;;;7047:1;7044;7037:12;6999:52;7079:9;7073:16;7098:31;7123:5;7098:31;:::i;7752:245::-;7819:6;7872:2;7860:9;7851:7;7847:23;7843:32;7840:52;;;7888:1;7885;7878:12;7840:52;7920:9;7914:16;7939:28;7961:5;7939:28;:::i;8002:168::-;8075:9;;;8106;;8123:15;;;8117:22;;8103:37;8093:71;;8144:18;;:::i;8175:217::-;8215:1;8241;8231:132;;8285:10;8280:3;8276:20;8273:1;8266:31;8320:4;8317:1;8310:15;8348:4;8345:1;8338:15;8231:132;-1:-1:-1;8377:9:1;;8175:217::o;9973:127::-;10034:10;10029:3;10025:20;10022:1;10015:31;10065:4;10062:1;10055:15;10089:4;10086:1;10079:15;10105:135;10144:3;10165:17;;;10162:43;;10185:18;;:::i;:::-;-1:-1:-1;10232:1:1;10221:13;;10105:135::o;10245:184::-;10315:6;10368:2;10356:9;10347:7;10343:23;10339:32;10336:52;;;10384:1;10381;10374:12;10336:52;-1:-1:-1;10407:16:1;;10245:184;-1:-1:-1;10245:184:1:o;13411:401::-;13613:2;13595:21;;;13652:2;13632:18;;;13625:30;13691:34;13686:2;13671:18;;13664:62;-1:-1:-1;;;13757:2:1;13742:18;;13735:35;13802:3;13787:19;;13411:401::o;13817:399::-;14019:2;14001:21;;;14058:2;14038:18;;;14031:30;14097:34;14092:2;14077:18;;14070:62;-1:-1:-1;;;14163:2:1;14148:18;;14141:33;14206:3;14191:19;;13817:399::o;14221:343::-;14423:2;14405:21;;;14462:2;14442:18;;;14435:30;-1:-1:-1;;;14496:2:1;14481:18;;14474:49;14555:2;14540:18;;14221:343::o;16141:128::-;16208:9;;;16229:11;;;16226:37;;;16243:18;;:::i;17979:980::-;18241:4;18289:3;18278:9;18274:19;18320:6;18309:9;18302:25;18346:2;18384:6;18379:2;18368:9;18364:18;18357:34;18427:3;18422:2;18411:9;18407:18;18400:31;18451:6;18486;18480:13;18517:6;18509;18502:22;18555:3;18544:9;18540:19;18533:26;;18594:2;18586:6;18582:15;18568:29;;18615:1;18625:195;18639:6;18636:1;18633:13;18625:195;;;18704:13;;-1:-1:-1;;;;;18700:39:1;18688:52;;18795:15;;;;18760:12;;;;18736:1;18654:9;18625:195;;;-1:-1:-1;;;;;;;18876:32:1;;;;18871:2;18856:18;;18849:60;-1:-1:-1;;;18940:3:1;18925:19;18918:35;18837:3;17979:980;-1:-1:-1;;;17979:980:1:o
Swarm Source
ipfs://1fe4726d0a6f0ea4b9a70103d86b0a869bbd5987d6abd637b198d3db67ab6058
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.