ERC-20
Overview
Max Total Supply
1,000,000 LOWIQ
Holders
224
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,662.98321998335892296 LOWIQValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LowIQ
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // // // // LLLLLLLLLLL OOOOOOOOO WWWWWWWW WWWWWWWW IIIIIIIIII QQQQQQQQQ // L:::::::::L OO:::::::::OO W::::::W W::::::W I::::::::I QQ:::::::::QQ // L:::::::::L OO:::::::::::::OO W::::::W W::::::W I::::::::I QQ:::::::::::::QQ // LL:::::::LL O:::::::OOO:::::::OW::::::W W::::::W II::::::IIQ:::::::QQQ:::::::Q // L:::::L O::::::O O::::::O W:::::W WWWWW W:::::W I::::I Q::::::O Q::::::Q // L:::::L O:::::O O:::::O W:::::W W:::::W W:::::W I::::I Q:::::O Q:::::Q // L:::::L O:::::O O:::::O W:::::W W:::::::W W:::::W I::::I Q:::::O Q:::::Q // L:::::L O:::::O O:::::O W:::::W W:::::::::W W:::::W I::::I Q:::::O Q:::::Q // L:::::L O:::::O O:::::O W:::::W W:::::W:::::W W:::::W I::::I Q:::::O Q:::::Q // L:::::L O:::::O O:::::O W:::::W W:::::W W:::::W W:::::W I::::I Q:::::O Q:::::Q // L:::::L O:::::O O:::::O W:::::W:::::W W:::::W:::::W I::::I Q:::::O QQQQ:::::Q // L:::::L LLLLLLO::::::O O::::::O W:::::::::W W:::::::::W I::::I Q::::::O Q::::::::Q // LL:::::::LLLLLLLLL:::::LO:::::::OOO:::::::O W:::::::W W:::::::W II::::::IIQ:::::::QQ::::::::Q // L::::::::::::::::::::::L OO:::::::::::::OO W:::::W W:::::W I::::::::I QQ::::::::::::::Q // L::::::::::::::::::::::L OO:::::::::OO W:::W W:::W I::::::::I QQ:::::::::::Q // LLLLLLLLLLLLLLLLLLLLLLLL OOOOOOOOO WWW WWW IIIIIIIIII QQQQQQQQ::::QQ // Q:::::Q // QQQQQ // // // Angel Intelligence Low IQ Milady Princess Disorder // // https://lowiq.online/ // https://t.me/lowiqerc // https://twitter.com/LOWIQERC // pragma solidity 0.8.20; /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function 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; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract LowIQ is ERC20, Ownable { IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public immutable revShareWallet; uint256 public maxTransactionAmount; uint256 immutable 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 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; // Exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // Store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("LowIQ", "LOWIQ") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //Uniswap V2 Router ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; // Creates the Uniswap Pair uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 30; // Lowered to 4% after launch uint256 _buyLiquidityFee = 0; // Lowered to 1% after launch uint256 _sellRevShareFee = 30; // Lowered to 4% after launch uint256 _sellLiquidityFee = 0; // Lowered to 1% after launch uint256 totalSupply = 1_000_000 * 1e18; // 1 million maxTransactionAmount = 5000 * 1e18; // 0.5% maxWallet = 10000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyRevShareFee + buyLiquidityFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellRevShareFee + sellLiquidityFee; revShareWallet = address(0x7539Bd0E263892C22F566926cC686Ca66F0d7fFe); // Set as revShare wallet - Helper Contract // Exclude from paying fees or having max transaction amount if; is owner, is deployer, is dead address. excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // Will enable trading, once this is toggeled, it will not be able to be turned off. function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // Trigger this post launch once price is more stable. Made to avoid whales and snipers hogging supply. function updateLimitsAndFees() external onlyOwner { maxTransactionAmount = 10_000 * (10**18); // 1% maxWallet = 25_000 * (10**18); // 2.5% buyRevShareFee = 4; // 4% buyLiquidityFee = 1; // 1% buyTotalFees = 5; sellRevShareFee = 4; // 4% sellLiquidityFee = 1; // 1% sellTotalFees = 5; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } 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],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // Buying if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } // Selling else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // If any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // Only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // Sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // Buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // Generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // Make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // Accept any amount of ETH; ignore slippage path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // Slippage is unavoidable 0, // Slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance - liquidityTokens; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance - initialETHBalance; uint256 ethForRevShare = (ethBalance * tokensForRevShare) / (totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } tokensForLiquidity = 0; tokensForRevShare = 0; (success, ) = address(revShareWallet).call{value: address(this).balance}(""); } // The helper contract will also be used to be able to call the 5 functions below. // Any functions that have to do with ETH or Tokens will be sent directly to the helper contract. // This means that the split of 80% to the team, and 20% to the holders is intact. modifier onlyHelper() { require(revShareWallet == _msgSender(), "Token: caller is not the Helper"); _; } // @Helper - Callable by Helper contract in-case tokens get's stuck in the token contract. function withdrawStuckToken(address _token, address _to) external onlyHelper { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } // @Helper - Callable by Helper contract in-case ETH get's stuck in the token contract. function withdrawStuckEth(address toAddr) external onlyHelper { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @Helper - Blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyHelper { require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @Helper - Unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyHelper { blacklisted[_addr] = false; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":[],"name":"updateLimitsAndFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101006040525f60085f6101000a81548160ff0219169083151502179055505f600860016101000a81548160ff02191690831515021790555034801562000044575f80fd5b506040518060400160405280600581526020017f4c6f7749510000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4f5749510000000000000000000000000000000000000000000000000000008152508160039081620000c2919062000c44565b508060049081620000d4919062000c44565b505050620000f7620000eb620004b860201b60201c565b620004bf60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001228160016200058260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c6919062000d8d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000252919062000d8d565b6040518363ffffffff1660e01b81526004016200027192919062000dce565b6020604051808303815f875af11580156200028e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b4919062000d8d565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620002fc60a05160016200058260201b60201c565b6200031160a05160016200066960201b60201c565b5f601e90505f80601e90505f8069d3c21bcecceda1000000905069010f0cf064dd5920000060068190555069021e19e0c9bab24000006007819055506127106005826200035f919062000e26565b6200036b919062000e9d565b60e0818152505084600b8190555083600c81905550600c54600b5462000392919062000ed4565b600a8190555082600e8190555081600f81905550600f54600e54620003b8919062000ed4565b600d81905550737539bd0e263892c22f566926cc686ca66f0d7ffe73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050620004286200041a6200070760201b60201c565b60016200072f60201b60201c565b6200043b3060016200072f60201b60201c565b6200045061dead60016200072f60201b60201c565b62000472620004646200070760201b60201c565b60016200058260201b60201c565b620004853060016200058260201b60201c565b6200049a61dead60016200058260201b60201c565b620004ac33826200086660201b60201c565b5050505050506200105d565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000592620004b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005b86200070760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006089062000f6c565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200073f620004b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007656200070760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b59062000f6c565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200085a919062000fa8565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ce9062001011565b60405180910390fd5b620008ea5f8383620009d660201b60201c565b8060025f828254620008fd919062000ed4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000951919062000ed4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009b7919062001042565b60405180910390a3620009d25f8383620009db60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a5c57607f821691505b60208210810362000a725762000a7162000a17565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000ad67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a99565b62000ae2868362000a99565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b2c62000b2662000b208462000afa565b62000b03565b62000afa565b9050919050565b5f819050919050565b62000b478362000b0c565b62000b5f62000b568262000b33565b84845462000aa5565b825550505050565b5f90565b62000b7562000b67565b62000b8281848462000b3c565b505050565b5b8181101562000ba95762000b9d5f8262000b6b565b60018101905062000b88565b5050565b601f82111562000bf85762000bc28162000a78565b62000bcd8462000a8a565b8101602085101562000bdd578190505b62000bf562000bec8562000a8a565b83018262000b87565b50505b505050565b5f82821c905092915050565b5f62000c1a5f198460080262000bfd565b1980831691505092915050565b5f62000c34838362000c09565b9150826002028217905092915050565b62000c4f82620009e0565b67ffffffffffffffff81111562000c6b5762000c6a620009ea565b5b62000c77825462000a44565b62000c8482828562000bad565b5f60209050601f83116001811462000cba575f841562000ca5578287015190505b62000cb1858262000c27565b86555062000d20565b601f19841662000cca8662000a78565b5f5b8281101562000cf35784890151825560018201915060208501945060208101905062000ccc565b8683101562000d13578489015162000d0f601f89168262000c09565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d578262000d2c565b9050919050565b62000d698162000d4b565b811462000d74575f80fd5b50565b5f8151905062000d878162000d5e565b92915050565b5f6020828403121562000da55762000da462000d28565b5b5f62000db48482850162000d77565b91505092915050565b62000dc88162000d4b565b82525050565b5f60408201905062000de35f83018562000dbd565b62000df2602083018462000dbd565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000e328262000afa565b915062000e3f8362000afa565b925082820262000e4f8162000afa565b9150828204841483151762000e695762000e6862000df9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ea98262000afa565b915062000eb68362000afa565b92508262000ec95762000ec862000e70565b5b828204905092915050565b5f62000ee08262000afa565b915062000eed8362000afa565b925082820190508082111562000f085762000f0762000df9565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000f5460208362000f0e565b915062000f618262000f1e565b602082019050919050565b5f6020820190508181035f83015262000f858162000f46565b9050919050565b5f8115159050919050565b62000fa28162000f8c565b82525050565b5f60208201905062000fbd5f83018462000f97565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ff9601f8362000f0e565b9150620010068262000fc3565b602082019050919050565b5f6020820190508181035f8301526200102a8162000feb565b9050919050565b6200103c8162000afa565b82525050565b5f602082019050620010575f83018462001031565b92915050565b60805160a05160c05160e051614533620010fa5f395f8181611ae90152818161251301528181612d6f0152612da301525f8181610ef101528181610fbf01528181611001015281816115900152818161193f0152612ed101525f8181610ca4015281816112d401526119b601525f8181610ac40152818161300b015281816130ea01528181613111015281816131a701526131ce01526145335ff3fe60806040526004361061025f575f3560e01c80637ca8448a11610143578063c0246668116100b5578063e2f4560511610079578063e2f45605146108e6578063f11a24d314610910578063f2fde38b1461093a578063f637434214610962578063f8b45b051461098c578063fe575a87146109b657610266565b8063c024666814610806578063c8c8ebe41461082e578063d85ba06314610858578063dd62ed3e14610882578063e19b2823146108be57610266565b80639c6868af116101075780639c6868af146106ea578063a457c2d714610700578063a9059cbb1461073c578063b62496f514610778578063bbc0c742146107b4578063bc205ad3146107de57610266565b80637ca8448a146106305780638a8c523c146106585780638da5cb5b1461066e57806395d89b41146106985780639a7a23d6146106c257610266565b8063313ce567116101dc5780636ddd1713116101a05780636ddd17131461053a57806370a0823114610564578063715018a6146105a05780637571336a146105b657806375e3661e146105de578063782c4e991461060657610266565b8063313ce56714610444578063395093511461046e57806349bd5a5e146104aa5780634fbee193146104d45780636a486a8e1461051057610266565b806318160ddd1161022357806318160ddd1461036057806319eab0421461038a5780631a8145bb146103b457806323b872dd146103de57806324b9f3c11461041a57610266565b806306fdde031461026a578063095ea7b31461029457806310d5de53146102d0578063156c2f351461030c5780631694505e1461033657610266565b3661026657005b5f80fd5b348015610275575f80fd5b5061027e6109f2565b60405161028b9190613309565b60405180910390f35b34801561029f575f80fd5b506102ba60048036038101906102b591906133ba565b610a82565b6040516102c79190613412565b60405180910390f35b3480156102db575f80fd5b506102f660048036038101906102f1919061342b565b610a9f565b6040516103039190613412565b60405180910390f35b348015610317575f80fd5b50610320610abc565b60405161032d9190613465565b60405180910390f35b348015610341575f80fd5b5061034a610ac2565b60405161035791906134d9565b60405180910390f35b34801561036b575f80fd5b50610374610ae6565b6040516103819190613465565b60405180910390f35b348015610395575f80fd5b5061039e610aef565b6040516103ab9190613465565b60405180910390f35b3480156103bf575f80fd5b506103c8610af5565b6040516103d59190613465565b60405180910390f35b3480156103e9575f80fd5b5061040460048036038101906103ff91906134f2565b610afb565b6040516104119190613412565b60405180910390f35b348015610425575f80fd5b5061042e610bed565b60405161043b9190613465565b60405180910390f35b34801561044f575f80fd5b50610458610bf3565b604051610465919061355d565b60405180910390f35b348015610479575f80fd5b50610494600480360381019061048f91906133ba565b610bfb565b6040516104a19190613412565b60405180910390f35b3480156104b5575f80fd5b506104be610ca2565b6040516104cb9190613585565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f5919061342b565b610cc6565b6040516105079190613412565b60405180910390f35b34801561051b575f80fd5b50610524610d18565b6040516105319190613465565b60405180910390f35b348015610545575f80fd5b5061054e610d1e565b60405161055b9190613412565b60405180910390f35b34801561056f575f80fd5b5061058a6004803603810190610585919061342b565b610d31565b6040516105979190613465565b60405180910390f35b3480156105ab575f80fd5b506105b4610d76565b005b3480156105c1575f80fd5b506105dc60048036038101906105d791906135c8565b610dfd565b005b3480156105e9575f80fd5b5061060460048036038101906105ff919061342b565b610ed1565b005b348015610611575f80fd5b5061061a610fbd565b6040516106279190613585565b60405180910390f35b34801561063b575f80fd5b506106566004803603810190610651919061342b565b610fe1565b005b348015610663575f80fd5b5061066c6110eb565b005b348015610679575f80fd5b5061068261119e565b60405161068f9190613585565b60405180910390f35b3480156106a3575f80fd5b506106ac6111c6565b6040516106b99190613309565b60405180910390f35b3480156106cd575f80fd5b506106e860048036038101906106e391906135c8565b611256565b005b3480156106f5575f80fd5b506106fe61136e565b005b34801561070b575f80fd5b50610726600480360381019061072191906133ba565b61143e565b6040516107339190613412565b60405180910390f35b348015610747575f80fd5b50610762600480360381019061075d91906133ba565b611524565b60405161076f9190613412565b60405180910390f35b348015610783575f80fd5b5061079e6004803603810190610799919061342b565b611541565b6040516107ab9190613412565b60405180910390f35b3480156107bf575f80fd5b506107c861155e565b6040516107d59190613412565b60405180910390f35b3480156107e9575f80fd5b5061080460048036038101906107ff9190613606565b611570565b005b348015610811575f80fd5b5061082c600480360381019061082791906135c8565b61176f565b005b348015610839575f80fd5b50610842611891565b60405161084f9190613465565b60405180910390f35b348015610863575f80fd5b5061086c611897565b6040516108799190613465565b60405180910390f35b34801561088d575f80fd5b506108a860048036038101906108a39190613606565b61189d565b6040516108b59190613465565b60405180910390f35b3480156108c9575f80fd5b506108e460048036038101906108df919061342b565b61191f565b005b3480156108f1575f80fd5b506108fa611ae7565b6040516109079190613465565b60405180910390f35b34801561091b575f80fd5b50610924611b0b565b6040516109319190613465565b60405180910390f35b348015610945575f80fd5b50610960600480360381019061095b919061342b565b611b11565b005b34801561096d575f80fd5b50610976611c07565b6040516109839190613465565b60405180910390f35b348015610997575f80fd5b506109a0611c0d565b6040516109ad9190613465565b60405180910390f35b3480156109c1575f80fd5b506109dc60048036038101906109d7919061342b565b611c13565b6040516109e99190613412565b60405180910390f35b606060038054610a0190613671565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2d90613671565b8015610a785780601f10610a4f57610100808354040283529160200191610a78565b820191905f5260205f20905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b5f610a95610a8e611c65565b8484611c6c565b6001905092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b600b5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b600e5481565b60115481565b5f610b07848484611e2f565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b4e611c65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490613711565b60405180910390fd5b610be185610bd9611c65565b858403611c6c565b60019150509392505050565b60105481565b5f6012905090565b5f610c98610c07611c65565b848460015f610c14611c65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c93919061375c565b611c6c565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b600860019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d7e611c65565b73ffffffffffffffffffffffffffffffffffffffff16610d9c61119e565b73ffffffffffffffffffffffffffffffffffffffff1614610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de9906137d9565b60405180910390fd5b610dfb5f61295b565b565b610e05611c65565b73ffffffffffffffffffffffffffffffffffffffff16610e2361119e565b73ffffffffffffffffffffffffffffffffffffffff1614610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906137d9565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610ed9611c65565b73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90613841565b60405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610fe9611c65565b73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613841565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161109b9061388c565b5f6040518083038185875af1925050503d805f81146110d5576040519150601f19603f3d011682016040523d82523d5f602084013e6110da565b606091505b50509050806110e7575f80fd5b5050565b6110f3611c65565b73ffffffffffffffffffffffffffffffffffffffff1661111161119e565b73ffffffffffffffffffffffffffffffffffffffff1614611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906137d9565b60405180910390fd5b600160085f6101000a81548160ff0219169083151502179055506001600860016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111d590613671565b80601f016020809104026020016040519081016040528092919081815260200182805461120190613671565b801561124c5780601f106112235761010080835404028352916020019161124c565b820191905f5260205f20905b81548152906001019060200180831161122f57829003601f168201915b5050505050905090565b61125e611c65565b73ffffffffffffffffffffffffffffffffffffffff1661127c61119e565b73ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c9906137d9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613910565b60405180910390fd5b61136a8282612a1e565b5050565b611376611c65565b73ffffffffffffffffffffffffffffffffffffffff1661139461119e565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e1906137d9565b60405180910390fd5b69021e19e0c9bab240000060068190555069054b40b1f852bda000006007819055506004600b819055506001600c819055506005600a819055506004600e819055506001600f819055506005600d81905550565b5f8060015f61144b611c65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061399e565b60405180910390fd5b611519611510611c65565b85858403611c6c565b600191505092915050565b5f611537611530611c65565b8484611e2f565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b60085f9054906101000a900460ff1681565b611578611c65565b73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613841565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613a06565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116ad9190613585565b602060405180830381865afa1580156116c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ec9190613a38565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611729929190613a63565b6020604051808303815f875af1158015611745573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117699190613a9e565b50505050565b611777611c65565b73ffffffffffffffffffffffffffffffffffffffff1661179561119e565b73ffffffffffffffffffffffffffffffffffffffff16146117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906137d9565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118859190613412565b60405180910390a25050565b60065481565b600a5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611927611c65565b73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613841565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611a505750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613b39565b60405180910390fd5b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5481565b611b19611c65565b73ffffffffffffffffffffffffffffffffffffffff16611b3761119e565b73ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906137d9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290613bc7565b60405180910390fd5b611c048161295b565b50565b600f5481565b60075481565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613c55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90613ce3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e229190613465565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490613d71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290613dff565b60405180910390fd5b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8c90613e67565b60405180910390fd5b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690613ecf565b60405180910390fd5b5f81036120365761203183835f612abc565b612956565b61203e61119e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120ac575061207c61119e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120e457505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121375750600560149054906101000a900460ff16155b156125045760085f9054906101000a900460ff1661222a5760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806121ea575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090613f37565b60405180910390fd5b5b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122c7575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561236e57600654811115612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890613fc5565b60405180910390fd5b60075461231d83610d31565b82612328919061375c565b1115612369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123609061402d565b60405180910390fd5b612503565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561240b575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561245a57600654811115612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c906140bb565b60405180910390fd5b612502565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612501576007546124b483610d31565b826124bf919061375c565b1115612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f79061402d565b60405180910390fd5b5b5b5b5b5f61250e30610d31565b90505f7f000000000000000000000000000000000000000000000000000000000000000082101590508080156125505750600860019054906101000a900460ff165b80156125695750600560149054906101000a900460ff16155b80156125bc575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561260f575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612662575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126a5576001600560146101000a81548160ff02191690831515021790555061268a612d31565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612754575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561275d575f90505b5f81156129465760145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156127bb57505f600d54115b15612845576064600d54866127d091906140d9565b6127da9190614147565b9050600d54600f54826127ed91906140d9565b6127f79190614147565b60115f828254612807919061375c565b92505081905550600d54600e548261281f91906140d9565b6128299190614147565b60105f828254612839919061375c565b92505081905550612923565b60145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561289c57505f600a54115b15612922576064600a54866128b191906140d9565b6128bb9190614147565b9050600a54600c54826128ce91906140d9565b6128d89190614147565b60115f8282546128e8919061375c565b92505081905550600a54600b548261290091906140d9565b61290a9190614147565b60105f82825461291a919061375c565b925050819055505b5b5f81111561293757612936873083612abc565b5b80856129439190614177565b94505b612951878787612abc565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2190613d71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8f90613dff565b60405180910390fd5b612ba3838383612f64565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1d9061421a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612cb4919061375c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d189190613465565b60405180910390a3612d2b848484612f69565b50505050565b5f612d3b30610d31565b90505f601054601154612d4e919061375c565b90505f80831480612d5e57505f82145b15612d6b57505050612f62565b60147f0000000000000000000000000000000000000000000000000000000000000000612d9891906140d9565b831115612dcf5760147f0000000000000000000000000000000000000000000000000000000000000000612dcc91906140d9565b92505b5f60028360115486612de191906140d9565b612deb9190614147565b612df59190614147565b90505f8185612e049190614177565b90505f479050612e1382612f6e565b5f8147612e209190614177565b90505f6002601154612e329190614147565b87612e3d9190614177565b60105483612e4b91906140d9565b612e559190614147565b90505f8183612e649190614177565b90505f86118015612e7457505f81115b15612ec157612e8386826131a1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601154604051612eb893929190614238565b60405180910390a15b5f6011819055505f6010819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1647604051612f139061388c565b5f6040518083038185875af1925050503d805f8114612f4d576040519150601f19603f3d011682016040523d82523d5f602084013e612f52565b606091505b5050809750505050505050505050505b565b505050565b505050565b5f600267ffffffffffffffff811115612f8a57612f8961426d565b5b604051908082528060200260200182016040528015612fb85781602001602082028036833780820191505090505b50905030815f81518110612fcf57612fce61429a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613072573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061309691906142db565b816001815181106130aa576130a961429a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061310f307f000000000000000000000000000000000000000000000000000000000000000084611c6c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016131709594939291906143f6565b5f604051808303815f87803b158015613187575f80fd5b505af1158015613199573d5f803e3d5ffd5b505050505050565b6131cc307f000000000000000000000000000000000000000000000000000000000000000084611c6c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061321561119e565b426040518863ffffffff1660e01b81526004016132379695949392919061444e565b60606040518083038185885af1158015613253573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061327891906144ad565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156132b657808201518184015260208101905061329b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6132db8261327f565b6132e58185613289565b93506132f5818560208601613299565b6132fe816132c1565b840191505092915050565b5f6020820190508181035f83015261332181846132d1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6133568261332d565b9050919050565b6133668161334c565b8114613370575f80fd5b50565b5f813590506133818161335d565b92915050565b5f819050919050565b61339981613387565b81146133a3575f80fd5b50565b5f813590506133b481613390565b92915050565b5f80604083850312156133d0576133cf613329565b5b5f6133dd85828601613373565b92505060206133ee858286016133a6565b9150509250929050565b5f8115159050919050565b61340c816133f8565b82525050565b5f6020820190506134255f830184613403565b92915050565b5f602082840312156134405761343f613329565b5b5f61344d84828501613373565b91505092915050565b61345f81613387565b82525050565b5f6020820190506134785f830184613456565b92915050565b5f819050919050565b5f6134a161349c6134978461332d565b61347e565b61332d565b9050919050565b5f6134b282613487565b9050919050565b5f6134c3826134a8565b9050919050565b6134d3816134b9565b82525050565b5f6020820190506134ec5f8301846134ca565b92915050565b5f805f6060848603121561350957613508613329565b5b5f61351686828701613373565b935050602061352786828701613373565b9250506040613538868287016133a6565b9150509250925092565b5f60ff82169050919050565b61355781613542565b82525050565b5f6020820190506135705f83018461354e565b92915050565b61357f8161334c565b82525050565b5f6020820190506135985f830184613576565b92915050565b6135a7816133f8565b81146135b1575f80fd5b50565b5f813590506135c28161359e565b92915050565b5f80604083850312156135de576135dd613329565b5b5f6135eb85828601613373565b92505060206135fc858286016135b4565b9150509250929050565b5f806040838503121561361c5761361b613329565b5b5f61362985828601613373565b925050602061363a85828601613373565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061368857607f821691505b60208210810361369b5761369a613644565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6136fb602883613289565b9150613706826136a1565b604082019050919050565b5f6020820190508181035f830152613728816136ef565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61376682613387565b915061377183613387565b92508282019050808211156137895761378861372f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6137c3602083613289565b91506137ce8261378f565b602082019050919050565b5f6020820190508181035f8301526137f0816137b7565b9050919050565b7f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c706572005f82015250565b5f61382b601f83613289565b9150613836826137f7565b602082019050919050565b5f6020820190508181035f8301526138588161381f565b9050919050565b5f81905092915050565b50565b5f6138775f8361385f565b915061388282613869565b5f82019050919050565b5f6138968261386c565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6138fa603983613289565b9150613905826138a0565b604082019050919050565b5f6020820190508181035f830152613927816138ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613988602583613289565b91506139938261392e565b604082019050919050565b5f6020820190508181035f8301526139b58161397c565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6139f0601a83613289565b91506139fb826139bc565b602082019050919050565b5f6020820190508181035f830152613a1d816139e4565b9050919050565b5f81519050613a3281613390565b92915050565b5f60208284031215613a4d57613a4c613329565b5b5f613a5a84828501613a24565b91505092915050565b5f604082019050613a765f830185613576565b613a836020830184613456565b9392505050565b5f81519050613a988161359e565b92915050565b5f60208284031215613ab357613ab2613329565b5b5f613ac084828501613a8a565b91505092915050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f613b23602e83613289565b9150613b2e82613ac9565b604082019050919050565b5f6020820190508181035f830152613b5081613b17565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613bb1602683613289565b9150613bbc82613b57565b604082019050919050565b5f6020820190508181035f830152613bde81613ba5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613c3f602483613289565b9150613c4a82613be5565b604082019050919050565b5f6020820190508181035f830152613c6c81613c33565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613ccd602283613289565b9150613cd882613c73565b604082019050919050565b5f6020820190508181035f830152613cfa81613cc1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613d5b602583613289565b9150613d6682613d01565b604082019050919050565b5f6020820190508181035f830152613d8881613d4f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613de9602383613289565b9150613df482613d8f565b604082019050919050565b5f6020820190508181035f830152613e1681613ddd565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f613e51601283613289565b9150613e5c82613e1d565b602082019050919050565b5f6020820190508181035f830152613e7e81613e45565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f613eb9601483613289565b9150613ec482613e85565b602082019050919050565b5f6020820190508181035f830152613ee681613ead565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613f21601683613289565b9150613f2c82613eed565b602082019050919050565b5f6020820190508181035f830152613f4e81613f15565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613faf603583613289565b9150613fba82613f55565b604082019050919050565b5f6020820190508181035f830152613fdc81613fa3565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614017601383613289565b915061402282613fe3565b602082019050919050565b5f6020820190508181035f8301526140448161400b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6140a5603683613289565b91506140b08261404b565b604082019050919050565b5f6020820190508181035f8301526140d281614099565b9050919050565b5f6140e382613387565b91506140ee83613387565b92508282026140fc81613387565b915082820484148315176141135761411261372f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61415182613387565b915061415c83613387565b92508261416c5761416b61411a565b5b828204905092915050565b5f61418182613387565b915061418c83613387565b92508282039050818111156141a4576141a361372f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614204602683613289565b915061420f826141aa565b604082019050919050565b5f6020820190508181035f830152614231816141f8565b9050919050565b5f60608201905061424b5f830186613456565b6142586020830185613456565b6142656040830184613456565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506142d58161335d565b92915050565b5f602082840312156142f0576142ef613329565b5b5f6142fd848285016142c7565b91505092915050565b5f819050919050565b5f61432961432461431f84614306565b61347e565b613387565b9050919050565b6143398161430f565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6143718161334c565b82525050565b5f6143828383614368565b60208301905092915050565b5f602082019050919050565b5f6143a48261433f565b6143ae8185614349565b93506143b983614359565b805f5b838110156143e95781516143d08882614377565b97506143db8361438e565b9250506001810190506143bc565b5085935050505092915050565b5f60a0820190506144095f830188613456565b6144166020830187614330565b8181036040830152614428818661439a565b90506144376060830185613576565b6144446080830184613456565b9695505050505050565b5f60c0820190506144615f830189613576565b61446e6020830188613456565b61447b6040830187614330565b6144886060830186614330565b6144956080830185613576565b6144a260a0830184613456565b979650505050505050565b5f805f606084860312156144c4576144c3613329565b5b5f6144d186828701613a24565b93505060206144e286828701613a24565b92505060406144f386828701613a24565b915050925092509256fea26469706673582212206efbb37f4948b399886901670be017883843d85c0848b670c70e964b0227d77e64736f6c63430008140033
Deployed Bytecode
0x60806040526004361061025f575f3560e01c80637ca8448a11610143578063c0246668116100b5578063e2f4560511610079578063e2f45605146108e6578063f11a24d314610910578063f2fde38b1461093a578063f637434214610962578063f8b45b051461098c578063fe575a87146109b657610266565b8063c024666814610806578063c8c8ebe41461082e578063d85ba06314610858578063dd62ed3e14610882578063e19b2823146108be57610266565b80639c6868af116101075780639c6868af146106ea578063a457c2d714610700578063a9059cbb1461073c578063b62496f514610778578063bbc0c742146107b4578063bc205ad3146107de57610266565b80637ca8448a146106305780638a8c523c146106585780638da5cb5b1461066e57806395d89b41146106985780639a7a23d6146106c257610266565b8063313ce567116101dc5780636ddd1713116101a05780636ddd17131461053a57806370a0823114610564578063715018a6146105a05780637571336a146105b657806375e3661e146105de578063782c4e991461060657610266565b8063313ce56714610444578063395093511461046e57806349bd5a5e146104aa5780634fbee193146104d45780636a486a8e1461051057610266565b806318160ddd1161022357806318160ddd1461036057806319eab0421461038a5780631a8145bb146103b457806323b872dd146103de57806324b9f3c11461041a57610266565b806306fdde031461026a578063095ea7b31461029457806310d5de53146102d0578063156c2f351461030c5780631694505e1461033657610266565b3661026657005b5f80fd5b348015610275575f80fd5b5061027e6109f2565b60405161028b9190613309565b60405180910390f35b34801561029f575f80fd5b506102ba60048036038101906102b591906133ba565b610a82565b6040516102c79190613412565b60405180910390f35b3480156102db575f80fd5b506102f660048036038101906102f1919061342b565b610a9f565b6040516103039190613412565b60405180910390f35b348015610317575f80fd5b50610320610abc565b60405161032d9190613465565b60405180910390f35b348015610341575f80fd5b5061034a610ac2565b60405161035791906134d9565b60405180910390f35b34801561036b575f80fd5b50610374610ae6565b6040516103819190613465565b60405180910390f35b348015610395575f80fd5b5061039e610aef565b6040516103ab9190613465565b60405180910390f35b3480156103bf575f80fd5b506103c8610af5565b6040516103d59190613465565b60405180910390f35b3480156103e9575f80fd5b5061040460048036038101906103ff91906134f2565b610afb565b6040516104119190613412565b60405180910390f35b348015610425575f80fd5b5061042e610bed565b60405161043b9190613465565b60405180910390f35b34801561044f575f80fd5b50610458610bf3565b604051610465919061355d565b60405180910390f35b348015610479575f80fd5b50610494600480360381019061048f91906133ba565b610bfb565b6040516104a19190613412565b60405180910390f35b3480156104b5575f80fd5b506104be610ca2565b6040516104cb9190613585565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f5919061342b565b610cc6565b6040516105079190613412565b60405180910390f35b34801561051b575f80fd5b50610524610d18565b6040516105319190613465565b60405180910390f35b348015610545575f80fd5b5061054e610d1e565b60405161055b9190613412565b60405180910390f35b34801561056f575f80fd5b5061058a6004803603810190610585919061342b565b610d31565b6040516105979190613465565b60405180910390f35b3480156105ab575f80fd5b506105b4610d76565b005b3480156105c1575f80fd5b506105dc60048036038101906105d791906135c8565b610dfd565b005b3480156105e9575f80fd5b5061060460048036038101906105ff919061342b565b610ed1565b005b348015610611575f80fd5b5061061a610fbd565b6040516106279190613585565b60405180910390f35b34801561063b575f80fd5b506106566004803603810190610651919061342b565b610fe1565b005b348015610663575f80fd5b5061066c6110eb565b005b348015610679575f80fd5b5061068261119e565b60405161068f9190613585565b60405180910390f35b3480156106a3575f80fd5b506106ac6111c6565b6040516106b99190613309565b60405180910390f35b3480156106cd575f80fd5b506106e860048036038101906106e391906135c8565b611256565b005b3480156106f5575f80fd5b506106fe61136e565b005b34801561070b575f80fd5b50610726600480360381019061072191906133ba565b61143e565b6040516107339190613412565b60405180910390f35b348015610747575f80fd5b50610762600480360381019061075d91906133ba565b611524565b60405161076f9190613412565b60405180910390f35b348015610783575f80fd5b5061079e6004803603810190610799919061342b565b611541565b6040516107ab9190613412565b60405180910390f35b3480156107bf575f80fd5b506107c861155e565b6040516107d59190613412565b60405180910390f35b3480156107e9575f80fd5b5061080460048036038101906107ff9190613606565b611570565b005b348015610811575f80fd5b5061082c600480360381019061082791906135c8565b61176f565b005b348015610839575f80fd5b50610842611891565b60405161084f9190613465565b60405180910390f35b348015610863575f80fd5b5061086c611897565b6040516108799190613465565b60405180910390f35b34801561088d575f80fd5b506108a860048036038101906108a39190613606565b61189d565b6040516108b59190613465565b60405180910390f35b3480156108c9575f80fd5b506108e460048036038101906108df919061342b565b61191f565b005b3480156108f1575f80fd5b506108fa611ae7565b6040516109079190613465565b60405180910390f35b34801561091b575f80fd5b50610924611b0b565b6040516109319190613465565b60405180910390f35b348015610945575f80fd5b50610960600480360381019061095b919061342b565b611b11565b005b34801561096d575f80fd5b50610976611c07565b6040516109839190613465565b60405180910390f35b348015610997575f80fd5b506109a0611c0d565b6040516109ad9190613465565b60405180910390f35b3480156109c1575f80fd5b506109dc60048036038101906109d7919061342b565b611c13565b6040516109e99190613412565b60405180910390f35b606060038054610a0190613671565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2d90613671565b8015610a785780601f10610a4f57610100808354040283529160200191610a78565b820191905f5260205f20905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b5f610a95610a8e611c65565b8484611c6c565b6001905092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b600b5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b600e5481565b60115481565b5f610b07848484611e2f565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b4e611c65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490613711565b60405180910390fd5b610be185610bd9611c65565b858403611c6c565b60019150509392505050565b60105481565b5f6012905090565b5f610c98610c07611c65565b848460015f610c14611c65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c93919061375c565b611c6c565b6001905092915050565b7f0000000000000000000000001c1785d92a5060edb643dfe6a500abe12c777fce81565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600d5481565b600860019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d7e611c65565b73ffffffffffffffffffffffffffffffffffffffff16610d9c61119e565b73ffffffffffffffffffffffffffffffffffffffff1614610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de9906137d9565b60405180910390fd5b610dfb5f61295b565b565b610e05611c65565b73ffffffffffffffffffffffffffffffffffffffff16610e2361119e565b73ffffffffffffffffffffffffffffffffffffffff1614610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906137d9565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610ed9611c65565b73ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000007539bd0e263892c22f566926cc686ca66f0d7ffe73ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90613841565b60405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b7f0000000000000000000000007539bd0e263892c22f566926cc686ca66f0d7ffe81565b610fe9611c65565b73ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000007539bd0e263892c22f566926cc686ca66f0d7ffe73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613841565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161109b9061388c565b5f6040518083038185875af1925050503d805f81146110d5576040519150601f19603f3d011682016040523d82523d5f602084013e6110da565b606091505b50509050806110e7575f80fd5b5050565b6110f3611c65565b73ffffffffffffffffffffffffffffffffffffffff1661111161119e565b73ffffffffffffffffffffffffffffffffffffffff1614611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906137d9565b60405180910390fd5b600160085f6101000a81548160ff0219169083151502179055506001600860016101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111d590613671565b80601f016020809104026020016040519081016040528092919081815260200182805461120190613671565b801561124c5780601f106112235761010080835404028352916020019161124c565b820191905f5260205f20905b81548152906001019060200180831161122f57829003601f168201915b5050505050905090565b61125e611c65565b73ffffffffffffffffffffffffffffffffffffffff1661127c61119e565b73ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c9906137d9565b60405180910390fd5b7f0000000000000000000000001c1785d92a5060edb643dfe6a500abe12c777fce73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613910565b60405180910390fd5b61136a8282612a1e565b5050565b611376611c65565b73ffffffffffffffffffffffffffffffffffffffff1661139461119e565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e1906137d9565b60405180910390fd5b69021e19e0c9bab240000060068190555069054b40b1f852bda000006007819055506004600b819055506001600c819055506005600a819055506004600e819055506001600f819055506005600d81905550565b5f8060015f61144b611c65565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061399e565b60405180910390fd5b611519611510611c65565b85858403611c6c565b600191505092915050565b5f611537611530611c65565b8484611e2f565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b60085f9054906101000a900460ff1681565b611578611c65565b73ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000007539bd0e263892c22f566926cc686ca66f0d7ffe73ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613841565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613a06565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116ad9190613585565b602060405180830381865afa1580156116c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ec9190613a38565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611729929190613a63565b6020604051808303815f875af1158015611745573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117699190613a9e565b50505050565b611777611c65565b73ffffffffffffffffffffffffffffffffffffffff1661179561119e565b73ffffffffffffffffffffffffffffffffffffffff16146117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906137d9565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118859190613412565b60405180910390a25050565b60065481565b600a5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611927611c65565b73ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000007539bd0e263892c22f566926cc686ca66f0d7ffe73ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613841565b60405180910390fd5b7f0000000000000000000000001c1785d92a5060edb643dfe6a500abe12c777fce73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611a505750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613b39565b60405180910390fd5b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b7f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081565b600c5481565b611b19611c65565b73ffffffffffffffffffffffffffffffffffffffff16611b3761119e565b73ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906137d9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290613bc7565b60405180910390fd5b611c048161295b565b50565b600f5481565b60075481565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613c55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90613ce3565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e229190613465565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490613d71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290613dff565b60405180910390fd5b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8c90613e67565b60405180910390fd5b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690613ecf565b60405180910390fd5b5f81036120365761203183835f612abc565b612956565b61203e61119e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120ac575061207c61119e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120e457505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121375750600560149054906101000a900460ff16155b156125045760085f9054906101000a900460ff1661222a5760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806121ea575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090613f37565b60405180910390fd5b5b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122c7575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561236e57600654811115612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890613fc5565b60405180910390fd5b60075461231d83610d31565b82612328919061375c565b1115612369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123609061402d565b60405180910390fd5b612503565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561240b575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561245a57600654811115612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c906140bb565b60405180910390fd5b612502565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612501576007546124b483610d31565b826124bf919061375c565b1115612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f79061402d565b60405180910390fd5b5b5b5b5b5f61250e30610d31565b90505f7f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000082101590508080156125505750600860019054906101000a900460ff165b80156125695750600560149054906101000a900460ff16155b80156125bc575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561260f575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612662575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126a5576001600560146101000a81548160ff02191690831515021790555061268a612d31565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612754575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561275d575f90505b5f81156129465760145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156127bb57505f600d54115b15612845576064600d54866127d091906140d9565b6127da9190614147565b9050600d54600f54826127ed91906140d9565b6127f79190614147565b60115f828254612807919061375c565b92505081905550600d54600e548261281f91906140d9565b6128299190614147565b60105f828254612839919061375c565b92505081905550612923565b60145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561289c57505f600a54115b15612922576064600a54866128b191906140d9565b6128bb9190614147565b9050600a54600c54826128ce91906140d9565b6128d89190614147565b60115f8282546128e8919061375c565b92505081905550600a54600b548261290091906140d9565b61290a9190614147565b60105f82825461291a919061375c565b925050819055505b5b5f81111561293757612936873083612abc565b5b80856129439190614177565b94505b612951878787612abc565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2190613d71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8f90613dff565b60405180910390fd5b612ba3838383612f64565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1d9061421a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612cb4919061375c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d189190613465565b60405180910390a3612d2b848484612f69565b50505050565b5f612d3b30610d31565b90505f601054601154612d4e919061375c565b90505f80831480612d5e57505f82145b15612d6b57505050612f62565b60147f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000612d9891906140d9565b831115612dcf5760147f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000612dcc91906140d9565b92505b5f60028360115486612de191906140d9565b612deb9190614147565b612df59190614147565b90505f8185612e049190614177565b90505f479050612e1382612f6e565b5f8147612e209190614177565b90505f6002601154612e329190614147565b87612e3d9190614177565b60105483612e4b91906140d9565b612e559190614147565b90505f8183612e649190614177565b90505f86118015612e7457505f81115b15612ec157612e8386826131a1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601154604051612eb893929190614238565b60405180910390a15b5f6011819055505f6010819055507f0000000000000000000000007539bd0e263892c22f566926cc686ca66f0d7ffe73ffffffffffffffffffffffffffffffffffffffff1647604051612f139061388c565b5f6040518083038185875af1925050503d805f8114612f4d576040519150601f19603f3d011682016040523d82523d5f602084013e612f52565b606091505b5050809750505050505050505050505b565b505050565b505050565b5f600267ffffffffffffffff811115612f8a57612f8961426d565b5b604051908082528060200260200182016040528015612fb85781602001602082028036833780820191505090505b50905030815f81518110612fcf57612fce61429a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613072573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061309691906142db565b816001815181106130aa576130a961429a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061310f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c6c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016131709594939291906143f6565b5f604051808303815f87803b158015613187575f80fd5b505af1158015613199573d5f803e3d5ffd5b505050505050565b6131cc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c6c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061321561119e565b426040518863ffffffff1660e01b81526004016132379695949392919061444e565b60606040518083038185885af1158015613253573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061327891906144ad565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156132b657808201518184015260208101905061329b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6132db8261327f565b6132e58185613289565b93506132f5818560208601613299565b6132fe816132c1565b840191505092915050565b5f6020820190508181035f83015261332181846132d1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6133568261332d565b9050919050565b6133668161334c565b8114613370575f80fd5b50565b5f813590506133818161335d565b92915050565b5f819050919050565b61339981613387565b81146133a3575f80fd5b50565b5f813590506133b481613390565b92915050565b5f80604083850312156133d0576133cf613329565b5b5f6133dd85828601613373565b92505060206133ee858286016133a6565b9150509250929050565b5f8115159050919050565b61340c816133f8565b82525050565b5f6020820190506134255f830184613403565b92915050565b5f602082840312156134405761343f613329565b5b5f61344d84828501613373565b91505092915050565b61345f81613387565b82525050565b5f6020820190506134785f830184613456565b92915050565b5f819050919050565b5f6134a161349c6134978461332d565b61347e565b61332d565b9050919050565b5f6134b282613487565b9050919050565b5f6134c3826134a8565b9050919050565b6134d3816134b9565b82525050565b5f6020820190506134ec5f8301846134ca565b92915050565b5f805f6060848603121561350957613508613329565b5b5f61351686828701613373565b935050602061352786828701613373565b9250506040613538868287016133a6565b9150509250925092565b5f60ff82169050919050565b61355781613542565b82525050565b5f6020820190506135705f83018461354e565b92915050565b61357f8161334c565b82525050565b5f6020820190506135985f830184613576565b92915050565b6135a7816133f8565b81146135b1575f80fd5b50565b5f813590506135c28161359e565b92915050565b5f80604083850312156135de576135dd613329565b5b5f6135eb85828601613373565b92505060206135fc858286016135b4565b9150509250929050565b5f806040838503121561361c5761361b613329565b5b5f61362985828601613373565b925050602061363a85828601613373565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061368857607f821691505b60208210810361369b5761369a613644565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6136fb602883613289565b9150613706826136a1565b604082019050919050565b5f6020820190508181035f830152613728816136ef565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61376682613387565b915061377183613387565b92508282019050808211156137895761378861372f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6137c3602083613289565b91506137ce8261378f565b602082019050919050565b5f6020820190508181035f8301526137f0816137b7565b9050919050565b7f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c706572005f82015250565b5f61382b601f83613289565b9150613836826137f7565b602082019050919050565b5f6020820190508181035f8301526138588161381f565b9050919050565b5f81905092915050565b50565b5f6138775f8361385f565b915061388282613869565b5f82019050919050565b5f6138968261386c565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6138fa603983613289565b9150613905826138a0565b604082019050919050565b5f6020820190508181035f830152613927816138ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613988602583613289565b91506139938261392e565b604082019050919050565b5f6020820190508181035f8301526139b58161397c565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6139f0601a83613289565b91506139fb826139bc565b602082019050919050565b5f6020820190508181035f830152613a1d816139e4565b9050919050565b5f81519050613a3281613390565b92915050565b5f60208284031215613a4d57613a4c613329565b5b5f613a5a84828501613a24565b91505092915050565b5f604082019050613a765f830185613576565b613a836020830184613456565b9392505050565b5f81519050613a988161359e565b92915050565b5f60208284031215613ab357613ab2613329565b5b5f613ac084828501613a8a565b91505092915050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f613b23602e83613289565b9150613b2e82613ac9565b604082019050919050565b5f6020820190508181035f830152613b5081613b17565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613bb1602683613289565b9150613bbc82613b57565b604082019050919050565b5f6020820190508181035f830152613bde81613ba5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613c3f602483613289565b9150613c4a82613be5565b604082019050919050565b5f6020820190508181035f830152613c6c81613c33565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613ccd602283613289565b9150613cd882613c73565b604082019050919050565b5f6020820190508181035f830152613cfa81613cc1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613d5b602583613289565b9150613d6682613d01565b604082019050919050565b5f6020820190508181035f830152613d8881613d4f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613de9602383613289565b9150613df482613d8f565b604082019050919050565b5f6020820190508181035f830152613e1681613ddd565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f613e51601283613289565b9150613e5c82613e1d565b602082019050919050565b5f6020820190508181035f830152613e7e81613e45565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f613eb9601483613289565b9150613ec482613e85565b602082019050919050565b5f6020820190508181035f830152613ee681613ead565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613f21601683613289565b9150613f2c82613eed565b602082019050919050565b5f6020820190508181035f830152613f4e81613f15565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613faf603583613289565b9150613fba82613f55565b604082019050919050565b5f6020820190508181035f830152613fdc81613fa3565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614017601383613289565b915061402282613fe3565b602082019050919050565b5f6020820190508181035f8301526140448161400b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6140a5603683613289565b91506140b08261404b565b604082019050919050565b5f6020820190508181035f8301526140d281614099565b9050919050565b5f6140e382613387565b91506140ee83613387565b92508282026140fc81613387565b915082820484148315176141135761411261372f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61415182613387565b915061415c83613387565b92508261416c5761416b61411a565b5b828204905092915050565b5f61418182613387565b915061418c83613387565b92508282039050818111156141a4576141a361372f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614204602683613289565b915061420f826141aa565b604082019050919050565b5f6020820190508181035f830152614231816141f8565b9050919050565b5f60608201905061424b5f830186613456565b6142586020830185613456565b6142656040830184613456565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506142d58161335d565b92915050565b5f602082840312156142f0576142ef613329565b5b5f6142fd848285016142c7565b91505092915050565b5f819050919050565b5f61432961432461431f84614306565b61347e565b613387565b9050919050565b6143398161430f565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6143718161334c565b82525050565b5f6143828383614368565b60208301905092915050565b5f602082019050919050565b5f6143a48261433f565b6143ae8185614349565b93506143b983614359565b805f5b838110156143e95781516143d08882614377565b97506143db8361438e565b9250506001810190506143bc565b5085935050505092915050565b5f60a0820190506144095f830188613456565b6144166020830187614330565b8181036040830152614428818661439a565b90506144376060830185613576565b6144446080830184613456565b9695505050505050565b5f60c0820190506144615f830189613576565b61446e6020830188613456565b61447b6040830187614330565b6144886060830186614330565b6144956080830185613576565b6144a260a0830184613456565b979650505050505050565b5f805f606084860312156144c4576144c3613329565b5b5f6144d186828701613a24565b93505060206144e286828701613a24565b92505060406144f386828701613a24565b915050925092509256fea26469706673582212206efbb37f4948b399886901670be017883843d85c0848b670c70e964b0227d77e64736f6c63430008140033
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.