ETH Price: $2,283.60 (+2.29%)

Token

The Truth (TRUTH)
 

Overview

Max Total Supply

1,000,000,000 TRUTH

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,999,999.980000000062281764 TRUTH

Value
$0.00
0xDBD0faf34aC556b65E793A60a02c2f190a989769
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:
Truth

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-19
*/

/*

    http://copehardererc.com/
    https://t.me/Copeportal
    
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0x8242e56a759aa0B069B9c983fe3f582020CD1eC9), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract Truth is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("The Truth", "TRUTH") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 666;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 20000000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        devWallet = address(0x418c037aAcbe40716c47e7012fCA6222598e41b2); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(devWallet).call{value: address(this).balance}("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600981526020017f54686520547275746800000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f54525554480000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e792919062000a4f565b5080600490805190602001906200010092919062000a4f565b5050506200012362000117620004fc60201b60201c565b6200050460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200014f816001620005ca60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f5919062000b69565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000283919062000b69565b6040518363ffffffff1660e01b8152600401620002a292919062000bac565b6020604051808303816000875af1158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000b69565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033060a0516001620005ca60201b60201c565b6200034560a0516001620006b460201b60201c565b60008060008061029a905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550612710600a8262000397919062000c12565b620003a3919062000ca2565b60088190555084600c8190555083600d81905550600d54600c54620003c9919062000cda565b600b8190555082600f8190555081601081905550601054600f54620003ef919062000cda565b600e8190555073418c037aacbe40716c47e7012fca6222598e41b2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200046c6200045e6200075560201b60201c565b60016200077f60201b60201c565b6200047f3060016200077f60201b60201c565b6200049461dead60016200077f60201b60201c565b620004b6620004a86200075560201b60201c565b6001620005ca60201b60201c565b620004c9306001620005ca60201b60201c565b620004de61dead6001620005ca60201b60201c565b620004f03382620008b960201b60201c565b50505050505062000ef9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005da620004fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006006200075560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006509062000d98565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200078f620004fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b56200075560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200080e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008059062000d98565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008ad919062000dd7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009239062000e44565b60405180910390fd5b620009406000838362000a4560201b60201c565b806002600082825462000954919062000cda565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009ab919062000cda565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16738242e56a759aa0b069b9c983fe3f582020cd1ec973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a25919062000e77565b60405180910390a362000a416000838362000a4a60201b60201c565b5050565b505050565b505050565b82805462000a5d9062000ec3565b90600052602060002090601f01602090048101928262000a81576000855562000acd565b82601f1062000a9c57805160ff191683800117855562000acd565b8280016001018555821562000acd579182015b8281111562000acc57825182559160200191906001019062000aaf565b5b50905062000adc919062000ae0565b5090565b5b8082111562000afb57600081600090555060010162000ae1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b318262000b04565b9050919050565b62000b438162000b24565b811462000b4f57600080fd5b50565b60008151905062000b638162000b38565b92915050565b60006020828403121562000b825762000b8162000aff565b5b600062000b928482850162000b52565b91505092915050565b62000ba68162000b24565b82525050565b600060408201905062000bc3600083018562000b9b565b62000bd2602083018462000b9b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c1f8262000bd9565b915062000c2c8362000bd9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c685762000c6762000be3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000caf8262000bd9565b915062000cbc8362000bd9565b92508262000ccf5762000cce62000c73565b5b828204905092915050565b600062000ce78262000bd9565b915062000cf48362000bd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d2c5762000d2b62000be3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d8060208362000d37565b915062000d8d8262000d48565b602082019050919050565b6000602082019050818103600083015262000db38162000d71565b9050919050565b60008115159050919050565b62000dd18162000dba565b82525050565b600060208201905062000dee600083018462000dc6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e2c601f8362000d37565b915062000e398262000df4565b602082019050919050565b6000602082019050818103600083015262000e5f8162000e1d565b9050919050565b62000e718162000bd9565b82525050565b600060208201905062000e8e600083018462000e66565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000edc57607f821691505b6020821081141562000ef35762000ef262000e94565b5b50919050565b60805160a05161405b62000f4960003960008181610cbc0152611254015260008181610ad501528181612b7b01528181612c5c01528181612c8301528181612d1f0152612d46015261405b6000f3fe6080604052600436106102555760003560e01c80638ea5220f11610139578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e146108f1578063e2f456051461092e578063f11a24d314610959578063f2fde38b14610984578063f6374342146109ad578063f8b45b05146109d85761025c565b8063bbc0c7421461080a578063c024666814610835578063c8c8ebe41461085e578063d257b34f14610889578063d85ba063146108c65761025c565b80639fccce32116100fd5780639fccce32146106fd578063a0d82dc514610728578063a457c2d714610753578063a9059cbb14610790578063b62496f5146107cd5761025c565b80638ea5220f1461062a578063924de9b71461065557806395d89b411461067e5780639a7a23d6146106a95780639c3b4fdc146106d25761025c565b806349bd5a5e116101d257806370a082311161019657806370a0823114610540578063715018a61461057d578063751039fc146105945780637571336a146105bf5780638a8c523c146105e85780638da5cb5b146105ff5761025c565b806349bd5a5e146104575780634a62bb65146104825780634fbee193146104ad5780636a486a8e146104ea5780636ddd1713146105155761025c565b80631a8145bb116102195780631a8145bb1461035c57806323b872dd1461038757806327c8f835146103c4578063313ce567146103ef578063395093511461041a5761025c565b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102c95780631694505e1461030657806318160ddd146103315761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610a03565b6040516102839190612eae565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612f69565b610a95565b6040516102c09190612fc4565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612fdf565b610ab3565b6040516102fd9190612fc4565b60405180910390f35b34801561031257600080fd5b5061031b610ad3565b604051610328919061306b565b60405180910390f35b34801561033d57600080fd5b50610346610af7565b6040516103539190613095565b60405180910390f35b34801561036857600080fd5b50610371610b01565b60405161037e9190613095565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906130b0565b610b07565b6040516103bb9190612fc4565b60405180910390f35b3480156103d057600080fd5b506103d9610bff565b6040516103e69190613112565b60405180910390f35b3480156103fb57600080fd5b50610404610c05565b6040516104119190613149565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612f69565b610c0e565b60405161044e9190612fc4565b60405180910390f35b34801561046357600080fd5b5061046c610cba565b6040516104799190613112565b60405180910390f35b34801561048e57600080fd5b50610497610cde565b6040516104a49190612fc4565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612fdf565b610cf1565b6040516104e19190612fc4565b60405180910390f35b3480156104f657600080fd5b506104ff610d47565b60405161050c9190613095565b60405180910390f35b34801561052157600080fd5b5061052a610d4d565b6040516105379190612fc4565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612fdf565b610d60565b6040516105749190613095565b60405180910390f35b34801561058957600080fd5b50610592610da8565b005b3480156105a057600080fd5b506105a9610e30565b6040516105b69190612fc4565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190613190565b610ed0565b005b3480156105f457600080fd5b506105fd610fa7565b005b34801561060b57600080fd5b5061061461105b565b6040516106219190613112565b60405180910390f35b34801561063657600080fd5b5061063f611085565b60405161064c9190613112565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906131d0565b6110ab565b005b34801561068a57600080fd5b50610693611144565b6040516106a09190612eae565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613190565b6111d6565b005b3480156106de57600080fd5b506106e76112ef565b6040516106f49190613095565b60405180910390f35b34801561070957600080fd5b506107126112f5565b60405161071f9190613095565b60405180910390f35b34801561073457600080fd5b5061073d6112fb565b60405161074a9190613095565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612f69565b611301565b6040516107879190612fc4565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612f69565b6113ec565b6040516107c49190612fc4565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612fdf565b61140a565b6040516108019190612fc4565b60405180910390f35b34801561081657600080fd5b5061081f61142a565b60405161082c9190612fc4565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613190565b61143d565b005b34801561086a57600080fd5b50610873611562565b6040516108809190613095565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906131fd565b611568565b6040516108bd9190612fc4565b60405180910390f35b3480156108d257600080fd5b506108db6116bd565b6040516108e89190613095565b60405180910390f35b3480156108fd57600080fd5b506109186004803603810190610913919061322a565b6116c3565b6040516109259190613095565b60405180910390f35b34801561093a57600080fd5b5061094361174a565b6040516109509190613095565b60405180910390f35b34801561096557600080fd5b5061096e611750565b60405161097b9190613095565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190612fdf565b611756565b005b3480156109b957600080fd5b506109c261184e565b6040516109cf9190613095565b60405180910390f35b3480156109e457600080fd5b506109ed611854565b6040516109fa9190613095565b60405180910390f35b606060038054610a1290613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613299565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa9610aa261185a565b8484611862565b6001905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60115481565b6000610b14848484611a2d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5f61185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd69061333d565b60405180910390fd5b610bf385610beb61185a565b858403611862565b60019150509392505050565b61dead81565b60006012905090565b6000610cb0610c1b61185a565b848460016000610c2961185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cab919061338c565b611862565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db061185a565b73ffffffffffffffffffffffffffffffffffffffff16610dce61105b565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b9061342e565b60405180910390fd5b610e2e600061249b565b565b6000610e3a61185a565b73ffffffffffffffffffffffffffffffffffffffff16610e5861105b565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061342e565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610ed861185a565b73ffffffffffffffffffffffffffffffffffffffff16610ef661105b565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061342e565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610faf61185a565b73ffffffffffffffffffffffffffffffffffffffff16610fcd61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061342e565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110b361185a565b73ffffffffffffffffffffffffffffffffffffffff166110d161105b565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061342e565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461115390613299565b80601f016020809104026020016040519081016040528092919081815260200182805461117f90613299565b80156111cc5780601f106111a1576101008083540402835291602001916111cc565b820191906000526020600020905b8154815290600101906020018083116111af57829003601f168201915b5050505050905090565b6111de61185a565b73ffffffffffffffffffffffffffffffffffffffff166111fc61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061342e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906134c0565b60405180910390fd5b6112eb8282612561565b5050565b600d5481565b60125481565b60105481565b6000806001600061131061185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613552565b60405180910390fd5b6113e16113d861185a565b85858403611862565b600191505092915050565b60006114006113f961185a565b8484611a2d565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61144561185a565b73ffffffffffffffffffffffffffffffffffffffff1661146361105b565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061342e565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115569190612fc4565b60405180910390a25050565b60075481565b600061157261185a565b73ffffffffffffffffffffffffffffffffffffffff1661159061105b565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd9061342e565b60405180910390fd5b620186a060016115f4610af7565b6115fe9190613572565b61160891906135fb565b82101561164a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116419061369e565b60405180910390fd5b6103e86005611657610af7565b6116619190613572565b61166b91906135fb565b8211156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490613730565b60405180910390fd5b8160088190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600c5481565b61175e61185a565b73ffffffffffffffffffffffffffffffffffffffff1661177c61105b565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c99061342e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906137c2565b60405180910390fd5b61184b8161249b565b50565b600f5481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990613854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906138e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a209190613095565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490613978565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490613a0a565b60405180910390fd5b6000811415611b2757611b2283836000612602565b612496565b600a60009054906101000a900460ff161561202257611b4461105b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bb25750611b8261105b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611beb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c25575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3e5750600560149054906101000a900460ff16155b1561202157600a60019054906101000a900460ff16611d3857601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cf85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613a76565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ddb5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e8257600754811115611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613b08565b60405180910390fd5b600954611e3183610d60565b82611e3c919061338c565b1115611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490613b74565b60405180910390fd5b612020565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f255750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7457600754811115611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613c06565b60405180910390fd5b61201f565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661201e57600954611fd183610d60565b82611fdc919061338c565b111561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613b74565b60405180910390fd5b5b5b5b5b5b600061202d30610d60565b9050600060085482101590508080156120525750600a60029054906101000a900460ff165b801561206b5750600560149054906101000a900460ff16155b80156120c15750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121175750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561216d5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121b1576001600560146101000a81548160ff021916908315150217905550612195612883565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122675750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561227157600090505b6000811561248657601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122d457506000600e54115b1561236f576123026127106122f4600e5488612a9090919063ffffffff16565b612aa690919063ffffffff16565b9050600e54600f54826123159190613572565b61231f91906135fb565b60116000828254612330919061338c565b92505081905550600e54601054826123489190613572565b61235291906135fb565b60126000828254612363919061338c565b92505081905550612462565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123ca57506000600b54115b15612461576123f86127106123ea600b5488612a9090919063ffffffff16565b612aa690919063ffffffff16565b9050600b54600c548261240b9190613572565b61241591906135fb565b60116000828254612426919061338c565b92505081905550600b54600d548261243e9190613572565b61244891906135fb565b60126000828254612459919061338c565b925050819055505b5b600081111561247757612476873083612602565b5b80856124839190613c26565b94505b612491878787612602565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990613978565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613a0a565b60405180910390fd5b6126ed838383612abc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613ccc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612806919061338c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161286a9190613095565b60405180910390a361287d848484612ac1565b50505050565b600061288e30610d60565b905060006012546011546128a2919061338c565b90506000808314806128b45750600082145b156128c157505050612a8e565b60146008546128d09190613572565b8311156128e95760146008546128e69190613572565b92505b6000600283601154866128fc9190613572565b61290691906135fb565b61291091906135fb565b905060006129278286612ac690919063ffffffff16565b9050600047905061293782612adc565b600061294c8247612ac690919063ffffffff16565b905060006129778761296960125485612a9090919063ffffffff16565b612aa690919063ffffffff16565b9050600081836129879190613c26565b9050600060118190555060006012819055506000861180156129a95750600081115b156129f6576129b88682612d19565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826011546040516129ed93929190613cec565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a3c90613d54565b60006040518083038185875af1925050503d8060008114612a79576040519150601f19603f3d011682016040523d82523d6000602084013e612a7e565b606091505b5050809750505050505050505050505b565b60008183612a9e9190613572565b905092915050565b60008183612ab491906135fb565b905092915050565b505050565b505050565b60008183612ad49190613c26565b905092915050565b6000600267ffffffffffffffff811115612af957612af8613d69565b5b604051908082528060200260200182016040528015612b275781602001602082028036833780820191505090505b5090503081600081518110612b3f57612b3e613d98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c089190613ddc565b81600181518110612c1c57612c1b613d98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c81307f000000000000000000000000000000000000000000000000000000000000000084611862565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612ce3959493929190613f02565b600060405180830381600087803b158015612cfd57600080fd5b505af1158015612d11573d6000803e3d6000fd5b505050505050565b612d44307f000000000000000000000000000000000000000000000000000000000000000084611862565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612dcb96959493929190613f5c565b60606040518083038185885af1158015612de9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e0e9190613fd2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4f578082015181840152602081019050612e34565b83811115612e5e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8082612e15565b612e8a8185612e20565b9350612e9a818560208601612e31565b612ea381612e64565b840191505092915050565b60006020820190508181036000830152612ec88184612e75565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0082612ed5565b9050919050565b612f1081612ef5565b8114612f1b57600080fd5b50565b600081359050612f2d81612f07565b92915050565b6000819050919050565b612f4681612f33565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612ed0565b5b6000612f8e85828601612f1e565b9250506020612f9f85828601612f54565b9150509250929050565b60008115159050919050565b612fbe81612fa9565b82525050565b6000602082019050612fd96000830184612fb5565b92915050565b600060208284031215612ff557612ff4612ed0565b5b600061300384828501612f1e565b91505092915050565b6000819050919050565b600061303161302c61302784612ed5565b61300c565b612ed5565b9050919050565b600061304382613016565b9050919050565b600061305582613038565b9050919050565b6130658161304a565b82525050565b6000602082019050613080600083018461305c565b92915050565b61308f81612f33565b82525050565b60006020820190506130aa6000830184613086565b92915050565b6000806000606084860312156130c9576130c8612ed0565b5b60006130d786828701612f1e565b93505060206130e886828701612f1e565b92505060406130f986828701612f54565b9150509250925092565b61310c81612ef5565b82525050565b60006020820190506131276000830184613103565b92915050565b600060ff82169050919050565b6131438161312d565b82525050565b600060208201905061315e600083018461313a565b92915050565b61316d81612fa9565b811461317857600080fd5b50565b60008135905061318a81613164565b92915050565b600080604083850312156131a7576131a6612ed0565b5b60006131b585828601612f1e565b92505060206131c68582860161317b565b9150509250929050565b6000602082840312156131e6576131e5612ed0565b5b60006131f48482850161317b565b91505092915050565b60006020828403121561321357613212612ed0565b5b600061322184828501612f54565b91505092915050565b6000806040838503121561324157613240612ed0565b5b600061324f85828601612f1e565b925050602061326085828601612f1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132b157607f821691505b602082108114156132c5576132c461326a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613327602883612e20565b9150613332826132cb565b604082019050919050565b600060208201905081810360008301526133568161331a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339782612f33565b91506133a283612f33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d7576133d661335d565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613418602083612e20565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006134aa603983612e20565b91506134b58261344e565b604082019050919050565b600060208201905081810360008301526134d98161349d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061353c602583612e20565b9150613547826134e0565b604082019050919050565b6000602082019050818103600083015261356b8161352f565b9050919050565b600061357d82612f33565b915061358883612f33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135c1576135c061335d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061360682612f33565b915061361183612f33565b925082613621576136206135cc565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613688603583612e20565b91506136938261362c565b604082019050919050565b600060208201905081810360008301526136b78161367b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061371a603483612e20565b9150613725826136be565b604082019050919050565b600060208201905081810360008301526137498161370d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137ac602683612e20565b91506137b782613750565b604082019050919050565b600060208201905081810360008301526137db8161379f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061383e602483612e20565b9150613849826137e2565b604082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d0602283612e20565b91506138db82613874565b604082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613962602583612e20565b915061396d82613906565b604082019050919050565b6000602082019050818103600083015261399181613955565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139f4602383612e20565b91506139ff82613998565b604082019050919050565b60006020820190508181036000830152613a23816139e7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a60601683612e20565b9150613a6b82613a2a565b602082019050919050565b60006020820190508181036000830152613a8f81613a53565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613af2603583612e20565b9150613afd82613a96565b604082019050919050565b60006020820190508181036000830152613b2181613ae5565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b5e601383612e20565b9150613b6982613b28565b602082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613bf0603683612e20565b9150613bfb82613b94565b604082019050919050565b60006020820190508181036000830152613c1f81613be3565b9050919050565b6000613c3182612f33565b9150613c3c83612f33565b925082821015613c4f57613c4e61335d565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613cb6602683612e20565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b6000606082019050613d016000830186613086565b613d0e6020830185613086565b613d1b6040830184613086565b949350505050565b600081905092915050565b50565b6000613d3e600083613d23565b9150613d4982613d2e565b600082019050919050565b6000613d5f82613d31565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613dd681612f07565b92915050565b600060208284031215613df257613df1612ed0565b5b6000613e0084828501613dc7565b91505092915050565b6000819050919050565b6000613e2e613e29613e2484613e09565b61300c565b612f33565b9050919050565b613e3e81613e13565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e7981612ef5565b82525050565b6000613e8b8383613e70565b60208301905092915050565b6000602082019050919050565b6000613eaf82613e44565b613eb98185613e4f565b9350613ec483613e60565b8060005b83811015613ef5578151613edc8882613e7f565b9750613ee783613e97565b925050600181019050613ec8565b5085935050505092915050565b600060a082019050613f176000830188613086565b613f246020830187613e35565b8181036040830152613f368186613ea4565b9050613f456060830185613103565b613f526080830184613086565b9695505050505050565b600060c082019050613f716000830189613103565b613f7e6020830188613086565b613f8b6040830187613e35565b613f986060830186613e35565b613fa56080830185613103565b613fb260a0830184613086565b979650505050505050565b600081519050613fcc81612f3d565b92915050565b600080600060608486031215613feb57613fea612ed0565b5b6000613ff986828701613fbd565b935050602061400a86828701613fbd565b925050604061401b86828701613fbd565b915050925092509256fea26469706673582212200bcfa4265ffbd9efdf91cc02c4654bfc945f1c76d63b8432b4bd9243805cebcd64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638ea5220f11610139578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e146108f1578063e2f456051461092e578063f11a24d314610959578063f2fde38b14610984578063f6374342146109ad578063f8b45b05146109d85761025c565b8063bbc0c7421461080a578063c024666814610835578063c8c8ebe41461085e578063d257b34f14610889578063d85ba063146108c65761025c565b80639fccce32116100fd5780639fccce32146106fd578063a0d82dc514610728578063a457c2d714610753578063a9059cbb14610790578063b62496f5146107cd5761025c565b80638ea5220f1461062a578063924de9b71461065557806395d89b411461067e5780639a7a23d6146106a95780639c3b4fdc146106d25761025c565b806349bd5a5e116101d257806370a082311161019657806370a0823114610540578063715018a61461057d578063751039fc146105945780637571336a146105bf5780638a8c523c146105e85780638da5cb5b146105ff5761025c565b806349bd5a5e146104575780634a62bb65146104825780634fbee193146104ad5780636a486a8e146104ea5780636ddd1713146105155761025c565b80631a8145bb116102195780631a8145bb1461035c57806323b872dd1461038757806327c8f835146103c4578063313ce567146103ef578063395093511461041a5761025c565b806306fdde0314610261578063095ea7b31461028c57806310d5de53146102c95780631694505e1461030657806318160ddd146103315761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610a03565b6040516102839190612eae565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612f69565b610a95565b6040516102c09190612fc4565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612fdf565b610ab3565b6040516102fd9190612fc4565b60405180910390f35b34801561031257600080fd5b5061031b610ad3565b604051610328919061306b565b60405180910390f35b34801561033d57600080fd5b50610346610af7565b6040516103539190613095565b60405180910390f35b34801561036857600080fd5b50610371610b01565b60405161037e9190613095565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906130b0565b610b07565b6040516103bb9190612fc4565b60405180910390f35b3480156103d057600080fd5b506103d9610bff565b6040516103e69190613112565b60405180910390f35b3480156103fb57600080fd5b50610404610c05565b6040516104119190613149565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612f69565b610c0e565b60405161044e9190612fc4565b60405180910390f35b34801561046357600080fd5b5061046c610cba565b6040516104799190613112565b60405180910390f35b34801561048e57600080fd5b50610497610cde565b6040516104a49190612fc4565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612fdf565b610cf1565b6040516104e19190612fc4565b60405180910390f35b3480156104f657600080fd5b506104ff610d47565b60405161050c9190613095565b60405180910390f35b34801561052157600080fd5b5061052a610d4d565b6040516105379190612fc4565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612fdf565b610d60565b6040516105749190613095565b60405180910390f35b34801561058957600080fd5b50610592610da8565b005b3480156105a057600080fd5b506105a9610e30565b6040516105b69190612fc4565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190613190565b610ed0565b005b3480156105f457600080fd5b506105fd610fa7565b005b34801561060b57600080fd5b5061061461105b565b6040516106219190613112565b60405180910390f35b34801561063657600080fd5b5061063f611085565b60405161064c9190613112565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906131d0565b6110ab565b005b34801561068a57600080fd5b50610693611144565b6040516106a09190612eae565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613190565b6111d6565b005b3480156106de57600080fd5b506106e76112ef565b6040516106f49190613095565b60405180910390f35b34801561070957600080fd5b506107126112f5565b60405161071f9190613095565b60405180910390f35b34801561073457600080fd5b5061073d6112fb565b60405161074a9190613095565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612f69565b611301565b6040516107879190612fc4565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612f69565b6113ec565b6040516107c49190612fc4565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612fdf565b61140a565b6040516108019190612fc4565b60405180910390f35b34801561081657600080fd5b5061081f61142a565b60405161082c9190612fc4565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613190565b61143d565b005b34801561086a57600080fd5b50610873611562565b6040516108809190613095565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906131fd565b611568565b6040516108bd9190612fc4565b60405180910390f35b3480156108d257600080fd5b506108db6116bd565b6040516108e89190613095565b60405180910390f35b3480156108fd57600080fd5b506109186004803603810190610913919061322a565b6116c3565b6040516109259190613095565b60405180910390f35b34801561093a57600080fd5b5061094361174a565b6040516109509190613095565b60405180910390f35b34801561096557600080fd5b5061096e611750565b60405161097b9190613095565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190612fdf565b611756565b005b3480156109b957600080fd5b506109c261184e565b6040516109cf9190613095565b60405180910390f35b3480156109e457600080fd5b506109ed611854565b6040516109fa9190613095565b60405180910390f35b606060038054610a1290613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613299565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa9610aa261185a565b8484611862565b6001905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60115481565b6000610b14848484611a2d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5f61185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd69061333d565b60405180910390fd5b610bf385610beb61185a565b858403611862565b60019150509392505050565b61dead81565b60006012905090565b6000610cb0610c1b61185a565b848460016000610c2961185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cab919061338c565b611862565b6001905092915050565b7f000000000000000000000000ae3115cc6fc0fcdde0777a508240c9c780a6179881565b600a60009054906101000a900460ff1681565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db061185a565b73ffffffffffffffffffffffffffffffffffffffff16610dce61105b565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b9061342e565b60405180910390fd5b610e2e600061249b565b565b6000610e3a61185a565b73ffffffffffffffffffffffffffffffffffffffff16610e5861105b565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea59061342e565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610ed861185a565b73ffffffffffffffffffffffffffffffffffffffff16610ef661105b565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061342e565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610faf61185a565b73ffffffffffffffffffffffffffffffffffffffff16610fcd61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061342e565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110b361185a565b73ffffffffffffffffffffffffffffffffffffffff166110d161105b565b73ffffffffffffffffffffffffffffffffffffffff1614611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e9061342e565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461115390613299565b80601f016020809104026020016040519081016040528092919081815260200182805461117f90613299565b80156111cc5780601f106111a1576101008083540402835291602001916111cc565b820191906000526020600020905b8154815290600101906020018083116111af57829003601f168201915b5050505050905090565b6111de61185a565b73ffffffffffffffffffffffffffffffffffffffff166111fc61105b565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061342e565b60405180910390fd5b7f000000000000000000000000ae3115cc6fc0fcdde0777a508240c9c780a6179873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906134c0565b60405180910390fd5b6112eb8282612561565b5050565b600d5481565b60125481565b60105481565b6000806001600061131061185a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613552565b60405180910390fd5b6113e16113d861185a565b85858403611862565b600191505092915050565b60006114006113f961185a565b8484611a2d565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61144561185a565b73ffffffffffffffffffffffffffffffffffffffff1661146361105b565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061342e565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115569190612fc4565b60405180910390a25050565b60075481565b600061157261185a565b73ffffffffffffffffffffffffffffffffffffffff1661159061105b565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd9061342e565b60405180910390fd5b620186a060016115f4610af7565b6115fe9190613572565b61160891906135fb565b82101561164a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116419061369e565b60405180910390fd5b6103e86005611657610af7565b6116619190613572565b61166b91906135fb565b8211156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490613730565b60405180910390fd5b8160088190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600c5481565b61175e61185a565b73ffffffffffffffffffffffffffffffffffffffff1661177c61105b565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c99061342e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611839906137c2565b60405180910390fd5b61184b8161249b565b50565b600f5481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990613854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611939906138e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a209190613095565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490613978565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490613a0a565b60405180910390fd5b6000811415611b2757611b2283836000612602565b612496565b600a60009054906101000a900460ff161561202257611b4461105b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bb25750611b8261105b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611beb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c25575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3e5750600560149054906101000a900460ff16155b1561202157600a60019054906101000a900460ff16611d3857601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cf85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613a76565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ddb5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e8257600754811115611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613b08565b60405180910390fd5b600954611e3183610d60565b82611e3c919061338c565b1115611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7490613b74565b60405180910390fd5b612020565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f255750601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7457600754811115611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690613c06565b60405180910390fd5b61201f565b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661201e57600954611fd183610d60565b82611fdc919061338c565b111561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490613b74565b60405180910390fd5b5b5b5b5b5b600061202d30610d60565b9050600060085482101590508080156120525750600a60029054906101000a900460ff165b801561206b5750600560149054906101000a900460ff16155b80156120c15750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121175750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561216d5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121b1576001600560146101000a81548160ff021916908315150217905550612195612883565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122675750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561227157600090505b6000811561248657601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122d457506000600e54115b1561236f576123026127106122f4600e5488612a9090919063ffffffff16565b612aa690919063ffffffff16565b9050600e54600f54826123159190613572565b61231f91906135fb565b60116000828254612330919061338c565b92505081905550600e54601054826123489190613572565b61235291906135fb565b60126000828254612363919061338c565b92505081905550612462565b601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123ca57506000600b54115b15612461576123f86127106123ea600b5488612a9090919063ffffffff16565b612aa690919063ffffffff16565b9050600b54600c548261240b9190613572565b61241591906135fb565b60116000828254612426919061338c565b92505081905550600b54600d548261243e9190613572565b61244891906135fb565b60126000828254612459919061338c565b925050819055505b5b600081111561247757612476873083612602565b5b80856124839190613c26565b94505b612491878787612602565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990613978565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613a0a565b60405180910390fd5b6126ed838383612abc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613ccc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612806919061338c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161286a9190613095565b60405180910390a361287d848484612ac1565b50505050565b600061288e30610d60565b905060006012546011546128a2919061338c565b90506000808314806128b45750600082145b156128c157505050612a8e565b60146008546128d09190613572565b8311156128e95760146008546128e69190613572565b92505b6000600283601154866128fc9190613572565b61290691906135fb565b61291091906135fb565b905060006129278286612ac690919063ffffffff16565b9050600047905061293782612adc565b600061294c8247612ac690919063ffffffff16565b905060006129778761296960125485612a9090919063ffffffff16565b612aa690919063ffffffff16565b9050600081836129879190613c26565b9050600060118190555060006012819055506000861180156129a95750600081115b156129f6576129b88682612d19565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826011546040516129ed93929190613cec565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a3c90613d54565b60006040518083038185875af1925050503d8060008114612a79576040519150601f19603f3d011682016040523d82523d6000602084013e612a7e565b606091505b5050809750505050505050505050505b565b60008183612a9e9190613572565b905092915050565b60008183612ab491906135fb565b905092915050565b505050565b505050565b60008183612ad49190613c26565b905092915050565b6000600267ffffffffffffffff811115612af957612af8613d69565b5b604051908082528060200260200182016040528015612b275781602001602082028036833780820191505090505b5090503081600081518110612b3f57612b3e613d98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c089190613ddc565b81600181518110612c1c57612c1b613d98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c81307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611862565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612ce3959493929190613f02565b600060405180830381600087803b158015612cfd57600080fd5b505af1158015612d11573d6000803e3d6000fd5b505050505050565b612d44307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611862565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612dcb96959493929190613f5c565b60606040518083038185885af1158015612de9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e0e9190613fd2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4f578082015181840152602081019050612e34565b83811115612e5e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8082612e15565b612e8a8185612e20565b9350612e9a818560208601612e31565b612ea381612e64565b840191505092915050565b60006020820190508181036000830152612ec88184612e75565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0082612ed5565b9050919050565b612f1081612ef5565b8114612f1b57600080fd5b50565b600081359050612f2d81612f07565b92915050565b6000819050919050565b612f4681612f33565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612ed0565b5b6000612f8e85828601612f1e565b9250506020612f9f85828601612f54565b9150509250929050565b60008115159050919050565b612fbe81612fa9565b82525050565b6000602082019050612fd96000830184612fb5565b92915050565b600060208284031215612ff557612ff4612ed0565b5b600061300384828501612f1e565b91505092915050565b6000819050919050565b600061303161302c61302784612ed5565b61300c565b612ed5565b9050919050565b600061304382613016565b9050919050565b600061305582613038565b9050919050565b6130658161304a565b82525050565b6000602082019050613080600083018461305c565b92915050565b61308f81612f33565b82525050565b60006020820190506130aa6000830184613086565b92915050565b6000806000606084860312156130c9576130c8612ed0565b5b60006130d786828701612f1e565b93505060206130e886828701612f1e565b92505060406130f986828701612f54565b9150509250925092565b61310c81612ef5565b82525050565b60006020820190506131276000830184613103565b92915050565b600060ff82169050919050565b6131438161312d565b82525050565b600060208201905061315e600083018461313a565b92915050565b61316d81612fa9565b811461317857600080fd5b50565b60008135905061318a81613164565b92915050565b600080604083850312156131a7576131a6612ed0565b5b60006131b585828601612f1e565b92505060206131c68582860161317b565b9150509250929050565b6000602082840312156131e6576131e5612ed0565b5b60006131f48482850161317b565b91505092915050565b60006020828403121561321357613212612ed0565b5b600061322184828501612f54565b91505092915050565b6000806040838503121561324157613240612ed0565b5b600061324f85828601612f1e565b925050602061326085828601612f1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132b157607f821691505b602082108114156132c5576132c461326a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613327602883612e20565b9150613332826132cb565b604082019050919050565b600060208201905081810360008301526133568161331a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339782612f33565b91506133a283612f33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d7576133d661335d565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613418602083612e20565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006134aa603983612e20565b91506134b58261344e565b604082019050919050565b600060208201905081810360008301526134d98161349d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061353c602583612e20565b9150613547826134e0565b604082019050919050565b6000602082019050818103600083015261356b8161352f565b9050919050565b600061357d82612f33565b915061358883612f33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135c1576135c061335d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061360682612f33565b915061361183612f33565b925082613621576136206135cc565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613688603583612e20565b91506136938261362c565b604082019050919050565b600060208201905081810360008301526136b78161367b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061371a603483612e20565b9150613725826136be565b604082019050919050565b600060208201905081810360008301526137498161370d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137ac602683612e20565b91506137b782613750565b604082019050919050565b600060208201905081810360008301526137db8161379f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061383e602483612e20565b9150613849826137e2565b604082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d0602283612e20565b91506138db82613874565b604082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613962602583612e20565b915061396d82613906565b604082019050919050565b6000602082019050818103600083015261399181613955565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139f4602383612e20565b91506139ff82613998565b604082019050919050565b60006020820190508181036000830152613a23816139e7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a60601683612e20565b9150613a6b82613a2a565b602082019050919050565b60006020820190508181036000830152613a8f81613a53565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613af2603583612e20565b9150613afd82613a96565b604082019050919050565b60006020820190508181036000830152613b2181613ae5565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b5e601383612e20565b9150613b6982613b28565b602082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613bf0603683612e20565b9150613bfb82613b94565b604082019050919050565b60006020820190508181036000830152613c1f81613be3565b9050919050565b6000613c3182612f33565b9150613c3c83612f33565b925082821015613c4f57613c4e61335d565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613cb6602683612e20565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b6000606082019050613d016000830186613086565b613d0e6020830185613086565b613d1b6040830184613086565b949350505050565b600081905092915050565b50565b6000613d3e600083613d23565b9150613d4982613d2e565b600082019050919050565b6000613d5f82613d31565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613dd681612f07565b92915050565b600060208284031215613df257613df1612ed0565b5b6000613e0084828501613dc7565b91505092915050565b6000819050919050565b6000613e2e613e29613e2484613e09565b61300c565b612f33565b9050919050565b613e3e81613e13565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e7981612ef5565b82525050565b6000613e8b8383613e70565b60208301905092915050565b6000602082019050919050565b6000613eaf82613e44565b613eb98185613e4f565b9350613ec483613e60565b8060005b83811015613ef5578151613edc8882613e7f565b9750613ee783613e97565b925050600181019050613ec8565b5085935050505092915050565b600060a082019050613f176000830188613086565b613f246020830187613e35565b8181036040830152613f368186613ea4565b9050613f456060830185613103565b613f526080830184613086565b9695505050505050565b600060c082019050613f716000830189613103565b613f7e6020830188613086565b613f8b6040830187613e35565b613f986060830186613e35565b613fa56080830185613103565b613fb260a0830184613086565b979650505050505050565b600081519050613fcc81612f3d565b92915050565b600080600060608486031215613feb57613fea612ed0565b5b6000613ff986828701613fbd565b935050602061400a86828701613fbd565b925050604061401b86828701613fbd565b915050925092509256fea26469706673582212200bcfa4265ffbd9efdf91cc02c4654bfc945f1c76d63b8432b4bd9243805cebcd64736f6c634300080a0033

Deployed Bytecode Sourcemap

32746:12111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11800:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33708:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32821:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10753:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33492:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12451:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32924:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10595:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13352:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32879:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33164:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38395:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33388:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33244:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10924:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2868:103;;;;;;;;;;;;;:::i;:::-;;36629:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37326:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36465:112;;;;;;;;;;;;;:::i;:::-;;2217:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33016:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37589:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9852:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37887:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33355:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33532:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33461:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14070:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11264:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33929:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33204:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37697:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33049:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36820:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33284:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11502:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33091:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33318:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3126:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33423:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33131:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9633:100;9687:13;9720:5;9713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9633:100;:::o;11800:169::-;11883:4;11900:39;11909:12;:10;:12::i;:::-;11923:7;11932:6;11900:8;:39::i;:::-;11957:4;11950:11;;11800:169;;;;:::o;33708:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32821:51::-;;;:::o;10753:108::-;10814:7;10841:12;;10834:19;;10753:108;:::o;33492:33::-;;;;:::o;12451:492::-;12591:4;12608:36;12618:6;12626:9;12637:6;12608:9;:36::i;:::-;12657:24;12684:11;:19;12696:6;12684:19;;;;;;;;;;;;;;;:33;12704:12;:10;:12::i;:::-;12684:33;;;;;;;;;;;;;;;;12657:60;;12756:6;12736:16;:26;;12728:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12843:57;12852:6;12860:12;:10;:12::i;:::-;12893:6;12874:16;:25;12843:8;:57::i;:::-;12931:4;12924:11;;;12451:492;;;;;:::o;32924:53::-;32970:6;32924:53;:::o;10595:93::-;10653:5;10678:2;10671:9;;10595:93;:::o;13352:215::-;13440:4;13457:80;13466:12;:10;:12::i;:::-;13480:7;13526:10;13489:11;:25;13501:12;:10;:12::i;:::-;13489:25;;;;;;;;;;;;;;;:34;13515:7;13489:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13457:8;:80::i;:::-;13555:4;13548:11;;13352:215;;;;:::o;32879:38::-;;;:::o;33164:33::-;;;;;;;;;;;;;:::o;38395:126::-;38461:4;38485:19;:28;38505:7;38485:28;;;;;;;;;;;;;;;;;;;;;;;;;38478:35;;38395:126;;;:::o;33388:28::-;;;;:::o;33244:31::-;;;;;;;;;;;;;:::o;10924:127::-;10998:7;11025:9;:18;11035:7;11025:18;;;;;;;;;;;;;;;;11018:25;;10924:127;;;:::o;2868:103::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2933:30:::1;2960:1;2933:18;:30::i;:::-;2868:103::o:0;36629:121::-;36681:4;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36715:5:::1;36698:14;;:22;;;;;;;;;;;;;;;;;;36738:4;36731:11;;36629:121:::0;:::o;37326:167::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37481:4:::1;37439:31;:39;37471:6;37439:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37326:167:::0;;:::o;36465:112::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36536:4:::1;36520:13;;:20;;;;;;;;;;;;;;;;;;36565:4;36551:11;;:18;;;;;;;;;;;;;;;;;;36465:112::o:0;2217:87::-;2263:7;2290:6;;;;;;;;;;;2283:13;;2217:87;:::o;33016:24::-;;;;;;;;;;;;;:::o;37589:100::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37674:7:::1;37660:11;;:21;;;;;;;;;;;;;;;;;;37589:100:::0;:::o;9852:104::-;9908:13;9941:7;9934:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9852:104;:::o;37887:304::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38031:13:::1;38023:21;;:4;:21;;;;38001:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;38142:41;38171:4;38177:5;38142:28;:41::i;:::-;37887:304:::0;;:::o;33355:24::-;;;;:::o;33532:27::-;;;;:::o;33461:25::-;;;;:::o;14070:413::-;14163:4;14180:24;14207:11;:25;14219:12;:10;:12::i;:::-;14207:25;;;;;;;;;;;;;;;:34;14233:7;14207:34;;;;;;;;;;;;;;;;14180:61;;14280:15;14260:16;:35;;14252:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14373:67;14382:12;:10;:12::i;:::-;14396:7;14424:15;14405:16;:34;14373:8;:67::i;:::-;14471:4;14464:11;;;14070:413;;;;:::o;11264:175::-;11350:4;11367:42;11377:12;:10;:12::i;:::-;11391:9;11402:6;11367:9;:42::i;:::-;11427:4;11420:11;;11264:175;;;;:::o;33929:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33204:33::-;;;;;;;;;;;;;:::o;37697:182::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37813:8:::1;37782:19;:28;37802:7;37782:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37853:7;37837:34;;;37862:8;37837:34;;;;;;:::i;:::-;;;;;;;;37697:182:::0;;:::o;33049:35::-;;;;:::o;36820:497::-;36928:4;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:6:::1;37002:1;36986:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36985:28;;;;:::i;:::-;36972:9;:41;;36950:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37162:4;37157:1;37141:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37140:26;;;;:::i;:::-;37127:9;:39;;37105:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37278:9;37257:18;:30;;;;37305:4;37298:11;;36820:497:::0;;;:::o;33284:27::-;;;;:::o;11502:151::-;11591:7;11618:11;:18;11630:5;11618:18;;;;;;;;;;;;;;;:27;11637:7;11618:27;;;;;;;;;;;;;;;;11611:34;;11502:151;;;;:::o;33091:33::-;;;;:::o;33318:30::-;;;;:::o;3126:201::-;2448:12;:10;:12::i;:::-;2437:23;;:7;:5;:7::i;:::-;:23;;;2429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3235:1:::1;3215:22;;:8;:22;;;;3207:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3291:28;3310:8;3291:18;:28::i;:::-;3126:201:::0;:::o;33423:31::-;;;;:::o;33131:24::-;;;;:::o;890:98::-;943:7;970:10;963:17;;890:98;:::o;17795:380::-;17948:1;17931:19;;:5;:19;;;;17923:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18029:1;18010:21;;:7;:21;;;;18002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18113:6;18083:11;:18;18095:5;18083:18;;;;;;;;;;;;;;;:27;18102:7;18083:27;;;;;;;;;;;;;;;:36;;;;18151:7;18135:32;;18144:5;18135:32;;;18160:6;18135:32;;;;;;:::i;:::-;;;;;;;;17795:380;;;:::o;38529:3782::-;38677:1;38661:18;;:4;:18;;;;38653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38754:1;38740:16;;:2;:16;;;;38732:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38823:1;38813:6;:11;38809:93;;;38841:28;38857:4;38863:2;38867:1;38841:15;:28::i;:::-;38884:7;;38809:93;38918:14;;;;;;;;;;;38914:1694;;;38979:7;:5;:7::i;:::-;38971:15;;:4;:15;;;;:49;;;;;39013:7;:5;:7::i;:::-;39007:13;;:2;:13;;;;38971:49;:86;;;;;39055:1;39041:16;;:2;:16;;;;38971:86;:128;;;;;39092:6;39078:21;;:2;:21;;;;38971:128;:158;;;;;39121:8;;;;;;;;;;;39120:9;38971:158;38949:1648;;;39169:13;;;;;;;;;;;39164:223;;39241:19;:25;39261:4;39241:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39270:19;:23;39290:2;39270:23;;;;;;;;;;;;;;;;;;;;;;;;;39241:52;39207:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39164:223;39461:25;:31;39487:4;39461:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39518:31;:35;39550:2;39518:35;;;;;;;;;;;;;;;;;;;;;;;;;39517:36;39461:92;39435:1147;;;39640:20;;39630:6;:30;;39596:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39848:9;;39831:13;39841:2;39831:9;:13::i;:::-;39822:6;:22;;;;:::i;:::-;:35;;39788:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39435:1147;;;40026:25;:29;40052:2;40026:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40081:31;:37;40113:4;40081:37;;;;;;;;;;;;;;;;;;;;;;;;;40080:38;40026:92;40000:582;;;40205:20;;40195:6;:30;;40161:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40000:582;;;40362:31;:35;40394:2;40362:35;;;;;;;;;;;;;;;;;;;;;;;;;40357:225;;40482:9;;40465:13;40475:2;40465:9;:13::i;:::-;40456:6;:22;;;;:::i;:::-;:35;;40422:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40357:225;40000:582;39435:1147;38949:1648;38914:1694;40620:28;40651:24;40669:4;40651:9;:24::i;:::-;40620:55;;40688:12;40727:18;;40703:20;:42;;40688:57;;40776:7;:35;;;;;40800:11;;;;;;;;;;;40776:35;:61;;;;;40829:8;;;;;;;;;;;40828:9;40776:61;:110;;;;;40855:25;:31;40881:4;40855:31;;;;;;;;;;;;;;;;;;;;;;;;;40854:32;40776:110;:153;;;;;40904:19;:25;40924:4;40904:25;;;;;;;;;;;;;;;;;;;;;;;;;40903:26;40776:153;:194;;;;;40947:19;:23;40967:2;40947:23;;;;;;;;;;;;;;;;;;;;;;;;;40946:24;40776:194;40758:326;;;41008:4;40997:8;;:15;;;;;;;;;;;;;;;;;;41029:10;:8;:10::i;:::-;41067:5;41056:8;;:16;;;;;;;;;;;;;;;;;;40758:326;41096:12;41112:8;;;;;;;;;;;41111:9;41096:24;;41222:19;:25;41242:4;41222:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41251:19;:23;41271:2;41251:23;;;;;;;;;;;;;;;;;;;;;;;;;41222:52;41218:100;;;41301:5;41291:15;;41218:100;41330:12;41435:7;41431:827;;;41487:25;:29;41513:2;41487:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41536:1;41520:13;;:17;41487:50;41483:626;;;41565:36;41595:5;41565:25;41576:13;;41565:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;41558:43;;41670:13;;41650:16;;41643:4;:23;;;;:::i;:::-;41642:41;;;;:::i;:::-;41620:18;;:63;;;;;;;:::i;:::-;;;;;;;;41740:13;;41726:10;;41719:4;:17;;;;:::i;:::-;41718:35;;;;:::i;:::-;41702:12;;:51;;;;;;;:::i;:::-;;;;;;;;41483:626;;;41831:25;:31;41857:4;41831:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41881:1;41866:12;;:16;41831:51;41827:282;;;41910:35;41939:5;41910:24;41921:12;;41910:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;41903:42;;42013:12;;41994:15;;41987:4;:22;;;;:::i;:::-;41986:39;;;;:::i;:::-;41964:18;;:61;;;;;;;:::i;:::-;;;;;;;;42081:12;;42068:9;;42061:4;:16;;;;:::i;:::-;42060:33;;;;:::i;:::-;42044:12;;:49;;;;;;;:::i;:::-;;;;;;;;41827:282;41483:626;42136:1;42129:4;:8;42125:91;;;42158:42;42174:4;42188;42195;42158:15;:42::i;:::-;42125:91;42242:4;42232:14;;;;;:::i;:::-;;;41431:827;42270:33;42286:4;42292:2;42296:6;42270:15;:33::i;:::-;38642:3669;;;;38529:3782;;;;:::o;3487:191::-;3561:16;3580:6;;;;;;;;;;;3561:25;;3606:8;3597:6;;:17;;;;;;;;;;;;;;;;;;3661:8;3630:40;;3651:8;3630:40;;;;;;;;;;;;3550:128;3487:191;:::o;38199:188::-;38316:5;38282:25;:31;38308:4;38282:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38373:5;38339:40;;38367:4;38339:40;;;;;;;;;;;;38199:188;;:::o;14973:733::-;15131:1;15113:20;;:6;:20;;;;15105:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15215:1;15194:23;;:9;:23;;;;15186:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15270:47;15291:6;15299:9;15310:6;15270:20;:47::i;:::-;15330:21;15354:9;:17;15364:6;15354:17;;;;;;;;;;;;;;;;15330:41;;15407:6;15390:13;:23;;15382:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15528:6;15512:13;:22;15492:9;:17;15502:6;15492:17;;;;;;;;;;;;;;;:42;;;;15580:6;15556:9;:20;15566:9;15556:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15621:9;15604:35;;15613:6;15604:35;;;15632:6;15604:35;;;;;;:::i;:::-;;;;;;;;15652:46;15672:6;15680:9;15691:6;15652:19;:46::i;:::-;15094:612;14973:733;;;:::o;43439:1413::-;43478:23;43504:24;43522:4;43504:9;:24::i;:::-;43478:50;;43539:25;43588:12;;43567:18;;:33;;;;:::i;:::-;43539:61;;43611:12;43659:1;43640:15;:20;:46;;;;43685:1;43664:17;:22;43640:46;43636:85;;;43703:7;;;;;43636:85;43776:2;43755:18;;:23;;;;:::i;:::-;43737:15;:41;43733:115;;;43834:2;43813:18;;:23;;;;:::i;:::-;43795:41;;43733:115;43909:23;43996:1;43976:17;43954:18;;43936:15;:36;;;;:::i;:::-;43935:58;;;;:::i;:::-;:62;;;;:::i;:::-;43909:88;;44008:26;44037:36;44057:15;44037;:19;;:36;;;;:::i;:::-;44008:65;;44086:25;44114:21;44086:49;;44148:36;44165:18;44148:16;:36::i;:::-;44197:18;44218:44;44244:17;44218:21;:25;;:44;;;;:::i;:::-;44197:65;;44276:17;44296:51;44329:17;44296:28;44311:12;;44296:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44276:71;;44360:23;44399:9;44386:10;:22;;;;:::i;:::-;44360:48;;44442:1;44421:18;:22;;;;44469:1;44454:12;:16;;;;44505:1;44487:15;:19;:42;;;;;44528:1;44510:15;:19;44487:42;44483:278;;;44546:46;44559:15;44576;44546:12;:46::i;:::-;44612:137;44645:18;44682:15;44716:18;;44612:137;;;;;;;;:::i;:::-;;;;;;;;44483:278;44795:9;;;;;;;;;;;44787:23;;44818:21;44787:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44773:71;;;;;43467:1385;;;;;;;;;43439:1413;:::o;23248:98::-;23306:7;23337:1;23333;:5;;;;:::i;:::-;23326:12;;23248:98;;;;:::o;23647:::-;23705:7;23736:1;23732;:5;;;;:::i;:::-;23725:12;;23647:98;;;;:::o;18775:125::-;;;;:::o;19504:124::-;;;;:::o;22891:98::-;22949:7;22980:1;22976;:5;;;;:::i;:::-;22969:12;;22891:98;;;;:::o;42319:589::-;42445:21;42483:1;42469:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42445:40;;42514:4;42496;42501:1;42496:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42540:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42530:4;42535:1;42530:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42575:62;42592:4;42607:15;42625:11;42575:8;:62::i;:::-;42676:15;:66;;;42757:11;42783:1;42827:4;42854;42874:15;42676:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42374:534;42319:589;:::o;42916:515::-;43064:62;43081:4;43096:15;43114:11;43064:8;:62::i;:::-;43169:15;:31;;;43208:9;43241:4;43261:11;43287:1;43330;43373:9;;;;;;;;;;;43397:15;43169:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42916:515;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:468::-;6892:6;6900;6949:2;6937:9;6928:7;6924:23;6920:32;6917:119;;;6955:79;;:::i;:::-;6917:119;7075:1;7100:53;7145:7;7136:6;7125:9;7121:22;7100:53;:::i;:::-;7090:63;;7046:117;7202:2;7228:50;7270:7;7261:6;7250:9;7246:22;7228:50;:::i;:::-;7218:60;;7173:115;6827:468;;;;;:::o;7301:323::-;7357:6;7406:2;7394:9;7385:7;7381:23;7377:32;7374:119;;;7412:79;;:::i;:::-;7374:119;7532:1;7557:50;7599:7;7590:6;7579:9;7575:22;7557:50;:::i;:::-;7547:60;;7503:114;7301:323;;;;:::o;7630:329::-;7689:6;7738:2;7726:9;7717:7;7713:23;7709:32;7706:119;;;7744:79;;:::i;:::-;7706:119;7864:1;7889:53;7934:7;7925:6;7914:9;7910:22;7889:53;:::i;:::-;7879:63;;7835:117;7630:329;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:227::-;9097:34;9093:1;9085:6;9081:14;9074:58;9166:10;9161:2;9153:6;9149:15;9142:35;8957:227;:::o;9190:366::-;9332:3;9353:67;9417:2;9412:3;9353:67;:::i;:::-;9346:74;;9429:93;9518:3;9429:93;:::i;:::-;9547:2;9542:3;9538:12;9531:19;;9190:366;;;:::o;9562:419::-;9728:4;9766:2;9755:9;9751:18;9743:26;;9815:9;9809:4;9805:20;9801:1;9790:9;9786:17;9779:47;9843:131;9969:4;9843:131;:::i;:::-;9835:139;;9562:419;;;:::o;9987:180::-;10035:77;10032:1;10025:88;10132:4;10129:1;10122:15;10156:4;10153:1;10146:15;10173:305;10213:3;10232:20;10250:1;10232:20;:::i;:::-;10227:25;;10266:20;10284:1;10266:20;:::i;:::-;10261:25;;10420:1;10352:66;10348:74;10345:1;10342:81;10339:107;;;10426:18;;:::i;:::-;10339:107;10470:1;10467;10463:9;10456:16;;10173:305;;;;:::o;10484:182::-;10624:34;10620:1;10612:6;10608:14;10601:58;10484:182;:::o;10672:366::-;10814:3;10835:67;10899:2;10894:3;10835:67;:::i;:::-;10828:74;;10911:93;11000:3;10911:93;:::i;:::-;11029:2;11024:3;11020:12;11013:19;;10672:366;;;:::o;11044:419::-;11210:4;11248:2;11237:9;11233:18;11225:26;;11297:9;11291:4;11287:20;11283:1;11272:9;11268:17;11261:47;11325:131;11451:4;11325:131;:::i;:::-;11317:139;;11044:419;;;:::o;11469:244::-;11609:34;11605:1;11597:6;11593:14;11586:58;11678:27;11673:2;11665:6;11661:15;11654:52;11469:244;:::o;11719:366::-;11861:3;11882:67;11946:2;11941:3;11882:67;:::i;:::-;11875:74;;11958:93;12047:3;11958:93;:::i;:::-;12076:2;12071:3;12067:12;12060:19;;11719:366;;;:::o;12091:419::-;12257:4;12295:2;12284:9;12280:18;12272:26;;12344:9;12338:4;12334:20;12330:1;12319:9;12315:17;12308:47;12372:131;12498:4;12372:131;:::i;:::-;12364:139;;12091:419;;;:::o;12516:224::-;12656:34;12652:1;12644:6;12640:14;12633:58;12725:7;12720:2;12712:6;12708:15;12701:32;12516:224;:::o;12746:366::-;12888:3;12909:67;12973:2;12968:3;12909:67;:::i;:::-;12902:74;;12985:93;13074:3;12985:93;:::i;:::-;13103:2;13098:3;13094:12;13087:19;;12746:366;;;:::o;13118:419::-;13284:4;13322:2;13311:9;13307:18;13299:26;;13371:9;13365:4;13361:20;13357:1;13346:9;13342:17;13335:47;13399:131;13525:4;13399:131;:::i;:::-;13391:139;;13118:419;;;:::o;13543:348::-;13583:7;13606:20;13624:1;13606:20;:::i;:::-;13601:25;;13640:20;13658:1;13640:20;:::i;:::-;13635:25;;13828:1;13760:66;13756:74;13753:1;13750:81;13745:1;13738:9;13731:17;13727:105;13724:131;;;13835:18;;:::i;:::-;13724:131;13883:1;13880;13876:9;13865:20;;13543:348;;;;:::o;13897:180::-;13945:77;13942:1;13935:88;14042:4;14039:1;14032:15;14066:4;14063:1;14056:15;14083:185;14123:1;14140:20;14158:1;14140:20;:::i;:::-;14135:25;;14174:20;14192:1;14174:20;:::i;:::-;14169:25;;14213:1;14203:35;;14218:18;;:::i;:::-;14203:35;14260:1;14257;14253:9;14248:14;;14083:185;;;;:::o;14274:240::-;14414:34;14410:1;14402:6;14398:14;14391:58;14483:23;14478:2;14470:6;14466:15;14459:48;14274:240;:::o;14520:366::-;14662:3;14683:67;14747:2;14742:3;14683:67;:::i;:::-;14676:74;;14759:93;14848:3;14759:93;:::i;:::-;14877:2;14872:3;14868:12;14861:19;;14520:366;;;:::o;14892:419::-;15058:4;15096:2;15085:9;15081:18;15073:26;;15145:9;15139:4;15135:20;15131:1;15120:9;15116:17;15109:47;15173:131;15299:4;15173:131;:::i;:::-;15165:139;;14892:419;;;:::o;15317:239::-;15457:34;15453:1;15445:6;15441:14;15434:58;15526:22;15521:2;15513:6;15509:15;15502:47;15317:239;:::o;15562:366::-;15704:3;15725:67;15789:2;15784:3;15725:67;:::i;:::-;15718:74;;15801:93;15890:3;15801:93;:::i;:::-;15919:2;15914:3;15910:12;15903:19;;15562:366;;;:::o;15934:419::-;16100:4;16138:2;16127:9;16123:18;16115:26;;16187:9;16181:4;16177:20;16173:1;16162:9;16158:17;16151:47;16215:131;16341:4;16215:131;:::i;:::-;16207:139;;15934:419;;;:::o;16359:225::-;16499:34;16495:1;16487:6;16483:14;16476:58;16568:8;16563:2;16555:6;16551:15;16544:33;16359:225;:::o;16590:366::-;16732:3;16753:67;16817:2;16812:3;16753:67;:::i;:::-;16746:74;;16829:93;16918:3;16829:93;:::i;:::-;16947:2;16942:3;16938:12;16931:19;;16590:366;;;:::o;16962:419::-;17128:4;17166:2;17155:9;17151:18;17143:26;;17215:9;17209:4;17205:20;17201:1;17190:9;17186:17;17179:47;17243:131;17369:4;17243:131;:::i;:::-;17235:139;;16962:419;;;:::o;17387:223::-;17527:34;17523:1;17515:6;17511:14;17504:58;17596:6;17591:2;17583:6;17579:15;17572:31;17387:223;:::o;17616:366::-;17758:3;17779:67;17843:2;17838:3;17779:67;:::i;:::-;17772:74;;17855:93;17944:3;17855:93;:::i;:::-;17973:2;17968:3;17964:12;17957:19;;17616:366;;;:::o;17988:419::-;18154:4;18192:2;18181:9;18177:18;18169:26;;18241:9;18235:4;18231:20;18227:1;18216:9;18212:17;18205:47;18269:131;18395:4;18269:131;:::i;:::-;18261:139;;17988:419;;;:::o;18413:221::-;18553:34;18549:1;18541:6;18537:14;18530:58;18622:4;18617:2;18609:6;18605:15;18598:29;18413:221;:::o;18640:366::-;18782:3;18803:67;18867:2;18862:3;18803:67;:::i;:::-;18796:74;;18879:93;18968:3;18879:93;:::i;:::-;18997:2;18992:3;18988:12;18981:19;;18640:366;;;:::o;19012:419::-;19178:4;19216:2;19205:9;19201:18;19193:26;;19265:9;19259:4;19255:20;19251:1;19240:9;19236:17;19229:47;19293:131;19419:4;19293:131;:::i;:::-;19285:139;;19012:419;;;:::o;19437:224::-;19577:34;19573:1;19565:6;19561:14;19554:58;19646:7;19641:2;19633:6;19629:15;19622:32;19437:224;:::o;19667:366::-;19809:3;19830:67;19894:2;19889:3;19830:67;:::i;:::-;19823:74;;19906:93;19995:3;19906:93;:::i;:::-;20024:2;20019:3;20015:12;20008:19;;19667:366;;;:::o;20039:419::-;20205:4;20243:2;20232:9;20228:18;20220:26;;20292:9;20286:4;20282:20;20278:1;20267:9;20263:17;20256:47;20320:131;20446:4;20320:131;:::i;:::-;20312:139;;20039:419;;;:::o;20464:222::-;20604:34;20600:1;20592:6;20588:14;20581:58;20673:5;20668:2;20660:6;20656:15;20649:30;20464:222;:::o;20692:366::-;20834:3;20855:67;20919:2;20914:3;20855:67;:::i;:::-;20848:74;;20931:93;21020:3;20931:93;:::i;:::-;21049:2;21044:3;21040:12;21033:19;;20692:366;;;:::o;21064:419::-;21230:4;21268:2;21257:9;21253:18;21245:26;;21317:9;21311:4;21307:20;21303:1;21292:9;21288:17;21281:47;21345:131;21471:4;21345:131;:::i;:::-;21337:139;;21064:419;;;:::o;21489:172::-;21629:24;21625:1;21617:6;21613:14;21606:48;21489:172;:::o;21667:366::-;21809:3;21830:67;21894:2;21889:3;21830:67;:::i;:::-;21823:74;;21906:93;21995:3;21906:93;:::i;:::-;22024:2;22019:3;22015:12;22008:19;;21667:366;;;:::o;22039:419::-;22205:4;22243:2;22232:9;22228:18;22220:26;;22292:9;22286:4;22282:20;22278:1;22267:9;22263:17;22256:47;22320:131;22446:4;22320:131;:::i;:::-;22312:139;;22039:419;;;:::o;22464:240::-;22604:34;22600:1;22592:6;22588:14;22581:58;22673:23;22668:2;22660:6;22656:15;22649:48;22464:240;:::o;22710:366::-;22852:3;22873:67;22937:2;22932:3;22873:67;:::i;:::-;22866:74;;22949:93;23038:3;22949:93;:::i;:::-;23067:2;23062:3;23058:12;23051:19;;22710:366;;;:::o;23082:419::-;23248:4;23286:2;23275:9;23271:18;23263:26;;23335:9;23329:4;23325:20;23321:1;23310:9;23306:17;23299:47;23363:131;23489:4;23363:131;:::i;:::-;23355:139;;23082:419;;;:::o;23507:169::-;23647:21;23643:1;23635:6;23631:14;23624:45;23507:169;:::o;23682:366::-;23824:3;23845:67;23909:2;23904:3;23845:67;:::i;:::-;23838:74;;23921:93;24010:3;23921:93;:::i;:::-;24039:2;24034:3;24030:12;24023:19;;23682:366;;;:::o;24054:419::-;24220:4;24258:2;24247:9;24243:18;24235:26;;24307:9;24301:4;24297:20;24293:1;24282:9;24278:17;24271:47;24335:131;24461:4;24335:131;:::i;:::-;24327:139;;24054:419;;;:::o;24479:241::-;24619:34;24615:1;24607:6;24603:14;24596:58;24688:24;24683:2;24675:6;24671:15;24664:49;24479:241;:::o;24726:366::-;24868:3;24889:67;24953:2;24948:3;24889:67;:::i;:::-;24882:74;;24965:93;25054:3;24965:93;:::i;:::-;25083:2;25078:3;25074:12;25067:19;;24726:366;;;:::o;25098:419::-;25264:4;25302:2;25291:9;25287:18;25279:26;;25351:9;25345:4;25341:20;25337:1;25326:9;25322:17;25315:47;25379:131;25505:4;25379:131;:::i;:::-;25371:139;;25098:419;;;:::o;25523:191::-;25563:4;25583:20;25601:1;25583:20;:::i;:::-;25578:25;;25617:20;25635:1;25617:20;:::i;:::-;25612:25;;25656:1;25653;25650:8;25647:34;;;25661:18;;:::i;:::-;25647:34;25706:1;25703;25699:9;25691:17;;25523:191;;;;:::o;25720:225::-;25860:34;25856:1;25848:6;25844:14;25837:58;25929:8;25924:2;25916:6;25912:15;25905:33;25720:225;:::o;25951:366::-;26093:3;26114:67;26178:2;26173:3;26114:67;:::i;:::-;26107:74;;26190:93;26279:3;26190:93;:::i;:::-;26308:2;26303:3;26299:12;26292:19;;25951:366;;;:::o;26323:419::-;26489:4;26527:2;26516:9;26512:18;26504:26;;26576:9;26570:4;26566:20;26562:1;26551:9;26547:17;26540:47;26604:131;26730:4;26604:131;:::i;:::-;26596:139;;26323:419;;;:::o;26748:442::-;26897:4;26935:2;26924:9;26920:18;26912:26;;26948:71;27016:1;27005:9;27001:17;26992:6;26948:71;:::i;:::-;27029:72;27097:2;27086:9;27082:18;27073:6;27029:72;:::i;:::-;27111;27179:2;27168:9;27164:18;27155:6;27111:72;:::i;:::-;26748:442;;;;;;:::o;27196:147::-;27297:11;27334:3;27319:18;;27196:147;;;;:::o;27349:114::-;;:::o;27469:398::-;27628:3;27649:83;27730:1;27725:3;27649:83;:::i;:::-;27642:90;;27741:93;27830:3;27741:93;:::i;:::-;27859:1;27854:3;27850:11;27843:18;;27469:398;;;:::o;27873:379::-;28057:3;28079:147;28222:3;28079:147;:::i;:::-;28072:154;;28243:3;28236:10;;27873:379;;;:::o;28258:180::-;28306:77;28303:1;28296:88;28403:4;28400:1;28393:15;28427:4;28424:1;28417:15;28444:180;28492:77;28489:1;28482:88;28589:4;28586:1;28579:15;28613:4;28610:1;28603:15;28630:143;28687:5;28718:6;28712:13;28703:22;;28734:33;28761:5;28734:33;:::i;:::-;28630:143;;;;:::o;28779:351::-;28849:6;28898:2;28886:9;28877:7;28873:23;28869:32;28866:119;;;28904:79;;:::i;:::-;28866:119;29024:1;29049:64;29105:7;29096:6;29085:9;29081:22;29049:64;:::i;:::-;29039:74;;28995:128;28779:351;;;;:::o;29136:85::-;29181:7;29210:5;29199:16;;29136:85;;;:::o;29227:158::-;29285:9;29318:61;29336:42;29345:32;29371:5;29345:32;:::i;:::-;29336:42;:::i;:::-;29318:61;:::i;:::-;29305:74;;29227:158;;;:::o;29391:147::-;29486:45;29525:5;29486:45;:::i;:::-;29481:3;29474:58;29391:147;;:::o;29544:114::-;29611:6;29645:5;29639:12;29629:22;;29544:114;;;:::o;29664:184::-;29763:11;29797:6;29792:3;29785:19;29837:4;29832:3;29828:14;29813:29;;29664:184;;;;:::o;29854:132::-;29921:4;29944:3;29936:11;;29974:4;29969:3;29965:14;29957:22;;29854:132;;;:::o;29992:108::-;30069:24;30087:5;30069:24;:::i;:::-;30064:3;30057:37;29992:108;;:::o;30106:179::-;30175:10;30196:46;30238:3;30230:6;30196:46;:::i;:::-;30274:4;30269:3;30265:14;30251:28;;30106:179;;;;:::o;30291:113::-;30361:4;30393;30388:3;30384:14;30376:22;;30291:113;;;:::o;30440:732::-;30559:3;30588:54;30636:5;30588:54;:::i;:::-;30658:86;30737:6;30732:3;30658:86;:::i;:::-;30651:93;;30768:56;30818:5;30768:56;:::i;:::-;30847:7;30878:1;30863:284;30888:6;30885:1;30882:13;30863:284;;;30964:6;30958:13;30991:63;31050:3;31035:13;30991:63;:::i;:::-;30984:70;;31077:60;31130:6;31077:60;:::i;:::-;31067:70;;30923:224;30910:1;30907;30903:9;30898:14;;30863:284;;;30867:14;31163:3;31156:10;;30564:608;;;30440:732;;;;:::o;31178:831::-;31441:4;31479:3;31468:9;31464:19;31456:27;;31493:71;31561:1;31550:9;31546:17;31537:6;31493:71;:::i;:::-;31574:80;31650:2;31639:9;31635:18;31626:6;31574:80;:::i;:::-;31701:9;31695:4;31691:20;31686:2;31675:9;31671:18;31664:48;31729:108;31832:4;31823:6;31729:108;:::i;:::-;31721:116;;31847:72;31915:2;31904:9;31900:18;31891:6;31847:72;:::i;:::-;31929:73;31997:3;31986:9;31982:19;31973:6;31929:73;:::i;:::-;31178:831;;;;;;;;:::o;32015:807::-;32264:4;32302:3;32291:9;32287:19;32279:27;;32316:71;32384:1;32373:9;32369:17;32360:6;32316:71;:::i;:::-;32397:72;32465:2;32454:9;32450:18;32441:6;32397:72;:::i;:::-;32479:80;32555:2;32544:9;32540:18;32531:6;32479:80;:::i;:::-;32569;32645:2;32634:9;32630:18;32621:6;32569:80;:::i;:::-;32659:73;32727:3;32716:9;32712:19;32703:6;32659:73;:::i;:::-;32742;32810:3;32799:9;32795:19;32786:6;32742:73;:::i;:::-;32015:807;;;;;;;;;:::o;32828:143::-;32885:5;32916:6;32910:13;32901:22;;32932:33;32959:5;32932:33;:::i;:::-;32828:143;;;;:::o;32977:663::-;33065:6;33073;33081;33130:2;33118:9;33109:7;33105:23;33101:32;33098:119;;;33136:79;;:::i;:::-;33098:119;33256:1;33281:64;33337:7;33328:6;33317:9;33313:22;33281:64;:::i;:::-;33271:74;;33227:128;33394:2;33420:64;33476:7;33467:6;33456:9;33452:22;33420:64;:::i;:::-;33410:74;;33365:129;33533:2;33559:64;33615:7;33606:6;33595:9;33591:22;33559:64;:::i;:::-;33549:74;;33504:129;32977:663;;;;;:::o

Swarm Source

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