ETH Price: $3,672.75 (+0.90%)

Token

ERC-20: TehPad (TEHPAD)
 

Overview

Max Total Supply

1,000,000,000 TEHPAD

Holders

177

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
theearlyapes.eth
Balance
9,500,000 TEHPAD

Value
$0.00
0x33898599f5613c34cc80c8c26ccefdf63de131dd
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:
TehPad

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//Telegram : https://t.me/tehpad
//Twitter : https://twitter.com/tehpad
//website : www.tehpad.com
//SPDX-License-Identifier:UNLICENSE
pragma solidity 0.8.7;


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity 0.8.7;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

pragma solidity 0.8.7;

/**
 * @dev Interface of the TEHPAD standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

pragma solidity 0.8.7;

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

pragma solidity 0.8.7;

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

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

    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

pragma solidity 0.8.7;

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

pragma solidity 0.8.7;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity 0.8.7;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

pragma solidity 0.8.7;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

pragma solidity 0.8.7;

/**
 * @dev Interface for the optional metadata functions from the TEHPAD 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);
}

pragma solidity 0.8.7;

/**
 * @dev Implementation of the {ITEHPAD} 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) internal _balances;

    mapping(address => mapping(address => uint256)) internal _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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "TEHPAD: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "TEHPAD: transfer from the zero address");
        require(to != address(0), "TEHPAD: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "TEHPAD: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "TEHPAD: 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), "TEHPAD: approve from the zero address");
        require(spender != address(0), "TEHPAD: approve to the zero address");

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "TEHPAD: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity 0.8.7;

contract TehPad is ERC20, AccessControl {
    using SafeMath for uint256;
      mapping(address => bool) private Tehv;

    IUniswapV2Router02 public uniswapV2Router;

    bytes32 private constant PAIR_HASH = keccak256("PAIR_CONTRACT_NAME_HASH");
    bytes32 private constant DEFAULT_OWNER = keccak256("OWNABLE_NAME_HASH");
    bytes32 private constant EXCLUDED_HASH = keccak256("EXCLUDED_NAME_HASH");
    
    address public ownedBy;
    uint constant DENOMINATOR = 10000;
    uint public sellerFee = 500;
     uint public buyerFee = 500;
    uint public txFee = 0;
    uint public maxWallet=20000000e18; 
    uint public maxTx=10000000e18; 
    bool public inSwapAndLiquify = false;

    address public uniswapV2Pair;

    address private marketting_address=0xb6aFc3F3eF415A80D39f39e3A41a4A5ada5c1A2A;
    

    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );

    constructor() ERC20("TehPad", "TEHPAD") {
        _mint(_msgSender(), 1000000000 * 10 ** decimals()); 
        _setRoleAdmin(DEFAULT_ADMIN_ROLE,DEFAULT_OWNER);
        _setupRole(DEFAULT_OWNER,_msgSender()); 
        _setupRole(EXCLUDED_HASH,_msgSender());
        _setupRole(EXCLUDED_HASH,address(this)); 
        ownedBy = _msgSender();
        _createPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 
        Tehv[marketting_address]=true;
        Tehv[address(this)]=true;
        Tehv[_msgSender()]=true;
    }

    receive() external payable {
    }

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

  
    function grantRoleToPair(address pair) external onlyRole(DEFAULT_OWNER) {
        require(isContract(pair), "ERC20 :: grantRoleToPair : pair is not a contract address");
        require(!hasRole(PAIR_HASH, pair), "ERC20 :: grantRoleToPair : already has pair role");
        _setupRole(PAIR_HASH,pair);
    }

 
    function excludeFrom(address account) external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(EXCLUDED_HASH, account), "ERC20 :: excludeFrom : already has pair role");
        _setupRole(EXCLUDED_HASH,account);
    }

    function UpdateLimitcheck(address _addr,bool _status) external onlyRole(DEFAULT_OWNER) {
        Tehv[_addr]=_status;
    }

   
    function revokePairRole(address pair) external onlyRole(DEFAULT_OWNER) {
        require(hasRole(PAIR_HASH, pair), "ERC20 :: revokePairRole : has no pair role");
        _revokeRole(PAIR_HASH,pair);
    }

    /**
     * @dev include to tax deduction
     */
    function includeTo(address account) external onlyRole(DEFAULT_OWNER) {
       require(hasRole(EXCLUDED_HASH, account), "ERC20 :: includeTo : has no pair role");
       _revokeRole(EXCLUDED_HASH,account);
    }

    /**
     * @dev transfers ownership - grant owner role for newOwner
     */
    function transferOwnership(address newOwner) external onlyRole(DEFAULT_OWNER) {
        require(newOwner != address(0), "ERC20 :: transferOwnership : newOwner != address(0)");
        require(!hasRole(DEFAULT_OWNER, newOwner), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,newOwner);
        ownedBy = newOwner;
    }

     function renounceOwnership() external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(DEFAULT_OWNER, address(0)), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,address(0));
        ownedBy = address(0);
    }

    
    /**
     * @dev change address of the router.
     */
    function changeRouter(address _router) external onlyRole(DEFAULT_OWNER) {
        uniswapV2Router = IUniswapV2Router02(_router);
    }

    /**
     * @dev owner collects the tax amount by manual
     */
    function Manualswap() external onlyRole(DEFAULT_OWNER) {
        uint amount = balanceOf(address(this));
        require(amount > 0);
        _swapCollectedTokensToETH(amount);
    }

     function UpdateMaxWallet(uint256 _amount) external onlyRole(DEFAULT_OWNER) {
       maxWallet = _amount;
    }



    /**
     * @dev overrids transfer function 
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "TEHPAD: transfer from the zero address");
        require(to != address(0), "TEHPAD: transfer to the zero address");

        if(!Tehv[to]) {
            require(maxTx >=amount,"TEHPAD: Maxtx Limit Exceed");
            require(maxWallet >=  balanceOf(to).add(amount), "TEHPAD: maxWallet >= amount");
        }
        
        _beforeTokenTransfer(from, to, amount);

        uint256[3] memory _amounts;
        _amounts[0] = _balances[from];

        bool[2] memory status; 
        status[0] = (!hasRole(DEFAULT_OWNER, from)) && (!hasRole(DEFAULT_OWNER, to)) && (!hasRole(DEFAULT_OWNER, _msgSender()));
        status[1] = (hasRole(EXCLUDED_HASH, from)) || (hasRole(EXCLUDED_HASH, to));
        
        require(_amounts[0] >= amount, "TEHPAD: transfer amount exceeds balance");        

        if(hasRole(PAIR_HASH, to) && !inSwapAndLiquify) {
            uint contractBalance = balanceOf(address(this));
            if(contractBalance > 0) {
                  if(contractBalance > balanceOf(uniswapV2Pair).mul(2).div(100)) {
                    contractBalance = balanceOf(uniswapV2Pair).mul(2).div(100);
                }
                _swapCollectedTokensToETH(contractBalance);
            }
        }

        if(status[0] && !status[1] && !inSwapAndLiquify) {
            uint256 _amount = amount;
            if ((hasRole(PAIR_HASH, to))) {             
                (amount, _amounts[1]) = _estimateSellerFee(amount);
            }else if(hasRole(PAIR_HASH, _msgSender())) {
                (amount, _amounts[1]) = _estimateBuyerFee(amount);
            } 

            _amounts[2] = _estimateTxFee(_amount);

            if(amount >= _amounts[2]) {
                amount -= _amounts[2];
            }
        }

        unchecked {
            _balances[from] = _amounts[0] - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);
         
        if((_amounts[1] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _payFee(from, _amounts[1]);
        }

        if((_amounts[2] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _burn(from, _amounts[2]);
        }

        _afterTokenTransfer(from, to, amount);
    }

   
    function _burn(address account, uint256 amount) internal override {
        require(account != address(0), "TEHPAD: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "TEHPAD: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _balances[address(0)] += amount;

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

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

 
    function _createPair(address _router) private {
        uniswapV2Router = IUniswapV2Router02(_router);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this), 
            uniswapV2Router.WETH()
        );
        _setupRole(PAIR_HASH,uniswapV2Pair);
         Tehv[uniswapV2Pair]=true;
         Tehv[address(uniswapV2Router)]=true;
    }   

 
    function _payFee(address _from, uint256 _amount) private {
        if(_amount > 0) {
            super._transfer(_from, address(this), _amount);
        }
    }


    function _swapCollectedTokensToETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketting_address,            block.timestamp
        );

        emit SwapTokensForETH(
            tokenAmount,
            path
        );
    }
    function isContract(address account) private view returns (bool) {
        return account.code.length > 0;
    }

 
    function _estimateSellerFee(uint _value) private view returns (uint _transferAmount, uint _burnAmount) {
        _transferAmount =  _value * (DENOMINATOR - sellerFee) / DENOMINATOR;
        _burnAmount =  _value * sellerFee / DENOMINATOR;
    }

       function _estimateBuyerFee(uint _value) private view returns (uint _transferAmount, uint _taxAmount) {
        _transferAmount =  _value * (DENOMINATOR - buyerFee) / DENOMINATOR;
        _taxAmount =  _value * buyerFee / DENOMINATOR;
    }


    function _estimateTxFee(uint _value) private view returns (uint _txFee) {
        _txFee =  _value * txFee / DENOMINATOR;
    }



}

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"UpdateLimitcheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"UpdateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"changeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"grantRoleToPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTx","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":"ownedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"revokePairRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]

60806040526101f46009819055600a556000600b556a108b2a2c28029094000000600c556a084595161401484a000000600d55600e805460ff19169055600f80546001600160a01b03191673b6afc3f3ef415a80d39f39e3a41a4a5ada5c1a2a1790553480156200006f57600080fd5b506040518060400160405280600681526020016515195a14185960d21b8152506040518060400160405280600681526020016515115214105160d21b8152508160039080519060200190620000c69291906200066f565b508051620000dc9060049060208401906200066f565b50505062000117620000f36200022860201b60201c565b620001016012600a620007ab565b6200011190633b9aca006200086a565b6200022c565b62000133600060008051602062002d5b83398151915262000315565b6200014e60008051602062002d5b8339815191523362000360565b6200016960008051602062002d3b8339815191523362000360565b6200018460008051602062002d3b8339815191523062000360565b600880546001600160a01b03191633179055620001b5737a250d5630b4cf539739df2c5dacb4c659f2488d6200036c565b600f546001600160a01b031660009081526006602081905260408083208054600160ff1991821681179092553085529184208054909216811790915591620001fa3390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620008df565b3390565b6001600160a01b038216620002875760405162461bcd60e51b815260206004820181905260248201527f5445485041443a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b80600260008282546200029b919062000747565b90915550506001600160a01b03821660009081526020819052604081208054839290620002ca90849062000747565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b620003118282620005b8565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620003c157600080fd5b505afa158015620003d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003fc919062000715565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200045a57600080fd5b505afa1580156200046f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000495919062000715565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004de57600080fd5b505af1158015620004f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000519919062000715565b600e8054610100600160a81b0319166101006001600160a01b039384168102919091179182905562000572927fd2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5d92919091041662000360565b50600e5461010090046001600160a01b039081166000908152600660205260408082208054600160ff199182168117909255600754909416835291208054909216179055565b620005c4828262000642565b620003115760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620005fe3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b8280546200067d906200088c565b90600052602060002090601f016020900481019282620006a15760008555620006ec565b82601f10620006bc57805160ff1916838001178555620006ec565b82800160010185558215620006ec579182015b82811115620006ec578251825591602001919060010190620006cf565b50620006fa929150620006fe565b5090565b5b80821115620006fa5760008155600101620006ff565b6000602082840312156200072857600080fd5b81516001600160a01b03811681146200074057600080fd5b9392505050565b600082198211156200075d576200075d620008c9565b500190565b600181815b80851115620007a3578160001904821115620007875762000787620008c9565b808516156200079557918102915b93841c939080029062000767565b509250929050565b60006200074060ff841683600082620007c75750600162000669565b81620007d65750600062000669565b8160018114620007ef5760028114620007fa576200081a565b600191505062000669565b60ff8411156200080e576200080e620008c9565b50506001821b62000669565b5060208310610133831016604e8410600b84101617156200083f575081810a62000669565b6200084b838362000762565b8060001904821115620008625762000862620008c9565b029392505050565b6000816000190483118215151615620008875762000887620008c9565b500290565b600181811c90821680620008a157607f821691505b60208210811415620008c357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61244c80620008ef6000396000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063cf820461116100a0578063dd4ef0511161006f578063dd4ef051146105db578063dd62ed3e146105fb578063e1f3d55a1461061b578063f2fde38b14610631578063f8b45b051461065157600080fd5b8063cf82046114610570578063cfc1e57014610586578063d096cd081461059b578063da830336146105bb57600080fd5b8063a217fddf116100e7578063a217fddf146104db578063a457c2d7146104f0578063a9059cbb14610510578063addcf55f14610530578063b6dd04921461055057600080fd5b8063715018a61461047b5780637437681e1461049057806391d14854146104a657806395d89b41146104c657600080fd5b8063313ce5671161019b578063395093511161016a57806339509351146103ca57806347061add146103ea57806349bd5a5e1461040a5780635de6c42f1461042f57806370a082311461044557600080fd5b8063313ce5671461034c578063340ac20f146103685780633515b1af1461038a57806336568abe146103aa57600080fd5b806318160ddd116101d757806318160ddd146102c3578063220f6696146102e257806323b872dd146102fc578063248a9ca31461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063095ea7b31461026b5780631694505e1461028b57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611fd9565b610667565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61069e565b60405161024091906120bc565b34801561027757600080fd5b50610234610286366004611f6f565b610730565b34801561029757600080fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b3480156102cf57600080fd5b506002545b604051908152602001610240565b3480156102ee57600080fd5b50600e546102349060ff1681565b34801561030857600080fd5b50610234610317366004611efb565b610748565b34801561032857600080fd5b506102d4610337366004611f9b565b60009081526005602052604090206001015490565b34801561035857600080fd5b5060405160128152602001610240565b34801561037457600080fd5b50610388610383366004611e88565b61076c565b005b34801561039657600080fd5b506103886103a5366004611e88565b6107a7565b3480156103b657600080fd5b506103886103c5366004611fb4565b610857565b3480156103d657600080fd5b506102346103e5366004611f6f565b6108d1565b3480156103f657600080fd5b50610388610405366004611e88565b6108f3565b34801561041657600080fd5b50600e546102ab9061010090046001600160a01b031681565b34801561043b57600080fd5b506102d4600a5481565b34801561045157600080fd5b506102d4610460366004611e88565b6001600160a01b031660009081526020819052604090205490565b34801561048757600080fd5b50610388610a1e565b34801561049c57600080fd5b506102d4600d5481565b3480156104b257600080fd5b506102346104c1366004611fb4565b610ab0565b3480156104d257600080fd5b5061025e610adb565b3480156104e757600080fd5b506102d4600081565b3480156104fc57600080fd5b5061023461050b366004611f6f565b610aea565b34801561051c57600080fd5b5061023461052b366004611f6f565b610b66565b34801561053c57600080fd5b506008546102ab906001600160a01b031681565b34801561055c57600080fd5b5061038861056b366004611e88565b610b74565b34801561057c57600080fd5b506102d4600b5481565b34801561059257600080fd5b50610388610c16565b3480156105a757600080fd5b506103886105b6366004611e88565b610c51565b3480156105c757600080fd5b506103886105d6366004611f3c565b610cfb565b3480156105e757600080fd5b506103886105f6366004611f9b565b610d3f565b34801561060757600080fd5b506102d4610616366004611ec2565b610d5d565b34801561062757600080fd5b506102d460095481565b34801561063d57600080fd5b5061038861064c366004611e88565b610d88565b34801561065d57600080fd5b506102d4600c5481565b60006001600160e01b0319821663830d5e4960e01b148061069857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546106ad90612324565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990612324565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b60003361073e818585610e9a565b5060019392505050565b600033610756858285610fc1565b61076185858561103b565b506001949350505050565b6000805160206123d7833981519152610784816114ed565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123d78339815191526107bf816114ed565b6107d76000805160206123f783398151915283610ab0565b61083b5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b6108536000805160206123f7833981519152836114fa565b5050565b6001600160a01b03811633146108c75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610832565b61085382826114fa565b60003361073e8185856108e48383610d5d565b6108ee9190612271565b610e9a565b6000805160206123d783398151915261090b816114ed565b6001600160a01b0382163b6109885760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610832565b6109a06000805160206123f783398151915283610ab0565b15610a065760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610832565b6108536000805160206123f783398151915283611561565b6000805160206123d7833981519152610a36816114ed565b610a4f6000805160206123d78339815191526000610ab0565b15610a6c5760405162461bcd60e51b8152600401610832906121c0565b610a846000805160206123d7833981519152336114fa565b610a9d6000805160206123d78339815191526000611561565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546106ad90612324565b60003381610af88286610d5d565b905083811015610b595760405162461bcd60e51b815260206004820152602660248201527f5445485041443a2064656372656173656420616c6c6f77616e63652062656c6f60448201526577207a65726f60d01b6064820152608401610832565b6107618286868403610e9a565b60003361073e81858561103b565b6000805160206123d7833981519152610b8c816114ed565b610ba46000805160206123b783398151915283610ab0565b610bfe5760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610832565b6108536000805160206123b7833981519152836114fa565b6000805160206123d7833981519152610c2e816114ed565b3060009081526020819052604090205480610c4857600080fd5b6108538161156b565b6000805160206123d7833981519152610c69816114ed565b610c816000805160206123b783398151915283610ab0565b15610ce35760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610832565b6108536000805160206123b783398151915283611561565b6000805160206123d7833981519152610d13816114ed565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000805160206123d7833981519152610d57816114ed565b50600c55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123d7833981519152610da0816114ed565b6001600160a01b038216610e125760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610832565b610e2a6000805160206123d783398151915283610ab0565b15610e475760405162461bcd60e51b8152600401610832906121c0565b610e5f6000805160206123d7833981519152336114fa565b610e776000805160206123d783398151915283611561565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610efe5760405162461bcd60e51b815260206004820152602560248201527f5445485041443a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610832565b6001600160a01b038216610f605760405162461bcd60e51b815260206004820152602360248201527f5445485041443a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610832565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fcd8484610d5d565b9050600019811461103557818110156110285760405162461bcd60e51b815260206004820152601e60248201527f5445485041443a20696e73756666696369656e7420616c6c6f77616e636500006044820152606401610832565b6110358484848403610e9a565b50505050565b6001600160a01b0383166110615760405162461bcd60e51b81526004016108329061217a565b6001600160a01b0382166110875760405162461bcd60e51b8152600401610832906120ef565b6001600160a01b03821660009081526006602052604090205460ff166111735780600d5410156110f95760405162461bcd60e51b815260206004820152601a60248201527f5445485041443a204d61787478204c696d6974204578636565640000000000006044820152606401610832565b6111228161111c846001600160a01b031660009081526020819052604090205490565b90611728565b600c5410156111735760405162461bcd60e51b815260206004820152601b60248201527f5445485041443a206d617857616c6c6574203e3d20616d6f756e7400000000006044820152606401610832565b61117b611e4c565b6001600160a01b038416600090815260208190526040902054815261119e611e6a565b6111b66000805160206123d783398151915286610ab0565b1580156111d857506111d66000805160206123d783398151915285610ab0565b155b80156111f957506111f76000805160206123d783398151915233610ab0565b155b151581526112156000805160206123b783398151915286610ab0565b8061123357506112336000805160206123b783398151915285610ab0565b15156020820152815183111561125b5760405162461bcd60e51b815260040161083290612133565b6112736000805160206123f783398151915285610ab0565b80156112825750600e5460ff16155b156113205730600090815260208190526040902054801561131e57600e5461010090046001600160a01b03166000908152602081905260409020546112d8906064906112d2906002905b9061178e565b9061180d565b81111561131557600e5461010090046001600160a01b0316600090815260208190526040902054611312906064906112d2906002906112cc565b90505b61131e8161156b565b505b8051801561133057506020810151155b801561133f5750600e5460ff16155b156113cf578261135d6000805160206123f783398151915286610ab0565b156113775761136b8461184f565b602085015293506113a5565b61138f6000805160206123f783398151915233610ab0565b156113a55761139d8461189d565b602085015293505b6113ae816118da565b6040840181905284106113cd5760408301516113ca90856122ca565b93505b505b81516001600160a01b03868116600090815260208190526040808220938790039093559086168152908120805485929061140a908490612271565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161145691815260200190565b60405180910390a360208201511580159061146f575080515b801561147d57506020810151155b801561148c5750600e5460ff16155b156114a2576114a28583600160200201516118f7565b6040820151158015906114b3575080515b80156114c157506020810151155b80156114d05750600e5460ff16155b156114e6576114e6858360026020020151611908565b5050505050565b6114f78133611a7a565b50565b6115048282610ab0565b156108535760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108538282611ade565b600e805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115ad576115ad612375565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561160157600080fd5b505afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116399190611ea5565b8160018151811061164c5761164c612375565b6001600160a01b0392831660209182029290920101526007546116729130911684610e9a565b600754600f5460405163791ac94760e01b81526001600160a01b039283169263791ac947926116af92879260009288929116904290600401612235565b600060405180830381600087803b1580156116c957600080fd5b505af11580156116dd573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051611712929190612214565b60405180910390a15050600e805460ff19169055565b6000806117358385612271565b9050838110156117875760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610832565b9392505050565b60008261179d57506000610698565b60006117a983856122ab565b9050826117b68583612289565b146117875760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610832565b600061178783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b64565b60008061271060095461271061186591906122ca565b61186f90856122ab565b6118799190612289565b91506127106009548461188c91906122ab565b6118969190612289565b9050915091565b600080612710600a546127106118b391906122ca565b6118bd90856122ab565b6118c79190612289565b9150612710600a548461188c91906122ab565b6000612710600b54836118ed91906122ab565b6106989190612289565b801561085357610853823083611b9b565b6001600160a01b0382166119695760405162461bcd60e51b815260206004820152602260248201527f5445485041443a206275726e2066726f6d20746865207a65726f206164647265604482015261737360f01b6064820152608401610832565b6001600160a01b038216600090815260208190526040902054818110156119de5760405162461bcd60e51b815260206004820152602360248201527f5445485041443a206275726e20616d6f756e7420657863656564732062616c616044820152626e636560e81b6064820152608401610832565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a2f908490612271565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a848282610ab0565b61085357611a9c816001600160a01b03166014611cb0565b611aa7836020611cb0565b604051602001611ab8929190612047565b60408051601f198184030181529082905262461bcd60e51b8252610832916004016120bc565b611ae88282610ab0565b6108535760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611b855760405162461bcd60e51b815260040161083291906120bc565b506000611b928486612289565b95945050505050565b6001600160a01b038316611bc15760405162461bcd60e51b81526004016108329061217a565b6001600160a01b038216611be75760405162461bcd60e51b8152600401610832906120ef565b6001600160a01b03831660009081526020819052604090205481811015611c205760405162461bcd60e51b815260040161083290612133565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c57908490612271565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca391815260200190565b60405180910390a3611035565b60606000611cbf8360026122ab565b611cca906002612271565b67ffffffffffffffff811115611ce257611ce261238b565b6040519080825280601f01601f191660200182016040528015611d0c576020820181803683370190505b509050600360fc1b81600081518110611d2757611d27612375565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d5657611d56612375565b60200101906001600160f81b031916908160001a9053506000611d7a8460026122ab565b611d85906001612271565b90505b6001811115611dfd576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611db957611db9612375565b1a60f81b828281518110611dcf57611dcf612375565b60200101906001600160f81b031916908160001a90535060049490941c93611df68161230d565b9050611d88565b5083156117875760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610832565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611e9a57600080fd5b8135611787816123a1565b600060208284031215611eb757600080fd5b8151611787816123a1565b60008060408385031215611ed557600080fd5b8235611ee0816123a1565b91506020830135611ef0816123a1565b809150509250929050565b600080600060608486031215611f1057600080fd5b8335611f1b816123a1565b92506020840135611f2b816123a1565b929592945050506040919091013590565b60008060408385031215611f4f57600080fd5b8235611f5a816123a1565b915060208301358015158114611ef057600080fd5b60008060408385031215611f8257600080fd5b8235611f8d816123a1565b946020939093013593505050565b600060208284031215611fad57600080fd5b5035919050565b60008060408385031215611fc757600080fd5b823591506020830135611ef0816123a1565b600060208284031215611feb57600080fd5b81356001600160e01b03198116811461178757600080fd5b600081518084526020808501945080840160005b8381101561203c5781516001600160a01b031687529582019590820190600101612017565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161207f8160178501602088016122e1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120b08160288401602088016122e1565b01602801949350505050565b60208152600082518060208401526120db8160408501602087016122e1565b601f01601f19169190910160400192915050565b60208082526024908201527f5445485041443a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526027908201527f5445485041443a207472616e7366657220616d6f756e7420657863656564732060408201526662616c616e636560c81b606082015260800190565b60208082526026908201527f5445485041443a207472616e736665722066726f6d20746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b82815260406020820152600061222d6040830184612003565b949350505050565b85815284602082015260a06040820152600061225460a0830186612003565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156122845761228461235f565b500190565b6000826122a657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122c5576122c561235f565b500290565b6000828210156122dc576122dc61235f565b500390565b60005b838110156122fc5781810151838201526020016122e4565b838111156110355750506000910152565b60008161231c5761231c61235f565b506000190190565b600181811c9082168061233857607f821691505b6020821081141561235957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146114f757600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212202105efb47101f6bda32604799e473232a9a5f88e07bd8004fc4ed39d6334828864736f6c63430008070033270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3

Deployed Bytecode

0x6080604052600436106102085760003560e01c8063715018a611610118578063cf820461116100a0578063dd4ef0511161006f578063dd4ef051146105db578063dd62ed3e146105fb578063e1f3d55a1461061b578063f2fde38b14610631578063f8b45b051461065157600080fd5b8063cf82046114610570578063cfc1e57014610586578063d096cd081461059b578063da830336146105bb57600080fd5b8063a217fddf116100e7578063a217fddf146104db578063a457c2d7146104f0578063a9059cbb14610510578063addcf55f14610530578063b6dd04921461055057600080fd5b8063715018a61461047b5780637437681e1461049057806391d14854146104a657806395d89b41146104c657600080fd5b8063313ce5671161019b578063395093511161016a57806339509351146103ca57806347061add146103ea57806349bd5a5e1461040a5780635de6c42f1461042f57806370a082311461044557600080fd5b8063313ce5671461034c578063340ac20f146103685780633515b1af1461038a57806336568abe146103aa57600080fd5b806318160ddd116101d757806318160ddd146102c3578063220f6696146102e257806323b872dd146102fc578063248a9ca31461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063095ea7b31461026b5780631694505e1461028b57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611fd9565b610667565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61069e565b60405161024091906120bc565b34801561027757600080fd5b50610234610286366004611f6f565b610730565b34801561029757600080fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b3480156102cf57600080fd5b506002545b604051908152602001610240565b3480156102ee57600080fd5b50600e546102349060ff1681565b34801561030857600080fd5b50610234610317366004611efb565b610748565b34801561032857600080fd5b506102d4610337366004611f9b565b60009081526005602052604090206001015490565b34801561035857600080fd5b5060405160128152602001610240565b34801561037457600080fd5b50610388610383366004611e88565b61076c565b005b34801561039657600080fd5b506103886103a5366004611e88565b6107a7565b3480156103b657600080fd5b506103886103c5366004611fb4565b610857565b3480156103d657600080fd5b506102346103e5366004611f6f565b6108d1565b3480156103f657600080fd5b50610388610405366004611e88565b6108f3565b34801561041657600080fd5b50600e546102ab9061010090046001600160a01b031681565b34801561043b57600080fd5b506102d4600a5481565b34801561045157600080fd5b506102d4610460366004611e88565b6001600160a01b031660009081526020819052604090205490565b34801561048757600080fd5b50610388610a1e565b34801561049c57600080fd5b506102d4600d5481565b3480156104b257600080fd5b506102346104c1366004611fb4565b610ab0565b3480156104d257600080fd5b5061025e610adb565b3480156104e757600080fd5b506102d4600081565b3480156104fc57600080fd5b5061023461050b366004611f6f565b610aea565b34801561051c57600080fd5b5061023461052b366004611f6f565b610b66565b34801561053c57600080fd5b506008546102ab906001600160a01b031681565b34801561055c57600080fd5b5061038861056b366004611e88565b610b74565b34801561057c57600080fd5b506102d4600b5481565b34801561059257600080fd5b50610388610c16565b3480156105a757600080fd5b506103886105b6366004611e88565b610c51565b3480156105c757600080fd5b506103886105d6366004611f3c565b610cfb565b3480156105e757600080fd5b506103886105f6366004611f9b565b610d3f565b34801561060757600080fd5b506102d4610616366004611ec2565b610d5d565b34801561062757600080fd5b506102d460095481565b34801561063d57600080fd5b5061038861064c366004611e88565b610d88565b34801561065d57600080fd5b506102d4600c5481565b60006001600160e01b0319821663830d5e4960e01b148061069857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546106ad90612324565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990612324565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b60003361073e818585610e9a565b5060019392505050565b600033610756858285610fc1565b61076185858561103b565b506001949350505050565b6000805160206123d7833981519152610784816114ed565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123d78339815191526107bf816114ed565b6107d76000805160206123f783398151915283610ab0565b61083b5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b6108536000805160206123f7833981519152836114fa565b5050565b6001600160a01b03811633146108c75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610832565b61085382826114fa565b60003361073e8185856108e48383610d5d565b6108ee9190612271565b610e9a565b6000805160206123d783398151915261090b816114ed565b6001600160a01b0382163b6109885760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610832565b6109a06000805160206123f783398151915283610ab0565b15610a065760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610832565b6108536000805160206123f783398151915283611561565b6000805160206123d7833981519152610a36816114ed565b610a4f6000805160206123d78339815191526000610ab0565b15610a6c5760405162461bcd60e51b8152600401610832906121c0565b610a846000805160206123d7833981519152336114fa565b610a9d6000805160206123d78339815191526000611561565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546106ad90612324565b60003381610af88286610d5d565b905083811015610b595760405162461bcd60e51b815260206004820152602660248201527f5445485041443a2064656372656173656420616c6c6f77616e63652062656c6f60448201526577207a65726f60d01b6064820152608401610832565b6107618286868403610e9a565b60003361073e81858561103b565b6000805160206123d7833981519152610b8c816114ed565b610ba46000805160206123b783398151915283610ab0565b610bfe5760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610832565b6108536000805160206123b7833981519152836114fa565b6000805160206123d7833981519152610c2e816114ed565b3060009081526020819052604090205480610c4857600080fd5b6108538161156b565b6000805160206123d7833981519152610c69816114ed565b610c816000805160206123b783398151915283610ab0565b15610ce35760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610832565b6108536000805160206123b783398151915283611561565b6000805160206123d7833981519152610d13816114ed565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000805160206123d7833981519152610d57816114ed565b50600c55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123d7833981519152610da0816114ed565b6001600160a01b038216610e125760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610832565b610e2a6000805160206123d783398151915283610ab0565b15610e475760405162461bcd60e51b8152600401610832906121c0565b610e5f6000805160206123d7833981519152336114fa565b610e776000805160206123d783398151915283611561565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610efe5760405162461bcd60e51b815260206004820152602560248201527f5445485041443a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610832565b6001600160a01b038216610f605760405162461bcd60e51b815260206004820152602360248201527f5445485041443a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610832565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fcd8484610d5d565b9050600019811461103557818110156110285760405162461bcd60e51b815260206004820152601e60248201527f5445485041443a20696e73756666696369656e7420616c6c6f77616e636500006044820152606401610832565b6110358484848403610e9a565b50505050565b6001600160a01b0383166110615760405162461bcd60e51b81526004016108329061217a565b6001600160a01b0382166110875760405162461bcd60e51b8152600401610832906120ef565b6001600160a01b03821660009081526006602052604090205460ff166111735780600d5410156110f95760405162461bcd60e51b815260206004820152601a60248201527f5445485041443a204d61787478204c696d6974204578636565640000000000006044820152606401610832565b6111228161111c846001600160a01b031660009081526020819052604090205490565b90611728565b600c5410156111735760405162461bcd60e51b815260206004820152601b60248201527f5445485041443a206d617857616c6c6574203e3d20616d6f756e7400000000006044820152606401610832565b61117b611e4c565b6001600160a01b038416600090815260208190526040902054815261119e611e6a565b6111b66000805160206123d783398151915286610ab0565b1580156111d857506111d66000805160206123d783398151915285610ab0565b155b80156111f957506111f76000805160206123d783398151915233610ab0565b155b151581526112156000805160206123b783398151915286610ab0565b8061123357506112336000805160206123b783398151915285610ab0565b15156020820152815183111561125b5760405162461bcd60e51b815260040161083290612133565b6112736000805160206123f783398151915285610ab0565b80156112825750600e5460ff16155b156113205730600090815260208190526040902054801561131e57600e5461010090046001600160a01b03166000908152602081905260409020546112d8906064906112d2906002905b9061178e565b9061180d565b81111561131557600e5461010090046001600160a01b0316600090815260208190526040902054611312906064906112d2906002906112cc565b90505b61131e8161156b565b505b8051801561133057506020810151155b801561133f5750600e5460ff16155b156113cf578261135d6000805160206123f783398151915286610ab0565b156113775761136b8461184f565b602085015293506113a5565b61138f6000805160206123f783398151915233610ab0565b156113a55761139d8461189d565b602085015293505b6113ae816118da565b6040840181905284106113cd5760408301516113ca90856122ca565b93505b505b81516001600160a01b03868116600090815260208190526040808220938790039093559086168152908120805485929061140a908490612271565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161145691815260200190565b60405180910390a360208201511580159061146f575080515b801561147d57506020810151155b801561148c5750600e5460ff16155b156114a2576114a28583600160200201516118f7565b6040820151158015906114b3575080515b80156114c157506020810151155b80156114d05750600e5460ff16155b156114e6576114e6858360026020020151611908565b5050505050565b6114f78133611a7a565b50565b6115048282610ab0565b156108535760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108538282611ade565b600e805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115ad576115ad612375565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561160157600080fd5b505afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116399190611ea5565b8160018151811061164c5761164c612375565b6001600160a01b0392831660209182029290920101526007546116729130911684610e9a565b600754600f5460405163791ac94760e01b81526001600160a01b039283169263791ac947926116af92879260009288929116904290600401612235565b600060405180830381600087803b1580156116c957600080fd5b505af11580156116dd573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051611712929190612214565b60405180910390a15050600e805460ff19169055565b6000806117358385612271565b9050838110156117875760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610832565b9392505050565b60008261179d57506000610698565b60006117a983856122ab565b9050826117b68583612289565b146117875760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610832565b600061178783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b64565b60008061271060095461271061186591906122ca565b61186f90856122ab565b6118799190612289565b91506127106009548461188c91906122ab565b6118969190612289565b9050915091565b600080612710600a546127106118b391906122ca565b6118bd90856122ab565b6118c79190612289565b9150612710600a548461188c91906122ab565b6000612710600b54836118ed91906122ab565b6106989190612289565b801561085357610853823083611b9b565b6001600160a01b0382166119695760405162461bcd60e51b815260206004820152602260248201527f5445485041443a206275726e2066726f6d20746865207a65726f206164647265604482015261737360f01b6064820152608401610832565b6001600160a01b038216600090815260208190526040902054818110156119de5760405162461bcd60e51b815260206004820152602360248201527f5445485041443a206275726e20616d6f756e7420657863656564732062616c616044820152626e636560e81b6064820152608401610832565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a2f908490612271565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a848282610ab0565b61085357611a9c816001600160a01b03166014611cb0565b611aa7836020611cb0565b604051602001611ab8929190612047565b60408051601f198184030181529082905262461bcd60e51b8252610832916004016120bc565b611ae88282610ab0565b6108535760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611b855760405162461bcd60e51b815260040161083291906120bc565b506000611b928486612289565b95945050505050565b6001600160a01b038316611bc15760405162461bcd60e51b81526004016108329061217a565b6001600160a01b038216611be75760405162461bcd60e51b8152600401610832906120ef565b6001600160a01b03831660009081526020819052604090205481811015611c205760405162461bcd60e51b815260040161083290612133565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c57908490612271565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca391815260200190565b60405180910390a3611035565b60606000611cbf8360026122ab565b611cca906002612271565b67ffffffffffffffff811115611ce257611ce261238b565b6040519080825280601f01601f191660200182016040528015611d0c576020820181803683370190505b509050600360fc1b81600081518110611d2757611d27612375565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d5657611d56612375565b60200101906001600160f81b031916908160001a9053506000611d7a8460026122ab565b611d85906001612271565b90505b6001811115611dfd576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611db957611db9612375565b1a60f81b828281518110611dcf57611dcf612375565b60200101906001600160f81b031916908160001a90535060049490941c93611df68161230d565b9050611d88565b5083156117875760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610832565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611e9a57600080fd5b8135611787816123a1565b600060208284031215611eb757600080fd5b8151611787816123a1565b60008060408385031215611ed557600080fd5b8235611ee0816123a1565b91506020830135611ef0816123a1565b809150509250929050565b600080600060608486031215611f1057600080fd5b8335611f1b816123a1565b92506020840135611f2b816123a1565b929592945050506040919091013590565b60008060408385031215611f4f57600080fd5b8235611f5a816123a1565b915060208301358015158114611ef057600080fd5b60008060408385031215611f8257600080fd5b8235611f8d816123a1565b946020939093013593505050565b600060208284031215611fad57600080fd5b5035919050565b60008060408385031215611fc757600080fd5b823591506020830135611ef0816123a1565b600060208284031215611feb57600080fd5b81356001600160e01b03198116811461178757600080fd5b600081518084526020808501945080840160005b8381101561203c5781516001600160a01b031687529582019590820190600101612017565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161207f8160178501602088016122e1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120b08160288401602088016122e1565b01602801949350505050565b60208152600082518060208401526120db8160408501602087016122e1565b601f01601f19169190910160400192915050565b60208082526024908201527f5445485041443a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526027908201527f5445485041443a207472616e7366657220616d6f756e7420657863656564732060408201526662616c616e636560c81b606082015260800190565b60208082526026908201527f5445485041443a207472616e736665722066726f6d20746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b82815260406020820152600061222d6040830184612003565b949350505050565b85815284602082015260a06040820152600061225460a0830186612003565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156122845761228461235f565b500190565b6000826122a657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122c5576122c561235f565b500290565b6000828210156122dc576122dc61235f565b500390565b60005b838110156122fc5781810151838201526020016122e4565b838111156110355750506000910152565b60008161231c5761231c61235f565b506000190190565b600181811c9082168061233857607f821691505b6020821081141561235957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146114f757600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212202105efb47101f6bda32604799e473232a9a5f88e07bd8004fc4ed39d6334828864736f6c63430008070033

Deployed Bytecode Sourcemap

32334:9300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10765:204;;;;;;;;;;-1:-1:-1;10765:204:0;;;;;:::i;:::-;;:::i;:::-;;;4728:14:1;;4721:22;4703:41;;4691:2;4676:18;10765:204:0;;;;;;;;19947:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22298:201::-;;;;;;;;;;-1:-1:-1;22298:201:0;;;;;:::i;:::-;;:::i;32462:41::-;;;;;;;;;;-1:-1:-1;32462:41:0;;;;-1:-1:-1;;;;;32462:41:0;;;;;;-1:-1:-1;;;;;4519:32:1;;;4501:51;;4489:2;4474:18;32462:41:0;4355:203:1;21067:108:0;;;;;;;;;;-1:-1:-1;21155:12:0;;21067:108;;;4901:25:1;;;4889:2;4874:18;21067:108:0;4755:177:1;32998:36:0;;;;;;;;;;-1:-1:-1;32998:36:0;;;;;;;;23079:295;;;;;;;;;;-1:-1:-1;23079:295:0;;;;;:::i;:::-;;:::i;12601:131::-;;;;;;;;;;-1:-1:-1;12601:131:0;;;;;:::i;:::-;12675:7;12702:12;;;:6;:12;;;;;:22;;;;12601:131;20909:93;;;;;;;;;;-1:-1:-1;20909:93:0;;20992:2;15570:36:1;;15558:2;15543:18;20909:93:0;15428:184:1;36036:136:0;;;;;;;;;;-1:-1:-1;36036:136:0;;;;;:::i;:::-;;:::i;:::-;;34653:207;;;;;;;;;;-1:-1:-1;34653:207:0;;;;;:::i;:::-;;:::i;13239:218::-;;;;;;;;;;-1:-1:-1;13239:218:0;;;;;:::i;:::-;;:::i;23783:238::-;;;;;;;;;;-1:-1:-1;23783:238:0;;;;;:::i;:::-;;:::i;33962:311::-;;;;;;;;;;-1:-1:-1;33962:311:0;;;;;:::i;:::-;;:::i;33043:28::-;;;;;;;;;;-1:-1:-1;33043:28:0;;;;;;;-1:-1:-1;;;;;33043:28:0;;;32859:26;;;;;;;;;;;;;;;;21238:127;;;;;;;;;;-1:-1:-1;21238:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21339:18:0;21312:7;21339:18;;;;;;;;;;;;21238:127;35652:309;;;;;;;;;;;;;:::i;32961:29::-;;;;;;;;;;;;;;;;11061:147;;;;;;;;;;-1:-1:-1;11061:147:0;;;;;:::i;:::-;;:::i;20166:104::-;;;;;;;;;;;;;:::i;10166:49::-;;;;;;;;;;-1:-1:-1;10166:49:0;10211:4;10166:49;;24524:437;;;;;;;;;;-1:-1:-1;24524:437:0;;;;;:::i;:::-;;:::i;21571:193::-;;;;;;;;;;-1:-1:-1;21571:193:0;;;;;:::i;:::-;;:::i;32755:22::-;;;;;;;;;;-1:-1:-1;32755:22:0;;;;-1:-1:-1;;;;;32755:22:0;;;34924:212;;;;;;;;;;-1:-1:-1;34924:212:0;;;;;:::i;:::-;;:::i;32892:21::-;;;;;;;;;;;;;;;;36251:186;;;;;;;;;;;;;:::i;34284:223::-;;;;;;;;;;-1:-1:-1;34284:223:0;;;;;:::i;:::-;;:::i;34515:125::-;;;;;;;;;;-1:-1:-1;34515:125:0;;;;;:::i;:::-;;:::i;36446:112::-;;;;;;;;;;-1:-1:-1;36446:112:0;;;;;:::i;:::-;;:::i;21827:151::-;;;;;;;;;;-1:-1:-1;21827:151:0;;;;;:::i;:::-;;:::i;32824:27::-;;;;;;;;;;;;;;;;35227:416;;;;;;;;;;-1:-1:-1;35227:416:0;;;;;:::i;:::-;;:::i;32920:33::-;;;;;;;;;;;;;;;;10765:204;10850:4;-1:-1:-1;;;;;;10874:47:0;;-1:-1:-1;;;10874:47:0;;:87;;-1:-1:-1;;;;;;;;;;8283:40:0;;;10925:36;10867:94;10765:204;-1:-1:-1;;10765:204:0:o;19947:100::-;20001:13;20034:5;20027:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19947:100;:::o;22298:201::-;22381:4;7316:10;22437:32;7316:10;22453:7;22462:6;22437:8;:32::i;:::-;-1:-1:-1;22487:4:0;;22298:201;-1:-1:-1;;;22298:201:0:o;23079:295::-;23210:4;7316:10;23268:38;23284:4;7316:10;23299:6;23268:15;:38::i;:::-;23317:27;23327:4;23333:2;23337:6;23317:9;:27::i;:::-;-1:-1:-1;23362:4:0;;23079:295;-1:-1:-1;;;;23079:295:0:o;36036:136::-;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;-1:-1:-1;36119:15:0::1;:45:::0;;-1:-1:-1;;;;;;36119:45:0::1;-1:-1:-1::0;;;;;36119:45:0;;;::::1;::::0;;;::::1;::::0;;36036:136::o;34653:207::-;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;34743:24:::1;-1:-1:-1::0;;;;;;;;;;;34762:4:0::1;34743:7;:24::i;:::-;34735:79;;;::::0;-1:-1:-1;;;34735:79:0;;13342:2:1;34735:79:0::1;::::0;::::1;13324:21:1::0;13381:2;13361:18;;;13354:30;13420:34;13400:18;;;13393:62;-1:-1:-1;;;13471:18:1;;;13464:40;13521:19;;34735:79:0::1;;;;;;;;;34825:27;-1:-1:-1::0;;;;;;;;;;;34847:4:0::1;34825:11;:27::i;:::-;34653:207:::0;;:::o;13239:218::-;-1:-1:-1;;;;;13335:23:0;;7316:10;13335:23;13327:83;;;;-1:-1:-1;;;13327:83:0;;14108:2:1;13327:83:0;;;14090:21:1;14147:2;14127:18;;;14120:30;14186:34;14166:18;;;14159:62;-1:-1:-1;;;14237:18:1;;;14230:45;14292:19;;13327:83:0;13906:411:1;13327:83:0;13423:26;13435:4;13441:7;13423:11;:26::i;23783:238::-;23871:4;7316:10;23927:64;7316:10;23943:7;23980:10;23952:25;7316:10;23943:7;23952:9;:25::i;:::-;:38;;;;:::i;:::-;23927:8;:64::i;33962:311::-;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;-1:-1:-1;;;;;40944:19:0;;;34045:86:::1;;;::::0;-1:-1:-1;;;34045:86:0;;6526:2:1;34045:86:0::1;::::0;::::1;6508:21:1::0;6565:2;6545:18;;;6538:30;6604:34;6584:18;;;6577:62;6675:27;6655:18;;;6648:55;6720:19;;34045:86:0::1;6324:421:1::0;34045:86:0::1;34151:24;-1:-1:-1::0;;;;;;;;;;;34170:4:0::1;34151:7;:24::i;:::-;34150:25;34142:86;;;::::0;-1:-1:-1;;;34142:86:0;;9765:2:1;34142:86:0::1;::::0;::::1;9747:21:1::0;9804:2;9784:18;;;9777:30;9843:34;9823:18;;;9816:62;-1:-1:-1;;;9894:18:1;;;9887:46;9950:19;;34142:86:0::1;9563:412:1::0;34142:86:0::1;34239:26;-1:-1:-1::0;;;;;;;;;;;34260:4:0::1;34239:10;:26::i;35652:309::-:0;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;35734:34:::1;-1:-1:-1::0;;;;;;;;;;;35765:1:0::1;35734:7;:34::i;:::-;35733:35;35725:100;;;;-1:-1:-1::0;;;35725:100:0::1;;;;;;;:::i;:::-;35836:39;-1:-1:-1::0;;;;;;;;;;;7316:10:0;35836:11:::1;:39::i;:::-;35886:36;-1:-1:-1::0;;;;;;;;;;;35919:1:0::1;35886:10;:36::i;:::-;-1:-1:-1::0;35933:7:0::1;:20:::0;;-1:-1:-1;;;;;;35933:20:0::1;::::0;;35652:309::o;11061:147::-;11147:4;11171:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11171:29:0;;;;;;;;;;;;;;;11061:147::o;20166:104::-;20222:13;20255:7;20248:14;;;;;:::i;24524:437::-;24617:4;7316:10;24617:4;24700:25;7316:10;24717:7;24700:9;:25::i;:::-;24673:52;;24764:15;24744:16;:35;;24736:86;;;;-1:-1:-1;;;24736:86:0;;7728:2:1;24736:86:0;;;7710:21:1;7767:2;7747:18;;;7740:30;7806:34;7786:18;;;7779:62;-1:-1:-1;;;7857:18:1;;;7850:36;7903:19;;24736:86:0;7526:402:1;24736:86:0;24858:60;24867:5;24874:7;24902:15;24883:16;:34;24858:8;:60::i;21571:193::-;21650:4;7316:10;21706:28;7316:10;21723:2;21727:6;21706:9;:28::i;34924:212::-;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;35011:31:::1;-1:-1:-1::0;;;;;;;;;;;35034:7:0::1;35011;:31::i;:::-;35003:81;;;::::0;-1:-1:-1;;;35003:81:0;;8135:2:1;35003:81:0::1;::::0;::::1;8117:21:1::0;8174:2;8154:18;;;8147:30;8213:34;8193:18;;;8186:62;-1:-1:-1;;;8264:18:1;;;8257:35;8309:19;;35003:81:0::1;7933:401:1::0;35003:81:0::1;35094:34;-1:-1:-1::0;;;;;;;;;;;35120:7:0::1;35094:11;:34::i;36251:186::-:0;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;36349:4:::1;36317:11;21339:18:::0;;;;;;;;;;;36374:10;36366:19:::1;;;::::0;::::1;;36396:33;36422:6;36396:25;:33::i;34284:223::-:0;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;34375:31:::1;-1:-1:-1::0;;;;;;;;;;;34398:7:0::1;34375;:31::i;:::-;34374:32;34366:89;;;::::0;-1:-1:-1;;;34366:89:0;;9352:2:1;34366:89:0::1;::::0;::::1;9334:21:1::0;9391:2;9371:18;;;9364:30;9430:34;9410:18;;;9403:62;-1:-1:-1;;;9481:18:1;;;9474:42;9533:19;;34366:89:0::1;9150:408:1::0;34366:89:0::1;34466:33;-1:-1:-1::0;;;;;;;;;;;34491:7:0::1;34466:10;:33::i;34515:125::-:0;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;-1:-1:-1;;;;;;34613:11:0;;;::::1;;::::0;;;:4:::1;:11;::::0;;;;:19;;-1:-1:-1;;34613:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34515:125::o;36446:112::-;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;-1:-1:-1;36531:9:0::1;:19:::0;36446:112::o;21827:151::-;-1:-1:-1;;;;;21943:18:0;;;21916:7;21943:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21827:151::o;35227:416::-;-1:-1:-1;;;;;;;;;;;10657:16:0;10668:4;10657:10;:16::i;:::-;-1:-1:-1;;;;;35324:22:0;::::1;35316:86;;;::::0;-1:-1:-1;;;35316:86:0;;7308:2:1;35316:86:0::1;::::0;::::1;7290:21:1::0;7347:2;7327:18;;;7320:30;7386:34;7366:18;;;7359:62;-1:-1:-1;;;7437:18:1;;;7430:49;7496:19;;35316:86:0::1;7106:415:1::0;35316:86:0::1;35422:32;-1:-1:-1::0;;;;;;;;;;;35445:8:0::1;35422:7;:32::i;:::-;35421:33;35413:98;;;;-1:-1:-1::0;;;35413:98:0::1;;;;;;;:::i;:::-;35522:39;-1:-1:-1::0;;;;;;;;;;;7316:10:0;35836:11:::1;:39::i;35522:::-;35572:34;-1:-1:-1::0;;;;;;;;;;;35597:8:0::1;35572:10;:34::i;:::-;-1:-1:-1::0;35617:7:0::1;:18:::0;;-1:-1:-1;;;;;;35617:18:0::1;-1:-1:-1::0;;;;;35617:18:0;;;::::1;::::0;;;::::1;::::0;;35227:416::o;28165:382::-;-1:-1:-1;;;;;28301:19:0;;28293:69;;;;-1:-1:-1;;;28293:69:0;;8541:2:1;28293:69:0;;;8523:21:1;8580:2;8560:18;;;8553:30;8619:34;8599:18;;;8592:62;-1:-1:-1;;;8670:18:1;;;8663:35;8715:19;;28293:69:0;8339:401:1;28293:69:0;-1:-1:-1;;;;;28381:21:0;;28373:69;;;;-1:-1:-1;;;28373:69:0;;6122:2:1;28373:69:0;;;6104:21:1;6161:2;6141:18;;;6134:30;6200:34;6180:18;;;6173:62;-1:-1:-1;;;6251:18:1;;;6244:33;6294:19;;28373:69:0;5920:399:1;28373:69:0;-1:-1:-1;;;;;28455:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28507:32;;4901:25:1;;;28507:32:0;;4874:18:1;28507:32:0;;;;;;;28165:382;;;:::o;28838:454::-;28973:24;29000:25;29010:5;29017:7;29000:9;:25::i;:::-;28973:52;;-1:-1:-1;;29040:16:0;:37;29036:249;;29122:6;29102:16;:26;;29094:69;;;;-1:-1:-1;;;29094:69:0;;10585:2:1;29094:69:0;;;10567:21:1;10624:2;10604:18;;;10597:30;10663:32;10643:18;;;10636:60;10713:18;;29094:69:0;10383:354:1;29094:69:0;29207:51;29216:5;29223:7;29251:6;29232:16;:25;29207:8;:51::i;:::-;28962:330;28838:454;;;:::o;36629:2424::-;-1:-1:-1;;;;;36761:18:0;;36753:69;;;;-1:-1:-1;;;36753:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36841:16:0;;36833:65;;;;-1:-1:-1;;;36833:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36915:8:0;;;;;;:4;:8;;;;;;;;36911:187;;36956:6;36948:5;;:14;;36940:52;;;;-1:-1:-1;;;36940:52:0;;13753:2:1;36940:52:0;;;13735:21:1;13792:2;13772:18;;;13765:30;13831:28;13811:18;;;13804:56;13877:18;;36940:52:0;13551:350:1;36940:52:0;37029:25;37047:6;37029:13;37039:2;-1:-1:-1;;;;;21339:18:0;21312:7;21339:18;;;;;;;;;;;;21238:127;37029:13;:17;;:25::i;:::-;37015:9;;:39;;37007:79;;;;-1:-1:-1;;;37007:79:0;;10944:2:1;37007:79:0;;;10926:21:1;10983:2;10963:18;;;10956:30;11022:29;11002:18;;;10995:57;11069:18;;37007:79:0;10742:351:1;37007:79:0;37169:26;;:::i;:::-;-1:-1:-1;;;;;37220:15:0;;:9;:15;;;;;;;;;;;37206:29;;37248:21;;:::i;:::-;37295:28;-1:-1:-1;;;;;;;;;;;37318:4:0;37295:7;:28::i;:::-;37294:29;37293:64;;;;;37330:26;-1:-1:-1;;;;;;;;;;;37353:2:0;37330:7;:26::i;:::-;37329:27;37293:64;:107;;;;-1:-1:-1;37363:36:0;-1:-1:-1;;;;;;;;;;;7316:10:0;11061:147;:::i;37363:36::-;37362:37;37293:107;37281:119;;;;37424:28;-1:-1:-1;;;;;;;;;;;37447:4:0;37424:7;:28::i;:::-;37423:62;;;;37458:26;-1:-1:-1;;;;;;;;;;;37481:2:0;37458:7;:26::i;:::-;37411:74;;:9;;;:74;37514:11;;:21;-1:-1:-1;37514:21:0;37506:73;;;;-1:-1:-1;;;37506:73:0;;;;;;;:::i;:::-;37603:22;-1:-1:-1;;;;;;;;;;;37622:2:0;37603:7;:22::i;:::-;:43;;;;-1:-1:-1;37630:16:0;;;;37629:17;37603:43;37600:421;;;37704:4;37663:20;21339:18;;;;;;;;;;;37728:19;;37725:285;;37801:13;;;;;-1:-1:-1;;;;;37801:13:0;21312:7;21339:18;;;;;;;;;;;37791:40;;37827:3;;37791:31;;37820:1;;37791:24;:28;;:31::i;:::-;:35;;:40::i;:::-;37773:15;:58;37770:164;;;37884:13;;;;;-1:-1:-1;;;;;37884:13:0;21312:7;21339:18;;;;;;;;;;;37874:40;;37910:3;;37874:31;;37903:1;;37874:24;21238:127;37874:40;37856:58;;37770:164;37952:42;37978:15;37952:25;:42::i;:::-;37648:373;37600:421;38036:9;;:23;;;;-1:-1:-1;38050:9:0;;;;38049:10;38036:23;:44;;;;-1:-1:-1;38064:16:0;;;;38063:17;38036:44;38033:521;;;38115:6;38141:22;-1:-1:-1;;;;;;;;;;;38160:2:0;38141:7;:22::i;:::-;38136:254;;;38222:26;38241:6;38222:18;:26::i;:::-;38207:11;;;38198:50;;-1:-1:-1;38136:254:0;;;38272:32;-1:-1:-1;;;;;;;;;;;7316:10:0;11061:147;:::i;38272:32::-;38269:121;;;38349:25;38367:6;38349:17;:25::i;:::-;38334:11;;;38325:49;;-1:-1:-1;38269:121:0;38421:23;38436:7;38421:14;:23::i;:::-;38407:11;;;:37;;;38464:21;;38461:82;;38516:11;;;;38506:21;;;;:::i;:::-;;;38461:82;38082:472;38033:521;38609:11;;-1:-1:-1;;;;;38591:15:0;;;38618:1;38591:15;;;38609:11;38591:15;;;;;;;38609:20;;;;38591:38;;;38651:13;;;;;;;;:23;;38623:6;;38618:1;38651:23;;38623:6;;38651:23;:::i;:::-;;;;;;;;38707:2;-1:-1:-1;;;;;38692:26:0;38701:4;-1:-1:-1;;;;;38692:26:0;;38711:6;38692:26;;;;4901:25:1;;4889:2;4874:18;;4755:177;38692:26:0;;;;;;;;38744:11;;;;:15;;;;38743:30;;-1:-1:-1;38764:9:0;;38743:30;:44;;;;-1:-1:-1;38778:9:0;;;;38777:10;38743:44;:65;;;;-1:-1:-1;38792:16:0;;;;38791:17;38743:65;38740:123;;;38825:26;38833:4;38839:8;38848:1;38839:11;;;;38825:7;:26::i;:::-;38879:11;;;;:15;;;;38878:30;;-1:-1:-1;38899:9:0;;38878:30;:44;;;;-1:-1:-1;38913:9:0;;;;38912:10;38878:44;:65;;;;-1:-1:-1;38927:16:0;;;;38926:17;38878:65;38875:121;;;38960:24;38966:4;38972:8;38981:1;38972:11;;;;38960:5;:24::i;:::-;36742:2311;;36629:2424;;;:::o;11512:105::-;11579:30;11590:4;7316:10;11579;:30::i;:::-;11512:105;:::o;15110:239::-;15194:22;15202:4;15208:7;15194;:22::i;:::-;15190:152;;;15265:5;15233:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15233:29:0;;;;;;;;;;:37;;-1:-1:-1;;15233:37:0;;;15290:40;7316:10;;15233:12;;15290:40;;15265:5;15290:40;15110:239;;:::o;14116:112::-;14195:25;14206:4;14212:7;14195:10;:25::i;40266:589::-;33872:16;:23;;-1:-1:-1;;33872:23:0;33891:4;33872:23;;;40377:16:::1;::::0;;40391:1:::1;40377:16:::0;;;;;::::1;::::0;;-1:-1:-1;;40377:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40377:16:0::1;40353:40;;40422:4;40404;40409:1;40404:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40404:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;40448:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;40448:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;40404:7;;40448:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40438:4;40443:1;40438:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40438:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;40515:15:::1;::::0;40483:62:::1;::::0;40500:4:::1;::::0;40515:15:::1;40533:11:::0;40483:8:::1;:62::i;:::-;40558:15;::::0;40700:18:::1;::::0;40558:199:::1;::::0;-1:-1:-1;;;40558:199:0;;-1:-1:-1;;;;;40558:15:0;;::::1;::::0;:66:::1;::::0;:199:::1;::::0;40639:11;;40558:15:::1;::::0;40681:4;;40700:18;::::1;::::0;40731:15:::1;::::0;40558:199:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40775:72;40806:11;40832:4;40775:72;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;33918:16:0;:24;;-1:-1:-1;;33918:24:0;;;40266:589::o;30778:181::-;30836:7;;30868:5;30872:1;30868;:5;:::i;:::-;30856:17;;30897:1;30892;:6;;30884:46;;;;-1:-1:-1;;;30884:46:0;;6952:2:1;30884:46:0;;;6934:21:1;6991:2;6971:18;;;6964:30;7030:29;7010:18;;;7003:57;7077:18;;30884:46:0;6750:351:1;30884:46:0;30950:1;30778:181;-1:-1:-1;;;30778:181:0:o;31311:250::-;31369:7;31393:6;31389:47;;-1:-1:-1;31423:1:0;31416:8;;31389:47;31448:9;31460:5;31464:1;31460;:5;:::i;:::-;31448:17;-1:-1:-1;31493:1:0;31484:5;31488:1;31448:17;31484:5;:::i;:::-;:10;31476:56;;;;-1:-1:-1;;;31476:56:0;;11300:2:1;31476:56:0;;;11282:21:1;11339:2;11319:18;;;11312:30;11378:34;11358:18;;;11351:62;-1:-1:-1;;;11429:18:1;;;11422:31;11470:19;;31476:56:0;11098:397:1;31571:132:0;31629:7;31656:39;31660:1;31663;31656:39;;;;;;;;;;;;;;;;;:3;:39::i;40986:247::-;41049:20;41071:16;32812:5;41143:9;;32812:5;41129:23;;;;:::i;:::-;41119:34;;:6;:34;:::i;:::-;:48;;;;:::i;:::-;41100:67;;32812:5;41202:9;;41193:6;:18;;;;:::i;:::-;:32;;;;:::i;:::-;41178:47;;40986:247;;;:::o;41244:242::-;41306:20;41328:15;32812:5;41399:8;;32812:5;41385:22;;;;:::i;:::-;41375:33;;:6;:33;:::i;:::-;:47;;;;:::i;:::-;41356:66;;32812:5;41456:8;;41447:6;:17;;;;:::i;41496:129::-;41555:11;32812:5;41598;;41589:6;:14;;;;:::i;:::-;:28;;;;:::i;40092:164::-;40163:11;;40160:89;;40191:46;40207:5;40222:4;40229:7;40191:15;:46::i;39066:603::-;-1:-1:-1;;;;;39151:21:0;;39143:68;;;;-1:-1:-1;;;39143:68:0;;10182:2:1;39143:68:0;;;10164:21:1;10221:2;10201:18;;;10194:30;10260:34;10240:18;;;10233:62;-1:-1:-1;;;10311:18:1;;;10304:32;10353:19;;39143:68:0;9980:398:1;39143:68:0;-1:-1:-1;;;;;39311:18:0;;39286:22;39311:18;;;;;;;;;;;39348:24;;;;39340:72;;;;-1:-1:-1;;;39340:72:0;;12938:2:1;39340:72:0;;;12920:21:1;12977:2;12957:18;;;12950:30;13016:34;12996:18;;;12989:62;-1:-1:-1;;;13067:18:1;;;13060:33;13110:19;;39340:72:0;12736:399:1;39340:72:0;-1:-1:-1;;;;;39448:18:0;;:9;:18;;;;;;;;;;39469:23;;;39448:44;;39514:21;;;;:31;;39486:6;;39448:9;39514:31;;39486:6;;39514:31;:::i;:::-;;;;-1:-1:-1;;39563:37:0;;4901:25:1;;;39589:1:0;;-1:-1:-1;;;;;39563:37:0;;;;;4889:2:1;4874:18;39563:37:0;;;;;;;29892:125;;;:::o;11907:505::-;11996:22;12004:4;12010:7;11996;:22::i;:::-;11991:414;;12184:41;12212:7;-1:-1:-1;;;;;12184:41:0;12222:2;12184:19;:41::i;:::-;12298:38;12326:4;12333:2;12298:19;:38::i;:::-;12089:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12089:270:0;;;;;;;;;;-1:-1:-1;;;12035:358:0;;;;;;;:::i;14740:238::-;14824:22;14832:4;14838:7;14824;:22::i;:::-;14819:152;;14863:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14863:29:0;;;;;;;;;:36;;-1:-1:-1;;14863:36:0;14895:4;14863:36;;;14946:12;7316:10;;7236:98;14946:12;-1:-1:-1;;;;;14919:40:0;14937:7;-1:-1:-1;;;;;14919:40:0;14931:4;14919:40;;;;;;;;;;14740:238;;:::o;31711:278::-;31797:7;31832:12;31825:5;31817:28;;;;-1:-1:-1;;;31817:28:0;;;;;;;;:::i;:::-;-1:-1:-1;31856:9:0;31868:5;31872:1;31868;:5;:::i;:::-;31856:17;31711:278;-1:-1:-1;;;;;31711:278:0:o;25440:674::-;-1:-1:-1;;;;;25571:18:0;;25563:69;;;;-1:-1:-1;;;25563:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25651:16:0;;25643:65;;;;-1:-1:-1;;;25643:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25794:15:0;;25772:19;25794:15;;;;;;;;;;;25828:21;;;;25820:73;;;;-1:-1:-1;;;25820:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25929:15:0;;;:9;:15;;;;;;;;;;;25947:20;;;25929:38;;25989:13;;;;;;;;:23;;25961:6;;25929:9;25989:23;;25961:6;;25989:23;:::i;:::-;;;;;;;;26045:2;-1:-1:-1;;;;;26030:26:0;26039:4;-1:-1:-1;;;;;26030:26:0;;26049:6;26030:26;;;;4901:25:1;;4889:2;4874:18;;4755:177;26030:26:0;;;;;;;;26069:37;29892:125;16909:451;16984:13;17010:19;17042:10;17046:6;17042:1;:10;:::i;:::-;:14;;17055:1;17042:14;:::i;:::-;17032:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17032:25:0;;17010:47;;-1:-1:-1;;;17068:6:0;17075:1;17068:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;17068:15:0;;;;;;;;;-1:-1:-1;;;17094:6:0;17101:1;17094:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;17094:15:0;;;;;;;;-1:-1:-1;17125:9:0;17137:10;17141:6;17137:1;:10;:::i;:::-;:14;;17150:1;17137:14;:::i;:::-;17125:26;;17120:135;17157:1;17153;:5;17120:135;;;-1:-1:-1;;;17205:5:0;17213:3;17205:11;17192:25;;;;;;;:::i;:::-;;;;17180:6;17187:1;17180:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;17180:37:0;;;;;;;;-1:-1:-1;17242:1:0;17232:11;;;;;17160:3;;;:::i;:::-;;;17120:135;;;-1:-1:-1;17273:10:0;;17265:55;;;;-1:-1:-1;;;17265:55:0;;5761:2:1;17265:55:0;;;5743:21:1;;;5780:18;;;5773:30;5839:34;5819:18;;;5812:62;5891:18;;17265:55:0;5559:356:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:416::-;1441:6;1449;1502:2;1490:9;1481:7;1477:23;1473:32;1470:52;;;1518:1;1515;1508:12;1470:52;1557:9;1544:23;1576:31;1601:5;1576:31;:::i;:::-;1626:5;-1:-1:-1;1683:2:1;1668:18;;1655:32;1725:15;;1718:23;1706:36;;1696:64;;1756:1;1753;1746:12;1797:315;1865:6;1873;1926:2;1914:9;1905:7;1901:23;1897:32;1894:52;;;1942:1;1939;1932:12;1894:52;1981:9;1968:23;2000:31;2025:5;2000:31;:::i;:::-;2050:5;2102:2;2087:18;;;;2074:32;;-1:-1:-1;;;1797:315:1:o;2117:180::-;2176:6;2229:2;2217:9;2208:7;2204:23;2200:32;2197:52;;;2245:1;2242;2235:12;2197:52;-1:-1:-1;2268:23:1;;2117:180;-1:-1:-1;2117:180:1:o;2302:315::-;2370:6;2378;2431:2;2419:9;2410:7;2406:23;2402:32;2399:52;;;2447:1;2444;2437:12;2399:52;2483:9;2470:23;2460:33;;2543:2;2532:9;2528:18;2515:32;2556:31;2581:5;2556:31;:::i;2622:286::-;2680:6;2733:2;2721:9;2712:7;2708:23;2704:32;2701:52;;;2749:1;2746;2739:12;2701:52;2775:23;;-1:-1:-1;;;;;;2827:32:1;;2817:43;;2807:71;;2874:1;2871;2864:12;3098:461;3151:3;3189:5;3183:12;3216:6;3211:3;3204:19;3242:4;3271:2;3266:3;3262:12;3255:19;;3308:2;3301:5;3297:14;3329:1;3339:195;3353:6;3350:1;3347:13;3339:195;;;3418:13;;-1:-1:-1;;;;;3414:39:1;3402:52;;3474:12;;;;3509:15;;;;3450:1;3368:9;3339:195;;;-1:-1:-1;3550:3:1;;3098:461;-1:-1:-1;;;;;3098:461:1:o;3564:786::-;3975:25;3970:3;3963:38;3945:3;4030:6;4024:13;4046:62;4101:6;4096:2;4091:3;4087:12;4080:4;4072:6;4068:17;4046:62;:::i;:::-;-1:-1:-1;;;4167:2:1;4127:16;;;4159:11;;;4152:40;4217:13;;4239:63;4217:13;4288:2;4280:11;;4273:4;4261:17;;4239:63;:::i;:::-;4322:17;4341:2;4318:26;;3564:786;-1:-1:-1;;;;3564:786:1:o;5171:383::-;5320:2;5309:9;5302:21;5283:4;5352:6;5346:13;5395:6;5390:2;5379:9;5375:18;5368:34;5411:66;5470:6;5465:2;5454:9;5450:18;5445:2;5437:6;5433:15;5411:66;:::i;:::-;5538:2;5517:15;-1:-1:-1;;5513:29:1;5498:45;;;;5545:2;5494:54;;5171:383;-1:-1:-1;;5171:383:1:o;8745:400::-;8947:2;8929:21;;;8986:2;8966:18;;;8959:30;9025:34;9020:2;9005:18;;8998:62;-1:-1:-1;;;9091:2:1;9076:18;;9069:34;9135:3;9120:19;;8745:400::o;11500:403::-;11702:2;11684:21;;;11741:2;11721:18;;;11714:30;11780:34;11775:2;11760:18;;11753:62;-1:-1:-1;;;11846:2:1;11831:18;;11824:37;11893:3;11878:19;;11500:403::o;11908:402::-;12110:2;12092:21;;;12149:2;12129:18;;;12122:30;12188:34;12183:2;12168:18;;12161:62;-1:-1:-1;;;12254:2:1;12239:18;;12232:36;12300:3;12285:19;;11908:402::o;12315:416::-;12517:2;12499:21;;;12556:2;12536:18;;;12529:30;12595:34;12590:2;12575:18;;12568:62;-1:-1:-1;;;12661:2:1;12646:18;;12639:50;12721:3;12706:19;;12315:416::o;14504:332::-;14711:6;14700:9;14693:25;14754:2;14749;14738:9;14734:18;14727:30;14674:4;14774:56;14826:2;14815:9;14811:18;14803:6;14774:56;:::i;:::-;14766:64;14504:332;-1:-1:-1;;;;14504:332:1:o;14841:582::-;15140:6;15129:9;15122:25;15183:6;15178:2;15167:9;15163:18;15156:34;15226:3;15221:2;15210:9;15206:18;15199:31;15103:4;15247:57;15299:3;15288:9;15284:19;15276:6;15247:57;:::i;:::-;-1:-1:-1;;;;;15340:32:1;;;;15335:2;15320:18;;15313:60;-1:-1:-1;15404:3:1;15389:19;15382:35;15239:65;14841:582;-1:-1:-1;;;14841:582:1:o;15617:128::-;15657:3;15688:1;15684:6;15681:1;15678:13;15675:39;;;15694:18;;:::i;:::-;-1:-1:-1;15730:9:1;;15617:128::o;15750:217::-;15790:1;15816;15806:132;;15860:10;15855:3;15851:20;15848:1;15841:31;15895:4;15892:1;15885:15;15923:4;15920:1;15913:15;15806:132;-1:-1:-1;15952:9:1;;15750:217::o;15972:168::-;16012:7;16078:1;16074;16070:6;16066:14;16063:1;16060:21;16055:1;16048:9;16041:17;16037:45;16034:71;;;16085:18;;:::i;:::-;-1:-1:-1;16125:9:1;;15972:168::o;16145:125::-;16185:4;16213:1;16210;16207:8;16204:34;;;16218:18;;:::i;:::-;-1:-1:-1;16255:9:1;;16145:125::o;16275:258::-;16347:1;16357:113;16371:6;16368:1;16365:13;16357:113;;;16447:11;;;16441:18;16428:11;;;16421:39;16393:2;16386:10;16357:113;;;16488:6;16485:1;16482:13;16479:48;;;-1:-1:-1;;16523:1:1;16505:16;;16498:27;16275:258::o;16538:136::-;16577:3;16605:5;16595:39;;16614:18;;:::i;:::-;-1:-1:-1;;;16650:18:1;;16538:136::o;16679:380::-;16758:1;16754:12;;;;16801;;;16822:61;;16876:4;16868:6;16864:17;16854:27;;16822:61;16929:2;16921:6;16918:14;16898:18;16895:38;16892:161;;;16975:10;16970:3;16966:20;16963:1;16956:31;17010:4;17007:1;17000:15;17038:4;17035:1;17028:15;16892:161;;16679:380;;;:::o;17064:127::-;17125:10;17120:3;17116:20;17113:1;17106:31;17156:4;17153:1;17146:15;17180:4;17177:1;17170:15;17196:127;17257:10;17252:3;17248:20;17245:1;17238:31;17288:4;17285:1;17278:15;17312:4;17309:1;17302:15;17328:127;17389:10;17384:3;17380:20;17377:1;17370:31;17420:4;17417:1;17410:15;17444:4;17441:1;17434:15;17460:131;-1:-1:-1;;;;;17535:31:1;;17525:42;;17515:70;;17581:1;17578;17571:12

Swarm Source

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