ETH Price: $2,118.79 (-3.34%)

Token

OPOE (OPOE)
 

Overview

Max Total Supply

1,000,000,000,000 OPOE

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 OPOE

Value
$0.00
0xa840ec34a0614f5c6a87a20081e91ebbdc7d624b
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:
OPOE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-29
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// 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/Ownable.sol


// 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/IERC20.sol


// 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/IERC20Metadata.sol


// 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/ERC20.sol


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

    /**
     * @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: popi.sol

//SPDX-License-Identifier: MIT

// Telegram : https://t.me/onlypossibleoneth




pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface DexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract OPOE is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 1_000_000_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(15);
    Tax public sellTaxes = Tax(15);
    Tax public transferTaxes = Tax(15);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => bool) private isblacklisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;

    //Wallets
    address public marketingWallet = 0x00011A8d6B5b0e2f6e3771DC33a95a74D41C1805 ;
    uint256 public maxWalletPercentage = 4;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWalletChanged(uint256 percentage);

    constructor() ERC20("OPOE", "OPOE") {


       uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(0x00011A8d6B5b0e2f6e3771DC33a95a74D41C1805, _totalSupply);
 
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }
    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWalletChanged(_percentage);
}


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }

        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }


        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    // Add transfer delay logic
    if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Check if the addresses are blacklisted
    require(!isblacklisted[_from], "Transfer from blacklisted address");
    require(!isblacklisted[_to], "Transfer to blacklisted address");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }

    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }
    function Isblacklisted(address a) public view returns (bool){
      return isblacklisted[a];
    }

    function addtoblacklist(address[] memory isblacklisted_) public onlyOwner {
        for (uint i = 0; i < isblacklisted_.length; i++) {
            isblacklisted[isblacklisted_[i]] = true;
        }
    }

    function removefromblacklist(address[] memory isnotblacklisted_) public onlyOwner {
      for (uint i = 0; i < isnotblacklisted_.length; i++) {
          isblacklisted[isnotblacklisted_[i]] = false;
      }
    }

        function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"Isblacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"isblacklisted_","type":"address[]"}],"name":"addtoblacklist","outputs":[],"stateMutability":"nonpayable","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":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"isnotblacklisted_","type":"address[]"}],"name":"removefromblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060200160405280600f81525060066000820151816000015550506040518060200160405280600f81525060076000820151816000015550506040518060200160405280600f8152506008600082015181600001555050620f42406c0c9f2c9cd04674edea400000006200007c9190620007d7565b600c556001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff02191690831515021790555072011a8d6b5b0e2f6e3771dc33a95a74d41c1805600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060046010553480156200015157600080fd5b506040518060400160405280600481526020017f4f504f45000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f504f45000000000000000000000000000000000000000000000000000000008152508160039081620001cf919062000a7f565b508060049081620001e1919062000a7f565b50505062000204620001f86200052a60201b60201c565b6200053260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000bd0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000350919062000bd0565b6040518363ffffffff1660e01b81526004016200036f92919062000c13565b6020604051808303816000875af11580156200038f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b5919062000bd0565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200052472011a8d6b5b0e2f6e3771dc33a95a74d41c18056c0c9f2c9cd04674edea40000000620005f860201b60201c565b62000d2c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200066a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006619062000ca1565b60405180910390fd5b6200067e600083836200076560201b60201c565b806002600082825462000692919062000cc3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000745919062000d0f565b60405180910390a362000761600083836200076a60201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007e4826200076f565b9150620007f1836200076f565b92508262000804576200080362000779565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200089157607f821691505b602082108103620008a757620008a662000849565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008d2565b6200091d8683620008d2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009606200095a62000954846200076f565b62000935565b6200076f565b9050919050565b6000819050919050565b6200097c836200093f565b620009946200098b8262000967565b848454620008df565b825550505050565b600090565b620009ab6200099c565b620009b881848462000971565b505050565b5b81811015620009e057620009d4600082620009a1565b600181019050620009be565b5050565b601f82111562000a2f57620009f981620008ad565b62000a0484620008c2565b8101602085101562000a14578190505b62000a2c62000a2385620008c2565b830182620009bd565b50505b505050565b600082821c905092915050565b600062000a546000198460080262000a34565b1980831691505092915050565b600062000a6f838362000a41565b9150826002028217905092915050565b62000a8a826200080f565b67ffffffffffffffff81111562000aa65762000aa56200081a565b5b62000ab2825462000878565b62000abf828285620009e4565b600060209050601f83116001811462000af7576000841562000ae2578287015190505b62000aee858262000a61565b86555062000b5e565b601f19841662000b0786620008ad565b60005b8281101562000b315784890151825560018201915060208501945060208101905062000b0a565b8683101562000b51578489015162000b4d601f89168262000a41565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b988262000b6b565b9050919050565b62000baa8162000b8b565b811462000bb657600080fd5b50565b60008151905062000bca8162000b9f565b92915050565b60006020828403121562000be95762000be862000b66565b5b600062000bf98482850162000bb9565b91505092915050565b62000c0d8162000b8b565b82525050565b600060408201905062000c2a600083018562000c02565b62000c39602083018462000c02565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c89601f8362000c40565b915062000c968262000c51565b602082019050919050565b6000602082019050818103600083015262000cbc8162000c7a565b9050919050565b600062000cd0826200076f565b915062000cdd836200076f565b925082820190508082111562000cf85762000cf7620007a8565b5b92915050565b62000d09816200076f565b82525050565b600060208201905062000d26600083018462000cfe565b92915050565b60805160a051613e5f62000d91600039600081816111c0015281816118230152818161187a01528181611d1901528181611ef60152818161210a015261216a015260008181610e270152818161265701528181612738015261275f0152613e5f6000f3fe60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f3200414610872578063e64b012f146108af578063ef586f71146108d8578063f2fde38b146108ef578063f66895a31461091857610246565b8063afa4f3b21461078b578063b8863115146107b4578063c876d0b9146107df578063dd62ed3e1461080a578063e2f456051461084757610246565b806395d89b41116100f257806395d89b4114610692578063a3ca847d146106bd578063a457c2d7146106e6578063a8b0898214610723578063a9059cbb1461074e57610246565b806376be96f3146105d15780637a845ece146105fc578063864701a5146106255780638a8c523c146106505780638da5cb5b1461066757610246565b806339509351116101bc57806370a082311161018057806370a0823114610510578063715018a61461054d578063735de9f714610564578063751039fc1461058f57806375f0a874146105a657610246565b806339509351146104275780634a74bb02146104645780634ada218b1461048f5780635331803c146104ba578063599ca397146104e557610246565b806318160ddd1161020357806318160ddd1461032e5780631950c21814610359578063224611731461039657806323b872dd146103bf578063313ce567146103fc57610246565b806306fdde031461024b5780630940bbc714610276578063095ea7b31461029f5780630c424284146102dc57806315fac9f41461030557610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610943565b60405161026d919061288f565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906128fb565b6109d5565b005b3480156102ab57600080fd5b506102c660048036038101906102c19190612986565b610a5b565b6040516102d391906129e1565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190612a28565b610a7e565b005b34801561031157600080fd5b5061032c60048036038101906103279190612bb0565b610b27565b005b34801561033a57600080fd5b50610343610bc4565b6040516103509190612c08565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612c23565b610bce565b60405161038d91906129e1565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190612c23565b610c24565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190612c50565b610d22565b6040516103f391906129e1565b60405180910390f35b34801561040857600080fd5b50610411610d51565b60405161041e9190612cbf565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190612986565b610d5a565b60405161045b91906129e1565b60405180910390f35b34801561047057600080fd5b50610479610d91565b60405161048691906129e1565b60405180910390f35b34801561049b57600080fd5b506104a4610da4565b6040516104b191906129e1565b60405180910390f35b3480156104c657600080fd5b506104cf610db7565b6040516104dc9190612c08565b60405180910390f35b3480156104f157600080fd5b506104fa610dc3565b6040516105079190612c08565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612c23565b610dc9565b6040516105449190612c08565b60405180910390f35b34801561055957600080fd5b50610562610e11565b005b34801561057057600080fd5b50610579610e25565b6040516105869190612d39565b60405180910390f35b34801561059b57600080fd5b506105a4610e49565b005b3480156105b257600080fd5b506105bb610e81565b6040516105c89190612d63565b60405180910390f35b3480156105dd57600080fd5b506105e6610ea7565b6040516105f39190612c08565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906128fb565b610ead565b005b34801561063157600080fd5b5061063a610f7d565b6040516106479190612c08565b60405180910390f35b34801561065c57600080fd5b50610665610f89565b005b34801561067357600080fd5b5061067c611005565b6040516106899190612d63565b60405180910390f35b34801561069e57600080fd5b506106a761102f565b6040516106b4919061288f565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906128fb565b6110c1565b005b3480156106f257600080fd5b5061070d60048036038101906107089190612986565b611147565b60405161071a91906129e1565b60405180910390f35b34801561072f57600080fd5b506107386111be565b6040516107459190612d63565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190612986565b6111e2565b60405161078291906129e1565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad91906128fb565b611205565b005b3480156107c057600080fd5b506107c96112bb565b6040516107d691906129e1565b60405180910390f35b3480156107eb57600080fd5b506107f46112ce565b60405161080191906129e1565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612d7e565b6112e1565b60405161083e9190612c08565b60405180910390f35b34801561085357600080fd5b5061085c611368565b6040516108699190612c08565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190612c23565b61136e565b6040516108a691906129e1565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d19190612bb0565b6113c4565b005b3480156108e457600080fd5b506108ed611461565b005b3480156108fb57600080fd5b5061091660048036038101906109119190612c23565b6114a2565b005b34801561092457600080fd5b5061092d611525565b60405161093a9190612c08565b60405180910390f35b60606003805461095290612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461097e90612ded565b80156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b6109dd611531565b80600760000181905550601e811115610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290612e90565b60405180910390fd5b807f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5560405160405180910390a250565b600080610a666115af565b9050610a738185856115b7565b600191505092915050565b610a86611531565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d60405160405180910390a35050565b610b2f611531565b60005b8151811015610bc0576001600a6000848481518110610b5457610b53612eb0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bb890612f0e565b915050610b32565b5050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c2c611531565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290612fc8565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761960405160405180910390a250565b600080610d2d6115af565b9050610d3a858285611780565b610d4585858561180c565b60019150509392505050565b60006012905090565b600080610d656115af565b9050610d86818585610d7785896112e1565b610d819190612fe8565b6115b7565b600191505092915050565b600d60009054906101000a900460ff1681565b600d60029054906101000a900460ff1681565b60088060000154905081565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e19611531565b610e236000611f88565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e51611531565b60646010819055506000600f60006101000a81548160ff0219169083151502179055506000600860000181905550565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b610eb5611531565b60018111610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef9061308e565b60405180910390fd5b6064811115610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613120565b60405180910390fd5b806010819055507fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff681604051610f729190612c08565b60405180910390a150565b60068060000154905081565b610f91611531565b600d60029054906101000a900460ff1615610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061318c565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555043600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461103e90612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461106a90612ded565b80156110b75780601f1061108c576101008083540402835291602001916110b7565b820191906000526020600020905b81548152906001019060200180831161109a57829003601f168201915b5050505050905090565b6110c9611531565b80600660000181905550601e811115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612e90565b60405180910390fd5b807f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb60405160405180910390a250565b6000806111526115af565b9050600061116082866112e1565b9050838110156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9061321e565b60405180910390fd5b6111b282868684036115b7565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806111ed6115af565b90506111fa81858561180c565b600191505092915050565b61120d611531565b60008111801561124357506103e860056c0c9f2c9cd04674edea40000000611235919061323e565b61123f91906132af565b8111155b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990613378565b60405180910390fd5b80600c81905550600c547f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b600d60019054906101000a900460ff1681565b600f60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113cc611531565b60005b815181101561145d576000600a60008484815181106113f1576113f0612eb0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061145590612f0e565b9150506113cf565b5050565b611469611531565b600d60009054906101000a900460ff16611484576001611487565b60005b600d60006101000a81548160ff021916908315150217905550565b6114aa611531565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061340a565b60405180910390fd5b61152281611f88565b50565b60078060000154905081565b6115396115af565b73ffffffffffffffffffffffffffffffffffffffff16611557611005565b73ffffffffffffffffffffffffffffffffffffffff16146115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a490613476565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613508565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c9061359a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117739190612c08565b60405180910390a3505050565b600061178c84846112e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461180657818110156117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90613606565b60405180910390fd5b61180584848484036115b7565b5b50505050565b600f60009054906101000a900460ff1615611995577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156118c957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156119945743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613698565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90613770565b60405180910390fd5b60008111611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613802565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90613894565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790613900565b60405180910390fd5b600060646010546c0c9f2c9cd04674edea40000000611bef919061323e565b611bf991906132af565b9050600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c9f5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cd85750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d1057503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611dc4578082611d7885610dc9565b611d829190612fe8565b1115611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061396c565b60405180910390fd5b5b6000611dd185858561204e565b90506000600c54611de130610dc9565b10159050600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e895750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7557600d60029054906101000a900460ff16611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed4906139d8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16148015611f445750600d60009054906101000a900460ff165b8015611f4d5750805b8015611f665750600d60019054906101000a900460ff16155b15611f7457611f7361220d565b5b5b611f80868684612342565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120f15750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120fe57819050612206565b600060086000015490507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121685760076000015490506121c5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036121c45760066000015490505b5b6000808211156121f557606482856121dd919061323e565b6121e791906132af565b90506121f4863083612342565b5b808461220191906139f8565b925050505b9392505050565b6001600d60016101000a81548160ff021916908315150217905550600061223330610dc9565b9050600081036122435750612340565b61225461224f30610dc9565b6125b8565b6000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161229c90613a5d565b60006040518083038185875af1925050503d80600081146122d9576040519150601f19603f3d011682016040523d82523d6000602084013e6122de565b606091505b5050905080612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990613abe565b60405180910390fd5b6000600d60016101000a81548160ff02191690831515021790555050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890613b50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241790613be2565b60405180910390fd5b61242b8383836127f5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890613c74565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161259f9190612c08565b60405180910390a36125b28484846127fa565b50505050565b6000600267ffffffffffffffff8111156125d5576125d4612a6d565b5b6040519080825280602002602001820160405280156126035781602001602082028036833780820191505090505b509050308160008151811061261b5761261a612eb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e49190613ca9565b816001815181106126f8576126f7612eb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061275d307f0000000000000000000000000000000000000000000000000000000000000000846115b7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016127bf959493929190613dcf565b600060405180830381600087803b1580156127d957600080fd5b505af11580156127ed573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561283957808201518184015260208101905061281e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612861826127ff565b61286b818561280a565b935061287b81856020860161281b565b61288481612845565b840191505092915050565b600060208201905081810360008301526128a98184612856565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6128d8816128c5565b81146128e357600080fd5b50565b6000813590506128f5816128cf565b92915050565b600060208284031215612911576129106128bb565b5b600061291f848285016128e6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061295382612928565b9050919050565b61296381612948565b811461296e57600080fd5b50565b6000813590506129808161295a565b92915050565b6000806040838503121561299d5761299c6128bb565b5b60006129ab85828601612971565b92505060206129bc858286016128e6565b9150509250929050565b60008115159050919050565b6129db816129c6565b82525050565b60006020820190506129f660008301846129d2565b92915050565b612a05816129c6565b8114612a1057600080fd5b50565b600081359050612a22816129fc565b92915050565b60008060408385031215612a3f57612a3e6128bb565b5b6000612a4d85828601612971565b9250506020612a5e85828601612a13565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aa582612845565b810181811067ffffffffffffffff82111715612ac457612ac3612a6d565b5b80604052505050565b6000612ad76128b1565b9050612ae38282612a9c565b919050565b600067ffffffffffffffff821115612b0357612b02612a6d565b5b602082029050602081019050919050565b600080fd5b6000612b2c612b2784612ae8565b612acd565b90508083825260208201905060208402830185811115612b4f57612b4e612b14565b5b835b81811015612b785780612b648882612971565b845260208401935050602081019050612b51565b5050509392505050565b600082601f830112612b9757612b96612a68565b5b8135612ba7848260208601612b19565b91505092915050565b600060208284031215612bc657612bc56128bb565b5b600082013567ffffffffffffffff811115612be457612be36128c0565b5b612bf084828501612b82565b91505092915050565b612c02816128c5565b82525050565b6000602082019050612c1d6000830184612bf9565b92915050565b600060208284031215612c3957612c386128bb565b5b6000612c4784828501612971565b91505092915050565b600080600060608486031215612c6957612c686128bb565b5b6000612c7786828701612971565b9350506020612c8886828701612971565b9250506040612c99868287016128e6565b9150509250925092565b600060ff82169050919050565b612cb981612ca3565b82525050565b6000602082019050612cd46000830184612cb0565b92915050565b6000819050919050565b6000612cff612cfa612cf584612928565b612cda565b612928565b9050919050565b6000612d1182612ce4565b9050919050565b6000612d2382612d06565b9050919050565b612d3381612d18565b82525050565b6000602082019050612d4e6000830184612d2a565b92915050565b612d5d81612948565b82525050565b6000602082019050612d786000830184612d54565b92915050565b60008060408385031215612d9557612d946128bb565b5b6000612da385828601612971565b9250506020612db485828601612971565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0557607f821691505b602082108103612e1857612e17612dbe565b5b50919050565b7f43616e206e6f742073657420627579206665657320686967686572207468616e60008201527f2033302500000000000000000000000000000000000000000000000000000000602082015250565b6000612e7a60248361280a565b9150612e8582612e1e565b604082019050919050565b60006020820190508181036000830152612ea981612e6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f19826128c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4b57612f4a612edf565b5b600182019050919050565b7f63616e206e6f7420736574206d61726b6574696e6720746f206465616420776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000612fb260248361280a565b9150612fbd82612f56565b604082019050919050565b60006020820190508181036000830152612fe181612fa5565b9050919050565b6000612ff3826128c5565b9150612ffe836128c5565b925082820190508082111561301657613015612edf565b5b92915050565b7f50657263656e74616765206d7573742062652067726561746572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600061307860228361280a565b91506130838261301c565b604082019050919050565b600060208201905081810360008301526130a78161306b565b9050919050565b7f50657263656e74616765206d757374206265206c657373207468616e206f722060008201527f657175616c20746f203130300000000000000000000000000000000000000000602082015250565b600061310a602c8361280a565b9150613115826130ae565b604082019050919050565b60006020820190508181036000830152613139816130fd565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613176601a8361280a565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061320860258361280a565b9150613213826131ac565b604082019050919050565b60006020820190508181036000830152613237816131fb565b9050919050565b6000613249826128c5565b9150613254836128c5565b9250828202613262816128c5565b9150828204841483151761327957613278612edf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ba826128c5565b91506132c5836128c5565b9250826132d5576132d4613280565b5b828204905092915050565b7f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160008201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660208201527f20746f74616c20737570706c7921000000000000000000000000000000000000604082015250565b6000613362604e8361280a565b915061336d826132e0565b606082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133f460268361280a565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061346060208361280a565b915061346b8261342a565b602082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134f260248361280a565b91506134fd82613496565b604082019050919050565b60006020820190508181036000830152613521816134e5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061358460228361280a565b915061358f82613528565b604082019050919050565b600060208201905081810360008301526135b381613577565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006135f0601d8361280a565b91506135fb826135ba565b602082019050919050565b6000602082019050818103600083015261361f816135e3565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b600061368260248361280a565b915061368d82613626565b604082019050919050565b600060208201905081810360008301526136b181613675565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b60006136ee601a8361280a565b91506136f9826136b8565b602082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b600061375a60188361280a565b915061376582613724565b602082019050919050565b600060208201905081810360008301526137898161374d565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006137ec60298361280a565b91506137f782613790565b604082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b7f5472616e736665722066726f6d20626c61636b6c69737465642061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061387e60218361280a565b915061388982613822565b604082019050919050565b600060208201905081810360008301526138ad81613871565b9050919050565b7f5472616e7366657220746f20626c61636b6c6973746564206164647265737300600082015250565b60006138ea601f8361280a565b91506138f5826138b4565b602082019050919050565b60006020820190508181036000830152613919816138dd565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000600082015250565b6000613956601d8361280a565b915061396182613920565b602082019050919050565b6000602082019050818103600083015261398581613949565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006139c260128361280a565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b6000613a03826128c5565b9150613a0e836128c5565b9250828203905081811115613a2657613a25612edf565b5b92915050565b600081905092915050565b50565b6000613a47600083613a2c565b9150613a5282613a37565b600082019050919050565b6000613a6882613a3a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613aa860108361280a565b9150613ab382613a72565b602082019050919050565b60006020820190508181036000830152613ad781613a9b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b3a60258361280a565b9150613b4582613ade565b604082019050919050565b60006020820190508181036000830152613b6981613b2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613bcc60238361280a565b9150613bd782613b70565b604082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c5e60268361280a565b9150613c6982613c02565b604082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b600081519050613ca38161295a565b92915050565b600060208284031215613cbf57613cbe6128bb565b5b6000613ccd84828501613c94565b91505092915050565b6000819050919050565b6000613cfb613cf6613cf184613cd6565b612cda565b6128c5565b9050919050565b613d0b81613ce0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d4681612948565b82525050565b6000613d588383613d3d565b60208301905092915050565b6000602082019050919050565b6000613d7c82613d11565b613d868185613d1c565b9350613d9183613d2d565b8060005b83811015613dc2578151613da98882613d4c565b9750613db483613d64565b925050600181019050613d95565b5085935050505092915050565b600060a082019050613de46000830188612bf9565b613df16020830187613d02565b8181036040830152613e038186613d71565b9050613e126060830185612d54565b613e1f6080830184612bf9565b969550505050505056fea2646970667358221220f78e2e99a17764c45e164733aea8d3311309c82cfffc66bfcc12127e05b92d0664736f6c63430008130033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f3200414610872578063e64b012f146108af578063ef586f71146108d8578063f2fde38b146108ef578063f66895a31461091857610246565b8063afa4f3b21461078b578063b8863115146107b4578063c876d0b9146107df578063dd62ed3e1461080a578063e2f456051461084757610246565b806395d89b41116100f257806395d89b4114610692578063a3ca847d146106bd578063a457c2d7146106e6578063a8b0898214610723578063a9059cbb1461074e57610246565b806376be96f3146105d15780637a845ece146105fc578063864701a5146106255780638a8c523c146106505780638da5cb5b1461066757610246565b806339509351116101bc57806370a082311161018057806370a0823114610510578063715018a61461054d578063735de9f714610564578063751039fc1461058f57806375f0a874146105a657610246565b806339509351146104275780634a74bb02146104645780634ada218b1461048f5780635331803c146104ba578063599ca397146104e557610246565b806318160ddd1161020357806318160ddd1461032e5780631950c21814610359578063224611731461039657806323b872dd146103bf578063313ce567146103fc57610246565b806306fdde031461024b5780630940bbc714610276578063095ea7b31461029f5780630c424284146102dc57806315fac9f41461030557610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610943565b60405161026d919061288f565b60405180910390f35b34801561028257600080fd5b5061029d600480360381019061029891906128fb565b6109d5565b005b3480156102ab57600080fd5b506102c660048036038101906102c19190612986565b610a5b565b6040516102d391906129e1565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190612a28565b610a7e565b005b34801561031157600080fd5b5061032c60048036038101906103279190612bb0565b610b27565b005b34801561033a57600080fd5b50610343610bc4565b6040516103509190612c08565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612c23565b610bce565b60405161038d91906129e1565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190612c23565b610c24565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190612c50565b610d22565b6040516103f391906129e1565b60405180910390f35b34801561040857600080fd5b50610411610d51565b60405161041e9190612cbf565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190612986565b610d5a565b60405161045b91906129e1565b60405180910390f35b34801561047057600080fd5b50610479610d91565b60405161048691906129e1565b60405180910390f35b34801561049b57600080fd5b506104a4610da4565b6040516104b191906129e1565b60405180910390f35b3480156104c657600080fd5b506104cf610db7565b6040516104dc9190612c08565b60405180910390f35b3480156104f157600080fd5b506104fa610dc3565b6040516105079190612c08565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612c23565b610dc9565b6040516105449190612c08565b60405180910390f35b34801561055957600080fd5b50610562610e11565b005b34801561057057600080fd5b50610579610e25565b6040516105869190612d39565b60405180910390f35b34801561059b57600080fd5b506105a4610e49565b005b3480156105b257600080fd5b506105bb610e81565b6040516105c89190612d63565b60405180910390f35b3480156105dd57600080fd5b506105e6610ea7565b6040516105f39190612c08565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906128fb565b610ead565b005b34801561063157600080fd5b5061063a610f7d565b6040516106479190612c08565b60405180910390f35b34801561065c57600080fd5b50610665610f89565b005b34801561067357600080fd5b5061067c611005565b6040516106899190612d63565b60405180910390f35b34801561069e57600080fd5b506106a761102f565b6040516106b4919061288f565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906128fb565b6110c1565b005b3480156106f257600080fd5b5061070d60048036038101906107089190612986565b611147565b60405161071a91906129e1565b60405180910390f35b34801561072f57600080fd5b506107386111be565b6040516107459190612d63565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190612986565b6111e2565b60405161078291906129e1565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad91906128fb565b611205565b005b3480156107c057600080fd5b506107c96112bb565b6040516107d691906129e1565b60405180910390f35b3480156107eb57600080fd5b506107f46112ce565b60405161080191906129e1565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612d7e565b6112e1565b60405161083e9190612c08565b60405180910390f35b34801561085357600080fd5b5061085c611368565b6040516108699190612c08565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190612c23565b61136e565b6040516108a691906129e1565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d19190612bb0565b6113c4565b005b3480156108e457600080fd5b506108ed611461565b005b3480156108fb57600080fd5b5061091660048036038101906109119190612c23565b6114a2565b005b34801561092457600080fd5b5061092d611525565b60405161093a9190612c08565b60405180910390f35b60606003805461095290612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461097e90612ded565b80156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b6109dd611531565b80600760000181905550601e811115610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290612e90565b60405180910390fd5b807f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5560405160405180910390a250565b600080610a666115af565b9050610a738185856115b7565b600191505092915050565b610a86611531565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d60405160405180910390a35050565b610b2f611531565b60005b8151811015610bc0576001600a6000848481518110610b5457610b53612eb0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bb890612f0e565b915050610b32565b5050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610c2c611531565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290612fc8565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761960405160405180910390a250565b600080610d2d6115af565b9050610d3a858285611780565b610d4585858561180c565b60019150509392505050565b60006012905090565b600080610d656115af565b9050610d86818585610d7785896112e1565b610d819190612fe8565b6115b7565b600191505092915050565b600d60009054906101000a900460ff1681565b600d60029054906101000a900460ff1681565b60088060000154905081565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e19611531565b610e236000611f88565b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b610e51611531565b60646010819055506000600f60006101000a81548160ff0219169083151502179055506000600860000181905550565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b610eb5611531565b60018111610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef9061308e565b60405180910390fd5b6064811115610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613120565b60405180910390fd5b806010819055507fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff681604051610f729190612c08565b60405180910390a150565b60068060000154905081565b610f91611531565b600d60029054906101000a900460ff1615610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061318c565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555043600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461103e90612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461106a90612ded565b80156110b75780601f1061108c576101008083540402835291602001916110b7565b820191906000526020600020905b81548152906001019060200180831161109a57829003601f168201915b5050505050905090565b6110c9611531565b80600660000181905550601e811115611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612e90565b60405180910390fd5b807f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb60405160405180910390a250565b6000806111526115af565b9050600061116082866112e1565b9050838110156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9061321e565b60405180910390fd5b6111b282868684036115b7565b60019250505092915050565b7f0000000000000000000000001149622d433b356e85e2c36f8124119df35ec8c581565b6000806111ed6115af565b90506111fa81858561180c565b600191505092915050565b61120d611531565b60008111801561124357506103e860056c0c9f2c9cd04674edea40000000611235919061323e565b61123f91906132af565b8111155b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990613378565b60405180910390fd5b80600c81905550600c547f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647660405160405180910390a250565b600d60019054906101000a900460ff1681565b600f60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113cc611531565b60005b815181101561145d576000600a60008484815181106113f1576113f0612eb0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061145590612f0e565b9150506113cf565b5050565b611469611531565b600d60009054906101000a900460ff16611484576001611487565b60005b600d60006101000a81548160ff021916908315150217905550565b6114aa611531565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061340a565b60405180910390fd5b61152281611f88565b50565b60078060000154905081565b6115396115af565b73ffffffffffffffffffffffffffffffffffffffff16611557611005565b73ffffffffffffffffffffffffffffffffffffffff16146115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a490613476565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613508565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c9061359a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117739190612c08565b60405180910390a3505050565b600061178c84846112e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461180657818110156117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90613606565b60405180910390fd5b61180584848484036115b7565b5b50505050565b600f60009054906101000a900460ff1615611995577f0000000000000000000000001149622d433b356e85e2c36f8124119df35ec8c573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156118c957507f0000000000000000000000001149622d433b356e85e2c36f8124119df35ec8c573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156119945743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613698565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90613770565b60405180910390fd5b60008111611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613802565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90613894565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790613900565b60405180910390fd5b600060646010546c0c9f2c9cd04674edea40000000611bef919061323e565b611bf991906132af565b9050600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c9f5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cd85750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d1057503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6857507f0000000000000000000000001149622d433b356e85e2c36f8124119df35ec8c573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611dc4578082611d7885610dc9565b611d829190612fe8565b1115611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061396c565b60405180910390fd5b5b6000611dd185858561204e565b90506000600c54611de130610dc9565b10159050600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e895750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7557600d60029054906101000a900460ff16611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed4906139d8565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000001149622d433b356e85e2c36f8124119df35ec8c573ffffffffffffffffffffffffffffffffffffffff16148015611f445750600d60009054906101000a900460ff165b8015611f4d5750805b8015611f665750600d60019054906101000a900460ff16155b15611f7457611f7361220d565b5b5b611f80868684612342565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120f15750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120fe57819050612206565b600060086000015490507f0000000000000000000000001149622d433b356e85e2c36f8124119df35ec8c573ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121685760076000015490506121c5565b7f0000000000000000000000001149622d433b356e85e2c36f8124119df35ec8c573ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036121c45760066000015490505b5b6000808211156121f557606482856121dd919061323e565b6121e791906132af565b90506121f4863083612342565b5b808461220191906139f8565b925050505b9392505050565b6001600d60016101000a81548160ff021916908315150217905550600061223330610dc9565b9050600081036122435750612340565b61225461224f30610dc9565b6125b8565b6000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161229c90613a5d565b60006040518083038185875af1925050503d80600081146122d9576040519150601f19603f3d011682016040523d82523d6000602084013e6122de565b606091505b5050905080612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990613abe565b60405180910390fd5b6000600d60016101000a81548160ff02191690831515021790555050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890613b50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241790613be2565b60405180910390fd5b61242b8383836127f5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890613c74565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161259f9190612c08565b60405180910390a36125b28484846127fa565b50505050565b6000600267ffffffffffffffff8111156125d5576125d4612a6d565b5b6040519080825280602002602001820160405280156126035781602001602082028036833780820191505090505b509050308160008151811061261b5761261a612eb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e49190613ca9565b816001815181106126f8576126f7612eb0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061275d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115b7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016127bf959493929190613dcf565b600060405180830381600087803b1580156127d957600080fd5b505af11580156127ed573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561283957808201518184015260208101905061281e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612861826127ff565b61286b818561280a565b935061287b81856020860161281b565b61288481612845565b840191505092915050565b600060208201905081810360008301526128a98184612856565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6128d8816128c5565b81146128e357600080fd5b50565b6000813590506128f5816128cf565b92915050565b600060208284031215612911576129106128bb565b5b600061291f848285016128e6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061295382612928565b9050919050565b61296381612948565b811461296e57600080fd5b50565b6000813590506129808161295a565b92915050565b6000806040838503121561299d5761299c6128bb565b5b60006129ab85828601612971565b92505060206129bc858286016128e6565b9150509250929050565b60008115159050919050565b6129db816129c6565b82525050565b60006020820190506129f660008301846129d2565b92915050565b612a05816129c6565b8114612a1057600080fd5b50565b600081359050612a22816129fc565b92915050565b60008060408385031215612a3f57612a3e6128bb565b5b6000612a4d85828601612971565b9250506020612a5e85828601612a13565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aa582612845565b810181811067ffffffffffffffff82111715612ac457612ac3612a6d565b5b80604052505050565b6000612ad76128b1565b9050612ae38282612a9c565b919050565b600067ffffffffffffffff821115612b0357612b02612a6d565b5b602082029050602081019050919050565b600080fd5b6000612b2c612b2784612ae8565b612acd565b90508083825260208201905060208402830185811115612b4f57612b4e612b14565b5b835b81811015612b785780612b648882612971565b845260208401935050602081019050612b51565b5050509392505050565b600082601f830112612b9757612b96612a68565b5b8135612ba7848260208601612b19565b91505092915050565b600060208284031215612bc657612bc56128bb565b5b600082013567ffffffffffffffff811115612be457612be36128c0565b5b612bf084828501612b82565b91505092915050565b612c02816128c5565b82525050565b6000602082019050612c1d6000830184612bf9565b92915050565b600060208284031215612c3957612c386128bb565b5b6000612c4784828501612971565b91505092915050565b600080600060608486031215612c6957612c686128bb565b5b6000612c7786828701612971565b9350506020612c8886828701612971565b9250506040612c99868287016128e6565b9150509250925092565b600060ff82169050919050565b612cb981612ca3565b82525050565b6000602082019050612cd46000830184612cb0565b92915050565b6000819050919050565b6000612cff612cfa612cf584612928565b612cda565b612928565b9050919050565b6000612d1182612ce4565b9050919050565b6000612d2382612d06565b9050919050565b612d3381612d18565b82525050565b6000602082019050612d4e6000830184612d2a565b92915050565b612d5d81612948565b82525050565b6000602082019050612d786000830184612d54565b92915050565b60008060408385031215612d9557612d946128bb565b5b6000612da385828601612971565b9250506020612db485828601612971565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0557607f821691505b602082108103612e1857612e17612dbe565b5b50919050565b7f43616e206e6f742073657420627579206665657320686967686572207468616e60008201527f2033302500000000000000000000000000000000000000000000000000000000602082015250565b6000612e7a60248361280a565b9150612e8582612e1e565b604082019050919050565b60006020820190508181036000830152612ea981612e6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f19826128c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4b57612f4a612edf565b5b600182019050919050565b7f63616e206e6f7420736574206d61726b6574696e6720746f206465616420776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000612fb260248361280a565b9150612fbd82612f56565b604082019050919050565b60006020820190508181036000830152612fe181612fa5565b9050919050565b6000612ff3826128c5565b9150612ffe836128c5565b925082820190508082111561301657613015612edf565b5b92915050565b7f50657263656e74616765206d7573742062652067726561746572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600061307860228361280a565b91506130838261301c565b604082019050919050565b600060208201905081810360008301526130a78161306b565b9050919050565b7f50657263656e74616765206d757374206265206c657373207468616e206f722060008201527f657175616c20746f203130300000000000000000000000000000000000000000602082015250565b600061310a602c8361280a565b9150613115826130ae565b604082019050919050565b60006020820190508181036000830152613139816130fd565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613176601a8361280a565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061320860258361280a565b9150613213826131ac565b604082019050919050565b60006020820190508181036000830152613237816131fb565b9050919050565b6000613249826128c5565b9150613254836128c5565b9250828202613262816128c5565b9150828204841483151761327957613278612edf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ba826128c5565b91506132c5836128c5565b9250826132d5576132d4613280565b5b828204905092915050565b7f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160008201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660208201527f20746f74616c20737570706c7921000000000000000000000000000000000000604082015250565b6000613362604e8361280a565b915061336d826132e0565b606082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133f460268361280a565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061346060208361280a565b915061346b8261342a565b602082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134f260248361280a565b91506134fd82613496565b604082019050919050565b60006020820190508181036000830152613521816134e5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061358460228361280a565b915061358f82613528565b604082019050919050565b600060208201905081810360008301526135b381613577565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006135f0601d8361280a565b91506135fb826135ba565b602082019050919050565b6000602082019050818103600083015261361f816135e3565b9050919050565b7f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b600061368260248361280a565b915061368d82613626565b604082019050919050565b600060208201905081810360008301526136b181613675565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b60006136ee601a8361280a565b91506136f9826136b8565b602082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b600061375a60188361280a565b915061376582613724565b602082019050919050565b600060208201905081810360008301526137898161374d565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006137ec60298361280a565b91506137f782613790565b604082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b7f5472616e736665722066726f6d20626c61636b6c69737465642061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061387e60218361280a565b915061388982613822565b604082019050919050565b600060208201905081810360008301526138ad81613871565b9050919050565b7f5472616e7366657220746f20626c61636b6c6973746564206164647265737300600082015250565b60006138ea601f8361280a565b91506138f5826138b4565b602082019050919050565b60006020820190508181036000830152613919816138dd565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000600082015250565b6000613956601d8361280a565b915061396182613920565b602082019050919050565b6000602082019050818103600083015261398581613949565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006139c260128361280a565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b6000613a03826128c5565b9150613a0e836128c5565b9250828203905081811115613a2657613a25612edf565b5b92915050565b600081905092915050565b50565b6000613a47600083613a2c565b9150613a5282613a37565b600082019050919050565b6000613a6882613a3a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613aa860108361280a565b9150613ab382613a72565b602082019050919050565b60006020820190508181036000830152613ad781613a9b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b3a60258361280a565b9150613b4582613ade565b604082019050919050565b60006020820190508181036000830152613b6981613b2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613bcc60238361280a565b9150613bd782613b70565b604082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c5e60268361280a565b9150613c6982613c02565b604082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b600081519050613ca38161295a565b92915050565b600060208284031215613cbf57613cbe6128bb565b5b6000613ccd84828501613c94565b91505092915050565b6000819050919050565b6000613cfb613cf6613cf184613cd6565b612cda565b6128c5565b9050919050565b613d0b81613ce0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d4681612948565b82525050565b6000613d588383613d3d565b60208301905092915050565b6000602082019050919050565b6000613d7c82613d11565b613d868185613d1c565b9350613d9183613d2d565b8060005b83811015613dc2578151613da98882613d4c565b9750613db483613d64565b925050600181019050613d95565b5085935050505092915050565b600060a082019050613de46000830188612bf9565b613df16020830187613d02565b8181036040830152613e038186613d71565b9050613e126060830185612d54565b613e1f6080830184612bf9565b969550505050505056fea2646970667358221220f78e2e99a17764c45e164733aea8d3311309c82cfffc66bfcc12127e05b92d0664736f6c63430008130033

Deployed Bytecode Sourcemap

28216:8399:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31027:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18613:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31795:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35514:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17382:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31998:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30273:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19394:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17224:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20064:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28979:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29063:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28578;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29289:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17553:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9708:103;;;;;;;;;;;;;:::i;:::-;;28400:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35957:163;;;;;;;;;;;;;:::i;:::-;;29206:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29104:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32120:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28505:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30576:192;;;;;;;;;;;;;:::i;:::-;;9067:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16472:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30776:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20805:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28447:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17886:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31281:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29026:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29143:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18142:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28871:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35406:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35729:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31661:126;;;;;;;;;;;;;:::i;:::-;;9966:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28541:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16253:100;16307:13;16340:5;16333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;:::o;31027:246::-;8953:13;:11;:13::i;:::-;31127::::1;31102:9;:22;;:38;;;;31176:2;31159:13;:19;;31151:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31251:13;31235:30;;;;;;;;;;31027:246:::0;:::o;18613:201::-;18696:4;18713:13;18729:12;:10;:12::i;:::-;18713:28;;18752:32;18761:5;18768:7;18777:6;18752:8;:32::i;:::-;18802:4;18795:11;;;18613:201;;;;:::o;31795:195::-;8953:13;:11;:13::i;:::-;31932:7:::1;31909:11;:20;31921:7;31909:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;31974:7;31955:27;;31965:7;31955:27;;;;;;;;;;;;31795:195:::0;;:::o;35514:207::-;8953:13;:11;:13::i;:::-;35604:6:::1;35599:115;35620:14;:21;35616:1;:25;35599:115;;;35698:4;35663:13;:32;35677:14;35692:1;35677:17;;;;;;;;:::i;:::-;;;;;;;;35663:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35643:3;;;;;:::i;:::-;;;;35599:115;;;;35514:207:::0;:::o;17382:108::-;17443:7;17470:12;;17463:19;;17382:108;:::o;31998:116::-;32062:4;32086:11;:20;32098:7;32086:20;;;;;;;;;;;;;;;;;;;;;;;;;32079:27;;31998:116;;;:::o;30273:297::-;8953:13;:11;:13::i;:::-;30401:1:::1;30376:27;;:13;:27;;::::0;30354:113:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30496:13;30478:15;;:31;;;;;;;;;;;;;;;;;;30548:13;30525:37;;;;;;;;;;;;30273:297:::0;:::o;19394:261::-;19491:4;19508:15;19526:12;:10;:12::i;:::-;19508:30;;19549:38;19565:4;19571:7;19580:6;19549:15;:38::i;:::-;19598:27;19608:4;19614:2;19618:6;19598:9;:27::i;:::-;19643:4;19636:11;;;19394:261;;;;;:::o;17224:93::-;17282:5;17307:2;17300:9;;17224:93;:::o;20064:238::-;20152:4;20169:13;20185:12;:10;:12::i;:::-;20169:28;;20208:64;20217:5;20224:7;20261:10;20233:25;20243:5;20250:7;20233:9;:25::i;:::-;:38;;;;:::i;:::-;20208:8;:64::i;:::-;20290:4;20283:11;;;20064:238;;;;:::o;28979:40::-;;;;;;;;;;;;;:::o;29063:34::-;;;;;;;;;;;;;:::o;28578:::-;;;;;;;;;:::o;29289:38::-;;;;:::o;17553:127::-;17627:7;17654:9;:18;17664:7;17654:18;;;;;;;;;;;;;;;;17647:25;;17553:127;;;:::o;9708:103::-;8953:13;:11;:13::i;:::-;9773:30:::1;9800:1;9773:18;:30::i;:::-;9708:103::o:0;28400:40::-;;;:::o;35957:163::-;8953:13;:11;:13::i;:::-;36031:3:::1;36010:19;:24;;;;36066:5;36045:20;;:26;;;;;;;;;;;;;;;;;;36111:1;36082:13;:26;;:30;;;;35957:163::o:0;29206:75::-;;;;;;;;;;;;;:::o;29104:32::-;;;;:::o;32120:308::-;8953:13;:11;:13::i;:::-;32221:1:::1;32207:11;:15;32199:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32291:3;32276:11;:18;;32268:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;32372:11;32350:19;:33;;;;32395:29;32412:11;32395:29;;;;;;:::i;:::-;;;;;;;;32120:308:::0;:::o;28505:29::-;;;;;;;;;:::o;30576:192::-;8953:13;:11;:13::i;:::-;30640:14:::1;;;;;;;;;;;30639:15;30631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;30713:4;30696:14;;:21;;;;;;;;;;;;;;;;;;30748:12;30728:17;:32;;;;30576:192::o:0;9067:87::-;9113:7;9140:6;;;;;;;;;;;9133:13;;9067:87;:::o;16472:104::-;16528:13;16561:7;16554:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16472:104;:::o;30776:243::-;8953:13;:11;:13::i;:::-;30874::::1;30850:8;:21;;:37;;;;30923:2;30906:13;:19;;30898:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30997:13;30982:29;;;;;;;;;;30776:243:::0;:::o;20805:436::-;20898:4;20915:13;20931:12;:10;:12::i;:::-;20915:28;;20954:24;20981:25;20991:5;20998:7;20981:9;:25::i;:::-;20954:52;;21045:15;21025:16;:35;;21017:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21138:60;21147:5;21154:7;21182:15;21163:16;:34;21138:8;:60::i;:::-;21229:4;21222:11;;;;20805:436;;;;:::o;28447:36::-;;;:::o;17886:193::-;17965:4;17982:13;17998:12;:10;:12::i;:::-;17982:28;;18021;18031:5;18038:2;18042:6;18021:9;:28::i;:::-;18067:4;18060:11;;;17886:193;;;;:::o;31281:372::-;8953:13;:11;:13::i;:::-;31397:1:::1;31384:10;:14;:57;;;;;31437:4;31432:1;28353:24;31417:16;;;;:::i;:::-;31416:25;;;;:::i;:::-;31402:10;:39;;31384:57;31362:185;;;;;;;;;;;;:::i;:::-;;;;;;;;;31579:10;31558:18;:31;;;;31626:18;;31605:40;;;;;;;;;;31281:372:::0;:::o;29026:30::-;;;;;;;;;;;;;:::o;29143:39::-;;;;;;;;;;;;;:::o;18142:151::-;18231:7;18258:11;:18;18270:5;18258:18;;;;;;;;;;;;;;;:27;18277:7;18258:27;;;;;;;;;;;;;;;;18251:34;;18142:151;;;;:::o;28871:60::-;;;;:::o;35406:100::-;35461:4;35482:13;:16;35496:1;35482:16;;;;;;;;;;;;;;;;;;;;;;;;;35475:23;;35406:100;;;:::o;35729:216::-;8953:13;:11;:13::i;:::-;35825:6:::1;35820:118;35841:17;:24;35837:1;:28;35820:118;;;35923:5;35885:13;:35;35899:17;35917:1;35899:20;;;;;;;;:::i;:::-;;;;;;;;35885:35;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;35867:3;;;;;:::i;:::-;;;;35820:118;;;;35729:216:::0;:::o;31661:126::-;8953:13;:11;:13::i;:::-;31742:21:::1;;;;;;;;;;;31741:38;;31775:4;31741:38;;;31767:5;31741:38;31717:21;;:62;;;;;;;;;;;;;;;;;;31661:126::o:0;9966:201::-;8953:13;:11;:13::i;:::-;10075:1:::1;10055:22;;:8;:22;;::::0;10047:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10131:28;10150:8;10131:18;:28::i;:::-;9966:201:::0;:::o;28541:30::-;;;;;;;;;:::o;9232:132::-;9307:12;:10;:12::i;:::-;9296:23;;:7;:5;:7::i;:::-;:23;;;9288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9232:132::o;7618:98::-;7671:7;7698:10;7691:17;;7618:98;:::o;24798:346::-;24917:1;24900:19;;:5;:19;;;24892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24998:1;24979:21;;:7;:21;;;24971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25082:6;25052:11;:18;25064:5;25052:18;;;;;;;;;;;;;;;:27;25071:7;25052:27;;;;;;;;;;;;;;;:36;;;;25120:7;25104:32;;25113:5;25104:32;;;25129:6;25104:32;;;;;;:::i;:::-;;;;;;;;24798:346;;;:::o;25435:419::-;25536:24;25563:25;25573:5;25580:7;25563:9;:25::i;:::-;25536:52;;25623:17;25603:16;:37;25599:248;;25685:6;25665:16;:26;;25657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25769:51;25778:5;25785:7;25813:6;25794:16;:25;25769:8;:51::i;:::-;25599:248;25525:329;25435:419;;;:::o;33257:1742::-;33409:20;;;;;;;;;;;33405:307;;;33461:11;33446:27;;:3;:27;;;;:58;;;;;33492:11;33477:27;;:3;:27;;;;33446:58;33442:263;;;33571:12;33529:28;:39;33558:9;33529:39;;;;;;;;;;;;;;;;:54;33521:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33681:12;33639:28;:39;33668:9;33639:39;;;;;;;;;;;;;;;:54;;;;33442:263;33405:307;33745:1;33728:19;;:5;:19;;;33720:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33808:1;33793:17;;:3;:17;;;33785:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;33864:1;33854:7;:11;33846:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33976:13;:20;33990:5;33976:20;;;;;;;;;;;;;;;;;;;;;;;;;33975:21;33967:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34050:13;:18;34064:3;34050:18;;;;;;;;;;;;;;;;;;;;;;;;;34049:19;34041:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34217:23;34280:3;34258:19;;28353:24;34243:34;;;;:::i;:::-;:40;;;;:::i;:::-;34217:66;;34365:11;:18;34377:5;34365:18;;;;;;;;;;;;;;;;;;;;;;;;;34364:19;:40;;;;;34388:11;:16;34400:3;34388:16;;;;;;;;;;;;;;;;;;;;;;;;;34387:17;34364:40;:61;;;;;34423:1;34408:17;;:3;:17;;;;34364:61;:85;;;;;34444:4;34429:20;;:3;:20;;;;34364:85;:107;;;;;34460:11;34453:18;;:3;:18;;;;34364:107;34360:217;;;34520:15;34509:7;34492:14;34502:3;34492:9;:14::i;:::-;:24;;;;:::i;:::-;:43;;34484:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34360:217;34585:18;34606:29;34615:5;34622:3;34627:7;34606:8;:29::i;:::-;34585:50;;34644:12;34687:18;;34659:24;34677:4;34659:9;:24::i;:::-;:46;;34644:61;;34717:11;:18;34729:5;34717:18;;;;;;;;;;;;;;;;;;;;;;;;;34716:19;:40;;;;;34740:11;:16;34752:3;34740:16;;;;;;;;;;;;;;;;;;;;;;;;;34739:17;34716:40;34712:236;;;34777:14;;;;;;;;;;;34769:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;34844:3;34829:18;;:11;:18;;;:43;;;;;34851:21;;;;;;;;;;;34829:43;:54;;;;;34876:7;34829:54;:69;;;;;34888:10;;;;;;;;;;;34887:11;34829:69;34825:116;;;34915:14;:12;:14::i;:::-;34825:116;34712:236;34956:39;34972:5;34979:3;34984:10;34956:15;:39::i;:::-;33365:1634;;;33257:1742;;;:::o;10327:191::-;10401:16;10420:6;;;;;;;;;;;10401:25;;10446:8;10437:6;;:17;;;;;;;;;;;;;;;;;;10501:8;10470:40;;10491:8;10470:40;;;;;;;;;;;;10390:128;10327:191;:::o;32574:679::-;32689:7;32713:11;:18;32725:5;32713:18;;;;;;;;;;;;;;;;;;;;;;;;;:38;;;;32735:11;:16;32747:3;32735:16;;;;;;;;;;;;;;;;;;;;;;;;;32713:38;32709:85;;;32775:7;32768:14;;;;32709:85;32806:16;32825:13;:26;;;32806:45;;32875:11;32868:18;;:3;:18;;;32864:175;;32914:9;:22;;;32903:33;;32864:175;;;32967:11;32958:20;;:5;:20;;;32954:85;;33006:8;:21;;;32995:32;;32954:85;32864:175;33053:11;33094:1;33083:8;:12;33079:134;;;33141:3;33129:8;33119:7;:18;;;;:::i;:::-;33118:26;;;;:::i;:::-;33112:32;;33159:42;33175:5;33190:4;33197:3;33159:15;:42::i;:::-;33079:134;33241:3;33231:7;:13;;;;:::i;:::-;33223:22;;;;32574:679;;;;;;:::o;35007:393::-;35064:4;35051:10;;:17;;;;;;;;;;;;;;;;;;35079;35099:24;35117:4;35099:9;:24::i;:::-;35079:44;;35152:1;35139:9;:14;35135:53;;35170:7;;;35135:53;35198:35;35208:24;35226:4;35208:9;:24::i;:::-;35198:9;:35::i;:::-;35244:12;35262:15;;;;;;;;;;;:20;;35290:21;35262:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35243:73;;;35335:7;35327:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;35387:5;35374:10;;:18;;;;;;;;;;;;;;;;;;35040:360;;35007:393;:::o;21711:806::-;21824:1;21808:18;;:4;:18;;;21800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21901:1;21887:16;;:2;:16;;;21879:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21956:38;21977:4;21983:2;21987:6;21956:20;:38::i;:::-;22007:19;22029:9;:15;22039:4;22029:15;;;;;;;;;;;;;;;;22007:37;;22078:6;22063:11;:21;;22055:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22195:6;22181:11;:20;22163:9;:15;22173:4;22163:15;;;;;;;;;;;;;;;:38;;;;22398:6;22381:9;:13;22391:2;22381:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22448:2;22433:26;;22442:4;22433:26;;;22452:6;22433:26;;;;;;:::i;:::-;;;;;;;;22472:37;22492:4;22498:2;22502:6;22472:19;:37::i;:::-;21789:728;21711:806;;;:::o;36128:447::-;36184:21;36222:1;36208:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36184:40;;36253:4;36235;36240:1;36235:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36279:13;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36269:4;36274:1;36269:7;;;;;;;;:::i;:::-;;;;;;;:30;;;;;;;;;;;36310:56;36327:4;36342:13;36358:7;36310:8;:56::i;:::-;36377:13;:64;;;36456:7;36478:1;36494:4;36521;36541:15;36377:190;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36173:402;36128:447;:::o;26454:91::-;;;;:::o;27149:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:116::-;3851:21;3866:5;3851:21;:::i;:::-;3844:5;3841:32;3831:60;;3887:1;3884;3877:12;3831:60;3781:116;:::o;3903:133::-;3946:5;3984:6;3971:20;3962:29;;4000:30;4024:5;4000:30;:::i;:::-;3903:133;;;;:::o;4042:468::-;4107:6;4115;4164:2;4152:9;4143:7;4139:23;4135:32;4132:119;;;4170:79;;:::i;:::-;4132:119;4290:1;4315:53;4360:7;4351:6;4340:9;4336:22;4315:53;:::i;:::-;4305:63;;4261:117;4417:2;4443:50;4485:7;4476:6;4465:9;4461:22;4443:50;:::i;:::-;4433:60;;4388:115;4042:468;;;;;:::o;4516:117::-;4625:1;4622;4615:12;4639:180;4687:77;4684:1;4677:88;4784:4;4781:1;4774:15;4808:4;4805:1;4798:15;4825:281;4908:27;4930:4;4908:27;:::i;:::-;4900:6;4896:40;5038:6;5026:10;5023:22;5002:18;4990:10;4987:34;4984:62;4981:88;;;5049:18;;:::i;:::-;4981:88;5089:10;5085:2;5078:22;4868:238;4825:281;;:::o;5112:129::-;5146:6;5173:20;;:::i;:::-;5163:30;;5202:33;5230:4;5222:6;5202:33;:::i;:::-;5112:129;;;:::o;5247:311::-;5324:4;5414:18;5406:6;5403:30;5400:56;;;5436:18;;:::i;:::-;5400:56;5486:4;5478:6;5474:17;5466:25;;5546:4;5540;5536:15;5528:23;;5247:311;;;:::o;5564:117::-;5673:1;5670;5663:12;5704:710;5800:5;5825:81;5841:64;5898:6;5841:64;:::i;:::-;5825:81;:::i;:::-;5816:90;;5926:5;5955:6;5948:5;5941:21;5989:4;5982:5;5978:16;5971:23;;6042:4;6034:6;6030:17;6022:6;6018:30;6071:3;6063:6;6060:15;6057:122;;;6090:79;;:::i;:::-;6057:122;6205:6;6188:220;6222:6;6217:3;6214:15;6188:220;;;6297:3;6326:37;6359:3;6347:10;6326:37;:::i;:::-;6321:3;6314:50;6393:4;6388:3;6384:14;6377:21;;6264:144;6248:4;6243:3;6239:14;6232:21;;6188:220;;;6192:21;5806:608;;5704:710;;;;;:::o;6437:370::-;6508:5;6557:3;6550:4;6542:6;6538:17;6534:27;6524:122;;6565:79;;:::i;:::-;6524:122;6682:6;6669:20;6707:94;6797:3;6789:6;6782:4;6774:6;6770:17;6707:94;:::i;:::-;6698:103;;6514:293;6437:370;;;;:::o;6813:539::-;6897:6;6946:2;6934:9;6925:7;6921:23;6917:32;6914:119;;;6952:79;;:::i;:::-;6914:119;7100:1;7089:9;7085:17;7072:31;7130:18;7122:6;7119:30;7116:117;;;7152:79;;:::i;:::-;7116:117;7257:78;7327:7;7318:6;7307:9;7303:22;7257:78;:::i;:::-;7247:88;;7043:302;6813:539;;;;:::o;7358:118::-;7445:24;7463:5;7445:24;:::i;:::-;7440:3;7433:37;7358:118;;:::o;7482:222::-;7575:4;7613:2;7602:9;7598:18;7590:26;;7626:71;7694:1;7683:9;7679:17;7670:6;7626:71;:::i;:::-;7482:222;;;;:::o;7710:329::-;7769:6;7818:2;7806:9;7797:7;7793:23;7789:32;7786:119;;;7824:79;;:::i;:::-;7786:119;7944:1;7969:53;8014:7;8005:6;7994:9;7990:22;7969:53;:::i;:::-;7959:63;;7915:117;7710:329;;;;:::o;8045:619::-;8122:6;8130;8138;8187:2;8175:9;8166:7;8162:23;8158:32;8155:119;;;8193:79;;:::i;:::-;8155:119;8313:1;8338:53;8383:7;8374:6;8363:9;8359:22;8338:53;:::i;:::-;8328:63;;8284:117;8440:2;8466:53;8511:7;8502:6;8491:9;8487:22;8466:53;:::i;:::-;8456:63;;8411:118;8568:2;8594:53;8639:7;8630:6;8619:9;8615:22;8594:53;:::i;:::-;8584:63;;8539:118;8045:619;;;;;:::o;8670:86::-;8705:7;8745:4;8738:5;8734:16;8723:27;;8670:86;;;:::o;8762:112::-;8845:22;8861:5;8845:22;:::i;:::-;8840:3;8833:35;8762:112;;:::o;8880:214::-;8969:4;9007:2;8996:9;8992:18;8984:26;;9020:67;9084:1;9073:9;9069:17;9060:6;9020:67;:::i;:::-;8880:214;;;;:::o;9100:60::-;9128:3;9149:5;9142:12;;9100:60;;;:::o;9166:142::-;9216:9;9249:53;9267:34;9276:24;9294:5;9276:24;:::i;:::-;9267:34;:::i;:::-;9249:53;:::i;:::-;9236:66;;9166:142;;;:::o;9314:126::-;9364:9;9397:37;9428:5;9397:37;:::i;:::-;9384:50;;9314:126;;;:::o;9446:144::-;9514:9;9547:37;9578:5;9547:37;:::i;:::-;9534:50;;9446:144;;;:::o;9596:167::-;9701:55;9750:5;9701:55;:::i;:::-;9696:3;9689:68;9596:167;;:::o;9769:258::-;9880:4;9918:2;9907:9;9903:18;9895:26;;9931:89;10017:1;10006:9;10002:17;9993:6;9931:89;:::i;:::-;9769:258;;;;:::o;10033:118::-;10120:24;10138:5;10120:24;:::i;:::-;10115:3;10108:37;10033:118;;:::o;10157:222::-;10250:4;10288:2;10277:9;10273:18;10265:26;;10301:71;10369:1;10358:9;10354:17;10345:6;10301:71;:::i;:::-;10157:222;;;;:::o;10385:474::-;10453:6;10461;10510:2;10498:9;10489:7;10485:23;10481:32;10478:119;;;10516:79;;:::i;:::-;10478:119;10636:1;10661:53;10706:7;10697:6;10686:9;10682:22;10661:53;:::i;:::-;10651:63;;10607:117;10763:2;10789:53;10834:7;10825:6;10814:9;10810:22;10789:53;:::i;:::-;10779:63;;10734:118;10385:474;;;;;:::o;10865:180::-;10913:77;10910:1;10903:88;11010:4;11007:1;11000:15;11034:4;11031:1;11024:15;11051:320;11095:6;11132:1;11126:4;11122:12;11112:22;;11179:1;11173:4;11169:12;11200:18;11190:81;;11256:4;11248:6;11244:17;11234:27;;11190:81;11318:2;11310:6;11307:14;11287:18;11284:38;11281:84;;11337:18;;:::i;:::-;11281:84;11102:269;11051:320;;;:::o;11377:223::-;11517:34;11513:1;11505:6;11501:14;11494:58;11586:6;11581:2;11573:6;11569:15;11562:31;11377:223;:::o;11606:366::-;11748:3;11769:67;11833:2;11828:3;11769:67;:::i;:::-;11762:74;;11845:93;11934:3;11845:93;:::i;:::-;11963:2;11958:3;11954:12;11947:19;;11606:366;;;:::o;11978:419::-;12144:4;12182:2;12171:9;12167:18;12159:26;;12231:9;12225:4;12221:20;12217:1;12206:9;12202:17;12195:47;12259:131;12385:4;12259:131;:::i;:::-;12251:139;;11978:419;;;:::o;12403:180::-;12451:77;12448:1;12441:88;12548:4;12545:1;12538:15;12572:4;12569:1;12562:15;12589:180;12637:77;12634:1;12627:88;12734:4;12731:1;12724:15;12758:4;12755:1;12748:15;12775:233;12814:3;12837:24;12855:5;12837:24;:::i;:::-;12828:33;;12883:66;12876:5;12873:77;12870:103;;12953:18;;:::i;:::-;12870:103;13000:1;12993:5;12989:13;12982:20;;12775:233;;;:::o;13014:223::-;13154:34;13150:1;13142:6;13138:14;13131:58;13223:6;13218:2;13210:6;13206:15;13199:31;13014:223;:::o;13243:366::-;13385:3;13406:67;13470:2;13465:3;13406:67;:::i;:::-;13399:74;;13482:93;13571:3;13482:93;:::i;:::-;13600:2;13595:3;13591:12;13584:19;;13243:366;;;:::o;13615:419::-;13781:4;13819:2;13808:9;13804:18;13796:26;;13868:9;13862:4;13858:20;13854:1;13843:9;13839:17;13832:47;13896:131;14022:4;13896:131;:::i;:::-;13888:139;;13615:419;;;:::o;14040:191::-;14080:3;14099:20;14117:1;14099:20;:::i;:::-;14094:25;;14133:20;14151:1;14133:20;:::i;:::-;14128:25;;14176:1;14173;14169:9;14162:16;;14197:3;14194:1;14191:10;14188:36;;;14204:18;;:::i;:::-;14188:36;14040:191;;;;:::o;14237:221::-;14377:34;14373:1;14365:6;14361:14;14354:58;14446:4;14441:2;14433:6;14429:15;14422:29;14237:221;:::o;14464:366::-;14606:3;14627:67;14691:2;14686:3;14627:67;:::i;:::-;14620:74;;14703:93;14792:3;14703:93;:::i;:::-;14821:2;14816:3;14812:12;14805:19;;14464:366;;;:::o;14836:419::-;15002:4;15040:2;15029:9;15025:18;15017:26;;15089:9;15083:4;15079:20;15075:1;15064:9;15060:17;15053:47;15117:131;15243:4;15117:131;:::i;:::-;15109:139;;14836:419;;;:::o;15261:231::-;15401:34;15397:1;15389:6;15385:14;15378:58;15470:14;15465:2;15457:6;15453:15;15446:39;15261:231;:::o;15498:366::-;15640:3;15661:67;15725:2;15720:3;15661:67;:::i;:::-;15654:74;;15737:93;15826:3;15737:93;:::i;:::-;15855:2;15850:3;15846:12;15839:19;;15498:366;;;:::o;15870:419::-;16036:4;16074:2;16063:9;16059:18;16051:26;;16123:9;16117:4;16113:20;16109:1;16098:9;16094:17;16087:47;16151:131;16277:4;16151:131;:::i;:::-;16143:139;;15870:419;;;:::o;16295:176::-;16435:28;16431:1;16423:6;16419:14;16412:52;16295:176;:::o;16477:366::-;16619:3;16640:67;16704:2;16699:3;16640:67;:::i;:::-;16633:74;;16716:93;16805:3;16716:93;:::i;:::-;16834:2;16829:3;16825:12;16818:19;;16477:366;;;:::o;16849:419::-;17015:4;17053:2;17042:9;17038:18;17030:26;;17102:9;17096:4;17092:20;17088:1;17077:9;17073:17;17066:47;17130:131;17256:4;17130:131;:::i;:::-;17122:139;;16849:419;;;:::o;17274:224::-;17414:34;17410:1;17402:6;17398:14;17391:58;17483:7;17478:2;17470:6;17466:15;17459:32;17274:224;:::o;17504:366::-;17646:3;17667:67;17731:2;17726:3;17667:67;:::i;:::-;17660:74;;17743:93;17832:3;17743:93;:::i;:::-;17861:2;17856:3;17852:12;17845:19;;17504:366;;;:::o;17876:419::-;18042:4;18080:2;18069:9;18065:18;18057:26;;18129:9;18123:4;18119:20;18115:1;18104:9;18100:17;18093:47;18157:131;18283:4;18157:131;:::i;:::-;18149:139;;17876:419;;;:::o;18301:410::-;18341:7;18364:20;18382:1;18364:20;:::i;:::-;18359:25;;18398:20;18416:1;18398:20;:::i;:::-;18393:25;;18453:1;18450;18446:9;18475:30;18493:11;18475:30;:::i;:::-;18464:41;;18654:1;18645:7;18641:15;18638:1;18635:22;18615:1;18608:9;18588:83;18565:139;;18684:18;;:::i;:::-;18565:139;18349:362;18301:410;;;;:::o;18717:180::-;18765:77;18762:1;18755:88;18862:4;18859:1;18852:15;18886:4;18883:1;18876:15;18903:185;18943:1;18960:20;18978:1;18960:20;:::i;:::-;18955:25;;18994:20;19012:1;18994:20;:::i;:::-;18989:25;;19033:1;19023:35;;19038:18;;:::i;:::-;19023:35;19080:1;19077;19073:9;19068:14;;18903:185;;;;:::o;19094:302::-;19234:34;19230:1;19222:6;19218:14;19211:58;19303:34;19298:2;19290:6;19286:15;19279:59;19372:16;19367:2;19359:6;19355:15;19348:41;19094:302;:::o;19402:366::-;19544:3;19565:67;19629:2;19624:3;19565:67;:::i;:::-;19558:74;;19641:93;19730:3;19641:93;:::i;:::-;19759:2;19754:3;19750:12;19743:19;;19402:366;;;:::o;19774:419::-;19940:4;19978:2;19967:9;19963:18;19955:26;;20027:9;20021:4;20017:20;20013:1;20002:9;19998:17;19991:47;20055:131;20181:4;20055:131;:::i;:::-;20047:139;;19774:419;;;:::o;20199:225::-;20339:34;20335:1;20327:6;20323:14;20316:58;20408:8;20403:2;20395:6;20391:15;20384:33;20199:225;:::o;20430:366::-;20572:3;20593:67;20657:2;20652:3;20593:67;:::i;:::-;20586:74;;20669:93;20758:3;20669:93;:::i;:::-;20787:2;20782:3;20778:12;20771:19;;20430:366;;;:::o;20802:419::-;20968:4;21006:2;20995:9;20991:18;20983:26;;21055:9;21049:4;21045:20;21041:1;21030:9;21026:17;21019:47;21083:131;21209:4;21083:131;:::i;:::-;21075:139;;20802:419;;;:::o;21227:182::-;21367:34;21363:1;21355:6;21351:14;21344:58;21227:182;:::o;21415:366::-;21557:3;21578:67;21642:2;21637:3;21578:67;:::i;:::-;21571:74;;21654:93;21743:3;21654:93;:::i;:::-;21772:2;21767:3;21763:12;21756:19;;21415:366;;;:::o;21787:419::-;21953:4;21991:2;21980:9;21976:18;21968:26;;22040:9;22034:4;22030:20;22026:1;22015:9;22011:17;22004:47;22068:131;22194:4;22068:131;:::i;:::-;22060:139;;21787:419;;;:::o;22212:223::-;22352:34;22348:1;22340:6;22336:14;22329:58;22421:6;22416:2;22408:6;22404:15;22397:31;22212:223;:::o;22441:366::-;22583:3;22604:67;22668:2;22663:3;22604:67;:::i;:::-;22597:74;;22680:93;22769:3;22680:93;:::i;:::-;22798:2;22793:3;22789:12;22782:19;;22441:366;;;:::o;22813:419::-;22979:4;23017:2;23006:9;23002:18;22994:26;;23066:9;23060:4;23056:20;23052:1;23041:9;23037:17;23030:47;23094:131;23220:4;23094:131;:::i;:::-;23086:139;;22813:419;;;:::o;23238:221::-;23378:34;23374:1;23366:6;23362:14;23355:58;23447:4;23442:2;23434:6;23430:15;23423:29;23238:221;:::o;23465:366::-;23607:3;23628:67;23692:2;23687:3;23628:67;:::i;:::-;23621:74;;23704:93;23793:3;23704:93;:::i;:::-;23822:2;23817:3;23813:12;23806:19;;23465:366;;;:::o;23837:419::-;24003:4;24041:2;24030:9;24026:18;24018:26;;24090:9;24084:4;24080:20;24076:1;24065:9;24061:17;24054:47;24118:131;24244:4;24118:131;:::i;:::-;24110:139;;23837:419;;;:::o;24262:179::-;24402:31;24398:1;24390:6;24386:14;24379:55;24262:179;:::o;24447:366::-;24589:3;24610:67;24674:2;24669:3;24610:67;:::i;:::-;24603:74;;24686:93;24775:3;24686:93;:::i;:::-;24804:2;24799:3;24795:12;24788:19;;24447:366;;;:::o;24819:419::-;24985:4;25023:2;25012:9;25008:18;25000:26;;25072:9;25066:4;25062:20;25058:1;25047:9;25043:17;25036:47;25100:131;25226:4;25100:131;:::i;:::-;25092:139;;24819:419;;;:::o;25244:223::-;25384:34;25380:1;25372:6;25368:14;25361:58;25453:6;25448:2;25440:6;25436:15;25429:31;25244:223;:::o;25473:366::-;25615:3;25636:67;25700:2;25695:3;25636:67;:::i;:::-;25629:74;;25712:93;25801:3;25712:93;:::i;:::-;25830:2;25825:3;25821:12;25814:19;;25473:366;;;:::o;25845:419::-;26011:4;26049:2;26038:9;26034:18;26026:26;;26098:9;26092:4;26088:20;26084:1;26073:9;26069:17;26062:47;26126:131;26252:4;26126:131;:::i;:::-;26118:139;;25845:419;;;:::o;26270:176::-;26410:28;26406:1;26398:6;26394:14;26387:52;26270:176;:::o;26452:366::-;26594:3;26615:67;26679:2;26674:3;26615:67;:::i;:::-;26608:74;;26691:93;26780:3;26691:93;:::i;:::-;26809:2;26804:3;26800:12;26793:19;;26452:366;;;:::o;26824:419::-;26990:4;27028:2;27017:9;27013:18;27005:26;;27077:9;27071:4;27067:20;27063:1;27052:9;27048:17;27041:47;27105:131;27231:4;27105:131;:::i;:::-;27097:139;;26824:419;;;:::o;27249:174::-;27389:26;27385:1;27377:6;27373:14;27366:50;27249:174;:::o;27429:366::-;27571:3;27592:67;27656:2;27651:3;27592:67;:::i;:::-;27585:74;;27668:93;27757:3;27668:93;:::i;:::-;27786:2;27781:3;27777:12;27770:19;;27429:366;;;:::o;27801:419::-;27967:4;28005:2;27994:9;27990:18;27982:26;;28054:9;28048:4;28044:20;28040:1;28029:9;28025:17;28018:47;28082:131;28208:4;28082:131;:::i;:::-;28074:139;;27801:419;;;:::o;28226:228::-;28366:34;28362:1;28354:6;28350:14;28343:58;28435:11;28430:2;28422:6;28418:15;28411:36;28226:228;:::o;28460:366::-;28602:3;28623:67;28687:2;28682:3;28623:67;:::i;:::-;28616:74;;28699:93;28788:3;28699:93;:::i;:::-;28817:2;28812:3;28808:12;28801:19;;28460:366;;;:::o;28832:419::-;28998:4;29036:2;29025:9;29021:18;29013:26;;29085:9;29079:4;29075:20;29071:1;29060:9;29056:17;29049:47;29113:131;29239:4;29113:131;:::i;:::-;29105:139;;28832:419;;;:::o;29257:220::-;29397:34;29393:1;29385:6;29381:14;29374:58;29466:3;29461:2;29453:6;29449:15;29442:28;29257:220;:::o;29483:366::-;29625:3;29646:67;29710:2;29705:3;29646:67;:::i;:::-;29639:74;;29722:93;29811:3;29722:93;:::i;:::-;29840:2;29835:3;29831:12;29824:19;;29483:366;;;:::o;29855:419::-;30021:4;30059:2;30048:9;30044:18;30036:26;;30108:9;30102:4;30098:20;30094:1;30083:9;30079:17;30072:47;30136:131;30262:4;30136:131;:::i;:::-;30128:139;;29855:419;;;:::o;30280:181::-;30420:33;30416:1;30408:6;30404:14;30397:57;30280:181;:::o;30467:366::-;30609:3;30630:67;30694:2;30689:3;30630:67;:::i;:::-;30623:74;;30706:93;30795:3;30706:93;:::i;:::-;30824:2;30819:3;30815:12;30808:19;;30467:366;;;:::o;30839:419::-;31005:4;31043:2;31032:9;31028:18;31020:26;;31092:9;31086:4;31082:20;31078:1;31067:9;31063:17;31056:47;31120:131;31246:4;31120:131;:::i;:::-;31112:139;;30839:419;;;:::o;31264:179::-;31404:31;31400:1;31392:6;31388:14;31381:55;31264:179;:::o;31449:366::-;31591:3;31612:67;31676:2;31671:3;31612:67;:::i;:::-;31605:74;;31688:93;31777:3;31688:93;:::i;:::-;31806:2;31801:3;31797:12;31790:19;;31449:366;;;:::o;31821:419::-;31987:4;32025:2;32014:9;32010:18;32002:26;;32074:9;32068:4;32064:20;32060:1;32049:9;32045:17;32038:47;32102:131;32228:4;32102:131;:::i;:::-;32094:139;;31821:419;;;:::o;32246:168::-;32386:20;32382:1;32374:6;32370:14;32363:44;32246:168;:::o;32420:366::-;32562:3;32583:67;32647:2;32642:3;32583:67;:::i;:::-;32576:74;;32659:93;32748:3;32659:93;:::i;:::-;32777:2;32772:3;32768:12;32761:19;;32420:366;;;:::o;32792:419::-;32958:4;32996:2;32985:9;32981:18;32973:26;;33045:9;33039:4;33035:20;33031:1;33020:9;33016:17;33009:47;33073:131;33199:4;33073:131;:::i;:::-;33065:139;;32792:419;;;:::o;33217:194::-;33257:4;33277:20;33295:1;33277:20;:::i;:::-;33272:25;;33311:20;33329:1;33311:20;:::i;:::-;33306:25;;33355:1;33352;33348:9;33340:17;;33379:1;33373:4;33370:11;33367:37;;;33384:18;;:::i;:::-;33367:37;33217:194;;;;:::o;33417:147::-;33518:11;33555:3;33540:18;;33417:147;;;;:::o;33570:114::-;;:::o;33690:398::-;33849:3;33870:83;33951:1;33946:3;33870:83;:::i;:::-;33863:90;;33962:93;34051:3;33962:93;:::i;:::-;34080:1;34075:3;34071:11;34064:18;;33690:398;;;:::o;34094:379::-;34278:3;34300:147;34443:3;34300:147;:::i;:::-;34293:154;;34464:3;34457:10;;34094:379;;;:::o;34479:166::-;34619:18;34615:1;34607:6;34603:14;34596:42;34479:166;:::o;34651:366::-;34793:3;34814:67;34878:2;34873:3;34814:67;:::i;:::-;34807:74;;34890:93;34979:3;34890:93;:::i;:::-;35008:2;35003:3;34999:12;34992:19;;34651:366;;;:::o;35023:419::-;35189:4;35227:2;35216:9;35212:18;35204:26;;35276:9;35270:4;35266:20;35262:1;35251:9;35247:17;35240:47;35304:131;35430:4;35304:131;:::i;:::-;35296:139;;35023:419;;;:::o;35448:224::-;35588:34;35584:1;35576:6;35572:14;35565:58;35657:7;35652:2;35644:6;35640:15;35633:32;35448:224;:::o;35678:366::-;35820:3;35841:67;35905:2;35900:3;35841:67;:::i;:::-;35834:74;;35917:93;36006:3;35917:93;:::i;:::-;36035:2;36030:3;36026:12;36019:19;;35678:366;;;:::o;36050:419::-;36216:4;36254:2;36243:9;36239:18;36231:26;;36303:9;36297:4;36293:20;36289:1;36278:9;36274:17;36267:47;36331:131;36457:4;36331:131;:::i;:::-;36323:139;;36050:419;;;:::o;36475:222::-;36615:34;36611:1;36603:6;36599:14;36592:58;36684:5;36679:2;36671:6;36667:15;36660:30;36475:222;:::o;36703:366::-;36845:3;36866:67;36930:2;36925:3;36866:67;:::i;:::-;36859:74;;36942:93;37031:3;36942:93;:::i;:::-;37060:2;37055:3;37051:12;37044:19;;36703:366;;;:::o;37075:419::-;37241:4;37279:2;37268:9;37264:18;37256:26;;37328:9;37322:4;37318:20;37314:1;37303:9;37299:17;37292:47;37356:131;37482:4;37356:131;:::i;:::-;37348:139;;37075:419;;;:::o;37500:225::-;37640:34;37636:1;37628:6;37624:14;37617:58;37709:8;37704:2;37696:6;37692:15;37685:33;37500:225;:::o;37731:366::-;37873:3;37894:67;37958:2;37953:3;37894:67;:::i;:::-;37887:74;;37970:93;38059:3;37970:93;:::i;:::-;38088:2;38083:3;38079:12;38072:19;;37731:366;;;:::o;38103:419::-;38269:4;38307:2;38296:9;38292:18;38284:26;;38356:9;38350:4;38346:20;38342:1;38331:9;38327:17;38320:47;38384:131;38510:4;38384:131;:::i;:::-;38376:139;;38103:419;;;:::o;38528:143::-;38585:5;38616:6;38610:13;38601:22;;38632:33;38659:5;38632:33;:::i;:::-;38528:143;;;;:::o;38677:351::-;38747:6;38796:2;38784:9;38775:7;38771:23;38767:32;38764:119;;;38802:79;;:::i;:::-;38764:119;38922:1;38947:64;39003:7;38994:6;38983:9;38979:22;38947:64;:::i;:::-;38937:74;;38893:128;38677:351;;;;:::o;39034:85::-;39079:7;39108:5;39097:16;;39034:85;;;:::o;39125:158::-;39183:9;39216:61;39234:42;39243:32;39269:5;39243:32;:::i;:::-;39234:42;:::i;:::-;39216:61;:::i;:::-;39203:74;;39125:158;;;:::o;39289:147::-;39384:45;39423:5;39384:45;:::i;:::-;39379:3;39372:58;39289:147;;:::o;39442:114::-;39509:6;39543:5;39537:12;39527:22;;39442:114;;;:::o;39562:184::-;39661:11;39695:6;39690:3;39683:19;39735:4;39730:3;39726:14;39711:29;;39562:184;;;;:::o;39752:132::-;39819:4;39842:3;39834:11;;39872:4;39867:3;39863:14;39855:22;;39752:132;;;:::o;39890:108::-;39967:24;39985:5;39967:24;:::i;:::-;39962:3;39955:37;39890:108;;:::o;40004:179::-;40073:10;40094:46;40136:3;40128:6;40094:46;:::i;:::-;40172:4;40167:3;40163:14;40149:28;;40004:179;;;;:::o;40189:113::-;40259:4;40291;40286:3;40282:14;40274:22;;40189:113;;;:::o;40338:732::-;40457:3;40486:54;40534:5;40486:54;:::i;:::-;40556:86;40635:6;40630:3;40556:86;:::i;:::-;40549:93;;40666:56;40716:5;40666:56;:::i;:::-;40745:7;40776:1;40761:284;40786:6;40783:1;40780:13;40761:284;;;40862:6;40856:13;40889:63;40948:3;40933:13;40889:63;:::i;:::-;40882:70;;40975:60;41028:6;40975:60;:::i;:::-;40965:70;;40821:224;40808:1;40805;40801:9;40796:14;;40761:284;;;40765:14;41061:3;41054:10;;40462:608;;;40338:732;;;;:::o;41076:831::-;41339:4;41377:3;41366:9;41362:19;41354:27;;41391:71;41459:1;41448:9;41444:17;41435:6;41391:71;:::i;:::-;41472:80;41548:2;41537:9;41533:18;41524:6;41472:80;:::i;:::-;41599:9;41593:4;41589:20;41584:2;41573:9;41569:18;41562:48;41627:108;41730:4;41721:6;41627:108;:::i;:::-;41619:116;;41745:72;41813:2;41802:9;41798:18;41789:6;41745:72;:::i;:::-;41827:73;41895:3;41884:9;41880:19;41871:6;41827:73;:::i;:::-;41076:831;;;;;;;;:::o

Swarm Source

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