ERC-20
Overview
Max Total Supply
357,000,000 $SQUIDpepeINU
Holders
7
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SquidPepeInu
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-20 */ // *@@@@@@@@@@@%# // @@& @@@ @@@& #@@@ // &@ @@ .@@* #@( // @@ @@ ,@ // @, @@ @ // @. .,%@&@%#. &@ @ // @( @@@& (@@@. %@ @ // @ .&@@ @@%.@ ,&@@@@@@@@@**,/... ,..,%%@@@@@@& // %@ . @& &@( // %@ ,@& @& // %@ .@@@@@&* ,&@@/ /@@@@&& . *(@@@@@@% // @ *@@@* ,/&&@@@#(. @ %@@( (@@@@@@&&***,,..#/@@@@&, ,@ // .@@@, #@@. .@@@@@# @@@ %@@@& @@@@ // /@, %@ @@@&. (@@@&* .#@@@@%#( .((&@@@%. #@, // @@ @ @@@@@* .@@@@( /% #@@% &@@@@@@@#. %@@ // @ @ @ /@@@# #@@@@@@@@@@% @. (@@@ .@@@@@@@@@. @ // @ @ &@@&#@@@@@@@@@.. *@@@ @@@@@@@@@@ ( (@@@@@@@@@@ @@@@@% @ // ,@ @@ @@@@@@@@@@@, %@@@@( @ @@@@@@&@@@@ @@@@@ #@ // &@ @@* @@@@@@& @@@@. /@@@@@@&@& @@@# @@@@@@@@@@@@@@@@@@@@&, @ // @. @@@@ *@@@(@@@@@@@@@@@@@@@@& (@ @# // @ .%@@@@&(, .#&@@@@ @& // .@ , ,& // @ @@* @@, @@% // @& @@% .@@@@@@@@@@@@& .@ // @ ,@@& &/ @# // @ @ // @ /@ // @. *@ // & @, // ,# @ // ,% @@@( %@@@@@@@%( @@@ @% // @ @# #@@@@@@, /@@@@. @ // @, @, *%@@@@@@@@@@@@,. &#@@@@@@@@@@@@@@@@@*, @. // @ @ #@@@@@@/ (@& // @. %@ /#@@@@@@@@@@@@&@&@&@@@@@@@@@@@@@&(.. @ // /@ %@ &@@@@@@@@@@@@@&*. @ // @& @ *#@@@@@@@%% *& // &@ @@. **&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@ %@. // @@ @@ // .%@&. @@ // @@@@@# &@@, // #@@@@@@#/ *&@@@# // . ,(*(***,*(//..,.. // // // ad88888ba 88 88 88888888ba 88 // d8" "8b "" 88 88 "8b 88 // Y8, 88 88 ,8P 88 // `Y8aaaaa, ,adPPYb,d8 88 88 88 ,adPPYb,88 88aaaaaa8P' ,adPPYba, 8b,dPPYba, ,adPPYba, 88 8b,dPPYba, 88 88 // `"""""8b, a8" `Y88 88 88 88 a8" `Y88 88""""""' a8P_____88 88P' "8a a8P_____88 88 88P' `"8a 88 88 // `8b 8b 88 88 88 88 8b 88 88 8PP""""""" 88 d8 8PP""""""" 88 88 88 88 88 // Y8a a8P "8a ,d88 "8a, ,a88 88 "8a, ,d88 88 "8b, ,aa 88b, ,a8" "8b, ,aa 88 88 88 "8a, ,a88 // "Y88888P" `"YbbdP'88 `"YbbdP'Y8 88 `"8bbdP"Y8 88 `"Ybbd8"' 88`YbbdP"' `"Ybbd8"' 88 88 88 `"YbbdP'Y8 // 88 88 // 88 88 // //______________________________________________ // // Website: https://squidpepeinu.com // Twitter: https://twitter.com/squidpepeerc20 // Telegram: https://t.me/SquidPepeInuPortal //______________________________________________ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; pragma experimental ABIEncoderV2; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // pragma solidity ^0.8.0; // import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract SquidPepeInu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); address public marketingWallet; bool private _swapping; bool public dynamicTaxesEnabled = false; bool public dynamicLimitsEnabled = false; uint256 public defaultMaxWallet; uint256 public defaultMaxTransaction; uint256 public buyFees; uint256 public sellFees; uint256 private previousFee; bool public launched; uint256 public launchBlock; uint256 public launchTime; mapping(address => bool) private automatedMarketMakerPairs; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private _isBot; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); modifier lockSwapping() { _swapping = true; _; _swapping = false; } constructor(address _owner) ERC20("SquidPepeInu", "$SQUIDpepeINU") { //357 million uint256 totalSupply = 357000000000000000000000000; uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), type(uint256).max); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _approve(address(this), address(uniswapV2Pair), type(uint256).max); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); defaultMaxTransaction = (totalSupply * 5) / 1000; defaultMaxWallet = (totalSupply * 5) / 1000; sellFees = 1; buyFees = 1; previousFee = sellFees; marketingWallet = 0x95C5d92612AF3de3D70E0241Bc7e21F461e7bF60; excludeFromFees(owner(), true); excludeFromFees(_owner, true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(_owner, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); excludeFromMaxTransaction(marketingWallet, true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); _mint(marketingWallet, (totalSupply * 5) / 100); _mint(owner(), (totalSupply * 95) / 100); } receive() external payable {} function burn(uint256 amount) public { _burn(msg.sender, amount); } function setDynamicLimitsEnabled(bool value) public onlyOwner { dynamicLimitsEnabled = value; } function setDynamicTaxesEnabled(bool value) public onlyOwner { dynamicTaxesEnabled = value; } function setLaunched() public onlyOwner { require(!launched, "ERC20: Already launched."); launched = true; launchBlock = block.number; launchTime = block.timestamp; dynamicTaxesEnabled = true; dynamicLimitsEnabled = true; } function updateDefaultLimits( uint256 maxTransaction, uint256 maxWallet ) external onlyOwner { require( maxTransaction >= ((totalSupply() * 1) / 1000), "ERC20: Cannot set maxTxn lower than 0.1%" ); require( maxWallet >= ((totalSupply() * 1) / 1000), "ERC20: Cannot set maxWallet lower than 0.1%" ); defaultMaxTransaction = maxTransaction; defaultMaxWallet = maxWallet; } function excludeFromMaxTransaction(address updAds, bool value) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = value; } function bulkExcludeFromMaxTransaction( address[] calldata accounts, bool value ) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedMaxTransactionAmount[accounts[i]] = value; } } function updateBuyFees(uint256 _buyFees) public onlyOwner { buyFees = _buyFees; require(buyFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateSellFees(uint256 _sellFees) public onlyOwner { sellFees = _sellFees; previousFee = sellFees; require(sellFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateMarketingWallet(address _marketingWallet) public onlyOwner { require(_marketingWallet != address(0), "ERC20: Address 0"); address oldWallet = marketingWallet; marketingWallet = _marketingWallet; emit marketingWalletUpdated(marketingWallet, oldWallet); } function bulkExcludeFromFees(address[] calldata accounts, bool value) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = value; } } function excludeFromFees(address account, bool value) public onlyOwner { _isExcludedFromFees[account] = value; emit ExcludeFromFees(account, value); } function withdrawStuckTokens(address tkn) public onlyOwner { if (tkn == address(0)) { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } else { require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } } function unclog() public onlyOwner lockSwapping { swapTokensForEth( balanceOf(address(this)) ); uint256 ethBalance = address(this).balance; uint256 ethMarketing = ethBalance; bool success; (success, ) = address(marketingWallet).call{value: ethMarketing}(""); } function _setAutomatedMarketMakerPair(address pair, bool value) internal virtual { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_isBot[from], "ERC20: bot detected"); require(!_isBot[msg.sender], "ERC20: bot detected"); require(!_isBot[tx.origin], "ERC20: bot detected"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != deadAddress && !_swapping ) { uint256 maxTransaction; uint256 maxWallet; if (dynamicLimitsEnabled) { if (block.timestamp > launchTime + (2 minutes)) { maxTransaction = totalSupply(); maxWallet = totalSupply(); } else { maxTransaction = (totalSupply() * 2) / 100; maxWallet = (totalSupply() * 2) / 100; } } else { maxTransaction = defaultMaxTransaction; maxWallet = defaultMaxWallet; } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransaction, "ERC20: Buy transfer amount exceeds the maxTransaction." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransaction, "ERC20: Sell transfer amount exceeds the maxTransaction." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } } bool takeFee = !_swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 totalFees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellFees > 0) { if (dynamicTaxesEnabled) { if (block.timestamp > launchTime + (4 minutes)) { totalFees = sellFees; } else if (block.timestamp > launchTime + (2 minutes)) { totalFees = 5; } else { totalFees = 10; } } else { totalFees = sellFees; } fees = amount.mul(totalFees).div(100); } else if (automatedMarketMakerPairs[from] && buyFees > 0) { if (dynamicTaxesEnabled) { if (block.timestamp > launchTime + (4 minutes)) { totalFees = buyFees; } else if (block.timestamp > launchTime + (2 minutes)) { totalFees = 5; } else { totalFees = 10; } } else { totalFees = buyFees; } fees = amount.mul(totalFees).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellFees = previousFee; } function swapTokensForEth(uint256 tokenAmount) internal virtual { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultMaxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dynamicTaxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"value","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDynamicLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setDynamicTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLaunched","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTransaction","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"updateDefaultLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526007805461ffff60a81b191690553480156200001f57600080fd5b5060405162002dc038038062002dc0833981016040819052620000429162000871565b6040518060400160405280600c81526020016b537175696450657065496e7560a01b8152506040518060400160405280600d81526020016c24535155494470657065494e5560981b81525081600390816200009e919062000947565b506004620000ad828262000947565b505050620000ca620000c4620004d760201b60201c565b620004db565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b01274db0c763c7618500000090620001029030906000196200052d565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000143573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000169919062000871565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001df919062000871565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000253919062000871565b600680546001600160a01b0319166001600160a01b03929092169182179055620002829030906000196200052d565b60065460805160405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620002d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ff919062000a13565b506103e86200031082600562000a4d565b6200031c919062000a6d565b6009556103e86200032f82600562000a4d565b6200033b919062000a6d565b6008556001600b819055600a819055600c55600780546001600160a01b0319167395c5d92612af3de3d70e0241bc7e21f461e7bf60179055620003926200038a6005546001600160a01b031690565b600162000659565b6200039f82600162000659565b620003ac30600162000659565b620003bb61dead600162000659565b600754620003d4906001600160a01b0316600162000659565b620003f3620003eb6005546001600160a01b031690565b6001620006c2565b62000400826001620006c2565b6200040d306001620006c2565b6200041c61dead6001620006c2565b6080516200042c906001620006c2565b60065462000445906001600160a01b03166001620006c2565b6007546200045e906001600160a01b03166001620006c2565b60065462000477906001600160a01b03166001620006f7565b600754620004a9906001600160a01b031660646200049784600562000a4d565b620004a3919062000a6d565b6200074b565b620004cf620004c06005546001600160a01b031690565b60646200049784605f62000a4d565b505062000aa6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620005955760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005f85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200058c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620006636200080e565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620006cc6200080e565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620007a35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200058c565b8060026000828254620007b7919062000a90565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200086a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200058c565b565b505050565b6000602082840312156200088457600080fd5b81516001600160a01b03811681146200089c57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620008ce57607f821691505b602082108103620008ef57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200086c57600081815260208120601f850160051c810160208610156200091e5750805b601f850160051c820191505b818110156200093f578281556001016200092a565b505050505050565b81516001600160401b03811115620009635762000963620008a3565b6200097b81620009748454620008b9565b84620008f5565b602080601f831160018114620009b357600084156200099a5750858301515b600019600386901b1c1916600185901b1785556200093f565b600085815260208120601f198616915b82811015620009e457888601518255948401946001909101908401620009c3565b508582101562000a035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a2657600080fd5b815180151581146200089c57600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000a675762000a6762000a37565b92915050565b60008262000a8b57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a675762000a6762000a37565b6080516122e962000ad76000396000818161031001528181611ad401528181611b8d0152611bc901526122e96000f3fe6080604052600436106102555760003560e01c806375f0a87411610139578063c073b633116100b6578063dd62ed3e1161007a578063dd62ed3e146106ef578063e0f3ccf51461070f578063e4748b9e14610725578063eba4c3331461073b578063f26a992e1461075b578063f2fde38b1461077c57600080fd5b8063c073b63314610663578063cb96372814610683578063d00efb2f146106a3578063d7d1d10e146106b9578063d84f5a37146106d957600080fd5b806395d89b41116100fd57806395d89b41146105ce578063a457c2d7146105e3578063a9059cbb14610603578063aacebbe314610623578063c02466681461064357600080fd5b806375f0a8741461054b578063790ca4131461056b5780638091f3bf146105815780638da5cb5b1461059b5780639507b19b146105b957600080fd5b806339509351116101d257806367c453491161019657806367c453491461048b5780636f0816f9146104a057806370a08231146104c0578063715018a6146104f657806371fc46881461050b5780637571336a1461052b57600080fd5b806339509351146103d15780633a03c07e146103f157806342966c681461041257806349bd5a5e146104325780634fbee1931461045257600080fd5b806318160ddd1161021957806318160ddd1461034a5780631f89aa931461036957806323b872dd1461037f57806327c8f8351461039f578063313ce567146103b557600080fd5b806306fdde0314610261578063095ea7b31461028c5780630c8c0760146102bc578063155ca7c1146102de5780631694505e146102fe57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061027661079c565b6040516102839190611dd8565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611e3b565b61082e565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d7366004611e75565b610848565b005b3480156102ea57600080fd5b506102dc6102f9366004611e92565b61086e565b34801561030a57600080fd5b506103327f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b34801561035657600080fd5b506002545b604051908152602001610283565b34801561037557600080fd5b5061035b60095481565b34801561038b57600080fd5b506102ac61039a366004611f18565b6108ed565b3480156103ab57600080fd5b5061033261dead81565b3480156103c157600080fd5b5060405160128152602001610283565b3480156103dd57600080fd5b506102ac6103ec366004611e3b565b610911565b3480156103fd57600080fd5b506007546102ac90600160b01b900460ff1681565b34801561041e57600080fd5b506102dc61042d366004611f59565b610933565b34801561043e57600080fd5b50600654610332906001600160a01b031681565b34801561045e57600080fd5b506102ac61046d366004611f72565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561049757600080fd5b506102dc610940565b3480156104ac57600080fd5b506102dc6104bb366004611f8f565b6109ed565b3480156104cc57600080fd5b5061035b6104db366004611f72565b6001600160a01b031660009081526020819052604090205490565b34801561050257600080fd5b506102dc610b0a565b34801561051757600080fd5b506102dc610526366004611f59565b610b1e565b34801561053757600080fd5b506102dc610546366004611fb1565b610b4a565b34801561055757600080fd5b50600754610332906001600160a01b031681565b34801561057757600080fd5b5061035b600f5481565b34801561058d57600080fd5b50600d546102ac9060ff1681565b3480156105a757600080fd5b506005546001600160a01b0316610332565b3480156105c557600080fd5b506102dc610b7d565b3480156105da57600080fd5b50610276610c06565b3480156105ef57600080fd5b506102ac6105fe366004611e3b565b610c15565b34801561060f57600080fd5b506102ac61061e366004611e3b565b610c90565b34801561062f57600080fd5b506102dc61063e366004611f72565b610c9e565b34801561064f57600080fd5b506102dc61065e366004611fb1565b610d40565b34801561066f57600080fd5b506102dc61067e366004611e75565b610da7565b34801561068f57600080fd5b506102dc61069e366004611f72565b610dcd565b3480156106af57600080fd5b5061035b600e5481565b3480156106c557600080fd5b506102dc6106d4366004611e92565b610fbc565b3480156106e557600080fd5b5061035b60085481565b3480156106fb57600080fd5b5061035b61070a366004611fea565b611035565b34801561071b57600080fd5b5061035b600b5481565b34801561073157600080fd5b5061035b600a5481565b34801561074757600080fd5b506102dc610756366004611f59565b611060565b34801561076757600080fd5b506007546102ac90600160a81b900460ff1681565b34801561078857600080fd5b506102dc610797366004611f72565b611093565b6060600380546107ab90612018565b80601f01602080910402602001604051908101604052809291908181526020018280546107d790612018565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60003361083c818585611109565b60019150505b92915050565b61085061122d565b60078054911515600160a81b0260ff60a81b19909216919091179055565b61087661122d565b60005b828110156108e757816011600086868581811061089857610898612052565b90506020020160208101906108ad9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108df8161207e565b915050610879565b50505050565b6000336108fb858285611287565b6109068585856112fb565b506001949350505050565b60003361083c8185856109248383611035565b61092e9190612097565b611109565b61093d338261194b565b50565b61094861122d565b6007805460ff60a01b1916600160a01b17905561098261097d306001600160a01b031660009081526020819052604090205490565b611a7d565b600754604051479182916000916001600160a01b03169083908381818185875af1925050503d80600081146109d3576040519150601f19603f3d011682016040523d82523d6000602084013e6109d8565b606091505b50506007805460ff60a01b1916905550505050565b6109f561122d565b6103e8610a0160025490565b610a0c9060016120aa565b610a1691906120c1565b821015610a7b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e312560c01b60648201526084015b60405180910390fd5b6103e8610a8760025490565b610a929060016120aa565b610a9c91906120c1565b811015610aff5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b6064820152608401610a72565b600991909155600855565b610b1261122d565b610b1c6000611c3d565b565b610b2661122d565b600a81815581111561093d5760405162461bcd60e51b8152600401610a72906120e3565b610b5261122d565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610b8561122d565b600d5460ff1615610bd85760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e00000000000000006044820152606401610a72565b600d805460ff1916600117905543600e5542600f556007805461010160a81b61ffff60a81b19909116179055565b6060600480546107ab90612018565b60003381610c238286611035565b905083811015610c835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a72565b6109068286868403611109565b60003361083c8185856112fb565b610ca661122d565b6001600160a01b038116610cef5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610a72565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610d4861122d565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610daf61122d565b60078054911515600160b01b0260ff60b01b19909216919091179055565b610dd561122d565b6001600160a01b038116610e3457604051600090339047908381818185875af1925050503d8060008114610e25576040519150601f19603f3d011682016040523d82523d6000602084013e610e2a565b606091505b5061093d92505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9f9190612127565b11610ed85760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610a72565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190612127565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb79190612140565b505050565b610fc461122d565b60005b828110156108e7578160126000868685818110610fe657610fe6612052565b9050602002016020810190610ffb9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061102d8161207e565b915050610fc7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61106861122d565b600b819055600c819055600a81111561093d5760405162461bcd60e51b8152600401610a72906120e3565b61109b61122d565b6001600160a01b0381166111005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a72565b61093d81611c3d565b6001600160a01b03831661116b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a72565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a72565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a72565b60006112938484611035565b905060001981146108e757818110156112ee5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a72565b6108e78484848403611109565b6001600160a01b0383166113215760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b0382166113475760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526013602052604090205460ff16156113805760405162461bcd60e51b8152600401610a72906121e5565b3360009081526013602052604090205460ff16156113b05760405162461bcd60e51b8152600401610a72906121e5565b3260009081526013602052604090205460ff16156113e05760405162461bcd60e51b8152600401610a72906121e5565b806000036113f457610fb783836000611c8f565b6005546001600160a01b0384811691161480159061142057506005546001600160a01b03838116911614155b801561143457506001600160a01b03821615155b801561144b57506001600160a01b03821661dead14155b80156114615750600754600160a01b900460ff16155b15611774576007546000908190600160b01b900460ff16156114e257600f5461148b906078612097565b4211156114a0576002549150815b90506114eb565b60646114ab60025490565b6114b69060026120aa565b6114c091906120c1565b915060646114cd60025490565b6114d89060026120aa565b61149991906120c1565b50506009546008545b6001600160a01b03851660009081526010602052604090205460ff16801561152c57506001600160a01b03841660009081526012602052604090205460ff16155b1561161d57818311156115a05760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b6064820152608401610a72565b806115c0856001600160a01b031660009081526020819052604090205490565b6115ca9085612097565b11156116185760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b611771565b6001600160a01b03841660009081526010602052604090205460ff16801561165e57506001600160a01b03851660009081526012602052604090205460ff16155b156116d957818311156116185760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e0000000000000000006064820152608401610a72565b6001600160a01b03841660009081526012602052604090205460ff166117715780611719856001600160a01b031660009081526020819052604090205490565b6117239085612097565b11156117715760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b50505b6007546001600160a01b03841660009081526011602052604090205460ff600160a01b9092048216159116806117c257506001600160a01b03831660009081526011602052604090205460ff165b156117cb575060005b6000808215611932576001600160a01b03851660009081526010602052604090205460ff1680156117fe57506000600b54115b1561187957600754600160a81b900460ff161561185857600f546118239060f0612097565b4211156118335750600b5461185d565b600f54611841906078612097565b4211156118505750600561185d565b50600a61185d565b50600b545b611872606461186c8684611db9565b90611dcc565b9150611914565b6001600160a01b03861660009081526010602052604090205460ff1680156118a357506000600a54115b1561191457600754600160a81b900460ff16156118fd57600f546118c89060f0612097565b4211156118d85750600a54611902565b600f546118e6906078612097565b4211156118f557506005611902565b50600a611902565b50600a545b611911606461186c8684611db9565b91505b811561192557611925863084611c8f565b61192f8285612212565b93505b61193d868686611c8f565b5050600c54600b5550505050565b6001600160a01b0382166119ab5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a72565b6001600160a01b03821660009081526020819052604090205481811015611a1f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a72565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab257611ab2612052565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b549190612225565b81600181518110611b6757611b67612052565b60200260200101906001600160a01b031690816001600160a01b031681525050611bb2307f000000000000000000000000000000000000000000000000000000000000000084611109565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c07908590600090869030904290600401612242565b600060405180830381600087803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611cb55760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b038216611cdb5760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526020819052604090205481811015611d535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a72565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108e7565b6000611dc582846120aa565b9392505050565b6000611dc582846120c1565b600060208083528351808285015260005b81811015611e0557858101830151858201604001528201611de9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461093d57600080fd5b60008060408385031215611e4e57600080fd5b8235611e5981611e26565b946020939093013593505050565b801515811461093d57600080fd5b600060208284031215611e8757600080fd5b8135611dc581611e67565b600080600060408486031215611ea757600080fd5b833567ffffffffffffffff80821115611ebf57600080fd5b818601915086601f830112611ed357600080fd5b813581811115611ee257600080fd5b8760208260051b8501011115611ef757600080fd5b60209283019550935050840135611f0d81611e67565b809150509250925092565b600080600060608486031215611f2d57600080fd5b8335611f3881611e26565b92506020840135611f4881611e26565b929592945050506040919091013590565b600060208284031215611f6b57600080fd5b5035919050565b600060208284031215611f8457600080fd5b8135611dc581611e26565b60008060408385031215611fa257600080fd5b50508035926020909101359150565b60008060408385031215611fc457600080fd5b8235611fcf81611e26565b91506020830135611fdf81611e67565b809150509250929050565b60008060408385031215611ffd57600080fd5b823561200881611e26565b91506020830135611fdf81611e26565b600181811c9082168061202c57607f821691505b60208210810361204c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161209057612090612068565b5060010190565b8082018082111561084257610842612068565b808202811582820484141761084257610842612068565b6000826120de57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561213957600080fd5b5051919050565b60006020828403121561215257600080fd5b8151611dc581611e67565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561084257610842612068565b60006020828403121561223757600080fd5b8151611dc581611e26565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122925784516001600160a01b03168352938301939183019160010161226d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122033355614f17890749efd76dc026632407b347647f52e8f274109b05dc2954b4f64736f6c63430008110033000000000000000000000000494794ba9a5870ebfcb323ee611e222e02d9e608
Deployed Bytecode
0x6080604052600436106102555760003560e01c806375f0a87411610139578063c073b633116100b6578063dd62ed3e1161007a578063dd62ed3e146106ef578063e0f3ccf51461070f578063e4748b9e14610725578063eba4c3331461073b578063f26a992e1461075b578063f2fde38b1461077c57600080fd5b8063c073b63314610663578063cb96372814610683578063d00efb2f146106a3578063d7d1d10e146106b9578063d84f5a37146106d957600080fd5b806395d89b41116100fd57806395d89b41146105ce578063a457c2d7146105e3578063a9059cbb14610603578063aacebbe314610623578063c02466681461064357600080fd5b806375f0a8741461054b578063790ca4131461056b5780638091f3bf146105815780638da5cb5b1461059b5780639507b19b146105b957600080fd5b806339509351116101d257806367c453491161019657806367c453491461048b5780636f0816f9146104a057806370a08231146104c0578063715018a6146104f657806371fc46881461050b5780637571336a1461052b57600080fd5b806339509351146103d15780633a03c07e146103f157806342966c681461041257806349bd5a5e146104325780634fbee1931461045257600080fd5b806318160ddd1161021957806318160ddd1461034a5780631f89aa931461036957806323b872dd1461037f57806327c8f8351461039f578063313ce567146103b557600080fd5b806306fdde0314610261578063095ea7b31461028c5780630c8c0760146102bc578063155ca7c1146102de5780631694505e146102fe57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061027661079c565b6040516102839190611dd8565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611e3b565b61082e565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d7366004611e75565b610848565b005b3480156102ea57600080fd5b506102dc6102f9366004611e92565b61086e565b34801561030a57600080fd5b506103327f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561035657600080fd5b506002545b604051908152602001610283565b34801561037557600080fd5b5061035b60095481565b34801561038b57600080fd5b506102ac61039a366004611f18565b6108ed565b3480156103ab57600080fd5b5061033261dead81565b3480156103c157600080fd5b5060405160128152602001610283565b3480156103dd57600080fd5b506102ac6103ec366004611e3b565b610911565b3480156103fd57600080fd5b506007546102ac90600160b01b900460ff1681565b34801561041e57600080fd5b506102dc61042d366004611f59565b610933565b34801561043e57600080fd5b50600654610332906001600160a01b031681565b34801561045e57600080fd5b506102ac61046d366004611f72565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561049757600080fd5b506102dc610940565b3480156104ac57600080fd5b506102dc6104bb366004611f8f565b6109ed565b3480156104cc57600080fd5b5061035b6104db366004611f72565b6001600160a01b031660009081526020819052604090205490565b34801561050257600080fd5b506102dc610b0a565b34801561051757600080fd5b506102dc610526366004611f59565b610b1e565b34801561053757600080fd5b506102dc610546366004611fb1565b610b4a565b34801561055757600080fd5b50600754610332906001600160a01b031681565b34801561057757600080fd5b5061035b600f5481565b34801561058d57600080fd5b50600d546102ac9060ff1681565b3480156105a757600080fd5b506005546001600160a01b0316610332565b3480156105c557600080fd5b506102dc610b7d565b3480156105da57600080fd5b50610276610c06565b3480156105ef57600080fd5b506102ac6105fe366004611e3b565b610c15565b34801561060f57600080fd5b506102ac61061e366004611e3b565b610c90565b34801561062f57600080fd5b506102dc61063e366004611f72565b610c9e565b34801561064f57600080fd5b506102dc61065e366004611fb1565b610d40565b34801561066f57600080fd5b506102dc61067e366004611e75565b610da7565b34801561068f57600080fd5b506102dc61069e366004611f72565b610dcd565b3480156106af57600080fd5b5061035b600e5481565b3480156106c557600080fd5b506102dc6106d4366004611e92565b610fbc565b3480156106e557600080fd5b5061035b60085481565b3480156106fb57600080fd5b5061035b61070a366004611fea565b611035565b34801561071b57600080fd5b5061035b600b5481565b34801561073157600080fd5b5061035b600a5481565b34801561074757600080fd5b506102dc610756366004611f59565b611060565b34801561076757600080fd5b506007546102ac90600160a81b900460ff1681565b34801561078857600080fd5b506102dc610797366004611f72565b611093565b6060600380546107ab90612018565b80601f01602080910402602001604051908101604052809291908181526020018280546107d790612018565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60003361083c818585611109565b60019150505b92915050565b61085061122d565b60078054911515600160a81b0260ff60a81b19909216919091179055565b61087661122d565b60005b828110156108e757816011600086868581811061089857610898612052565b90506020020160208101906108ad9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108df8161207e565b915050610879565b50505050565b6000336108fb858285611287565b6109068585856112fb565b506001949350505050565b60003361083c8185856109248383611035565b61092e9190612097565b611109565b61093d338261194b565b50565b61094861122d565b6007805460ff60a01b1916600160a01b17905561098261097d306001600160a01b031660009081526020819052604090205490565b611a7d565b600754604051479182916000916001600160a01b03169083908381818185875af1925050503d80600081146109d3576040519150601f19603f3d011682016040523d82523d6000602084013e6109d8565b606091505b50506007805460ff60a01b1916905550505050565b6109f561122d565b6103e8610a0160025490565b610a0c9060016120aa565b610a1691906120c1565b821015610a7b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e312560c01b60648201526084015b60405180910390fd5b6103e8610a8760025490565b610a929060016120aa565b610a9c91906120c1565b811015610aff5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e312560a81b6064820152608401610a72565b600991909155600855565b610b1261122d565b610b1c6000611c3d565b565b610b2661122d565b600a81815581111561093d5760405162461bcd60e51b8152600401610a72906120e3565b610b5261122d565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b610b8561122d565b600d5460ff1615610bd85760405162461bcd60e51b815260206004820152601860248201527f45524332303a20416c7265616479206c61756e636865642e00000000000000006044820152606401610a72565b600d805460ff1916600117905543600e5542600f556007805461010160a81b61ffff60a81b19909116179055565b6060600480546107ab90612018565b60003381610c238286611035565b905083811015610c835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a72565b6109068286868403611109565b60003361083c8185856112fb565b610ca661122d565b6001600160a01b038116610cef5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610a72565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610d4861122d565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610daf61122d565b60078054911515600160b01b0260ff60b01b19909216919091179055565b610dd561122d565b6001600160a01b038116610e3457604051600090339047908381818185875af1925050503d8060008114610e25576040519150601f19603f3d011682016040523d82523d6000602084013e610e2a565b606091505b5061093d92505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9f9190612127565b11610ed85760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610a72565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f439190612127565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb79190612140565b505050565b610fc461122d565b60005b828110156108e7578160126000868685818110610fe657610fe6612052565b9050602002016020810190610ffb9190611f72565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061102d8161207e565b915050610fc7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61106861122d565b600b819055600c819055600a81111561093d5760405162461bcd60e51b8152600401610a72906120e3565b61109b61122d565b6001600160a01b0381166111005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a72565b61093d81611c3d565b6001600160a01b03831661116b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a72565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a72565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a72565b60006112938484611035565b905060001981146108e757818110156112ee5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a72565b6108e78484848403611109565b6001600160a01b0383166113215760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b0382166113475760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526013602052604090205460ff16156113805760405162461bcd60e51b8152600401610a72906121e5565b3360009081526013602052604090205460ff16156113b05760405162461bcd60e51b8152600401610a72906121e5565b3260009081526013602052604090205460ff16156113e05760405162461bcd60e51b8152600401610a72906121e5565b806000036113f457610fb783836000611c8f565b6005546001600160a01b0384811691161480159061142057506005546001600160a01b03838116911614155b801561143457506001600160a01b03821615155b801561144b57506001600160a01b03821661dead14155b80156114615750600754600160a01b900460ff16155b15611774576007546000908190600160b01b900460ff16156114e257600f5461148b906078612097565b4211156114a0576002549150815b90506114eb565b60646114ab60025490565b6114b69060026120aa565b6114c091906120c1565b915060646114cd60025490565b6114d89060026120aa565b61149991906120c1565b50506009546008545b6001600160a01b03851660009081526010602052604090205460ff16801561152c57506001600160a01b03841660009081526012602052604090205460ff16155b1561161d57818311156115a05760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b6064820152608401610a72565b806115c0856001600160a01b031660009081526020819052604090205490565b6115ca9085612097565b11156116185760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b611771565b6001600160a01b03841660009081526010602052604090205460ff16801561165e57506001600160a01b03851660009081526012602052604090205460ff16155b156116d957818311156116185760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e0000000000000000006064820152608401610a72565b6001600160a01b03841660009081526012602052604090205460ff166117715780611719856001600160a01b031660009081526020819052604090205490565b6117239085612097565b11156117715760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610a72565b50505b6007546001600160a01b03841660009081526011602052604090205460ff600160a01b9092048216159116806117c257506001600160a01b03831660009081526011602052604090205460ff165b156117cb575060005b6000808215611932576001600160a01b03851660009081526010602052604090205460ff1680156117fe57506000600b54115b1561187957600754600160a81b900460ff161561185857600f546118239060f0612097565b4211156118335750600b5461185d565b600f54611841906078612097565b4211156118505750600561185d565b50600a61185d565b50600b545b611872606461186c8684611db9565b90611dcc565b9150611914565b6001600160a01b03861660009081526010602052604090205460ff1680156118a357506000600a54115b1561191457600754600160a81b900460ff16156118fd57600f546118c89060f0612097565b4211156118d85750600a54611902565b600f546118e6906078612097565b4211156118f557506005611902565b50600a611902565b50600a545b611911606461186c8684611db9565b91505b811561192557611925863084611c8f565b61192f8285612212565b93505b61193d868686611c8f565b5050600c54600b5550505050565b6001600160a01b0382166119ab5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a72565b6001600160a01b03821660009081526020819052604090205481811015611a1f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a72565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab257611ab2612052565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b549190612225565b81600181518110611b6757611b67612052565b60200260200101906001600160a01b031690816001600160a01b031681525050611bb2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611109565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c07908590600090869030904290600401612242565b600060405180830381600087803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611cb55760405162461bcd60e51b8152600401610a729061215d565b6001600160a01b038216611cdb5760405162461bcd60e51b8152600401610a72906121a2565b6001600160a01b03831660009081526020819052604090205481811015611d535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a72565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108e7565b6000611dc582846120aa565b9392505050565b6000611dc582846120c1565b600060208083528351808285015260005b81811015611e0557858101830151858201604001528201611de9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461093d57600080fd5b60008060408385031215611e4e57600080fd5b8235611e5981611e26565b946020939093013593505050565b801515811461093d57600080fd5b600060208284031215611e8757600080fd5b8135611dc581611e67565b600080600060408486031215611ea757600080fd5b833567ffffffffffffffff80821115611ebf57600080fd5b818601915086601f830112611ed357600080fd5b813581811115611ee257600080fd5b8760208260051b8501011115611ef757600080fd5b60209283019550935050840135611f0d81611e67565b809150509250925092565b600080600060608486031215611f2d57600080fd5b8335611f3881611e26565b92506020840135611f4881611e26565b929592945050506040919091013590565b600060208284031215611f6b57600080fd5b5035919050565b600060208284031215611f8457600080fd5b8135611dc581611e26565b60008060408385031215611fa257600080fd5b50508035926020909101359150565b60008060408385031215611fc457600080fd5b8235611fcf81611e26565b91506020830135611fdf81611e67565b809150509250929050565b60008060408385031215611ffd57600080fd5b823561200881611e26565b91506020830135611fdf81611e26565b600181811c9082168061202c57607f821691505b60208210810361204c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161209057612090612068565b5060010190565b8082018082111561084257610842612068565b808202811582820484141761084257610842612068565b6000826120de57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561213957600080fd5b5051919050565b60006020828403121561215257600080fd5b8151611dc581611e67565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561084257610842612068565b60006020828403121561223757600080fd5b8151611dc581611e26565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122925784516001600160a01b03168352938301939183019160010161226d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122033355614f17890749efd76dc026632407b347647f52e8f274109b05dc2954b4f64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000494794ba9a5870ebfcb323ee611e222e02d9e608
-----Decoded View---------------
Arg [0] : _owner (address): 0x494794Ba9a5870ebFcb323eE611E222E02D9E608
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000494794ba9a5870ebfcb323ee611e222e02d9e608
Deployed Bytecode Sourcemap
42815:11933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24692:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27193:242;;;;;;;;;;-1:-1:-1;27193:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;27193:242:0;1023:187:1;46125:107:0;;;;;;;;;;-1:-1:-1;46125:107:0;;;;;:::i;:::-;;:::i;:::-;;48222:241;;;;;;;;;;-1:-1:-1;48222:241:0;;;;;:::i;:::-;;:::i;42895:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2530:32:1;;;2512:51;;2500:2;2485:18;42895:51:0;2339:230:1;25821:108:0;;;;;;;;;;-1:-1:-1;25909:12:0;;25821:108;;;2720:25:1;;;2708:2;2693:18;25821:108:0;2574:177:1;43247:36:0;;;;;;;;;;;;;;;;28015:295;;;;;;;;;;-1:-1:-1;28015:295:0;;;;;:::i;:::-;;:::i;42990:53::-;;;;;;;;;;;;43036:6;42990:53;;25663:93;;;;;;;;;;-1:-1:-1;25663:93:0;;25746:2;3567:36:1;;3555:2;3540:18;25663:93:0;3425:184:1;28719:270:0;;;;;;;;;;-1:-1:-1;28719:270:0;;;;;:::i;:::-;;:::i;43162:40::-;;;;;;;;;;-1:-1:-1;43162:40:0;;;;-1:-1:-1;;;43162:40:0;;;;;;45919:81;;;;;;;;;;-1:-1:-1;45919:81:0;;;;;:::i;:::-;;:::i;42955:28::-;;;;;;;;;;-1:-1:-1;42955:28:0;;;;-1:-1:-1;;;;;42955:28:0;;;49704:126;;;;;;;;;;-1:-1:-1;49704:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;49794:28:0;49770:4;49794:28;;;:19;:28;;;;;;;;;49704:126;49132:336;;;;;;;;;;;;;:::i;46553:504::-;;;;;;;;;;-1:-1:-1;46553:504:0;;;;;:::i;:::-;;:::i;25992:177::-;;;;;;;;;;-1:-1:-1;25992:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;26143:18:0;26111:7;26143:18;;;;;;;;;;;;25992:177;10930:103;;;;;;;;;;;;;:::i;47515:168::-;;;;;;;;;;-1:-1:-1;47515:168:0;;;;;:::i;:::-;;:::i;47065:169::-;;;;;;;;;;-1:-1:-1;47065:169:0;;;;;:::i;:::-;;:::i;43050:30::-;;;;;;;;;;-1:-1:-1;43050:30:0;;;;-1:-1:-1;;;;;43050:30:0;;;43443:25;;;;;;;;;;;;;;;;43383:20;;;;;;;;;;-1:-1:-1;43383:20:0;;;;;;;;10289:87;;;;;;;;;;-1:-1:-1;10362:6:0;;-1:-1:-1;;;;;10362:6:0;10289:87;;46240:305;;;;;;;;;;;;;:::i;24911:104::-;;;;;;;;;;;;;:::i;29492:505::-;;;;;;;;;;-1:-1:-1;29492:505:0;;;;;:::i;:::-;;:::i;26375:234::-;;;;;;;;;;-1:-1:-1;26375:234:0;;;;;:::i;:::-;;:::i;47905:309::-;;;;;;;;;;-1:-1:-1;47905:309:0;;;;;:::i;:::-;;:::i;48471:173::-;;;;;;;;;;-1:-1:-1;48471:173:0;;;;;:::i;:::-;;:::i;46008:109::-;;;;;;;;;;-1:-1:-1;46008:109:0;;;;;:::i;:::-;;:::i;48652:472::-;;;;;;;;;;-1:-1:-1;48652:472:0;;;;;:::i;:::-;;:::i;43410:26::-;;;;;;;;;;;;;;;;47242:265;;;;;;;;;;-1:-1:-1;47242:265:0;;;;;:::i;:::-;;:::i;43209:31::-;;;;;;;;;;;;;;;;26672:201;;;;;;;;;;-1:-1:-1;26672:201:0;;;;;:::i;:::-;;:::i;43319:23::-;;;;;;;;;;;;;;;;43290:22;;;;;;;;;;;;;;;;47691:206;;;;;;;;;;-1:-1:-1;47691:206:0;;;;;:::i;:::-;;:::i;43116:39::-;;;;;;;;;;-1:-1:-1;43116:39:0;;;;-1:-1:-1;;;43116:39:0;;;;;;11188:238;;;;;;;;;;-1:-1:-1;11188:238:0;;;;;:::i;:::-;;:::i;24692:100::-;24746:13;24779:5;24772:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24692:100;:::o;27193:242::-;27312:4;8914:10;27373:32;8914:10;27389:7;27398:6;27373:8;:32::i;:::-;27423:4;27416:11;;;27193:242;;;;;:::o;46125:107::-;10175:13;:11;:13::i;:::-;46197:19:::1;:27:::0;;;::::1;;-1:-1:-1::0;;;46197:27:0::1;-1:-1:-1::0;;;;46197:27:0;;::::1;::::0;;;::::1;::::0;;46125:107::o;48222:241::-;10175:13;:11;:13::i;:::-;48348:9:::1;48343:113;48363:19:::0;;::::1;48343:113;;;48439:5;48404:19;:32;48424:8;;48433:1;48424:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48404:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48404:32:0;:40;;-1:-1:-1;;48404:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48384:3;::::1;::::0;::::1;:::i;:::-;;;;48343:113;;;;48222:241:::0;;;:::o;28015:295::-;28146:4;8914:10;28204:38;28220:4;8914:10;28235:6;28204:15;:38::i;:::-;28253:27;28263:4;28269:2;28273:6;28253:9;:27::i;:::-;-1:-1:-1;28298:4:0;;28015:295;-1:-1:-1;;;;28015:295:0:o;28719:270::-;28834:4;8914:10;28895:64;8914:10;28911:7;28948:10;28920:25;8914:10;28911:7;28920:9;:25::i;:::-;:38;;;;:::i;:::-;28895:8;:64::i;45919:81::-;45967:25;45973:10;45985:6;45967:5;:25::i;:::-;45919:81;:::o;49132:336::-;10175:13;:11;:13::i;:::-;44025:9:::1;:16:::0;;-1:-1:-1;;;;44025:16:0::1;-1:-1:-1::0;;;44025:16:0::1;::::0;;49191:66:::2;49222:24;49240:4;-1:-1:-1::0;;;;;26143:18:0;26111:7;26143:18;;;;;;;;;;;;25992:177;49222:24:::2;49191:16;:66::i;:::-;49414:15;::::0;49406:54:::2;::::0;49291:21:::2;::::0;;;49270:18:::2;::::0;-1:-1:-1;;;;;49414:15:0::2;::::0;49291:21;;49270:18;49406:54;49270:18;49406:54;49291:21;49414:15;49406:54:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;44064:9:0::1;:17:::0;;-1:-1:-1;;;;44064:17:0::1;::::0;;-1:-1:-1;;;;49132:336:0:o;46553:504::-;10175:13;:11;:13::i;:::-;46743:4:::1;46722:13;25909:12:::0;;;25821:108;46722:13:::1;:17;::::0;46738:1:::1;46722:17;:::i;:::-;46721:26;;;;:::i;:::-;46702:14;:46;;46680:136;;;::::0;-1:-1:-1;;;46680:136:0;;6810:2:1;46680:136:0::1;::::0;::::1;6792:21:1::0;6849:2;6829:18;;;6822:30;6888:34;6868:18;;;6861:62;-1:-1:-1;;;6939:18:1;;;6932:38;6987:19;;46680:136:0::1;;;;;;;;;46885:4;46864:13;25909:12:::0;;;25821:108;46864:13:::1;:17;::::0;46880:1:::1;46864:17;:::i;:::-;46863:26;;;;:::i;:::-;46849:9;:41;;46827:134;;;::::0;-1:-1:-1;;;46827:134:0;;7219:2:1;46827:134:0::1;::::0;::::1;7201:21:1::0;7258:2;7238:18;;;7231:30;7297:34;7277:18;;;7270:62;-1:-1:-1;;;7348:18:1;;;7341:41;7399:19;;46827:134:0::1;7017:407:1::0;46827:134:0::1;46972:21;:38:::0;;;;47021:16:::1;:28:::0;46553:504::o;10930:103::-;10175:13;:11;:13::i;:::-;10995:30:::1;11022:1;10995:18;:30::i;:::-;10930:103::o:0;47515:168::-;10175:13;:11;:13::i;:::-;47584:7:::1;:18:::0;;;47621:13;::::1;;47613:62;;;;-1:-1:-1::0;;;47613:62:0::1;;;;;;;:::i;47065:169::-:0;10175:13;:11;:13::i;:::-;-1:-1:-1;;;;;47179:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:47;;-1:-1:-1;;47179:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47065:169::o;46240:305::-;10175:13;:11;:13::i;:::-;46323:8:::1;::::0;::::1;;46322:9;46314:46;;;::::0;-1:-1:-1;;;46314:46:0;;8036:2:1;46314:46:0::1;::::0;::::1;8018:21:1::0;8075:2;8055:18;;;8048:30;8114:26;8094:18;;;8087:54;8158:18;;46314:46:0::1;7834:348:1::0;46314:46:0::1;46371:8;:15:::0;;-1:-1:-1;;46371:15:0::1;46382:4;46371:15;::::0;;46411:12:::1;46397:11;:26:::0;46447:15:::1;46434:10;:28:::0;46473:19:::1;:26:::0;;-1:-1:-1;;;;;;;46510:27:0;;;;;;46240:305::o;24911:104::-;24967:13;25000:7;24993:14;;;;;:::i;29492:505::-;29612:4;8914:10;29612:4;29700:25;8914:10;29717:7;29700:9;:25::i;:::-;29673:52;;29778:15;29758:16;:35;;29736:122;;;;-1:-1:-1;;;29736:122:0;;8389:2:1;29736:122:0;;;8371:21:1;8428:2;8408:18;;;8401:30;8467:34;8447:18;;;8440:62;-1:-1:-1;;;8518:18:1;;;8511:35;8563:19;;29736:122:0;8187:401:1;29736:122:0;29894:60;29903:5;29910:7;29938:15;29919:16;:34;29894:8;:60::i;26375:234::-;26490:4;8914:10;26551:28;8914:10;26568:2;26572:6;26551:9;:28::i;47905:309::-;10175:13;:11;:13::i;:::-;-1:-1:-1;;;;;47998:30:0;::::1;47990:59;;;::::0;-1:-1:-1;;;47990:59:0;;8795:2:1;47990:59:0::1;::::0;::::1;8777:21:1::0;8834:2;8814:18;;;8807:30;-1:-1:-1;;;8853:18:1;;;8846:46;8909:18;;47990:59:0::1;8593:340:1::0;47990:59:0::1;48080:15;::::0;;-1:-1:-1;;;;;48106:34:0;;::::1;-1:-1:-1::0;;;;;;48106:34:0;::::1;::::0;::::1;::::0;;;48156:50:::1;::::0;48080:15;::::1;::::0;;;48156:50:::1;::::0;48060:17:::1;::::0;48156:50:::1;47979:235;47905:309:::0;:::o;48471:173::-;10175:13;:11;:13::i;:::-;-1:-1:-1;;;;;48553:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:36;;-1:-1:-1;;48553:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;48605:31;;1163:41:1;;;48605:31:0::1;::::0;1136:18:1;48605:31:0::1;;;;;;;48471:173:::0;;:::o;46008:109::-;10175:13;:11;:13::i;:::-;46081:20:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;46081:28:0::1;-1:-1:-1::0;;;;46081:28:0;;::::1;::::0;;;::::1;::::0;;46008:109::o;48652:472::-;10175:13;:11;:13::i;:::-;-1:-1:-1;;;;;48726:17:0;::::1;48722:395;;48801:86;::::0;48760:12:::1;::::0;48809:10:::1;::::0;48833:21:::1;::::0;48760:12;48801:86;48760:12;48801:86;48833:21;48809:10;48801:86:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;48722:395:0::1;::::0;-1:-1:-1;;;48722:395:0::1;;48928:36;::::0;-1:-1:-1;;;48928:36:0;;48958:4:::1;48928:36;::::0;::::1;2512:51:1::0;48967:1:0::1;::::0;-1:-1:-1;;;;;48928:21:0;::::1;::::0;::::1;::::0;2485:18:1;;48928:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;48920:62;;;::::0;-1:-1:-1;;;48920:62:0;;9329:2:1;48920:62:0::1;::::0;::::1;9311:21:1::0;9368:1;9348:18;;;9341:29;-1:-1:-1;;;9386:18:1;;;9379:39;9435:18;;48920:62:0::1;9127:332:1::0;48920:62:0::1;49014:36;::::0;-1:-1:-1;;;49014:36:0;;49044:4:::1;49014:36;::::0;::::1;2512:51:1::0;48997:14:0::1;::::0;-1:-1:-1;;;;;49014:21:0;::::1;::::0;::::1;::::0;2485:18:1;;49014:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49065:40;::::0;-1:-1:-1;;;49065:40:0;;49086:10:::1;49065:40;::::0;::::1;9638:51:1::0;9705:18;;;9698:34;;;48997:53:0;;-1:-1:-1;;;;;;49065:20:0;::::1;::::0;::::1;::::0;9611:18:1;;49065:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48905:212;48652:472:::0;:::o;47242:265::-;10175:13;:11;:13::i;:::-;47380:9:::1;47375:125;47395:19:::0;;::::1;47375:125;;;47483:5;47436:31;:44;47468:8;;47477:1;47468:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47436:44:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47436:44:0;:52;;-1:-1:-1;;47436:52:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47416:3;::::1;::::0;::::1;:::i;:::-;;;;47375:125;;26672:201:::0;-1:-1:-1;;;;;26838:18:0;;;26806:7;26838:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26672:201::o;47691:206::-;10175:13;:11;:13::i;:::-;47762:8:::1;:20:::0;;;47793:11:::1;:22:::0;;;47846:2:::1;47834:14:::0;::::1;;47826:63;;;;-1:-1:-1::0;;;47826:63:0::1;;;;;;;:::i;11188:238::-:0;10175:13;:11;:13::i;:::-;-1:-1:-1;;;;;11291:22:0;::::1;11269:110;;;::::0;-1:-1:-1;;;11269:110:0;;10195:2:1;11269:110:0::1;::::0;::::1;10177:21:1::0;10234:2;10214:18;;;10207:30;10273:34;10253:18;;;10246:62;-1:-1:-1;;;10324:18:1;;;10317:36;10370:19;;11269:110:0::1;9993:402:1::0;11269:110:0::1;11390:28;11409:8;11390:18;:28::i;33625:380::-:0;-1:-1:-1;;;;;33761:19:0;;33753:68;;;;-1:-1:-1;;;33753:68:0;;10602:2:1;33753:68:0;;;10584:21:1;10641:2;10621:18;;;10614:30;10680:34;10660:18;;;10653:62;-1:-1:-1;;;10731:18:1;;;10724:34;10775:19;;33753:68:0;10400:400:1;33753:68:0;-1:-1:-1;;;;;33840:21:0;;33832:68;;;;-1:-1:-1;;;33832:68:0;;11007:2:1;33832:68:0;;;10989:21:1;11046:2;11026:18;;;11019:30;11085:34;11065:18;;;11058:62;-1:-1:-1;;;11136:18:1;;;11129:32;11178:19;;33832:68:0;10805:398:1;33832:68:0;-1:-1:-1;;;;;33913:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33965:32;;2720:25:1;;;33965:32:0;;2693:18:1;33965:32:0;;;;;;;33625:380;;;:::o;10454:132::-;10362:6;;-1:-1:-1;;;;;10362:6:0;8914:10;10518:23;10510:68;;;;-1:-1:-1;;;10510:68:0;;11410:2:1;10510:68:0;;;11392:21:1;;;11429:18;;;11422:30;11488:34;11468:18;;;11461:62;11540:18;;10510:68:0;11208:356:1;34296:502:0;34431:24;34458:25;34468:5;34475:7;34458:9;:25::i;:::-;34431:52;;-1:-1:-1;;34498:16:0;:37;34494:297;;34598:6;34578:16;:26;;34552:117;;;;-1:-1:-1;;;34552:117:0;;11771:2:1;34552:117:0;;;11753:21:1;11810:2;11790:18;;;11783:30;11849:31;11829:18;;;11822:59;11898:18;;34552:117:0;11569:353:1;34552:117:0;34713:51;34722:5;34729:7;34757:6;34738:16;:25;34713:8;:51::i;49838:4044::-;-1:-1:-1;;;;;49970:18:0;;49962:68;;;;-1:-1:-1;;;49962:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50049:16:0;;50041:64;;;;-1:-1:-1;;;50041:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50127:12:0;;;;;;:6;:12;;;;;;;;50126:13;50118:45;;;;-1:-1:-1;;;50118:45:0;;;;;;;:::i;:::-;50190:10;50183:18;;;;:6;:18;;;;;;;;50182:19;50174:51;;;;-1:-1:-1;;;50174:51:0;;;;;;;:::i;:::-;50252:9;50245:17;;;;:6;:17;;;;;;;;50244:18;50236:50;;;;-1:-1:-1;;;50236:50:0;;;;;;;:::i;:::-;50303:6;50313:1;50303:11;50299:93;;50331:28;50347:4;50353:2;50357:1;50331:15;:28::i;50299:93::-;10362:6;;-1:-1:-1;;;;;50422:15:0;;;10362:6;;50422:15;;;;:45;;-1:-1:-1;10362:6:0;;-1:-1:-1;;;;;50454:13:0;;;10362:6;;50454:13;;50422:45;:78;;;;-1:-1:-1;;;;;;50484:16:0;;;;50422:78;:112;;;;-1:-1:-1;;;;;;50517:17:0;;43036:6;50517:17;;50422:112;:139;;;;-1:-1:-1;50552:9:0;;-1:-1:-1;;;50552:9:0;;;;50551:10;50422:139;50404:1804;;;50661:20;;50588:22;;;;-1:-1:-1;;;50661:20:0;;;;50657:506;;;50724:10;;:24;;50738:9;50724:24;:::i;:::-;50706:15;:42;50702:320;;;25909:12;;;-1:-1:-1;25909:12:0;50838:13;50826:25;;50657:506;;50702:320;50939:3;50918:13;25909:12;;;25821:108;50918:13;:17;;50934:1;50918:17;:::i;:::-;50917:25;;;;:::i;:::-;50900:42;;50999:3;50978:13;25909:12;;;25821:108;50978:13;:17;;50994:1;50978:17;:::i;:::-;50977:25;;;;:::i;50657:506::-;-1:-1:-1;;51079:21:0;;51131:16;;50657:506;-1:-1:-1;;;;;51201:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;51254:35:0;;;;;;:31;:35;;;;;;;;51253:36;51201:88;51179:1018;;;51364:14;51354:6;:24;;51324:152;;;;-1:-1:-1;;;51324:152:0;;13287:2:1;51324:152:0;;;13269:21:1;13326:2;13306:18;;;13299:30;13365:34;13345:18;;;13338:62;-1:-1:-1;;;13416:18:1;;;13409:52;13478:19;;51324:152:0;13085:418:1;51324:152:0;51551:9;51534:13;51544:2;-1:-1:-1;;;;;26143:18:0;26111:7;26143:18;;;;;;;;;;;;25992:177;51534:13;51525:22;;:6;:22;:::i;:::-;:35;;51495:135;;;;-1:-1:-1;;;51495:135:0;;13710:2:1;51495:135:0;;;13692:21:1;13749:2;13729:18;;;13722:30;13788:28;13768:18;;;13761:56;13834:18;;51495:135:0;13508:350:1;51495:135:0;51179:1018;;;-1:-1:-1;;;;;51687:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;51738:37:0;;;;;;:31;:37;;;;;;;;51737:38;51687:88;51665:532;;;51850:14;51840:6;:24;;51810:153;;;;-1:-1:-1;;;51810:153:0;;14065:2:1;51810:153:0;;;14047:21:1;14104:2;14084:18;;;14077:30;14143:34;14123:18;;;14116:62;14214:25;14194:18;;;14187:53;14257:19;;51810:153:0;13863:419:1;51665:532:0;-1:-1:-1;;;;;51990:35:0;;;;;;:31;:35;;;;;;;;51985:212;;52102:9;52085:13;52095:2;-1:-1:-1;;;;;26143:18:0;26111:7;26143:18;;;;;;;;;;;;25992:177;52085:13;52076:22;;:6;:22;:::i;:::-;:35;;52046:135;;;;-1:-1:-1;;;52046:135:0;;13710:2:1;52046:135:0;;;13692:21:1;13749:2;13729:18;;;13722:30;13788:28;13768:18;;;13761:56;13834:18;;52046:135:0;13508:350:1;52046:135:0;50573:1635;;50404:1804;52236:9;;-1:-1:-1;;;;;52262:25:0;;52220:12;52262:25;;;:19;:25;;;;;;52236:9;-1:-1:-1;;;52236:9:0;;;;;52235:10;;52262:25;;:52;;-1:-1:-1;;;;;;52291:23:0;;;;;;:19;:23;;;;;;;;52262:52;52258:100;;;-1:-1:-1;52341:5:0;52258:100;52370:12;52397:17;52435:7;52431:1365;;;-1:-1:-1;;;;;52463:29:0;;;;;;:25;:29;;;;;;;;:45;;;;;52507:1;52496:8;;:12;52463:45;52459:1188;;;52533:19;;-1:-1:-1;;;52533:19:0;;;;52529:444;;;52599:10;;:24;;52613:9;52599:24;:::i;:::-;52581:15;:42;52577:308;;;-1:-1:-1;52664:8:0;;52529:444;;52577:308;52724:10;;:24;;52738:9;52724:24;:::i;:::-;52706:15;:42;52702:183;;;-1:-1:-1;52789:1:0;52529:444;;52702:183;-1:-1:-1;52859:2:0;52529:444;;;-1:-1:-1;52945:8:0;;52529:444;52998:30;53024:3;52998:21;:6;53009:9;52998:10;:21::i;:::-;:25;;:30::i;:::-;52991:37;;52459:1188;;;-1:-1:-1;;;;;53067:31:0;;;;;;:25;:31;;;;;;;;:46;;;;;53112:1;53102:7;;:11;53067:46;53063:584;;;53138:19;;-1:-1:-1;;;53138:19:0;;;;53134:442;;;53204:10;;:24;;53218:9;53204:24;:::i;:::-;53186:15;:42;53182:307;;;-1:-1:-1;53269:7:0;;53134:442;;53182:307;53328:10;;:24;;53342:9;53328:24;:::i;:::-;53310:15;:42;53306:183;;;-1:-1:-1;53393:1:0;53134:442;;53306:183;-1:-1:-1;53463:2:0;53134:442;;;-1:-1:-1;53549:7:0;;53134:442;53601:30;53627:3;53601:21;:6;53612:9;53601:10;:21::i;:30::-;53594:37;;53063:584;53667:8;;53663:91;;53696:42;53712:4;53726;53733;53696:15;:42::i;:::-;53770:14;53780:4;53770:14;;:::i;:::-;;;52431:1365;53808:33;53824:4;53830:2;53834:6;53808:15;:33::i;:::-;-1:-1:-1;;53863:11:0;;53852:8;:22;-1:-1:-1;;;;49838:4044:0:o;32512:675::-;-1:-1:-1;;;;;32596:21:0;;32588:67;;;;-1:-1:-1;;;32588:67:0;;14622:2:1;32588:67:0;;;14604:21:1;14661:2;14641:18;;;14634:30;14700:34;14680:18;;;14673:62;-1:-1:-1;;;14751:18:1;;;14744:31;14792:19;;32588:67:0;14420:397:1;32588:67:0;-1:-1:-1;;;;;32755:18:0;;32730:22;32755:18;;;;;;;;;;;32792:24;;;;32784:71;;;;-1:-1:-1;;;32784:71:0;;15024:2:1;32784:71:0;;;15006:21:1;15063:2;15043:18;;;15036:30;15102:34;15082:18;;;15075:62;-1:-1:-1;;;15153:18:1;;;15146:32;15195:19;;32784:71:0;14822:398:1;32784:71:0;-1:-1:-1;;;;;32891:18:0;;:9;:18;;;;;;;;;;;32912:23;;;32891:44;;33030:12;:22;;;;;;;33081:37;2720:25:1;;;32891:9:0;;:18;33081:37;;2693:18:1;33081:37:0;;;;;;;49065:40:::1;48905:212;48652:472:::0;:::o;53890:484::-;53989:16;;;54003:1;53989:16;;;;;;;;53965:21;;53989:16;;;;;;;;;;-1:-1:-1;53989:16:0;53965:40;;54034:4;54016;54021:1;54016:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;54016:23:0;;;-1:-1:-1;;;;;54016:23:0;;;;;54060:15;-1:-1:-1;;;;;54060:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54050:4;54055:1;54050:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;54050:32:0;;;-1:-1:-1;;;;;54050:32:0;;;;;54095:62;54112:4;54127:15;54145:11;54095:8;:62::i;:::-;54170:196;;-1:-1:-1;;;54170:196:0;;-1:-1:-1;;;;;54170:15:0;:66;;;;:196;;54251:11;;54277:1;;54293:4;;54320;;54340:15;;54170:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53954:420;53890:484;:::o;11586:191::-;11679:6;;;-1:-1:-1;;;;;11696:17:0;;;-1:-1:-1;;;;;;11696:17:0;;;;;;;11729:40;;11679:6;;;11696:17;11679:6;;11729:40;;11660:16;;11729:40;11649:128;11586:191;:::o;30467:877::-;-1:-1:-1;;;;;30598:18:0;;30590:68;;;;-1:-1:-1;;;30590:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30677:16:0;;30669:64;;;;-1:-1:-1;;;30669:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30819:15:0;;30797:19;30819:15;;;;;;;;;;;30867:21;;;;30845:109;;;;-1:-1:-1;;;30845:109:0;;16800:2:1;30845:109:0;;;16782:21:1;16839:2;16819:18;;;16812:30;16878:34;16858:18;;;16851:62;-1:-1:-1;;;16929:18:1;;;16922:36;16975:19;;30845:109:0;16598:402:1;30845:109:0;-1:-1:-1;;;;;30990:15:0;;;:9;:15;;;;;;;;;;;31008:20;;;30990:38;;31208:13;;;;;;;;;;:23;;;;;;31260:26;;2720:25:1;;;31208:13:0;;31260:26;;2693:18:1;31260:26:0;;;;;;;31299:37;48652:472;15499:98;15557:7;15584:5;15588:1;15584;:5;:::i;:::-;15577:12;15499:98;-1:-1:-1;;;15499:98:0:o;15898:::-;15956:7;15983:5;15987:1;15983;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:118::-;1301:5;1294:13;1287:21;1280:5;1277:32;1267:60;;1323:1;1320;1313:12;1338:241;1394:6;1447:2;1435:9;1426:7;1422:23;1418:32;1415:52;;;1463:1;1460;1453:12;1415:52;1502:9;1489:23;1521:28;1543:5;1521:28;:::i;1584:750::-;1676:6;1684;1692;1745:2;1733:9;1724:7;1720:23;1716:32;1713:52;;;1761:1;1758;1751:12;1713:52;1801:9;1788:23;1830:18;1871:2;1863:6;1860:14;1857:34;;;1887:1;1884;1877:12;1857:34;1925:6;1914:9;1910:22;1900:32;;1970:7;1963:4;1959:2;1955:13;1951:27;1941:55;;1992:1;1989;1982:12;1941:55;2032:2;2019:16;2058:2;2050:6;2047:14;2044:34;;;2074:1;2071;2064:12;2044:34;2129:7;2122:4;2112:6;2109:1;2105:14;2101:2;2097:23;2093:34;2090:47;2087:67;;;2150:1;2147;2140:12;2087:67;2181:4;2173:13;;;;-1:-1:-1;2205:6:1;-1:-1:-1;;2246:20:1;;2233:34;2276:28;2233:34;2276:28;:::i;:::-;2323:5;2313:15;;;1584:750;;;;;:::o;2756:456::-;2833:6;2841;2849;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;2957:9;2944:23;2976:31;3001:5;2976:31;:::i;:::-;3026:5;-1:-1:-1;3083:2:1;3068:18;;3055:32;3096:33;3055:32;3096:33;:::i;:::-;2756:456;;3148:7;;-1:-1:-1;;;3202:2:1;3187:18;;;;3174:32;;2756:456::o;3614:180::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;-1:-1:-1;3765:23:1;;3614:180;-1:-1:-1;3614:180:1:o;3799:247::-;3858:6;3911:2;3899:9;3890:7;3886:23;3882:32;3879:52;;;3927:1;3924;3917:12;3879:52;3966:9;3953:23;3985:31;4010:5;3985:31;:::i;4051:248::-;4119:6;4127;4180:2;4168:9;4159:7;4155:23;4151:32;4148:52;;;4196:1;4193;4186:12;4148:52;-1:-1:-1;;4219:23:1;;;4289:2;4274:18;;;4261:32;;-1:-1:-1;4051:248:1:o;4304:382::-;4369:6;4377;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;4485:9;4472:23;4504:31;4529:5;4504:31;:::i;:::-;4554:5;-1:-1:-1;4611:2:1;4596:18;;4583:32;4624:30;4583:32;4624:30;:::i;:::-;4673:7;4663:17;;;4304:382;;;;;:::o;4691:388::-;4759:6;4767;4820:2;4808:9;4799:7;4795:23;4791:32;4788:52;;;4836:1;4833;4826:12;4788:52;4875:9;4862:23;4894:31;4919:5;4894:31;:::i;:::-;4944:5;-1:-1:-1;5001:2:1;4986:18;;4973:32;5014:33;4973:32;5014:33;:::i;5084:380::-;5163:1;5159:12;;;;5206;;;5227:61;;5281:4;5273:6;5269:17;5259:27;;5227:61;5334:2;5326:6;5323:14;5303:18;5300:38;5297:161;;5380:10;5375:3;5371:20;5368:1;5361:31;5415:4;5412:1;5405:15;5443:4;5440:1;5433:15;5297:161;;5084:380;;;:::o;5469:127::-;5530:10;5525:3;5521:20;5518:1;5511:31;5561:4;5558:1;5551:15;5585:4;5582:1;5575:15;5601:127;5662:10;5657:3;5653:20;5650:1;5643:31;5693:4;5690:1;5683:15;5717:4;5714:1;5707:15;5733:135;5772:3;5793:17;;;5790:43;;5813:18;;:::i;:::-;-1:-1:-1;5860:1:1;5849:13;;5733:135::o;5873:125::-;5938:9;;;5959:10;;;5956:36;;;5972:18;;:::i;6213:168::-;6286:9;;;6317;;6334:15;;;6328:22;;6314:37;6304:71;;6355:18;;:::i;6386:217::-;6426:1;6452;6442:132;;6496:10;6491:3;6487:20;6484:1;6477:31;6531:4;6528:1;6521:15;6559:4;6556:1;6549:15;6442:132;-1:-1:-1;6588:9:1;;6386:217::o;7429:400::-;7631:2;7613:21;;;7670:2;7650:18;;;7643:30;7709:34;7704:2;7689:18;;7682:62;-1:-1:-1;;;7775:2:1;7760:18;;7753:34;7819:3;7804:19;;7429:400::o;8938:184::-;9008:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:52;;;9077:1;9074;9067:12;9029:52;-1:-1:-1;9100:16:1;;8938:184;-1:-1:-1;8938:184:1:o;9743:245::-;9810:6;9863:2;9851:9;9842:7;9838:23;9834:32;9831:52;;;9879:1;9876;9869:12;9831:52;9911:9;9905:16;9930:28;9952:5;9930:28;:::i;11927:401::-;12129:2;12111:21;;;12168:2;12148:18;;;12141:30;12207:34;12202:2;12187:18;;12180:62;-1:-1:-1;;;12273:2:1;12258:18;;12251:35;12318:3;12303:19;;11927:401::o;12333:399::-;12535:2;12517:21;;;12574:2;12554:18;;;12547:30;12613:34;12608:2;12593:18;;12586:62;-1:-1:-1;;;12679:2:1;12664:18;;12657:33;12722:3;12707:19;;12333:399::o;12737:343::-;12939:2;12921:21;;;12978:2;12958:18;;;12951:30;-1:-1:-1;;;13012:2:1;12997:18;;12990:49;13071:2;13056:18;;12737:343::o;14287:128::-;14354:9;;;14375:11;;;14372:37;;;14389:18;;:::i;15357:251::-;15427:6;15480:2;15468:9;15459:7;15455:23;15451:32;15448:52;;;15496:1;15493;15486:12;15448:52;15528:9;15522:16;15547:31;15572:5;15547:31;:::i;15613:980::-;15875:4;15923:3;15912:9;15908:19;15954:6;15943:9;15936:25;15980:2;16018:6;16013:2;16002:9;15998:18;15991:34;16061:3;16056:2;16045:9;16041:18;16034:31;16085:6;16120;16114:13;16151:6;16143;16136:22;16189:3;16178:9;16174:19;16167:26;;16228:2;16220:6;16216:15;16202:29;;16249:1;16259:195;16273:6;16270:1;16267:13;16259:195;;;16338:13;;-1:-1:-1;;;;;16334:39:1;16322:52;;16429:15;;;;16394:12;;;;16370:1;16288:9;16259:195;;;-1:-1:-1;;;;;;;16510:32:1;;;;16505:2;16490:18;;16483:60;-1:-1:-1;;;16574:3:1;16559:19;16552:35;16471:3;15613:980;-1:-1:-1;;;15613:980:1:o
Swarm Source
ipfs://33355614f17890749efd76dc026632407b347647f52e8f274109b05dc2954b4f
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.