ERC-20
Overview
Max Total Supply
100,000,000,000 TETHER
Holders
44
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
976,654,127.279579868 TETHERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Weee
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-13 */ // 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) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Weee is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public markAndDevWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 private buyMarkAndDevFee; uint256 public sellTotalFees; uint256 private sellMarkAndDevFee; uint256 private tokensForMarkAndDev; uint256 private previousFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event markAndDevWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20(unicode"HarryPotterAuntJemimaDonkey7Inu", unicode"TETHER") { uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), type(uint256).max); uint256 totalSupply = 100_000_000_000 ether; maxTransactionAmount = (totalSupply) / 100; //1% of total supply maxWallet = (totalSupply) / 100; //1% of total supply swapTokensAtAmount = (totalSupply * 5) / 10000; buyMarkAndDevFee = 2; buyTotalFees = buyMarkAndDevFee; sellMarkAndDevFee = 2; sellTotalFees = sellMarkAndDevFee; previousFee = sellTotalFees; markAndDevWallet = address(0xD06b78F86E542be2f068C67CCA479321b81395f1); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(markAndDevWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(markAndDevWallet, true); _mint(address(this), totalSupply); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); } function enableTrading() external onlyOwner { require(!tradingActive, "Trading already active."); 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 ); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 tokensInWallet = balanceOf(address(this)); uint256 tokensToAddToLP = tokensInWallet * 9 / 10; //90% of tokens in wallet go to LP uint256 tokensToAddToDeployer = tokensInWallet - tokensToAddToLP - 50; // a little less than 10% FTC uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), tokensToAddToLP, 0, 0, owner(), block.timestamp ); super._transfer(address(this), 0x7D05D0e3d9624140f323e67EbcD24Ce48AD378a5, tokensToAddToDeployer); tradingActive = true; swapEnabled = true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "ERC20: Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "ERC20: Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxWalletAndTxnAmount( uint256 newTxnNum, uint256 newMaxWalletNum ) external onlyOwner { require( newTxnNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxTxn lower than 0.5%" ); require( newMaxWalletNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxWallet lower than 0.5%" ); maxWallet = newMaxWalletNum; maxTransactionAmount = newTxnNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _markAndDevFee ) external onlyOwner { buyMarkAndDevFee = _markAndDevFee; buyTotalFees = buyMarkAndDevFee; require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateSellFees( uint256 _markAndDevFee ) external onlyOwner { sellMarkAndDevFee = _markAndDevFee; sellTotalFees = sellMarkAndDevFee; previousFee = sellTotalFees; require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateMarkAndDevWallet(address _markAndDevWallet) external onlyOwner { require(_markAndDevWallet != address(0), "ERC20: Address 0"); address oldWallet = markAndDevWallet; markAndDevWallet = _markAndDevWallet; emit markAndDevWalletUpdated(markAndDevWallet, oldWallet); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function withdrawStuckETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } function withdrawStuckTokens(address tkn) public onlyOwner { require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _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"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != deadAddress && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "ERC20: Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "ERC20: Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForMarkAndDev += (fees * sellMarkAndDevFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForMarkAndDev += (fees * buyMarkAndDevFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = previousFee; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForMarkAndDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); tokensForMarkAndDev = 0; (success, ) = address(markAndDevWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"markAndDevWalletUpdated","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"markAndDevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_markAndDevFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_markAndDevWallet","type":"address"}],"name":"updateMarkAndDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_markAndDevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600b805461ffff191690553480156200001c57600080fd5b506040518060400160405280601f81526020017f4861727279506f7474657241756e744a656d696d61446f6e6b657937496e7500815250604051806040016040528060068152602001652a22aa2422a960d11b81525081600390816200008391906200061a565b5060046200009282826200061a565b505050620000af620000a96200023060201b60201c565b62000234565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620000d990309060001962000286565b6c01431e0fae6d7217caa0000000620000f4606482620006fc565b60085562000104606482620006fc565b600a55612710620001178260056200071f565b620001239190620006fc565b6009556002600d819055600c819055600f819055600e819055601155600780546001600160a01b03191673d06b78f86e542be2f068c67cca479321b81395f1179055620001846200017c6005546001600160a01b031690565b6001620003b2565b62000191306001620003b2565b620001a061dead6001620003b2565b600754620001b9906001600160a01b03166001620003b2565b620001d8620001d06005546001600160a01b031690565b60016200041b565b620001e53060016200041b565b620001f461dead60016200041b565b608051620002049060016200041b565b6007546200021d906001600160a01b031660016200041b565b62000229308262000450565b5062000755565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620002ee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620003515760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620002e5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620003bc62000513565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200042562000513565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6001600160a01b038216620004a85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002e5565b8060026000828254620004bc91906200073f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200056f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002e5565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005a157607f821691505b602082108103620005c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057157600081815260208120601f850160051c81016020861015620005f15750805b601f850160051c820191505b818110156200061257828155600101620005fd565b505050505050565b81516001600160401b0381111562000636576200063662000576565b6200064e816200064784546200058c565b84620005c8565b602080601f8311600181146200068657600084156200066d5750858301515b600019600386901b1c1916600185901b17855562000612565b600085815260208120601f198616915b82811015620006b75788860151825594840194600190910190840162000696565b5085821015620006d65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000826200071a57634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417620007395762000739620006e6565b92915050565b80820180821115620007395762000739620006e6565b608051612567620007a2600039600081816102970152818161094d015281816109de01528181610b1601528181610c0901528181611fb00152818161206901526120a501526125676000f3fe60806040526004361061021e5760003560e01c80638a8c523c11610123578063c8c8ebe4116100ab578063e2f456051161006f578063e2f456051461064b578063eba4c33314610661578063f2fde38b14610681578063f5648a4f146106a1578063f8b45b05146106b657600080fd5b8063c8c8ebe4146105bf578063cb963728146105d5578063d257b34f146105f5578063d85ba06314610615578063dd62ed3e1461062b57600080fd5b80639d0c6ce4116100f25780639d0c6ce414610525578063a457c2d714610545578063a9059cbb14610565578063bbc0c74214610585578063c02466681461059f57600080fd5b80638a8c523c146104bd5780638da5cb5b146104d257806395d89b41146104f0578063961883991461050557600080fd5b806349bd5a5e116101a657806370a082311161017557806370a0823114610412578063715018a61461044857806371fc46881461045d5780637571336a1461047d578063794618a11461049d57600080fd5b806349bd5a5e146103845780634fbee193146103a45780636a486a8e146103dd5780636ddd1713146103f357600080fd5b806323b872dd116101ed57806323b872dd146102f057806327c8f83514610310578063313ce56714610326578063395093511461034257806342966c681461036257600080fd5b806306fdde031461022a578063095ea7b3146102555780631694505e1461028557806318160ddd146102d157600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106cc565b60405161024c9190612111565b60405180910390f35b34801561026157600080fd5b50610275610270366004612174565b61075e565b604051901515815260200161024c565b34801561029157600080fd5b506102b97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b3480156102dd57600080fd5b506002545b60405190815260200161024c565b3480156102fc57600080fd5b5061027561030b3660046121a0565b610778565b34801561031c57600080fd5b506102b961dead81565b34801561033257600080fd5b506040516012815260200161024c565b34801561034e57600080fd5b5061027561035d366004612174565b61079c565b34801561036e57600080fd5b5061038261037d3660046121e1565b6107be565b005b34801561039057600080fd5b506006546102b9906001600160a01b031681565b3480156103b057600080fd5b506102756103bf3660046121fa565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156103e957600080fd5b506102e2600e5481565b3480156103ff57600080fd5b50600b5461027590610100900460ff1681565b34801561041e57600080fd5b506102e261042d3660046121fa565b6001600160a01b031660009081526020819052604090205490565b34801561045457600080fd5b506103826107cb565b34801561046957600080fd5b506103826104783660046121e1565b6107df565b34801561048957600080fd5b50610382610498366004612225565b61081b565b3480156104a957600080fd5b506103826104b83660046121fa565b61084e565b3480156104c957600080fd5b506103826108f0565b3480156104de57600080fd5b506005546001600160a01b03166102b9565b3480156104fc57600080fd5b5061023f610d11565b34801561051157600080fd5b5061038261052036600461225e565b610d20565b34801561053157600080fd5b506007546102b9906001600160a01b031681565b34801561055157600080fd5b50610275610560366004612174565b610e35565b34801561057157600080fd5b50610275610580366004612174565b610eb0565b34801561059157600080fd5b50600b546102759060ff1681565b3480156105ab57600080fd5b506103826105ba366004612225565b610ebe565b3480156105cb57600080fd5b506102e260085481565b3480156105e157600080fd5b506103826105f03660046121fa565b610f25565b34801561060157600080fd5b506102756106103660046121e1565b6110b5565b34801561062157600080fd5b506102e2600c5481565b34801561063757600080fd5b506102e2610646366004612280565b6111f5565b34801561065757600080fd5b506102e260095481565b34801561066d57600080fd5b5061038261067c3660046121e1565b611220565b34801561068d57600080fd5b5061038261069c3660046121fa565b611258565b3480156106ad57600080fd5b506103826112ce565b3480156106c257600080fd5b506102e2600a5481565b6060600380546106db906122ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610707906122ae565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b60003361076c818585611323565b60019150505b92915050565b600033610786858285611447565b6107918585856114bb565b506001949350505050565b60003361076c8185856107af83836111f5565b6107b991906122fe565b611323565b6107c83382611b25565b50565b6107d3611c57565b6107dd6000611cb1565b565b6107e7611c57565b600d819055600c819055600a8111156107c85760405162461bcd60e51b815260040161081290612311565b60405180910390fd5b610823611c57565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b610856611c57565b6001600160a01b03811661089f5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610812565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaaaba21fdc67a4e02f365e1c9558e673ab5131891204b5338beb30926d25c6e90600090a35050565b6108f8611c57565b600b5460ff161561094b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610812565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cd9190612355565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e9190612355565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190612355565b600680546001600160a01b0319166001600160a01b03929092169182179055610afc903090600019611323565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190612372565b50600654610bac906001600160a01b03166001611d03565b600654610bc3906001600160a01b0316600161081b565b3060009081526020819052604081205490600a610be183600961238f565b610beb91906123a6565b905060006032610bfb83856123c8565b610c0591906123c8565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719473085600080610c4e6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cb6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610cdb91906123db565b505050610cfd30737d05d0e3d9624140f323e67ebcd24ce48ad378a583611d57565b5050600b805461ffff191661010117905550565b6060600480546106db906122ae565b610d28611c57565b6103e8610d3460025490565b610d3f90600561238f565b610d4991906123a6565b821015610da95760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610812565b6103e8610db560025490565b610dc090600561238f565b610dca91906123a6565b811015610e2d5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610812565b600a55600855565b60003381610e4382866111f5565b905083811015610ea35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610812565b6107918286868403611323565b60003361076c8185856114bb565b610ec6611c57565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f2d611c57565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f989190612409565b11610fd15760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610812565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103c9190612409565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561108c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b09190612372565b505050565b60006110bf611c57565b620186a06110cc60025490565b6110d790600161238f565b6110e191906123a6565b8210156111565760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610812565b6103e861116260025490565b61116d90600561238f565b61117791906123a6565b8211156111ec5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610812565b50600955600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611228611c57565b600f819055600e8190556011819055600a8111156107c85760405162461bcd60e51b815260040161081290612311565b611260611c57565b6001600160a01b0381166112c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610812565b6107c881611cb1565b6112d6611c57565b604051600090339047908381818185875af1925050503d8060008114611318576040519150601f19603f3d011682016040523d82523d6000602084013e61131d565b606091505b50505050565b6001600160a01b0383166113855760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610812565b6001600160a01b0382166113e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610812565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061145384846111f5565b9050600019811461131d57818110156114ae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610812565b61131d8484848403611323565b6001600160a01b0383166114e15760405162461bcd60e51b815260040161081290612422565b6001600160a01b0382166115075760405162461bcd60e51b815260040161081290612467565b8060000361151b576110b083836000611d57565b6005546001600160a01b0384811691161480159061154757506005546001600160a01b03838116911614155b801561155b57506001600160a01b03821615155b801561157257506001600160a01b03821661dead14155b80156115885750600654600160a01b900460ff16155b156118ab57600b5460ff16611622576001600160a01b03831660009081526012602052604090205460ff16806115d657506001600160a01b03821660009081526012602052604090205460ff165b6116225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610812565b6001600160a01b03831660009081526014602052604090205460ff16801561166357506001600160a01b03821660009081526013602052604090205460ff16155b15611759576008548111156116e05760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610812565b600a546001600160a01b03831660009081526020819052604090205461170690836122fe565b11156117545760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b6118ab565b6001600160a01b03821660009081526014602052604090205460ff16801561179a57506001600160a01b03831660009081526013602052604090205460ff16155b15611817576008548111156117545760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610812565b6001600160a01b03821660009081526013602052604090205460ff166118ab57600a546001600160a01b03831660009081526020819052604090205461185d90836122fe565b11156118ab5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b30600090815260208190526040902054600954811080159081906118d65750600b54610100900460ff165b80156118ec5750600654600160a01b900460ff16155b801561191157506001600160a01b03851660009081526014602052604090205460ff16155b801561193657506001600160a01b03851660009081526012602052604090205460ff16155b801561195b57506001600160a01b03841660009081526012602052604090205460ff16155b15611989576006805460ff60a01b1916600160a01b17905561197b611e81565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806119d757506001600160a01b03851660009081526012602052604090205460ff165b156119e0575060005b60008115611b0b576001600160a01b03861660009081526014602052604090205460ff168015611a1257506000600e54115b15611a7057611a376064611a31600e5488611f3a90919063ffffffff16565b90611f4d565b9050600e54600f5482611a4a919061238f565b611a5491906123a6565b60106000828254611a6591906122fe565b90915550611aed9050565b6001600160a01b03871660009081526014602052604090205460ff168015611a9a57506000600c54115b15611aed57611ab96064611a31600c5488611f3a90919063ffffffff16565b9050600c54600d5482611acc919061238f565b611ad691906123a6565b60106000828254611ae791906122fe565b90915550505b8015611afe57611afe873083611d57565b611b0881866123c8565b94505b611b16878787611d57565b5050601154600e555050505050565b6001600160a01b038216611b855760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610812565b6001600160a01b03821660009081526020819052604090205481811015611bf95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610812565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610812565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d7d5760405162461bcd60e51b815260040161081290612422565b6001600160a01b038216611da35760405162461bcd60e51b815260040161081290612467565b6001600160a01b03831660009081526020819052604090205481811015611e1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610812565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361131d565b306000908152602081905260408120546010549091821580611ea1575081155b15611eab57505050565b600954611eb990601461238f565b831115611ed157600954611ece90601461238f565b92505b611eda83611f59565b600060108190556007546040516001600160a01b039091169147919081818185875af1925050503d8060008114611f2d576040519150601f19603f3d011682016040523d82523d6000602084013e611f32565b606091505b505050505050565b6000611f46828461238f565b9392505050565b6000611f4682846123a6565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f8e57611f8e6124aa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561200c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120309190612355565b81600181518110612043576120436124aa565b60200260200101906001600160a01b031690816001600160a01b03168152505061208e307f000000000000000000000000000000000000000000000000000000000000000084611323565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906120e39085906000908690309042906004016124c0565b600060405180830381600087803b1580156120fd57600080fd5b505af1158015611f32573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561213e57858101830151858201604001528201612122565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107c857600080fd5b6000806040838503121561218757600080fd5b82356121928161215f565b946020939093013593505050565b6000806000606084860312156121b557600080fd5b83356121c08161215f565b925060208401356121d08161215f565b929592945050506040919091013590565b6000602082840312156121f357600080fd5b5035919050565b60006020828403121561220c57600080fd5b8135611f468161215f565b80151581146107c857600080fd5b6000806040838503121561223857600080fd5b82356122438161215f565b9150602083013561225381612217565b809150509250929050565b6000806040838503121561227157600080fd5b50508035926020909101359150565b6000806040838503121561229357600080fd5b823561229e8161215f565b915060208301356122538161215f565b600181811c908216806122c257607f821691505b6020821081036122e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610772576107726122e8565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561236757600080fd5b8151611f468161215f565b60006020828403121561238457600080fd5b8151611f4681612217565b8082028115828204841417610772576107726122e8565b6000826123c357634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610772576107726122e8565b6000806000606084860312156123f057600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561241b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125105784516001600160a01b0316835293830193918301916001016124eb565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122060a22945deea77d882ebf5cc3debce683fb88ebc4e8e09f8fdb492dd0d3d582664736f6c63430008110033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80638a8c523c11610123578063c8c8ebe4116100ab578063e2f456051161006f578063e2f456051461064b578063eba4c33314610661578063f2fde38b14610681578063f5648a4f146106a1578063f8b45b05146106b657600080fd5b8063c8c8ebe4146105bf578063cb963728146105d5578063d257b34f146105f5578063d85ba06314610615578063dd62ed3e1461062b57600080fd5b80639d0c6ce4116100f25780639d0c6ce414610525578063a457c2d714610545578063a9059cbb14610565578063bbc0c74214610585578063c02466681461059f57600080fd5b80638a8c523c146104bd5780638da5cb5b146104d257806395d89b41146104f0578063961883991461050557600080fd5b806349bd5a5e116101a657806370a082311161017557806370a0823114610412578063715018a61461044857806371fc46881461045d5780637571336a1461047d578063794618a11461049d57600080fd5b806349bd5a5e146103845780634fbee193146103a45780636a486a8e146103dd5780636ddd1713146103f357600080fd5b806323b872dd116101ed57806323b872dd146102f057806327c8f83514610310578063313ce56714610326578063395093511461034257806342966c681461036257600080fd5b806306fdde031461022a578063095ea7b3146102555780631694505e1461028557806318160ddd146102d157600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106cc565b60405161024c9190612111565b60405180910390f35b34801561026157600080fd5b50610275610270366004612174565b61075e565b604051901515815260200161024c565b34801561029157600080fd5b506102b97f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b3480156102dd57600080fd5b506002545b60405190815260200161024c565b3480156102fc57600080fd5b5061027561030b3660046121a0565b610778565b34801561031c57600080fd5b506102b961dead81565b34801561033257600080fd5b506040516012815260200161024c565b34801561034e57600080fd5b5061027561035d366004612174565b61079c565b34801561036e57600080fd5b5061038261037d3660046121e1565b6107be565b005b34801561039057600080fd5b506006546102b9906001600160a01b031681565b3480156103b057600080fd5b506102756103bf3660046121fa565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156103e957600080fd5b506102e2600e5481565b3480156103ff57600080fd5b50600b5461027590610100900460ff1681565b34801561041e57600080fd5b506102e261042d3660046121fa565b6001600160a01b031660009081526020819052604090205490565b34801561045457600080fd5b506103826107cb565b34801561046957600080fd5b506103826104783660046121e1565b6107df565b34801561048957600080fd5b50610382610498366004612225565b61081b565b3480156104a957600080fd5b506103826104b83660046121fa565b61084e565b3480156104c957600080fd5b506103826108f0565b3480156104de57600080fd5b506005546001600160a01b03166102b9565b3480156104fc57600080fd5b5061023f610d11565b34801561051157600080fd5b5061038261052036600461225e565b610d20565b34801561053157600080fd5b506007546102b9906001600160a01b031681565b34801561055157600080fd5b50610275610560366004612174565b610e35565b34801561057157600080fd5b50610275610580366004612174565b610eb0565b34801561059157600080fd5b50600b546102759060ff1681565b3480156105ab57600080fd5b506103826105ba366004612225565b610ebe565b3480156105cb57600080fd5b506102e260085481565b3480156105e157600080fd5b506103826105f03660046121fa565b610f25565b34801561060157600080fd5b506102756106103660046121e1565b6110b5565b34801561062157600080fd5b506102e2600c5481565b34801561063757600080fd5b506102e2610646366004612280565b6111f5565b34801561065757600080fd5b506102e260095481565b34801561066d57600080fd5b5061038261067c3660046121e1565b611220565b34801561068d57600080fd5b5061038261069c3660046121fa565b611258565b3480156106ad57600080fd5b506103826112ce565b3480156106c257600080fd5b506102e2600a5481565b6060600380546106db906122ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610707906122ae565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b60003361076c818585611323565b60019150505b92915050565b600033610786858285611447565b6107918585856114bb565b506001949350505050565b60003361076c8185856107af83836111f5565b6107b991906122fe565b611323565b6107c83382611b25565b50565b6107d3611c57565b6107dd6000611cb1565b565b6107e7611c57565b600d819055600c819055600a8111156107c85760405162461bcd60e51b815260040161081290612311565b60405180910390fd5b610823611c57565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b610856611c57565b6001600160a01b03811661089f5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610812565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaaaba21fdc67a4e02f365e1c9558e673ab5131891204b5338beb30926d25c6e90600090a35050565b6108f8611c57565b600b5460ff161561094b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610812565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cd9190612355565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e9190612355565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190612355565b600680546001600160a01b0319166001600160a01b03929092169182179055610afc903090600019611323565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190612372565b50600654610bac906001600160a01b03166001611d03565b600654610bc3906001600160a01b0316600161081b565b3060009081526020819052604081205490600a610be183600961238f565b610beb91906123a6565b905060006032610bfb83856123c8565b610c0591906123c8565b90507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719473085600080610c4e6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cb6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610cdb91906123db565b505050610cfd30737d05d0e3d9624140f323e67ebcd24ce48ad378a583611d57565b5050600b805461ffff191661010117905550565b6060600480546106db906122ae565b610d28611c57565b6103e8610d3460025490565b610d3f90600561238f565b610d4991906123a6565b821015610da95760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610812565b6103e8610db560025490565b610dc090600561238f565b610dca91906123a6565b811015610e2d5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610812565b600a55600855565b60003381610e4382866111f5565b905083811015610ea35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610812565b6107918286868403611323565b60003361076c8185856114bb565b610ec6611c57565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f2d611c57565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f989190612409565b11610fd15760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610812565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103c9190612409565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561108c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b09190612372565b505050565b60006110bf611c57565b620186a06110cc60025490565b6110d790600161238f565b6110e191906123a6565b8210156111565760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610812565b6103e861116260025490565b61116d90600561238f565b61117791906123a6565b8211156111ec5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610812565b50600955600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611228611c57565b600f819055600e8190556011819055600a8111156107c85760405162461bcd60e51b815260040161081290612311565b611260611c57565b6001600160a01b0381166112c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610812565b6107c881611cb1565b6112d6611c57565b604051600090339047908381818185875af1925050503d8060008114611318576040519150601f19603f3d011682016040523d82523d6000602084013e61131d565b606091505b50505050565b6001600160a01b0383166113855760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610812565b6001600160a01b0382166113e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610812565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061145384846111f5565b9050600019811461131d57818110156114ae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610812565b61131d8484848403611323565b6001600160a01b0383166114e15760405162461bcd60e51b815260040161081290612422565b6001600160a01b0382166115075760405162461bcd60e51b815260040161081290612467565b8060000361151b576110b083836000611d57565b6005546001600160a01b0384811691161480159061154757506005546001600160a01b03838116911614155b801561155b57506001600160a01b03821615155b801561157257506001600160a01b03821661dead14155b80156115885750600654600160a01b900460ff16155b156118ab57600b5460ff16611622576001600160a01b03831660009081526012602052604090205460ff16806115d657506001600160a01b03821660009081526012602052604090205460ff165b6116225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610812565b6001600160a01b03831660009081526014602052604090205460ff16801561166357506001600160a01b03821660009081526013602052604090205460ff16155b15611759576008548111156116e05760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610812565b600a546001600160a01b03831660009081526020819052604090205461170690836122fe565b11156117545760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b6118ab565b6001600160a01b03821660009081526014602052604090205460ff16801561179a57506001600160a01b03831660009081526013602052604090205460ff16155b15611817576008548111156117545760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610812565b6001600160a01b03821660009081526013602052604090205460ff166118ab57600a546001600160a01b03831660009081526020819052604090205461185d90836122fe565b11156118ab5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b30600090815260208190526040902054600954811080159081906118d65750600b54610100900460ff165b80156118ec5750600654600160a01b900460ff16155b801561191157506001600160a01b03851660009081526014602052604090205460ff16155b801561193657506001600160a01b03851660009081526012602052604090205460ff16155b801561195b57506001600160a01b03841660009081526012602052604090205460ff16155b15611989576006805460ff60a01b1916600160a01b17905561197b611e81565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806119d757506001600160a01b03851660009081526012602052604090205460ff165b156119e0575060005b60008115611b0b576001600160a01b03861660009081526014602052604090205460ff168015611a1257506000600e54115b15611a7057611a376064611a31600e5488611f3a90919063ffffffff16565b90611f4d565b9050600e54600f5482611a4a919061238f565b611a5491906123a6565b60106000828254611a6591906122fe565b90915550611aed9050565b6001600160a01b03871660009081526014602052604090205460ff168015611a9a57506000600c54115b15611aed57611ab96064611a31600c5488611f3a90919063ffffffff16565b9050600c54600d5482611acc919061238f565b611ad691906123a6565b60106000828254611ae791906122fe565b90915550505b8015611afe57611afe873083611d57565b611b0881866123c8565b94505b611b16878787611d57565b5050601154600e555050505050565b6001600160a01b038216611b855760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610812565b6001600160a01b03821660009081526020819052604090205481811015611bf95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610812565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610812565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d7d5760405162461bcd60e51b815260040161081290612422565b6001600160a01b038216611da35760405162461bcd60e51b815260040161081290612467565b6001600160a01b03831660009081526020819052604090205481811015611e1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610812565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361131d565b306000908152602081905260408120546010549091821580611ea1575081155b15611eab57505050565b600954611eb990601461238f565b831115611ed157600954611ece90601461238f565b92505b611eda83611f59565b600060108190556007546040516001600160a01b039091169147919081818185875af1925050503d8060008114611f2d576040519150601f19603f3d011682016040523d82523d6000602084013e611f32565b606091505b505050505050565b6000611f46828461238f565b9392505050565b6000611f4682846123a6565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f8e57611f8e6124aa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561200c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120309190612355565b81600181518110612043576120436124aa565b60200260200101906001600160a01b031690816001600160a01b03168152505061208e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611323565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906120e39085906000908690309042906004016124c0565b600060405180830381600087803b1580156120fd57600080fd5b505af1158015611f32573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561213e57858101830151858201604001528201612122565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107c857600080fd5b6000806040838503121561218757600080fd5b82356121928161215f565b946020939093013593505050565b6000806000606084860312156121b557600080fd5b83356121c08161215f565b925060208401356121d08161215f565b929592945050506040919091013590565b6000602082840312156121f357600080fd5b5035919050565b60006020828403121561220c57600080fd5b8135611f468161215f565b80151581146107c857600080fd5b6000806040838503121561223857600080fd5b82356122438161215f565b9150602083013561225381612217565b809150509250929050565b6000806040838503121561227157600080fd5b50508035926020909101359150565b6000806040838503121561229357600080fd5b823561229e8161215f565b915060208301356122538161215f565b600181811c908216806122c257607f821691505b6020821081036122e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610772576107726122e8565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561236757600080fd5b8151611f468161215f565b60006020828403121561238457600080fd5b8151611f4681612217565b8082028115828204841417610772576107726122e8565b6000826123c357634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610772576107726122e8565b6000806000606084860312156123f057600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561241b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125105784516001600160a01b0316835293830193918301916001016124eb565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122060a22945deea77d882ebf5cc3debce683fb88ebc4e8e09f8fdb492dd0d3d582664736f6c63430008110033
Deployed Bytecode Sourcemap
34830:11570:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9481:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11989:242;;;;;;;;;;-1:-1:-1;11989:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11989:242:0;1023:187:1;34905:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;34905:51:0;1215:230:1;10613:108:0;;;;;;;;;;-1:-1:-1;10701:12:0;;10613:108;;;1596:25:1;;;1584:2;1569:18;10613:108:0;1450:177:1;12812:295:0;;;;;;;;;;-1:-1:-1;12812:295:0;;;;;:::i;:::-;;:::i;34998:53::-;;;;;;;;;;;;35044:6;34998:53;;10454:93;;;;;;;;;;-1:-1:-1;10454:93:0;;10537:2;2443:36:1;;2431:2;2416:18;10454:93:0;2301:184:1;13517:270:0;;;;;;;;;;-1:-1:-1;13517:270:0;;;;;:::i;:::-;;:::i;37436:83::-;;;;;;;;;;-1:-1:-1;37436:83:0;;;;;:::i;:::-;;:::i;:::-;;34963:28;;;;;;;;;;-1:-1:-1;34963:28:0;;;;-1:-1:-1;;;;;34963:28:0;;;41793:126;;;;;;;;;;-1:-1:-1;41793:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41883:28:0;41859:4;41883:28;;;:19;:28;;;;;;;;;41793:126;35406:28;;;;;;;;;;;;;;;;35289:31;;;;;;;;;;-1:-1:-1;35289:31:0;;;;;;;;;;;10785:177;;;;;;;;;;-1:-1:-1;10785:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10936:18:0;10904:7;10936:18;;;;;;;;;;;;10785:177;2834:103;;;;;;;;;;;;;:::i;40027:254::-;;;;;;;;;;-1:-1:-1;40027:254:0;;;;;:::i;:::-;;:::i;39851:167::-;;;;;;;;;;-1:-1:-1;39851:167:0;;;;;:::i;:::-;;:::i;40596:342::-;;;;;;;;;;-1:-1:-1;40596:342:0;;;;;:::i;:::-;;:::i;37528:1278::-;;;;;;;;;;;;;:::i;2191:87::-;;;;;;;;;;-1:-1:-1;2264:6:0;;-1:-1:-1;;;;;2264:6:0;2191:87;;9701:104;;;;;;;;;;;;;:::i;39335:507::-;;;;;;;;;;-1:-1:-1;39335:507:0;;;;;:::i;:::-;;:::i;35092:31::-;;;;;;;;;;-1:-1:-1;35092:31:0;;;;-1:-1:-1;;;;;35092:31:0;;;14291:506;;;;;;;;;;-1:-1:-1;14291:506:0;;;;;:::i;:::-;;:::i;11169:234::-;;;;;;;;;;-1:-1:-1;11169:234:0;;;;;:::i;:::-;;:::i;35249:33::-;;;;;;;;;;-1:-1:-1;35249:33:0;;;;;;;;40948:182;;;;;;;;;;-1:-1:-1;40948:182:0;;;;;:::i;:::-;;:::i;35133:35::-;;;;;;;;;;;;;;;;41331:255;;;;;;;;;;-1:-1:-1;41331:255:0;;;;;:::i;:::-;;:::i;38815:511::-;;;;;;;;;;-1:-1:-1;38815:511:0;;;;;:::i;:::-;;:::i;35330:27::-;;;;;;;;;;;;;;;;11467:201;;;;;;;;;;-1:-1:-1;11467:201:0;;;;;:::i;:::-;;:::i;35175:33::-;;;;;;;;;;;;;;;;40290:297;;;;;;;;;;-1:-1:-1;40290:297:0;;;;;:::i;:::-;;:::i;3093:238::-;;;;;;;;;;-1:-1:-1;3093:238:0;;;;;:::i;:::-;;:::i;41139:183::-;;;;;;;;;;;;;:::i;35215:24::-;;;;;;;;;;;;;;;;9481:100;9535:13;9568:5;9561:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9481:100;:::o;11989:242::-;12108:4;807:10;12169:32;807:10;12185:7;12194:6;12169:8;:32::i;:::-;12219:4;12212:11;;;11989:242;;;;;:::o;12812:295::-;12943:4;807:10;13001:38;13017:4;807:10;13032:6;13001:15;:38::i;:::-;13050:27;13060:4;13066:2;13070:6;13050:9;:27::i;:::-;-1:-1:-1;13095:4:0;;12812:295;-1:-1:-1;;;;12812:295:0:o;13517:270::-;13632:4;807:10;13693:64;807:10;13709:7;13746:10;13718:25;807:10;13709:7;13718:9;:25::i;:::-;:38;;;;:::i;:::-;13693:8;:64::i;37436:83::-;37486:25;37492:10;37504:6;37486:5;:25::i;:::-;37436:83;:::o;2834:103::-;2076:13;:11;:13::i;:::-;2899:30:::1;2926:1;2899:18;:30::i;:::-;2834:103::o:0;40027:254::-;2076:13;:11;:13::i;:::-;40120:16:::1;:33:::0;;;40164:12:::1;:31:::0;;;40230:2:::1;40214:18:::0;::::1;;40206:67;;;;-1:-1:-1::0;;;40206:67:0::1;;;;;;;:::i;:::-;;;;;;;;39851:167:::0;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;39964:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39964:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39851:167::o;40596:342::-;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;40716:31:0;::::1;40708:60;;;::::0;-1:-1:-1;;;40708:60:0;;5337:2:1;40708:60:0::1;::::0;::::1;5319:21:1::0;5376:2;5356:18;;;5349:30;-1:-1:-1;;;5395:18:1;;;5388:46;5451:18;;40708:60:0::1;5135:340:1::0;40708:60:0::1;40799:16;::::0;;-1:-1:-1;;;;;40826:36:0;;::::1;-1:-1:-1::0;;;;;;40826:36:0;::::1;::::0;::::1;::::0;;;40878:52:::1;::::0;40799:16;::::1;::::0;;;40878:52:::1;::::0;40779:17:::1;::::0;40878:52:::1;40697:241;40596:342:::0;:::o;37528:1278::-;2076:13;:11;:13::i;:::-;37592::::1;::::0;::::1;;37591:14;37583:50;;;::::0;-1:-1:-1;;;37583:50:0;;5682:2:1;37583:50:0::1;::::0;::::1;5664:21:1::0;5721:2;5701:18;;;5694:30;5760:25;5740:18;;;5733:53;5803:18;;37583:50:0::1;5480:347:1::0;37583:50:0::1;37681:15;-1:-1:-1::0;;;;;37681:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37663:55:0::1;;37741:4;37761:15;-1:-1:-1::0;;;;;37761:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37663:131;::::0;-1:-1:-1;;;;;;37663:131:0::1;::::0;;;;;;-1:-1:-1;;;;;6318:15:1;;;37663:131:0::1;::::0;::::1;6300:34:1::0;6370:15;;6350:18;;;6343:43;6235:18;;37663:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37647:13;:147:::0;;-1:-1:-1;;;;;;37647:147:0::1;-1:-1:-1::0;;;;;37647:147:0;;;::::1;::::0;;::::1;::::0;;37805:66:::1;::::0;37822:4:::1;::::0;-1:-1:-1;;37805:8:0::1;:66::i;:::-;37889:13;::::0;37882:111:::1;::::0;-1:-1:-1;;;37882:111:0;;-1:-1:-1;;;;;37934:15:0::1;6589:32:1::0;;37882:111:0::1;::::0;::::1;6571:51:1::0;-1:-1:-1;;6638:18:1;;;6631:34;37889:13:0;;::::1;::::0;37882:29:::1;::::0;6544:18:1;;37882:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;38044:13:0::1;::::0;38007:58:::1;::::0;-1:-1:-1;;;;;38044:13:0::1;::::0;38007:28:::1;:58::i;:::-;38110:13;::::0;38076:55:::1;::::0;-1:-1:-1;;;;;38110:13:0::1;::::0;38076:25:::1;:55::i;:::-;38187:4;38144:22;10936:18:::0;;;;;;;;;;;;38251:2:::1;38230:18;10936::::0;38247:1:::1;38230:18;:::i;:::-;:23;;;;:::i;:::-;38204:49:::0;-1:-1:-1;38299:29:0::1;38366:2;38331:32;38204:49:::0;38331:14;:32:::1;:::i;:::-;:37;;;;:::i;:::-;38299:69;;38412:15;-1:-1:-1::0;;;;;38412:31:0::1;;38451:21;38496:4;38516:15;38547:1;38563::::0;38579:7:::1;2264:6:::0;;-1:-1:-1;;;;;2264:6:0;;2191:87;38579:7:::1;38412:215;::::0;::::1;::::0;;;-1:-1:-1;;;;;;38412:215:0;;;-1:-1:-1;;;;;7813:15:1;;;38412:215:0::1;::::0;::::1;7795:34:1::0;7845:18;;;7838:34;;;;7888:18;;;7881:34;;;;7931:18;;;7924:34;7995:15;;;7974:19;;;7967:44;38601:15:0::1;8027:19:1::0;;;8020:35;7729:19;;38412:215:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38639:97;38663:4;38670:42;38714:21;38639:15;:97::i;:::-;-1:-1:-1::0;;38749:13:0::1;:20:::0;;-1:-1:-1;;38780:18:0;;;;;-1:-1:-1;37528:1278:0:o;9701:104::-;9757:13;9790:7;9783:14;;;;;:::i;39335:507::-;2076:13;:11;:13::i;:::-;39529:4:::1;39508:13;10701:12:::0;;;10613:108;39508:13:::1;:17;::::0;39524:1:::1;39508:17;:::i;:::-;39507:26;;;;:::i;:::-;39493:9;:41;;39471:131;;;::::0;-1:-1:-1;;;39471:131:0;;8579:2:1;39471:131:0::1;::::0;::::1;8561:21:1::0;8618:2;8598:18;;;8591:30;8657:34;8637:18;;;8630:62;-1:-1:-1;;;8708:18:1;;;8701:38;8756:19;;39471:131:0::1;8377:404:1::0;39471:131:0::1;39677:4;39656:13;10701:12:::0;;;10613:108;39656:13:::1;:17;::::0;39672:1:::1;39656:17;:::i;:::-;39655:26;;;;:::i;:::-;39635:15;:47;;39613:140;;;::::0;-1:-1:-1;;;39613:140:0;;8988:2:1;39613:140:0::1;::::0;::::1;8970:21:1::0;9027:2;9007:18;;;9000:30;9066:34;9046:18;;;9039:62;-1:-1:-1;;;9117:18:1;;;9110:41;9168:19;;39613:140:0::1;8786:407:1::0;39613:140:0::1;39764:9;:27:::0;39802:20:::1;:32:::0;39335:507::o;14291:506::-;14411:4;807:10;14411:4;14499:25;807:10;14516:7;14499:9;:25::i;:::-;14472:52;;14577:15;14557:16;:35;;14535:122;;;;-1:-1:-1;;;14535:122:0;;9400:2:1;14535:122:0;;;9382:21:1;9439:2;9419:18;;;9412:30;9478:34;9458:18;;;9451:62;-1:-1:-1;;;9529:18:1;;;9522:35;9574:19;;14535:122:0;9198:401:1;14535:122:0;14693:60;14702:5;14709:7;14737:15;14718:16;:34;14693:8;:60::i;11169:234::-;11284:4;807:10;11345:28;807:10;11362:2;11366:6;11345:9;:28::i;40948:182::-;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;41033:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41033:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41088:34;;1163:41:1;;;41088:34:0::1;::::0;1136:18:1;41088:34:0::1;;;;;;;40948:182:::0;;:::o;41331:255::-;2076:13;:11;:13::i;:::-;41409:36:::1;::::0;-1:-1:-1;;;41409:36:0;;41439:4:::1;41409:36;::::0;::::1;1388:51:1::0;41448:1:0::1;::::0;-1:-1:-1;;;;;41409:21:0;::::1;::::0;::::1;::::0;1361:18:1;;41409:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;41401:62;;;::::0;-1:-1:-1;;;41401:62:0;;9995:2:1;41401:62:0::1;::::0;::::1;9977:21:1::0;10034:1;10014:18;;;10007:29;-1:-1:-1;;;10052:18:1;;;10045:39;10101:18;;41401:62:0::1;9793:332:1::0;41401:62:0::1;41491:36;::::0;-1:-1:-1;;;41491:36:0;;41521:4:::1;41491:36;::::0;::::1;1388:51:1::0;41474:14:0::1;::::0;-1:-1:-1;;;;;41491:21:0;::::1;::::0;::::1;::::0;1361:18:1;;41491:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41538:40;::::0;-1:-1:-1;;;41538:40:0;;41559:10:::1;41538:40;::::0;::::1;6571:51:1::0;6638:18;;;6631:34;;;41474:53:0;;-1:-1:-1;;;;;;41538:20:0;::::1;::::0;::::1;::::0;6544:18:1;;41538:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41390:196;41331:255:::0;:::o;38815:511::-;38923:4;2076:13;:11;:13::i;:::-;39002:6:::1;38981:13;10701:12:::0;;;10613:108;38981:13:::1;:17;::::0;38997:1:::1;38981:17;:::i;:::-;38980:28;;;;:::i;:::-;38967:9;:41;;38945:151;;;::::0;-1:-1:-1;;;38945:151:0;;10332:2:1;38945:151:0::1;::::0;::::1;10314:21:1::0;10371:2;10351:18;;;10344:30;10410:34;10390:18;;;10383:62;10481:30;10461:18;;;10454:58;10529:19;;38945:151:0::1;10130:424:1::0;38945:151:0::1;39164:4;39143:13;10701:12:::0;;;10613:108;39143:13:::1;:17;::::0;39159:1:::1;39143:17;:::i;:::-;39142:26;;;;:::i;:::-;39129:9;:39;;39107:148;;;::::0;-1:-1:-1;;;39107:148:0;;10761:2:1;39107:148:0::1;::::0;::::1;10743:21:1::0;10800:2;10780:18;;;10773:30;10839:34;10819:18;;;10812:62;10910:29;10890:18;;;10883:57;10957:19;;39107:148:0::1;10559:423:1::0;39107:148:0::1;-1:-1:-1::0;39266:18:0::1;:30:::0;39314:4:::1;::::0;38815:511::o;11467:201::-;-1:-1:-1;;;;;11633:18:0;;;11601:7;11633:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11467:201::o;40290:297::-;2076:13;:11;:13::i;:::-;40384:17:::1;:34:::0;;;40429:13:::1;:33:::0;;;40473:11:::1;:27:::0;;;40536:2:::1;40519:19:::0;::::1;;40511:68;;;;-1:-1:-1::0;;;40511:68:0::1;;;;;;;:::i;3093:238::-:0;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;3196:22:0;::::1;3174:110;;;::::0;-1:-1:-1;;;3174:110:0;;11189:2:1;3174:110:0::1;::::0;::::1;11171:21:1::0;11228:2;11208:18;;;11201:30;11267:34;11247:18;;;11240:62;-1:-1:-1;;;11318:18:1;;;11311:36;11364:19;;3174:110:0::1;10987:402:1::0;3174:110:0::1;3295:28;3314:8;3295:18;:28::i;41139:183::-:0;2076:13;:11;:13::i;:::-;41232:82:::1;::::0;41195:12:::1;::::0;41240:10:::1;::::0;41264:21:::1;::::0;41195:12;41232:82;41195:12;41232:82;41264:21;41240:10;41232:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;41139:183:0:o;18440:381::-;-1:-1:-1;;;;;18576:19:0;;18568:68;;;;-1:-1:-1;;;18568:68:0;;11806:2:1;18568:68:0;;;11788:21:1;11845:2;11825:18;;;11818:30;11884:34;11864:18;;;11857:62;-1:-1:-1;;;11935:18:1;;;11928:34;11979:19;;18568:68:0;11604:400:1;18568:68:0;-1:-1:-1;;;;;18655:21:0;;18647:68;;;;-1:-1:-1;;;18647:68:0;;12211:2:1;18647:68:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289:34;12269:18;;;12262:62;-1:-1:-1;;;12340:18:1;;;12333:32;12382:19;;18647:68:0;12009:398:1;18647:68:0;-1:-1:-1;;;;;18729:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18781:32;;1596:25:1;;;18781:32:0;;1569:18:1;18781:32:0;;;;;;;18440:381;;;:::o;19113:502::-;19248:24;19275:25;19285:5;19292:7;19275:9;:25::i;:::-;19248:52;;-1:-1:-1;;19315:16:0;:37;19311:297;;19415:6;19395:16;:26;;19369:117;;;;-1:-1:-1;;;19369:117:0;;12614:2:1;19369:117:0;;;12596:21:1;12653:2;12633:18;;;12626:30;12692:31;12672:18;;;12665:59;12741:18;;19369:117:0;12412:353:1;19369:117:0;19530:51;19539:5;19546:7;19574:6;19555:16;:25;19530:8;:51::i;41928:3341::-;-1:-1:-1;;;;;42060:18:0;;42052:68;;;;-1:-1:-1;;;42052:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42139:16:0;;42131:64;;;;-1:-1:-1;;;42131:64:0;;;;;;;:::i;:::-;42213:6;42223:1;42213:11;42209:93;;42241:28;42257:4;42263:2;42267:1;42241:15;:28::i;42209:93::-;2264:6;;-1:-1:-1;;;;;42333:15:0;;;2264:6;;42333:15;;;;:45;;-1:-1:-1;2264:6:0;;-1:-1:-1;;;;;42365:13:0;;;2264:6;;42365:13;;42333:45;:78;;;;-1:-1:-1;;;;;;42395:16:0;;;;42333:78;:112;;;;-1:-1:-1;;;;;;42428:17:0;;35044:6;42428:17;;42333:112;:138;;;;-1:-1:-1;42463:8:0;;-1:-1:-1;;;42463:8:0;;;;42462:9;42333:138;42315:1512;;;42503:13;;;;42498:210;;-1:-1:-1;;;;;42567:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42596:23:0;;;;;;:19;:23;;;;;;;;42567:52;42537:155;;;;-1:-1:-1;;;42537:155:0;;13782:2:1;42537:155:0;;;13764:21:1;13821:2;13801:18;;;13794:30;13860:31;13840:18;;;13833:59;13909:18;;42537:155:0;13580:353:1;42537:155:0;-1:-1:-1;;;;;42771:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;42824:35:0;;;;;;:31;:35;;;;;;;;42823:36;42771:88;42749:1067;;;42934:20;;42924:6;:30;;42894:164;;;;-1:-1:-1;;;42894:164:0;;14140:2:1;42894:164:0;;;14122:21:1;14179:2;14159:18;;;14152:30;14218:34;14198:18;;;14191:62;14289:30;14269:18;;;14262:58;14337:19;;42894:164:0;13938:424:1;42894:164:0;43133:9;;-1:-1:-1;;;;;10936:18:0;;10904:7;10936:18;;;;;;;;;;;43107:22;;:6;:22;:::i;:::-;:35;;43077:135;;;;-1:-1:-1;;;43077:135:0;;14569:2:1;43077:135:0;;;14551:21:1;14608:2;14588:18;;;14581:30;14647:28;14627:18;;;14620:56;14693:18;;43077:135:0;14367:350:1;43077:135:0;42749:1067;;;-1:-1:-1;;;;;43294:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;43345:37:0;;;;;;:31;:37;;;;;;;;43344:38;43294:88;43272:544;;;43457:20;;43447:6;:30;;43417:165;;;;-1:-1:-1;;;43417:165:0;;14924:2:1;43417:165:0;;;14906:21:1;14963:2;14943:18;;;14936:30;15002:34;14982:18;;;14975:62;15073:31;15053:18;;;15046:59;15122:19;;43417:165:0;14722:425:1;43272:544:0;-1:-1:-1;;;;;43609:35:0;;;;;;:31;:35;;;;;;;;43604:212;;43721:9;;-1:-1:-1;;;;;10936:18:0;;10904:7;10936:18;;;;;;;;;;;43695:22;;:6;:22;:::i;:::-;:35;;43665:135;;;;-1:-1:-1;;;43665:135:0;;14569:2:1;43665:135:0;;;14551:21:1;14608:2;14588:18;;;14581:30;14647:28;14627:18;;;14620:56;14693:18;;43665:135:0;14367:350:1;43665:135:0;43889:4;43840:28;10936:18;;;;;;;;;;;43948;;43924:42;;;;;;;43998:35;;-1:-1:-1;44022:11:0;;;;;;;43998:35;:61;;;;-1:-1:-1;44051:8:0;;-1:-1:-1;;;44051:8:0;;;;44050:9;43998:61;:110;;;;-1:-1:-1;;;;;;44077:31:0;;;;;;:25;:31;;;;;;;;44076:32;43998:110;:153;;;;-1:-1:-1;;;;;;44126:25:0;;;;;;:19;:25;;;;;;;;44125:26;43998:153;:194;;;;-1:-1:-1;;;;;;44169:23:0;;;;;;:19;:23;;;;;;;;44168:24;43998:194;43980:328;;;44219:8;:15;;-1:-1:-1;;;;44219:15:0;-1:-1:-1;;;44219:15:0;;;44252:10;:8;:10::i;:::-;44280:8;:16;;-1:-1:-1;;;;44280:16:0;;;43980:328;44337:8;;-1:-1:-1;;;;;44363:25:0;;44321:12;44363:25;;;:19;:25;;;;;;44337:8;-1:-1:-1;;;44337:8:0;;;;;44336:9;;44363:25;;:52;;-1:-1:-1;;;;;;44392:23:0;;;;;;:19;:23;;;;;;;;44363:52;44359:100;;;-1:-1:-1;44442:5:0;44359:100;44472:12;44506:7;44502:675;;;-1:-1:-1;;;;;44558:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44607:1;44591:13;;:17;44558:50;44554:472;;;44636:34;44666:3;44636:25;44647:13;;44636:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44629:41;;44741:13;;44720:17;;44713:4;:24;;;;:::i;:::-;44712:42;;;;:::i;:::-;44689:19;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;44554:472:0;;-1:-1:-1;44554:472:0;;-1:-1:-1;;;;;44816:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44866:1;44851:12;;:16;44816:51;44812:214;;;44895:33;44924:3;44895:24;44906:12;;44895:6;:10;;:24;;;;:::i;:33::-;44888:40;;44998:12;;44978:16;;44971:4;:23;;;;:::i;:::-;44970:40;;;;:::i;:::-;44947:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44812:214:0;45047:8;;45043:91;;45076:42;45092:4;45106;45113;45076:15;:42::i;:::-;45151:14;45161:4;45151:14;;:::i;:::-;;;44502:675;45190:33;45206:4;45212:2;45216:6;45190:15;:33::i;:::-;-1:-1:-1;;45250:11:0;;45234:13;:27;-1:-1:-1;;;;;41928:3341:0:o;17322:679::-;-1:-1:-1;;;;;17406:21:0;;17398:67;;;;-1:-1:-1;;;17398:67:0;;15354:2:1;17398:67:0;;;15336:21:1;15393:2;15373:18;;;15366:30;15432:34;15412:18;;;15405:62;-1:-1:-1;;;15483:18:1;;;15476:31;15524:19;;17398:67:0;15152:397:1;17398:67:0;-1:-1:-1;;;;;17567:18:0;;17542:22;17567:18;;;;;;;;;;;17604:24;;;;17596:71;;;;-1:-1:-1;;;17596:71:0;;15756:2:1;17596:71:0;;;15738:21:1;15795:2;15775:18;;;15768:30;15834:34;15814:18;;;15807:62;-1:-1:-1;;;15885:18:1;;;15878:32;15927:19;;17596:71:0;15554:398:1;17596:71:0;-1:-1:-1;;;;;17703:18:0;;:9;:18;;;;;;;;;;;17724:23;;;17703:44;;17842:12;:22;;;;;;;17894:37;1596:25:1;;;17703:9:0;;:18;17894:37;;1569:18:1;17894:37:0;;;;;;;41538:40:::1;41390:196;41331:255:::0;:::o;2357:132::-;2264:6;;-1:-1:-1;;;;;2264:6:0;807:10;2421:23;2413:68;;;;-1:-1:-1;;;2413:68:0;;16159:2:1;2413:68:0;;;16141:21:1;;;16178:18;;;16171:30;16237:34;16217:18;;;16210:62;16289:18;;2413:68:0;15957:356:1;3492:191:0;3585:6;;;-1:-1:-1;;;;;3602:17:0;;;-1:-1:-1;;;;;;3602:17:0;;;;;;;3635:40;;3585:6;;;3602:17;3585:6;;3635:40;;3566:16;;3635:40;3555:128;3492:191;:::o;41595:189::-;-1:-1:-1;;;;;41678:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41678:39:0;;;;;;;;;;41736:40;;41678:39;;:31;41736:40;;;41595:189;;:::o;15268:881::-;-1:-1:-1;;;;;15399:18:0;;15391:68;;;;-1:-1:-1;;;15391:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15478:16:0;;15470:64;;;;-1:-1:-1;;;15470:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15622:15:0;;15600:19;15622:15;;;;;;;;;;;15670:21;;;;15648:109;;;;-1:-1:-1;;;15648:109:0;;16520:2:1;15648:109:0;;;16502:21:1;16559:2;16539:18;;;16532:30;16598:34;16578:18;;;16571:62;-1:-1:-1;;;16649:18:1;;;16642:36;16695:19;;15648:109:0;16318:402:1;15648:109:0;-1:-1:-1;;;;;15793:15:0;;;:9;:15;;;;;;;;;;;15811:20;;;15793:38;;16011:13;;;;;;;;;;:23;;;;;;16064:26;;1596:25:1;;;16011:13:0;;16064:26;;1569:18:1;16064:26:0;;;;;;;16104:37;41331:255;45790:607;45873:4;45829:23;10936:18;;;;;;;;;;;45918:19;;10936:18;;45978:20;;;:46;;-1:-1:-1;46002:22:0;;45978:46;45974:85;;;46041:7;;;45790:607::o;45974:85::-;46094:18;;:23;;46115:2;46094:23;:::i;:::-;46076:15;:41;46072:115;;;46152:18;;:23;;46173:2;46152:23;:::i;:::-;46134:41;;46072:115;46200:33;46217:15;46200:16;:33::i;:::-;46269:1;46247:19;:23;;;46309:16;;46301:88;;-1:-1:-1;;;;;46309:16:0;;;;46353:21;;46301:88;;46269:1;46301:88;46353:21;46309:16;46301:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45790:607:0:o;24803:98::-;24861:7;24888:5;24892:1;24888;:5;:::i;:::-;24881:12;24803:98;-1:-1:-1;;;24803:98:0:o;25203:::-;25261:7;25288:5;25292:1;25288;:5;:::i;45278:503::-;45368:16;;;45382:1;45368:16;;;;;;;;45344:21;;45368:16;;;;;;;;;;-1:-1:-1;45368:16:0;45344:40;;45413:4;45395;45400:1;45395:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45395:23:0;;;-1:-1:-1;;;;;45395:23:0;;;;;45439:15;-1:-1:-1;;;;;45439:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45429:4;45434:1;45429:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45429:32:0;;;-1:-1:-1;;;;;45429:32:0;;;;;45475:62;45492:4;45507:15;45525:11;45475:8;:62::i;:::-;45577:196;;-1:-1:-1;;;45577:196:0;;-1:-1:-1;;;;;45577:15:0;:66;;;;:196;;45658:11;;45684:1;;45700:4;;45727;;45747:15;;45577:196;;;:::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;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:248::-;3505:6;3513;3566:2;3554:9;3545:7;3541:23;3537:32;3534:52;;;3582:1;3579;3572:12;3534:52;-1:-1:-1;;3605:23:1;;;3675:2;3660:18;;;3647:32;;-1:-1:-1;3437:248:1:o;3690:388::-;3758:6;3766;3819:2;3807:9;3798:7;3794:23;3790:32;3787:52;;;3835:1;3832;3825:12;3787:52;3874:9;3861:23;3893:31;3918:5;3893:31;:::i;:::-;3943:5;-1:-1:-1;4000:2:1;3985:18;;3972:32;4013:33;3972:32;4013:33;:::i;4083:380::-;4162:1;4158:12;;;;4205;;;4226:61;;4280:4;4272:6;4268:17;4258:27;;4226:61;4333:2;4325:6;4322:14;4302:18;4299:38;4296:161;;4379:10;4374:3;4370:20;4367:1;4360:31;4414:4;4411:1;4404:15;4442:4;4439:1;4432:15;4296:161;;4083:380;;;:::o;4468:127::-;4529:10;4524:3;4520:20;4517:1;4510:31;4560:4;4557:1;4550:15;4584:4;4581:1;4574:15;4600:125;4665:9;;;4686:10;;;4683:36;;;4699:18;;:::i;4730:400::-;4932:2;4914:21;;;4971:2;4951:18;;;4944:30;5010:34;5005:2;4990:18;;4983:62;-1:-1:-1;;;5076:2:1;5061:18;;5054:34;5120:3;5105:19;;4730:400::o;5832:251::-;5902:6;5955:2;5943:9;5934:7;5930:23;5926:32;5923:52;;;5971:1;5968;5961:12;5923:52;6003:9;5997:16;6022:31;6047:5;6022:31;:::i;6676:245::-;6743:6;6796:2;6784:9;6775:7;6771:23;6767:32;6764:52;;;6812:1;6809;6802:12;6764:52;6844:9;6838:16;6863:28;6885:5;6863:28;:::i;6926:168::-;6999:9;;;7030;;7047:15;;;7041:22;;7027:37;7017:71;;7068:18;;:::i;7099:217::-;7139:1;7165;7155:132;;7209:10;7204:3;7200:20;7197:1;7190:31;7244:4;7241:1;7234:15;7272:4;7269:1;7262:15;7155:132;-1:-1:-1;7301:9:1;;7099:217::o;7321:128::-;7388:9;;;7409:11;;;7406:37;;;7423:18;;:::i;8066:306::-;8154:6;8162;8170;8223:2;8211:9;8202:7;8198:23;8194:32;8191:52;;;8239:1;8236;8229:12;8191:52;8268:9;8262:16;8252:26;;8318:2;8307:9;8303:18;8297:25;8287:35;;8362:2;8351:9;8347:18;8341:25;8331:35;;8066:306;;;;;:::o;9604:184::-;9674:6;9727:2;9715:9;9706:7;9702:23;9698:32;9695:52;;;9743:1;9740;9733:12;9695:52;-1:-1:-1;9766:16:1;;9604:184;-1:-1:-1;9604:184:1:o;12770:401::-;12972:2;12954:21;;;13011:2;12991:18;;;12984:30;13050:34;13045:2;13030:18;;13023:62;-1:-1:-1;;;13116:2:1;13101:18;;13094:35;13161:3;13146:19;;12770:401::o;13176:399::-;13378:2;13360:21;;;13417:2;13397:18;;;13390:30;13456:34;13451:2;13436:18;;13429:62;-1:-1:-1;;;13522:2:1;13507:18;;13500:33;13565:3;13550:19;;13176:399::o;16857:127::-;16918:10;16913:3;16909:20;16906:1;16899:31;16949:4;16946:1;16939:15;16973:4;16970:1;16963:15;16989:980;17251:4;17299:3;17288:9;17284:19;17330:6;17319:9;17312:25;17356:2;17394:6;17389:2;17378:9;17374:18;17367:34;17437:3;17432:2;17421:9;17417:18;17410:31;17461:6;17496;17490:13;17527:6;17519;17512:22;17565:3;17554:9;17550:19;17543:26;;17604:2;17596:6;17592:15;17578:29;;17625:1;17635:195;17649:6;17646:1;17643:13;17635:195;;;17714:13;;-1:-1:-1;;;;;17710:39:1;17698:52;;17805:15;;;;17770:12;;;;17746:1;17664:9;17635:195;;;-1:-1:-1;;;;;;;17886:32:1;;;;17881:2;17866:18;;17859:60;-1:-1:-1;;;17950:3:1;17935:19;17928:35;17847:3;16989:980;-1:-1:-1;;;16989:980:1:o
Swarm Source
ipfs://60a22945deea77d882ebf5cc3debce683fb88ebc4e8e09f8fdb492dd0d3d5826
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.