ETH Price: $3,324.42 (+1.99%)
Gas: 2 Gwei

Token

Skrimples (SKRIMP)
 

Overview

Max Total Supply

69,000,000,000 SKRIMP

Holders

302

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,723,359.32948800461871749 SKRIMP

Value
$0.00
0xa05da862fc69e497857756d53b6491f97ae7c163
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:
Skrimples

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @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(account),
                        " 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 Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @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`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 12 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @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 Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

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

File 3 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 4 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 9 of 12 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 10 of 12 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 12 of 12 : Skrimples.sol
/****
        https://skrimples.ai
        https://t.me/Skrimples


        ███████╗██╗  ██╗██████╗ ██╗███╗   ███╗██████╗ ██╗     ███████╗███████╗
        ██╔════╝██║ ██╔╝██╔══██╗██║████╗ ████║██╔══██╗██║     ██╔════╝██╔════╝
        ███████╗█████╔╝ ██████╔╝██║██╔████╔██║██████╔╝██║     █████╗  ███████╗
        ╚════██║██╔═██╗ ██╔══██╗██║██║╚██╔╝██║██╔═══╝ ██║     ██╔══╝  ╚════██║
        ███████║██║  ██╗██║  ██║██║██║ ╚═╝ ██║██║     ███████╗███████╗███████║
        ╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝╚═╝╚═╝     ╚═╝╚═╝     ╚══════╝╚══════╝╚══════╝


        The scrappiest, stinkiest pup in all of Shibarium.

        by Bimpus & Snake
****/

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

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";


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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract Skrimples is ERC20, AccessControl {
    using SafeMath for uint256;

    bytes32 public constant BLACKLISTER_ROLE = keccak256("BLACKLISTER_ROLE");

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    address public bonePileWallet;
    address public liquidity;

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

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyBonePileFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellBonePileFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public tokensForBonePile;

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

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

    modifier onlyAdmin() {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        _;
    }

    modifier onlyBlacklister() {
        require(hasRole(BLACKLISTER_ROLE, msg.sender), "Caller is not blacklister");
        _;
    }

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

    event LimitsRemoved();

    event BlacklistDisabled();

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event bonePileWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    address admin = msg.sender;

    constructor(address blacklister) ERC20("Skrimples", "SKRIMP") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Grant the contract deployer the default admin role: will be able
        // to grant and revoke any roles
        _setupRole(DEFAULT_ADMIN_ROLE, admin);
        // Renouce blacklister role after blacklist is disabled
        _setupRole(BLACKLISTER_ROLE, blacklister);

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

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

        // Initial tax of 97% to catch bots, once lowered cannot be raised higher than 5%
        uint256 _buyMarketingFee = 97;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
        uint256 _buyBonePileFee = 0;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 2;
        uint256 _sellBonePileFee = 1;

        uint256 totalSupply = 69000000000 * 1e18;

        // Limits imposed till the chart is stable
        maxTransactionAmount = (totalSupply * 1) / 100;
        maxWallet = (totalSupply * 1) / 100;
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        // Fees
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyBonePileFee = _buyBonePileFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee + buyBonePileFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellBonePileFee = _sellBonePileFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee + sellBonePileFee;

        marketingWallet = address(0x70ae2cC09b5BaEaeC0bFe6f9F13331872Ea8aEF8);
        devWallet = address(0x8d9C26ee524Ae225CA3d640f8A9d73C32b6632FB);
        bonePileWallet = address(0x03888625CCCbAfE87fC4e264B54616cEAD476258);
        liquidity = address(0x70ae2cC09b5BaEaeC0bFe6f9F13331872Ea8aEF8);

        // exclude from paying fees
        excludeFromFees(address(admin), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(marketingWallet, true);
        // exclude from max transaction amount
        excludeFromMaxTransaction(address(admin), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(marketingWallet, true);

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

    receive() external payable {}

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyBlacklister {
        blacklists[_address] = _isBlacklisting;
    }

    // Disable blacklist once token is stable, cannot be enabled again
    function disableBlacklist() external onlyBlacklister returns (bool) {
        blacklistEnabled = false;
        emit BlacklistDisabled();
        return true;
    }

    // once enabled, is forever enabled
    function enableTrading() external onlyAdmin {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable, cannot be enabled again
    function removeLimits() external onlyAdmin returns (bool) {
        limitsInEffect = false;
        emit LimitsRemoved();
        return true;
    }

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

    // MaxTxAmount and MaxWalletAmount, cannot set lower than 2% of totalSupply
    function updateMaximums(uint256 newNum) external onlyAdmin {
        require(
            newNum >= ((totalSupply() * 2) / 100) / 1e18,
            "Cannot set maximums lower than 2%"
        );
        maxWallet = newNum * (10**18);
        maxTransactionAmount = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public onlyAdmin {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable buy/sell fees if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyAdmin {
        swapEnabled = enabled;
    }

    function updateFees(
        uint256 _marketingFeeBuy,
        uint256 _liquidityFeeBuy,
        uint256 _devFeeBuy,
        uint256 _bonePileFeeBuy,
        uint256 _marketingFeeSell,
        uint256 _liquidityFeeSell,
        uint256 _devFeeSell,
        uint256 _bonePileFeeSell
    ) external onlyAdmin {
        require(
            _marketingFeeBuy + _liquidityFeeBuy + _devFeeBuy + _bonePileFeeBuy <= 5,
            "buyTotalFees cannot exceed 5% of transaction"
        );
        require(
            _marketingFeeSell + _liquidityFeeSell + _devFeeSell + _bonePileFeeBuy <= 5,
            "sellTotalFees cannot exceed 5% of transaction"
        );
        buyMarketingFee = _marketingFeeBuy;
        buyLiquidityFee = _liquidityFeeBuy;
        buyDevFee = _devFeeBuy;
        buyBonePileFee = _bonePileFeeBuy;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee + buyBonePileFee;
        sellMarketingFee = _marketingFeeSell;
        sellLiquidityFee = _liquidityFeeSell;
        sellDevFee = _devFeeSell;
        sellBonePileFee = _bonePileFeeSell;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee + sellBonePileFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external onlyAdmin {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateLiquidity(address newLiquidity)
        external onlyAdmin {
        emit liquidityUpdated(newLiquidity, liquidity);
        liquidity = newLiquidity;
    }

    function updateDevWallet(address newWallet) external onlyAdmin {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function updateBonePileWallet(address newWallet) external onlyAdmin {
        emit bonePileWalletUpdated(newWallet, bonePileWallet);
        bonePileWallet = newWallet;
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (blacklistEnabled) {
            require(!blacklists[to] && !blacklists[from], "Blacklisted");
        }
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForBonePile = ethBalance.mul(tokensForBonePile).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev - ethForBonePile;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        tokensForBonePile = 0;

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

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


        (success, ) = address(bonePileWallet).call{value: ethForBonePile}("");

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"blacklister","type":"address"}],"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":[],"name":"BlacklistDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsRemoved","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"bonePileWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"BLACKLISTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonePileWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBonePileFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBonePileFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBonePile","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateBonePileWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_devFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_bonePileFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"},{"internalType":"uint256","name":"_devFeeSell","type":"uint256"},{"internalType":"uint256","name":"_bonePileFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLiquidity","type":"address"}],"name":"updateLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaximums","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506001600d60036101000a81548160ff02191690831515021790555033602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000be57600080fd5b506040516200727f3803806200727f8339818101604052810190620000e4919062000f76565b6040518060400160405280600981526020017f536b72696d706c657300000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f534b52494d50000000000000000000000000000000000000000000000000000081525081600390805190602001906200016892919062000e5c565b5080600490805190602001906200018192919062000e5c565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001d46000801b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200081660201b60201c565b620002067f98db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e9836200081660201b60201c565b620002198160016200082c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029457600080fd5b505afa158015620002a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cf919062000f76565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200033257600080fd5b505afa15801562000347573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036d919062000f76565b6040518363ffffffff1660e01b81526004016200038c92919062000fb9565b602060405180830381600087803b158015620003a757600080fd5b505af1158015620003bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e2919062000f76565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200042a60a05160016200082c60201b60201c565b6200043f60a0516001620008de60201b60201c565b600060619050600080600080600290506000806002905060006001905060006bdef376571332906a88000000905060646001826200047e91906200101f565b6200048a9190620010af565b600a819055506064600182620004a191906200101f565b620004ad9190620010af565b600c81905550612710600582620004c591906200101f565b620004d19190620010af565b600b8190555088600f81905550876010819055508660118190555085601281905550601254601154601054600f546200050b9190620010e7565b620005179190620010e7565b620005239190620010e7565b600e81905550846014819055508360158190555082601681905550816017819055506017546016546015546014546200055d9190620010e7565b620005699190620010e7565b620005759190620010e7565b6013819055507370ae2cc09b5baeaec0bfe6f9f13331872ea8aef8600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738d9c26ee524ae225ca3d640f8a9d73c32b6632fb600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507303888625cccbafe87fc4e264b54616cead476258600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507370ae2cc09b5baeaec0bfe6f9f13331872ea8aef8600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000704602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200097f60201b60201c565b620007173060016200097f60201b60201c565b6200072c61dead60016200097f60201b60201c565b62000761600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200097f60201b60201c565b62000796602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082c60201b60201c565b620007a93060016200082c60201b60201c565b620007be61dead60016200082c60201b60201c565b620007f3600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200082c60201b60201c565b62000805338262000a8160201b60201c565b505050505050505050505062001378565b62000828828262000bef60201b60201c565b5050565b620008416000801b3362000ce160201b60201c565b62000883576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087a90620011a5565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b620009946000801b3362000ce160201b60201c565b620009d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cd90620011a5565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a759190620011e4565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aeb9062001251565b60405180910390fd5b62000b086000838362000d4c60201b60201c565b806002600082825462000b1c9190620010e7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bcf919062001284565b60405180910390a362000beb6000838362000e4f60201b60201c565b5050565b62000c01828262000ce160201b60201c565b62000cdd5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000c8262000e5460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60039054906101000a900460ff161562000e4a57601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000e075750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000e49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e4090620012f1565b60405180910390fd5b5b505050565b505050565b600033905090565b82805462000e6a9062001342565b90600052602060002090601f01602090048101928262000e8e576000855562000eda565b82601f1062000ea957805160ff191683800117855562000eda565b8280016001018555821562000eda579182015b8281111562000ed957825182559160200191906001019062000ebc565b5b50905062000ee9919062000eed565b5090565b5b8082111562000f0857600081600090555060010162000eee565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f3e8262000f11565b9050919050565b62000f508162000f31565b811462000f5c57600080fd5b50565b60008151905062000f708162000f45565b92915050565b60006020828403121562000f8f5762000f8e62000f0c565b5b600062000f9f8482850162000f5f565b91505092915050565b62000fb38162000f31565b82525050565b600060408201905062000fd0600083018562000fa8565b62000fdf602083018462000fa8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200102c8262000fe6565b9150620010398362000fe6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001075576200107462000ff0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010bc8262000fe6565b9150620010c98362000fe6565b925082620010dc57620010db62001080565b5b828204905092915050565b6000620010f48262000fe6565b9150620011018362000fe6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001139576200113862000ff0565b5b828201905092915050565b600082825260208201905092915050565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b60006200118d60138362001144565b91506200119a8262001155565b602082019050919050565b60006020820190508181036000830152620011c0816200117e565b9050919050565b60008115159050919050565b620011de81620011c7565b82525050565b6000602082019050620011fb6000830184620011d3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001239601f8362001144565b9150620012468262001201565b602082019050919050565b600060208201905081810360008301526200126c816200122a565b9050919050565b6200127e8162000fe6565b82525050565b60006020820190506200129b600083018462001273565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000620012d9600b8362001144565b9150620012e682620012a1565b602082019050919050565b600060208201905081810360008301526200130c81620012ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200135b57607f821691505b6020821081141562001372576200137162001313565b5b50919050565b60805160a051615eb7620013c86000396000818161160b0152611bd401526000818161116201528181614018015281816141080152818161412f015281816141cb01526141f20152615eb76000f3fe6080604052600436106103e85760003560e01c80638a8c523c11610208578063b62496f511610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610f3c578063f2f5ec3a14610f67578063f515e6f214610f90578063f637434214610fbb578063f8b45b0514610fe6576103ef565b8063d85ba06314610e7e578063dd62ed3e14610ea9578063e2f4560514610ee6578063ea43915e14610f11576103ef565b8063c8c8ebe4116100e7578063c8c8ebe414610dc2578063cd2c228c14610ded578063d257b34f14610e18578063d547741f14610e55576103ef565b8063b62496f514610d06578063bbc0c74214610d43578063bffb691d14610d6e578063c024666814610d99576103ef565b80639a7a23d61161019b578063a217fddf1161016a578063a217fddf14610c0f578063a457c2d714610c3a578063a9059cbb14610c77578063aacebbe314610cb4578063ad6ffd0914610cdd576103ef565b80639a7a23d614610b655780639c3b4fdc14610b8e5780639fccce3214610bb9578063a0d82dc514610be4576103ef565b806392136913116101d75780639213691314610abd578063924de9b714610ae8578063930931a614610b1157806395d89b4114610b3a576103ef565b80638a8c523c14610a135780638b33121b14610a2a5780638ea5220f14610a5557806391d1485414610a80576103ef565b806336568abe1161030357806364cbf4ff11610296578063751039fc11610265578063751039fc1461093e5780637571336a1461096957806375f0a874146109925780637bce5a04146109bd5780637daf9366146109e8576103ef565b806364cbf4ff146108805780636a486a8e146108ab5780636ddd1713146108d657806370a0823114610901576103ef565b806342c694f9116102d257806342c694f9146107c457806349bd5a5e146107ed5780634a62bb65146108185780634fbee19314610843576103ef565b806336568abe1461070c5780633950935114610735578063404e51291461077257806342966c681461079b576103ef565b80631a6865021161037b578063248a9ca31161034a578063248a9ca31461065057806327c8f8351461068d5780632f2ff15d146106b8578063313ce567146106e1576103ef565b80631a686502146105925780631a8145bb146105bd5780631f3fed8f146105e857806323b872dd14610613576103ef565b80631694505e116103b75780631694505e146104d657806316c021291461050157806318160ddd1461053e5780631816467f14610569576103ef565b806301ffc9a7146103f457806306fdde0314610431578063095ea7b31461045c57806310d5de5314610499576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b5061041b60048036038101906104169190614596565b611011565b60405161042891906145de565b60405180910390f35b34801561043d57600080fd5b5061044661108b565b6040516104539190614692565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614748565b61111d565b60405161049091906145de565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190614788565b611140565b6040516104cd91906145de565b60405180910390f35b3480156104e257600080fd5b506104eb611160565b6040516104f89190614814565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190614788565b611184565b60405161053591906145de565b60405180910390f35b34801561054a57600080fd5b506105536111a4565b604051610560919061483e565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190614788565b6111ae565b005b34801561059e57600080fd5b506105a76112ba565b6040516105b49190614868565b60405180910390f35b3480156105c957600080fd5b506105d26112e0565b6040516105df919061483e565b60405180910390f35b3480156105f457600080fd5b506105fd6112e6565b60405161060a919061483e565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190614883565b6112ec565b60405161064791906145de565b60405180910390f35b34801561065c57600080fd5b506106776004803603810190610672919061490c565b61131b565b6040516106849190614948565b60405180910390f35b34801561069957600080fd5b506106a261133b565b6040516106af9190614868565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190614963565b611341565b005b3480156106ed57600080fd5b506106f6611362565b60405161070391906149bf565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190614963565b61136b565b005b34801561074157600080fd5b5061075c60048036038101906107579190614748565b6113ee565b60405161076991906145de565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190614a06565b611425565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190614a46565b6114e9565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190614788565b6114fd565b005b3480156107f957600080fd5b50610802611609565b60405161080f9190614868565b60405180910390f35b34801561082457600080fd5b5061082d61162d565b60405161083a91906145de565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190614788565b611640565b60405161087791906145de565b60405180910390f35b34801561088c57600080fd5b50610895611696565b6040516108a2919061483e565b60405180910390f35b3480156108b757600080fd5b506108c061169c565b6040516108cd919061483e565b60405180910390f35b3480156108e257600080fd5b506108eb6116a2565b6040516108f891906145de565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190614788565b6116b5565b604051610935919061483e565b60405180910390f35b34801561094a57600080fd5b506109536116fd565b60405161096091906145de565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614a06565b611799565b005b34801561099e57600080fd5b506109a7611840565b6040516109b49190614868565b60405180910390f35b3480156109c957600080fd5b506109d2611866565b6040516109df919061483e565b60405180910390f35b3480156109f457600080fd5b506109fd61186c565b604051610a0a919061483e565b60405180910390f35b348015610a1f57600080fd5b50610a28611872565b005b348015610a3657600080fd5b50610a3f6118f6565b604051610a4c919061483e565b60405180910390f35b348015610a6157600080fd5b50610a6a6118fc565b604051610a779190614868565b60405180910390f35b348015610a8c57600080fd5b50610aa76004803603810190610aa29190614963565b611922565b604051610ab491906145de565b60405180910390f35b348015610ac957600080fd5b50610ad261198d565b604051610adf919061483e565b60405180910390f35b348015610af457600080fd5b50610b0f6004803603810190610b0a9190614a73565b611993565b005b348015610b1d57600080fd5b50610b386004803603810190610b339190614a46565b6119fc565b005b348015610b4657600080fd5b50610b4f611af4565b604051610b5c9190614692565b60405180910390f35b348015610b7157600080fd5b50610b8c6004803603810190610b879190614a06565b611b86565b005b348015610b9a57600080fd5b50610ba3611c6f565b604051610bb0919061483e565b60405180910390f35b348015610bc557600080fd5b50610bce611c75565b604051610bdb919061483e565b60405180910390f35b348015610bf057600080fd5b50610bf9611c7b565b604051610c06919061483e565b60405180910390f35b348015610c1b57600080fd5b50610c24611c81565b604051610c319190614948565b60405180910390f35b348015610c4657600080fd5b50610c616004803603810190610c5c9190614748565b611c88565b604051610c6e91906145de565b60405180910390f35b348015610c8357600080fd5b50610c9e6004803603810190610c999190614748565b611cff565b604051610cab91906145de565b60405180910390f35b348015610cc057600080fd5b50610cdb6004803603810190610cd69190614788565b611d22565b005b348015610ce957600080fd5b50610d046004803603810190610cff9190614788565b611e2e565b005b348015610d1257600080fd5b50610d2d6004803603810190610d289190614788565b611f3a565b604051610d3a91906145de565b60405180910390f35b348015610d4f57600080fd5b50610d58611f5a565b604051610d6591906145de565b60405180910390f35b348015610d7a57600080fd5b50610d83611f6d565b604051610d9091906145de565b60405180910390f35b348015610da557600080fd5b50610dc06004803603810190610dbb9190614a06565b611f80565b005b348015610dce57600080fd5b50610dd7612075565b604051610de4919061483e565b60405180910390f35b348015610df957600080fd5b50610e0261207b565b604051610e0f9190614868565b60405180910390f35b348015610e2457600080fd5b50610e3f6004803603810190610e3a9190614a46565b6120a1565b604051610e4c91906145de565b60405180910390f35b348015610e6157600080fd5b50610e7c6004803603810190610e779190614963565b6121c6565b005b348015610e8a57600080fd5b50610e936121e7565b604051610ea0919061483e565b60405180910390f35b348015610eb557600080fd5b50610ed06004803603810190610ecb9190614aa0565b6121ed565b604051610edd919061483e565b60405180910390f35b348015610ef257600080fd5b50610efb612274565b604051610f08919061483e565b60405180910390f35b348015610f1d57600080fd5b50610f2661227a565b604051610f3391906145de565b60405180910390f35b348015610f4857600080fd5b50610f51612333565b604051610f5e919061483e565b60405180910390f35b348015610f7357600080fd5b50610f8e6004803603810190610f899190614ae0565b612339565b005b348015610f9c57600080fd5b50610fa56124f1565b604051610fb29190614948565b60405180910390f35b348015610fc757600080fd5b50610fd0612515565b604051610fdd919061483e565b60405180910390f35b348015610ff257600080fd5b50610ffb61251b565b604051611008919061483e565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611084575061108382612521565b5b9050919050565b60606003805461109a90614bc5565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690614bc5565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b60008061112861258b565b9050611135818585612593565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b601e6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111bb6000801b33611922565b6111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190614c43565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b60185481565b6000806112f761258b565b905061130485828561275e565b61130f8585856127ea565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b61dead81565b61134a8261131b565b61135381613358565b61135d838361336c565b505050565b60006012905090565b61137361258b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790614cd5565b60405180910390fd5b6113ea828261344d565b5050565b6000806113f961258b565b905061141a81858561140b85896121ed565b6114159190614d24565b612593565b600191505092915050565b61144f7f98db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e933611922565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614dc6565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6114fa6114f461258b565b8261352f565b50565b61150a6000801b33611922565b611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090614c43565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fca7cc9e76e54ddfcd5a8cb57c8afca2d24c83c17b2efe0d0facb94654935453460405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601b5481565b60135481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061170c6000801b33611922565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290614c43565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055507f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef60405160405180910390a16001905090565b6117a66000801b33611922565b6117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614c43565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60175481565b61187f6000801b33611922565b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590614c43565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b6119a06000801b33611922565b6119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614c43565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b611a096000801b33611922565b611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90614c43565b60405180910390fd5b670de0b6b3a764000060646002611a5d6111a4565b611a679190614de6565b611a719190614e6f565b611a7b9190614e6f565b811015611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490614f12565b60405180910390fd5b670de0b6b3a764000081611ad19190614de6565b600c81905550670de0b6b3a764000081611aeb9190614de6565b600a8190555050565b606060048054611b0390614bc5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2f90614bc5565b8015611b7c5780601f10611b5157610100808354040283529160200191611b7c565b820191906000526020600020905b815481529060010190602001808311611b5f57829003601f168201915b5050505050905090565b611b936000801b33611922565b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614c43565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614fa4565b60405180910390fd5b611c6b82826136fd565b5050565b60115481565b601a5481565b60165481565b6000801b81565b600080611c9361258b565b90506000611ca182866121ed565b905083811015611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90615036565b60405180910390fd5b611cf38286868403612593565b60019250505092915050565b600080611d0a61258b565b9050611d178185856127ea565b600191505092915050565b611d2f6000801b33611922565b611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590614c43565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e3b6000801b33611922565b611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190614c43565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f05606b8462d9fd73b376fdcd4a2933d7fe08f0f1b418baac5b579cece5a0f76760405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b600d60039054906101000a900460ff1681565b611f8d6000801b33611922565b611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614c43565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161206991906145de565b60405180910390a25050565b600a5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006120b06000801b33611922565b6120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e690614c43565b60405180910390fd5b620186a060016120fd6111a4565b6121079190614de6565b6121119190614e6f565b821015612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906150c8565b60405180910390fd5b6103e860056121606111a4565b61216a9190614de6565b6121749190614e6f565b8211156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad9061515a565b60405180910390fd5b81600b8190555060019050919050565b6121cf8261131b565b6121d881613358565b6121e2838361344d565b505050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006122a67f98db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e933611922565b6122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90614dc6565b60405180910390fd5b6000600d60036101000a81548160ff0219169083151502179055507fcac51b0f10907b766720ff6bed8f3de64d17380ad8652db73718e015b315635560405160405180910390a16001905090565b60105481565b6123466000801b33611922565b612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c90614c43565b60405180910390fd5b60058587898b6123959190614d24565b61239f9190614d24565b6123a99190614d24565b11156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e1906151ec565b60405180910390fd5b6005858385876123fa9190614d24565b6124049190614d24565b61240e9190614d24565b111561244f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124469061527e565b60405180910390fd5b87600f81905550866010819055508560118190555084601281905550601254601154601054600f546124819190614d24565b61248b9190614d24565b6124959190614d24565b600e81905550836014819055508260158190555081601681905550806017819055506017546016546015546014546124cd9190614d24565b6124d79190614d24565b6124e19190614d24565b6013819055505050505050505050565b7f98db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e981565b60155481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fa90615310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a906153a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612751919061483e565b60405180910390a3505050565b600061276a84846121ed565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146127e457818110156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd9061540e565b60405180910390fd5b6127e38484848403612593565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561285a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612851906154a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c190615532565b60405180910390fd5b60008114156128e4576128df8383600061379e565b613353565b600d60009054906101000a900460ff1615612e1557602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129a55750602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129de5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a18575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a315750600660009054906101000a900460ff16155b15612e1457600d60019054906101000a900460ff16612b2b57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612aeb5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b219061559e565b60405180910390fd5b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bce5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c7557600a54811115612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f90615630565b60405180910390fd5b600c54612c24836116b5565b82612c2f9190614d24565b1115612c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c679061569c565b60405180910390fd5b612e13565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d185750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d6757600a54811115612d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d599061572e565b60405180910390fd5b612e12565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e1157600c54612dc4836116b5565b82612dcf9190614d24565b1115612e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e079061569c565b60405180910390fd5b5b5b5b5b5b6000612e20306116b5565b90506000600b548210159050808015612e455750600d60029054906101000a900460ff165b8015612e5e5750600660009054906101000a900460ff16155b8015612eb45750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f0a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f605750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fa4576001600660006101000a81548160ff021916908315150217905550612f88613a16565b6000600660006101000a81548160ff0219169083151502179055505b6000600660009054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061305a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561306457600090505b6000811561334357601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130c757506000601354115b156131c7576130f460646130e660135488613daf90919063ffffffff16565b613dc590919063ffffffff16565b9050601354601554826131079190614de6565b6131119190614e6f565b601960008282546131229190614d24565b925050819055506013546016548261313a9190614de6565b6131449190614e6f565b601a60008282546131559190614d24565b925050819055506013546014548261316d9190614de6565b6131779190614e6f565b601860008282546131889190614d24565b92505081905550601354601754826131a09190614de6565b6131aa9190614e6f565b601b60008282546131bb9190614d24565b9250508190555061331f565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561322257506000600e54115b1561331e5761324f6064613241600e5488613daf90919063ffffffff16565b613dc590919063ffffffff16565b9050600e54601054826132629190614de6565b61326c9190614e6f565b6019600082825461327d9190614d24565b92505081905550600e54601154826132959190614de6565b61329f9190614e6f565b601a60008282546132b09190614d24565b92505081905550600e54600f54826132c89190614de6565b6132d29190614e6f565b601860008282546132e39190614d24565b92505081905550600e54601254826132fb9190614de6565b6133059190614e6f565b601b60008282546133169190614d24565b925050819055505b5b60008111156133345761333387308361379e565b5b8085613340919061574e565b94505b61334e87878761379e565b505050505b505050565b6133698161336461258b565b613ddb565b50565b6133768282611922565b6134495760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506133ee61258b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6134578282611922565b1561352b5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506134d061258b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561359f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613596906157f4565b60405180910390fd5b6135ab82600083613e60565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362890615886565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136e4919061483e565b60405180910390a36136f883600084613f5e565b505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561380e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613805906154a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561387e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387590615532565b60405180910390fd5b613889838383613e60565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561390f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390690615918565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139fd919061483e565b60405180910390a3613a10848484613f5e565b50505050565b6000613a21306116b5565b90506000601b54601a54601854601954613a3b9190614d24565b613a459190614d24565b613a4f9190614d24565b9050600080831480613a615750600082145b15613a6e57505050613dad565b600060028360195486613a819190614de6565b613a8b9190614e6f565b613a959190614e6f565b90506000613aac8286613f6390919063ffffffff16565b90506000479050613abc82613f79565b6000613ad18247613f6390919063ffffffff16565b90506000613afc87613aee60185485613daf90919063ffffffff16565b613dc590919063ffffffff16565b90506000613b2788613b19601a5486613daf90919063ffffffff16565b613dc590919063ffffffff16565b90506000613b5289613b44601b5487613daf90919063ffffffff16565b613dc590919063ffffffff16565b9050600081838587613b64919061574e565b613b6e919061574e565b613b78919061574e565b9050600060198190555060006018819055506000601a819055506000601b81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613be090615969565b60006040518083038185875af1925050503d8060008114613c1d576040519150601f19603f3d011682016040523d82523d6000602084013e613c22565b606091505b505080995050600088118015613c385750600081115b15613c8557613c4788826141c5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601954604051613c7c9392919061597e565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613ccb90615969565b60006040518083038185875af1925050503d8060008114613d08576040519150601f19603f3d011682016040523d82523d6000602084013e613d0d565b606091505b505080995050600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d5990615969565b60006040518083038185875af1925050503d8060008114613d96576040519150601f19603f3d011682016040523d82523d6000602084013e613d9b565b606091505b50508099505050505050505050505050505b565b60008183613dbd9190614de6565b905092915050565b60008183613dd39190614e6f565b905092915050565b613de58282611922565b613e5c57613df2816142d0565b613e008360001c60206142fd565b604051602001613e11929190615a89565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e539190614692565b60405180910390fd5b5050565b600d60039054906101000a900460ff1615613f5957601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f195750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f4f90615b0f565b60405180910390fd5b5b505050565b505050565b60008183613f71919061574e565b905092915050565b6000600267ffffffffffffffff811115613f9657613f95615b2f565b5b604051908082528060200260200182016040528015613fc45781602001602082028036833780820191505090505b5090503081600081518110613fdc57613fdb615b5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561407c57600080fd5b505afa158015614090573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140b49190615ba2565b816001815181106140c8576140c7615b5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061412d307f000000000000000000000000000000000000000000000000000000000000000084612593565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161418f959493929190615cc8565b600060405180830381600087803b1580156141a957600080fd5b505af11580156141bd573d6000803e3d6000fd5b505050505050565b6141f0307f000000000000000000000000000000000000000000000000000000000000000084612593565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161427796959493929190615d22565b6060604051808303818588803b15801561429057600080fd5b505af11580156142a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142c99190615d98565b5050505050565b60606142f68273ffffffffffffffffffffffffffffffffffffffff16601460ff166142fd565b9050919050565b6060600060028360026143109190614de6565b61431a9190614d24565b67ffffffffffffffff81111561433357614332615b2f565b5b6040519080825280601f01601f1916602001820160405280156143655781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061439d5761439c615b5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061440157614400615b5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026144419190614de6565b61444b9190614d24565b90505b60018111156144eb577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061448d5761448c615b5e565b5b1a60f81b8282815181106144a4576144a3615b5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806144e490615deb565b905061444e565b506000841461452f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161452690615e61565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6145738161453e565b811461457e57600080fd5b50565b6000813590506145908161456a565b92915050565b6000602082840312156145ac576145ab614539565b5b60006145ba84828501614581565b91505092915050565b60008115159050919050565b6145d8816145c3565b82525050565b60006020820190506145f360008301846145cf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614633578082015181840152602081019050614618565b83811115614642576000848401525b50505050565b6000601f19601f8301169050919050565b6000614664826145f9565b61466e8185614604565b935061467e818560208601614615565b61468781614648565b840191505092915050565b600060208201905081810360008301526146ac8184614659565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146df826146b4565b9050919050565b6146ef816146d4565b81146146fa57600080fd5b50565b60008135905061470c816146e6565b92915050565b6000819050919050565b61472581614712565b811461473057600080fd5b50565b6000813590506147428161471c565b92915050565b6000806040838503121561475f5761475e614539565b5b600061476d858286016146fd565b925050602061477e85828601614733565b9150509250929050565b60006020828403121561479e5761479d614539565b5b60006147ac848285016146fd565b91505092915050565b6000819050919050565b60006147da6147d56147d0846146b4565b6147b5565b6146b4565b9050919050565b60006147ec826147bf565b9050919050565b60006147fe826147e1565b9050919050565b61480e816147f3565b82525050565b60006020820190506148296000830184614805565b92915050565b61483881614712565b82525050565b6000602082019050614853600083018461482f565b92915050565b614862816146d4565b82525050565b600060208201905061487d6000830184614859565b92915050565b60008060006060848603121561489c5761489b614539565b5b60006148aa868287016146fd565b93505060206148bb868287016146fd565b92505060406148cc86828701614733565b9150509250925092565b6000819050919050565b6148e9816148d6565b81146148f457600080fd5b50565b600081359050614906816148e0565b92915050565b60006020828403121561492257614921614539565b5b6000614930848285016148f7565b91505092915050565b614942816148d6565b82525050565b600060208201905061495d6000830184614939565b92915050565b6000806040838503121561497a57614979614539565b5b6000614988858286016148f7565b9250506020614999858286016146fd565b9150509250929050565b600060ff82169050919050565b6149b9816149a3565b82525050565b60006020820190506149d460008301846149b0565b92915050565b6149e3816145c3565b81146149ee57600080fd5b50565b600081359050614a00816149da565b92915050565b60008060408385031215614a1d57614a1c614539565b5b6000614a2b858286016146fd565b9250506020614a3c858286016149f1565b9150509250929050565b600060208284031215614a5c57614a5b614539565b5b6000614a6a84828501614733565b91505092915050565b600060208284031215614a8957614a88614539565b5b6000614a97848285016149f1565b91505092915050565b60008060408385031215614ab757614ab6614539565b5b6000614ac5858286016146fd565b9250506020614ad6858286016146fd565b9150509250929050565b600080600080600080600080610100898b031215614b0157614b00614539565b5b6000614b0f8b828c01614733565b9850506020614b208b828c01614733565b9750506040614b318b828c01614733565b9650506060614b428b828c01614733565b9550506080614b538b828c01614733565b94505060a0614b648b828c01614733565b93505060c0614b758b828c01614733565b92505060e0614b868b828c01614733565b9150509295985092959890939650565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bdd57607f821691505b60208210811415614bf157614bf0614b96565b5b50919050565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b6000614c2d601383614604565b9150614c3882614bf7565b602082019050919050565b60006020820190508181036000830152614c5c81614c20565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614cbf602f83614604565b9150614cca82614c63565b604082019050919050565b60006020820190508181036000830152614cee81614cb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d2f82614712565b9150614d3a83614712565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d6f57614d6e614cf5565b5b828201905092915050565b7f43616c6c6572206973206e6f7420626c61636b6c697374657200000000000000600082015250565b6000614db0601983614604565b9150614dbb82614d7a565b602082019050919050565b60006020820190508181036000830152614ddf81614da3565b9050919050565b6000614df182614712565b9150614dfc83614712565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e3557614e34614cf5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e7a82614712565b9150614e8583614712565b925082614e9557614e94614e40565b5b828204905092915050565b7f43616e6e6f7420736574206d6178696d756d73206c6f776572207468616e203260008201527f2500000000000000000000000000000000000000000000000000000000000000602082015250565b6000614efc602183614604565b9150614f0782614ea0565b604082019050919050565b60006020820190508181036000830152614f2b81614eef565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f8e603983614604565b9150614f9982614f32565b604082019050919050565b60006020820190508181036000830152614fbd81614f81565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615020602583614604565b915061502b82614fc4565b604082019050919050565b6000602082019050818103600083015261504f81615013565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150b2603583614604565b91506150bd82615056565b604082019050919050565b600060208201905081810360008301526150e1816150a5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615144603483614604565b915061514f826150e8565b604082019050919050565b6000602082019050818103600083015261517381615137565b9050919050565b7f627579546f74616c466565732063616e6e6f7420657863656564203525206f6660008201527f207472616e73616374696f6e0000000000000000000000000000000000000000602082015250565b60006151d6602c83614604565b91506151e18261517a565b604082019050919050565b60006020820190508181036000830152615205816151c9565b9050919050565b7f73656c6c546f74616c466565732063616e6e6f7420657863656564203525206f60008201527f66207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b6000615268602d83614604565b91506152738261520c565b604082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152fa602483614604565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061538c602283614604565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006153f8601d83614604565b9150615403826153c2565b602082019050919050565b60006020820190508181036000830152615427816153eb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061548a602583614604565b91506154958261542e565b604082019050919050565b600060208201905081810360008301526154b98161547d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061551c602383614604565b9150615527826154c0565b604082019050919050565b6000602082019050818103600083015261554b8161550f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615588601683614604565b915061559382615552565b602082019050919050565b600060208201905081810360008301526155b78161557b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061561a603583614604565b9150615625826155be565b604082019050919050565b600060208201905081810360008301526156498161560d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615686601383614604565b915061569182615650565b602082019050919050565b600060208201905081810360008301526156b581615679565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615718603683614604565b9150615723826156bc565b604082019050919050565b600060208201905081810360008301526157478161570b565b9050919050565b600061575982614712565b915061576483614712565b92508282101561577757615776614cf5565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006157de602183614604565b91506157e982615782565b604082019050919050565b6000602082019050818103600083015261580d816157d1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615870602283614604565b915061587b82615814565b604082019050919050565b6000602082019050818103600083015261589f81615863565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615902602683614604565b915061590d826158a6565b604082019050919050565b60006020820190508181036000830152615931816158f5565b9050919050565b600081905092915050565b50565b6000615953600083615938565b915061595e82615943565b600082019050919050565b600061597482615946565b9150819050919050565b6000606082019050615993600083018661482f565b6159a0602083018561482f565b6159ad604083018461482f565b949350505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006159f66017836159b5565b9150615a01826159c0565b601782019050919050565b6000615a17826145f9565b615a2181856159b5565b9350615a31818560208601614615565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000615a736011836159b5565b9150615a7e82615a3d565b601182019050919050565b6000615a94826159e9565b9150615aa08285615a0c565b9150615aab82615a66565b9150615ab78284615a0c565b91508190509392505050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000615af9600b83614604565b9150615b0482615ac3565b602082019050919050565b60006020820190508181036000830152615b2881615aec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b9c816146e6565b92915050565b600060208284031215615bb857615bb7614539565b5b6000615bc684828501615b8d565b91505092915050565b6000819050919050565b6000615bf4615bef615bea84615bcf565b6147b5565b614712565b9050919050565b615c0481615bd9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c3f816146d4565b82525050565b6000615c518383615c36565b60208301905092915050565b6000602082019050919050565b6000615c7582615c0a565b615c7f8185615c15565b9350615c8a83615c26565b8060005b83811015615cbb578151615ca28882615c45565b9750615cad83615c5d565b925050600181019050615c8e565b5085935050505092915050565b600060a082019050615cdd600083018861482f565b615cea6020830187615bfb565b8181036040830152615cfc8186615c6a565b9050615d0b6060830185614859565b615d18608083018461482f565b9695505050505050565b600060c082019050615d376000830189614859565b615d44602083018861482f565b615d516040830187615bfb565b615d5e6060830186615bfb565b615d6b6080830185614859565b615d7860a083018461482f565b979650505050505050565b600081519050615d928161471c565b92915050565b600080600060608486031215615db157615db0614539565b5b6000615dbf86828701615d83565b9350506020615dd086828701615d83565b9250506040615de186828701615d83565b9150509250925092565b6000615df682614712565b91506000821415615e0a57615e09614cf5565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615e4b602083614604565b9150615e5682615e15565b602082019050919050565b60006020820190508181036000830152615e7a81615e3e565b905091905056fea2646970667358221220d3741f564321be5014ebf39b7ec2d4411d10e948228b282fa7a1fc79c5d43d7464736f6c6343000809003300000000000000000000000003888625cccbafe87fc4e264b54616cead476258

Deployed Bytecode

0x6080604052600436106103e85760003560e01c80638a8c523c11610208578063b62496f511610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610f3c578063f2f5ec3a14610f67578063f515e6f214610f90578063f637434214610fbb578063f8b45b0514610fe6576103ef565b8063d85ba06314610e7e578063dd62ed3e14610ea9578063e2f4560514610ee6578063ea43915e14610f11576103ef565b8063c8c8ebe4116100e7578063c8c8ebe414610dc2578063cd2c228c14610ded578063d257b34f14610e18578063d547741f14610e55576103ef565b8063b62496f514610d06578063bbc0c74214610d43578063bffb691d14610d6e578063c024666814610d99576103ef565b80639a7a23d61161019b578063a217fddf1161016a578063a217fddf14610c0f578063a457c2d714610c3a578063a9059cbb14610c77578063aacebbe314610cb4578063ad6ffd0914610cdd576103ef565b80639a7a23d614610b655780639c3b4fdc14610b8e5780639fccce3214610bb9578063a0d82dc514610be4576103ef565b806392136913116101d75780639213691314610abd578063924de9b714610ae8578063930931a614610b1157806395d89b4114610b3a576103ef565b80638a8c523c14610a135780638b33121b14610a2a5780638ea5220f14610a5557806391d1485414610a80576103ef565b806336568abe1161030357806364cbf4ff11610296578063751039fc11610265578063751039fc1461093e5780637571336a1461096957806375f0a874146109925780637bce5a04146109bd5780637daf9366146109e8576103ef565b806364cbf4ff146108805780636a486a8e146108ab5780636ddd1713146108d657806370a0823114610901576103ef565b806342c694f9116102d257806342c694f9146107c457806349bd5a5e146107ed5780634a62bb65146108185780634fbee19314610843576103ef565b806336568abe1461070c5780633950935114610735578063404e51291461077257806342966c681461079b576103ef565b80631a6865021161037b578063248a9ca31161034a578063248a9ca31461065057806327c8f8351461068d5780632f2ff15d146106b8578063313ce567146106e1576103ef565b80631a686502146105925780631a8145bb146105bd5780631f3fed8f146105e857806323b872dd14610613576103ef565b80631694505e116103b75780631694505e146104d657806316c021291461050157806318160ddd1461053e5780631816467f14610569576103ef565b806301ffc9a7146103f457806306fdde0314610431578063095ea7b31461045c57806310d5de5314610499576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b5061041b60048036038101906104169190614596565b611011565b60405161042891906145de565b60405180910390f35b34801561043d57600080fd5b5061044661108b565b6040516104539190614692565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614748565b61111d565b60405161049091906145de565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190614788565b611140565b6040516104cd91906145de565b60405180910390f35b3480156104e257600080fd5b506104eb611160565b6040516104f89190614814565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190614788565b611184565b60405161053591906145de565b60405180910390f35b34801561054a57600080fd5b506105536111a4565b604051610560919061483e565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190614788565b6111ae565b005b34801561059e57600080fd5b506105a76112ba565b6040516105b49190614868565b60405180910390f35b3480156105c957600080fd5b506105d26112e0565b6040516105df919061483e565b60405180910390f35b3480156105f457600080fd5b506105fd6112e6565b60405161060a919061483e565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190614883565b6112ec565b60405161064791906145de565b60405180910390f35b34801561065c57600080fd5b506106776004803603810190610672919061490c565b61131b565b6040516106849190614948565b60405180910390f35b34801561069957600080fd5b506106a261133b565b6040516106af9190614868565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190614963565b611341565b005b3480156106ed57600080fd5b506106f6611362565b60405161070391906149bf565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190614963565b61136b565b005b34801561074157600080fd5b5061075c60048036038101906107579190614748565b6113ee565b60405161076991906145de565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190614a06565b611425565b005b3480156107a757600080fd5b506107c260048036038101906107bd9190614a46565b6114e9565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190614788565b6114fd565b005b3480156107f957600080fd5b50610802611609565b60405161080f9190614868565b60405180910390f35b34801561082457600080fd5b5061082d61162d565b60405161083a91906145de565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190614788565b611640565b60405161087791906145de565b60405180910390f35b34801561088c57600080fd5b50610895611696565b6040516108a2919061483e565b60405180910390f35b3480156108b757600080fd5b506108c061169c565b6040516108cd919061483e565b60405180910390f35b3480156108e257600080fd5b506108eb6116a2565b6040516108f891906145de565b60405180910390f35b34801561090d57600080fd5b5061092860048036038101906109239190614788565b6116b5565b604051610935919061483e565b60405180910390f35b34801561094a57600080fd5b506109536116fd565b60405161096091906145de565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614a06565b611799565b005b34801561099e57600080fd5b506109a7611840565b6040516109b49190614868565b60405180910390f35b3480156109c957600080fd5b506109d2611866565b6040516109df919061483e565b60405180910390f35b3480156109f457600080fd5b506109fd61186c565b604051610a0a919061483e565b60405180910390f35b348015610a1f57600080fd5b50610a28611872565b005b348015610a3657600080fd5b50610a3f6118f6565b604051610a4c919061483e565b60405180910390f35b348015610a6157600080fd5b50610a6a6118fc565b604051610a779190614868565b60405180910390f35b348015610a8c57600080fd5b50610aa76004803603810190610aa29190614963565b611922565b604051610ab491906145de565b60405180910390f35b348015610ac957600080fd5b50610ad261198d565b604051610adf919061483e565b60405180910390f35b348015610af457600080fd5b50610b0f6004803603810190610b0a9190614a73565b611993565b005b348015610b1d57600080fd5b50610b386004803603810190610b339190614a46565b6119fc565b005b348015610b4657600080fd5b50610b4f611af4565b604051610b5c9190614692565b60405180910390f35b348015610b7157600080fd5b50610b8c6004803603810190610b879190614a06565b611b86565b005b348015610b9a57600080fd5b50610ba3611c6f565b604051610bb0919061483e565b60405180910390f35b348015610bc557600080fd5b50610bce611c75565b604051610bdb919061483e565b60405180910390f35b348015610bf057600080fd5b50610bf9611c7b565b604051610c06919061483e565b60405180910390f35b348015610c1b57600080fd5b50610c24611c81565b604051610c319190614948565b60405180910390f35b348015610c4657600080fd5b50610c616004803603810190610c5c9190614748565b611c88565b604051610c6e91906145de565b60405180910390f35b348015610c8357600080fd5b50610c9e6004803603810190610c999190614748565b611cff565b604051610cab91906145de565b60405180910390f35b348015610cc057600080fd5b50610cdb6004803603810190610cd69190614788565b611d22565b005b348015610ce957600080fd5b50610d046004803603810190610cff9190614788565b611e2e565b005b348015610d1257600080fd5b50610d2d6004803603810190610d289190614788565b611f3a565b604051610d3a91906145de565b60405180910390f35b348015610d4f57600080fd5b50610d58611f5a565b604051610d6591906145de565b60405180910390f35b348015610d7a57600080fd5b50610d83611f6d565b604051610d9091906145de565b60405180910390f35b348015610da557600080fd5b50610dc06004803603810190610dbb9190614a06565b611f80565b005b348015610dce57600080fd5b50610dd7612075565b604051610de4919061483e565b60405180910390f35b348015610df957600080fd5b50610e0261207b565b604051610e0f9190614868565b60405180910390f35b348015610e2457600080fd5b50610e3f6004803603810190610e3a9190614a46565b6120a1565b604051610e4c91906145de565b60405180910390f35b348015610e6157600080fd5b50610e7c6004803603810190610e779190614963565b6121c6565b005b348015610e8a57600080fd5b50610e936121e7565b604051610ea0919061483e565b60405180910390f35b348015610eb557600080fd5b50610ed06004803603810190610ecb9190614aa0565b6121ed565b604051610edd919061483e565b60405180910390f35b348015610ef257600080fd5b50610efb612274565b604051610f08919061483e565b60405180910390f35b348015610f1d57600080fd5b50610f2661227a565b604051610f3391906145de565b60405180910390f35b348015610f4857600080fd5b50610f51612333565b604051610f5e919061483e565b60405180910390f35b348015610f7357600080fd5b50610f8e6004803603810190610f899190614ae0565b612339565b005b348015610f9c57600080fd5b50610fa56124f1565b604051610fb29190614948565b60405180910390f35b348015610fc757600080fd5b50610fd0612515565b604051610fdd919061483e565b60405180910390f35b348015610ff257600080fd5b50610ffb61251b565b604051611008919061483e565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611084575061108382612521565b5b9050919050565b60606003805461109a90614bc5565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690614bc5565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b60008061112861258b565b9050611135818585612593565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b601e6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111bb6000801b33611922565b6111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190614c43565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b60185481565b6000806112f761258b565b905061130485828561275e565b61130f8585856127ea565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b61dead81565b61134a8261131b565b61135381613358565b61135d838361336c565b505050565b60006012905090565b61137361258b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790614cd5565b60405180910390fd5b6113ea828261344d565b5050565b6000806113f961258b565b905061141a81858561140b85896121ed565b6114159190614d24565b612593565b600191505092915050565b61144f7f98db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e933611922565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614dc6565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6114fa6114f461258b565b8261352f565b50565b61150a6000801b33611922565b611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090614c43565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fca7cc9e76e54ddfcd5a8cb57c8afca2d24c83c17b2efe0d0facb94654935453460405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f00000000000000000000000012457ff2947656a4e470f4ee86dbdacf653ada4181565b600d60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601b5481565b60135481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061170c6000801b33611922565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290614c43565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055507f7bfa7bacf025baa75e5308bf15bcf2948f406c7ebe3eb1a8bb611862b9d647ef60405160405180910390a16001905090565b6117a66000801b33611922565b6117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614c43565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b60175481565b61187f6000801b33611922565b6118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590614c43565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b60125481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b6119a06000801b33611922565b6119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614c43565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b611a096000801b33611922565b611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90614c43565b60405180910390fd5b670de0b6b3a764000060646002611a5d6111a4565b611a679190614de6565b611a719190614e6f565b611a7b9190614e6f565b811015611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490614f12565b60405180910390fd5b670de0b6b3a764000081611ad19190614de6565b600c81905550670de0b6b3a764000081611aeb9190614de6565b600a8190555050565b606060048054611b0390614bc5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2f90614bc5565b8015611b7c5780601f10611b5157610100808354040283529160200191611b7c565b820191906000526020600020905b815481529060010190602001808311611b5f57829003601f168201915b5050505050905090565b611b936000801b33611922565b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990614c43565b60405180910390fd5b7f00000000000000000000000012457ff2947656a4e470f4ee86dbdacf653ada4173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614fa4565b60405180910390fd5b611c6b82826136fd565b5050565b60115481565b601a5481565b60165481565b6000801b81565b600080611c9361258b565b90506000611ca182866121ed565b905083811015611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90615036565b60405180910390fd5b611cf38286868403612593565b60019250505092915050565b600080611d0a61258b565b9050611d178185856127ea565b600191505092915050565b611d2f6000801b33611922565b611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590614c43565b60405180910390fd5b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611e3b6000801b33611922565b611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190614c43565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f05606b8462d9fd73b376fdcd4a2933d7fe08f0f1b418baac5b579cece5a0f76760405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b600d60039054906101000a900460ff1681565b611f8d6000801b33611922565b611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614c43565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161206991906145de565b60405180910390a25050565b600a5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006120b06000801b33611922565b6120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e690614c43565b60405180910390fd5b620186a060016120fd6111a4565b6121079190614de6565b6121119190614e6f565b821015612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906150c8565b60405180910390fd5b6103e860056121606111a4565b61216a9190614de6565b6121749190614e6f565b8211156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad9061515a565b60405180910390fd5b81600b8190555060019050919050565b6121cf8261131b565b6121d881613358565b6121e2838361344d565b505050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006122a67f98db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e933611922565b6122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90614dc6565b60405180910390fd5b6000600d60036101000a81548160ff0219169083151502179055507fcac51b0f10907b766720ff6bed8f3de64d17380ad8652db73718e015b315635560405160405180910390a16001905090565b60105481565b6123466000801b33611922565b612385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237c90614c43565b60405180910390fd5b60058587898b6123959190614d24565b61239f9190614d24565b6123a99190614d24565b11156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e1906151ec565b60405180910390fd5b6005858385876123fa9190614d24565b6124049190614d24565b61240e9190614d24565b111561244f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124469061527e565b60405180910390fd5b87600f81905550866010819055508560118190555084601281905550601254601154601054600f546124819190614d24565b61248b9190614d24565b6124959190614d24565b600e81905550836014819055508260158190555081601681905550806017819055506017546016546015546014546124cd9190614d24565b6124d79190614d24565b6124e19190614d24565b6013819055505050505050505050565b7f98db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e981565b60155481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fa90615310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a906153a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612751919061483e565b60405180910390a3505050565b600061276a84846121ed565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146127e457818110156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd9061540e565b60405180910390fd5b6127e38484848403612593565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561285a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612851906154a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c190615532565b60405180910390fd5b60008114156128e4576128df8383600061379e565b613353565b600d60009054906101000a900460ff1615612e1557602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129a55750602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129de5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a18575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a315750600660009054906101000a900460ff16155b15612e1457600d60019054906101000a900460ff16612b2b57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612aeb5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b219061559e565b60405180910390fd5b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bce5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c7557600a54811115612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f90615630565b60405180910390fd5b600c54612c24836116b5565b82612c2f9190614d24565b1115612c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c679061569c565b60405180910390fd5b612e13565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d185750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d6757600a54811115612d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d599061572e565b60405180910390fd5b612e12565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e1157600c54612dc4836116b5565b82612dcf9190614d24565b1115612e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e079061569c565b60405180910390fd5b5b5b5b5b5b6000612e20306116b5565b90506000600b548210159050808015612e455750600d60029054906101000a900460ff165b8015612e5e5750600660009054906101000a900460ff16155b8015612eb45750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f0a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f605750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fa4576001600660006101000a81548160ff021916908315150217905550612f88613a16565b6000600660006101000a81548160ff0219169083151502179055505b6000600660009054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061305a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561306457600090505b6000811561334357601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130c757506000601354115b156131c7576130f460646130e660135488613daf90919063ffffffff16565b613dc590919063ffffffff16565b9050601354601554826131079190614de6565b6131119190614e6f565b601960008282546131229190614d24565b925050819055506013546016548261313a9190614de6565b6131449190614e6f565b601a60008282546131559190614d24565b925050819055506013546014548261316d9190614de6565b6131779190614e6f565b601860008282546131889190614d24565b92505081905550601354601754826131a09190614de6565b6131aa9190614e6f565b601b60008282546131bb9190614d24565b9250508190555061331f565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561322257506000600e54115b1561331e5761324f6064613241600e5488613daf90919063ffffffff16565b613dc590919063ffffffff16565b9050600e54601054826132629190614de6565b61326c9190614e6f565b6019600082825461327d9190614d24565b92505081905550600e54601154826132959190614de6565b61329f9190614e6f565b601a60008282546132b09190614d24565b92505081905550600e54600f54826132c89190614de6565b6132d29190614e6f565b601860008282546132e39190614d24565b92505081905550600e54601254826132fb9190614de6565b6133059190614e6f565b601b60008282546133169190614d24565b925050819055505b5b60008111156133345761333387308361379e565b5b8085613340919061574e565b94505b61334e87878761379e565b505050505b505050565b6133698161336461258b565b613ddb565b50565b6133768282611922565b6134495760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506133ee61258b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6134578282611922565b1561352b5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506134d061258b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561359f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613596906157f4565b60405180910390fd5b6135ab82600083613e60565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362890615886565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136e4919061483e565b60405180910390a36136f883600084613f5e565b505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561380e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613805906154a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561387e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387590615532565b60405180910390fd5b613889838383613e60565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561390f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390690615918565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139fd919061483e565b60405180910390a3613a10848484613f5e565b50505050565b6000613a21306116b5565b90506000601b54601a54601854601954613a3b9190614d24565b613a459190614d24565b613a4f9190614d24565b9050600080831480613a615750600082145b15613a6e57505050613dad565b600060028360195486613a819190614de6565b613a8b9190614e6f565b613a959190614e6f565b90506000613aac8286613f6390919063ffffffff16565b90506000479050613abc82613f79565b6000613ad18247613f6390919063ffffffff16565b90506000613afc87613aee60185485613daf90919063ffffffff16565b613dc590919063ffffffff16565b90506000613b2788613b19601a5486613daf90919063ffffffff16565b613dc590919063ffffffff16565b90506000613b5289613b44601b5487613daf90919063ffffffff16565b613dc590919063ffffffff16565b9050600081838587613b64919061574e565b613b6e919061574e565b613b78919061574e565b9050600060198190555060006018819055506000601a819055506000601b81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613be090615969565b60006040518083038185875af1925050503d8060008114613c1d576040519150601f19603f3d011682016040523d82523d6000602084013e613c22565b606091505b505080995050600088118015613c385750600081115b15613c8557613c4788826141c5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601954604051613c7c9392919061597e565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613ccb90615969565b60006040518083038185875af1925050503d8060008114613d08576040519150601f19603f3d011682016040523d82523d6000602084013e613d0d565b606091505b505080995050600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d5990615969565b60006040518083038185875af1925050503d8060008114613d96576040519150601f19603f3d011682016040523d82523d6000602084013e613d9b565b606091505b50508099505050505050505050505050505b565b60008183613dbd9190614de6565b905092915050565b60008183613dd39190614e6f565b905092915050565b613de58282611922565b613e5c57613df2816142d0565b613e008360001c60206142fd565b604051602001613e11929190615a89565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e539190614692565b60405180910390fd5b5050565b600d60039054906101000a900460ff1615613f5957601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f195750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f4f90615b0f565b60405180910390fd5b5b505050565b505050565b60008183613f71919061574e565b905092915050565b6000600267ffffffffffffffff811115613f9657613f95615b2f565b5b604051908082528060200260200182016040528015613fc45781602001602082028036833780820191505090505b5090503081600081518110613fdc57613fdb615b5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561407c57600080fd5b505afa158015614090573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140b49190615ba2565b816001815181106140c8576140c7615b5e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061412d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612593565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161418f959493929190615cc8565b600060405180830381600087803b1580156141a957600080fd5b505af11580156141bd573d6000803e3d6000fd5b505050505050565b6141f0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612593565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161427796959493929190615d22565b6060604051808303818588803b15801561429057600080fd5b505af11580156142a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142c99190615d98565b5050505050565b60606142f68273ffffffffffffffffffffffffffffffffffffffff16601460ff166142fd565b9050919050565b6060600060028360026143109190614de6565b61431a9190614d24565b67ffffffffffffffff81111561433357614332615b2f565b5b6040519080825280601f01601f1916602001820160405280156143655781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061439d5761439c615b5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061440157614400615b5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026144419190614de6565b61444b9190614d24565b90505b60018111156144eb577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061448d5761448c615b5e565b5b1a60f81b8282815181106144a4576144a3615b5e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806144e490615deb565b905061444e565b506000841461452f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161452690615e61565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6145738161453e565b811461457e57600080fd5b50565b6000813590506145908161456a565b92915050565b6000602082840312156145ac576145ab614539565b5b60006145ba84828501614581565b91505092915050565b60008115159050919050565b6145d8816145c3565b82525050565b60006020820190506145f360008301846145cf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614633578082015181840152602081019050614618565b83811115614642576000848401525b50505050565b6000601f19601f8301169050919050565b6000614664826145f9565b61466e8185614604565b935061467e818560208601614615565b61468781614648565b840191505092915050565b600060208201905081810360008301526146ac8184614659565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146df826146b4565b9050919050565b6146ef816146d4565b81146146fa57600080fd5b50565b60008135905061470c816146e6565b92915050565b6000819050919050565b61472581614712565b811461473057600080fd5b50565b6000813590506147428161471c565b92915050565b6000806040838503121561475f5761475e614539565b5b600061476d858286016146fd565b925050602061477e85828601614733565b9150509250929050565b60006020828403121561479e5761479d614539565b5b60006147ac848285016146fd565b91505092915050565b6000819050919050565b60006147da6147d56147d0846146b4565b6147b5565b6146b4565b9050919050565b60006147ec826147bf565b9050919050565b60006147fe826147e1565b9050919050565b61480e816147f3565b82525050565b60006020820190506148296000830184614805565b92915050565b61483881614712565b82525050565b6000602082019050614853600083018461482f565b92915050565b614862816146d4565b82525050565b600060208201905061487d6000830184614859565b92915050565b60008060006060848603121561489c5761489b614539565b5b60006148aa868287016146fd565b93505060206148bb868287016146fd565b92505060406148cc86828701614733565b9150509250925092565b6000819050919050565b6148e9816148d6565b81146148f457600080fd5b50565b600081359050614906816148e0565b92915050565b60006020828403121561492257614921614539565b5b6000614930848285016148f7565b91505092915050565b614942816148d6565b82525050565b600060208201905061495d6000830184614939565b92915050565b6000806040838503121561497a57614979614539565b5b6000614988858286016148f7565b9250506020614999858286016146fd565b9150509250929050565b600060ff82169050919050565b6149b9816149a3565b82525050565b60006020820190506149d460008301846149b0565b92915050565b6149e3816145c3565b81146149ee57600080fd5b50565b600081359050614a00816149da565b92915050565b60008060408385031215614a1d57614a1c614539565b5b6000614a2b858286016146fd565b9250506020614a3c858286016149f1565b9150509250929050565b600060208284031215614a5c57614a5b614539565b5b6000614a6a84828501614733565b91505092915050565b600060208284031215614a8957614a88614539565b5b6000614a97848285016149f1565b91505092915050565b60008060408385031215614ab757614ab6614539565b5b6000614ac5858286016146fd565b9250506020614ad6858286016146fd565b9150509250929050565b600080600080600080600080610100898b031215614b0157614b00614539565b5b6000614b0f8b828c01614733565b9850506020614b208b828c01614733565b9750506040614b318b828c01614733565b9650506060614b428b828c01614733565b9550506080614b538b828c01614733565b94505060a0614b648b828c01614733565b93505060c0614b758b828c01614733565b92505060e0614b868b828c01614733565b9150509295985092959890939650565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bdd57607f821691505b60208210811415614bf157614bf0614b96565b5b50919050565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b6000614c2d601383614604565b9150614c3882614bf7565b602082019050919050565b60006020820190508181036000830152614c5c81614c20565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614cbf602f83614604565b9150614cca82614c63565b604082019050919050565b60006020820190508181036000830152614cee81614cb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d2f82614712565b9150614d3a83614712565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d6f57614d6e614cf5565b5b828201905092915050565b7f43616c6c6572206973206e6f7420626c61636b6c697374657200000000000000600082015250565b6000614db0601983614604565b9150614dbb82614d7a565b602082019050919050565b60006020820190508181036000830152614ddf81614da3565b9050919050565b6000614df182614712565b9150614dfc83614712565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e3557614e34614cf5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e7a82614712565b9150614e8583614712565b925082614e9557614e94614e40565b5b828204905092915050565b7f43616e6e6f7420736574206d6178696d756d73206c6f776572207468616e203260008201527f2500000000000000000000000000000000000000000000000000000000000000602082015250565b6000614efc602183614604565b9150614f0782614ea0565b604082019050919050565b60006020820190508181036000830152614f2b81614eef565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f8e603983614604565b9150614f9982614f32565b604082019050919050565b60006020820190508181036000830152614fbd81614f81565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615020602583614604565b915061502b82614fc4565b604082019050919050565b6000602082019050818103600083015261504f81615013565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150b2603583614604565b91506150bd82615056565b604082019050919050565b600060208201905081810360008301526150e1816150a5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615144603483614604565b915061514f826150e8565b604082019050919050565b6000602082019050818103600083015261517381615137565b9050919050565b7f627579546f74616c466565732063616e6e6f7420657863656564203525206f6660008201527f207472616e73616374696f6e0000000000000000000000000000000000000000602082015250565b60006151d6602c83614604565b91506151e18261517a565b604082019050919050565b60006020820190508181036000830152615205816151c9565b9050919050565b7f73656c6c546f74616c466565732063616e6e6f7420657863656564203525206f60008201527f66207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b6000615268602d83614604565b91506152738261520c565b604082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152fa602483614604565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061538c602283614604565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006153f8601d83614604565b9150615403826153c2565b602082019050919050565b60006020820190508181036000830152615427816153eb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061548a602583614604565b91506154958261542e565b604082019050919050565b600060208201905081810360008301526154b98161547d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061551c602383614604565b9150615527826154c0565b604082019050919050565b6000602082019050818103600083015261554b8161550f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000615588601683614604565b915061559382615552565b602082019050919050565b600060208201905081810360008301526155b78161557b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061561a603583614604565b9150615625826155be565b604082019050919050565b600060208201905081810360008301526156498161560d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615686601383614604565b915061569182615650565b602082019050919050565b600060208201905081810360008301526156b581615679565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615718603683614604565b9150615723826156bc565b604082019050919050565b600060208201905081810360008301526157478161570b565b9050919050565b600061575982614712565b915061576483614712565b92508282101561577757615776614cf5565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006157de602183614604565b91506157e982615782565b604082019050919050565b6000602082019050818103600083015261580d816157d1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615870602283614604565b915061587b82615814565b604082019050919050565b6000602082019050818103600083015261589f81615863565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615902602683614604565b915061590d826158a6565b604082019050919050565b60006020820190508181036000830152615931816158f5565b9050919050565b600081905092915050565b50565b6000615953600083615938565b915061595e82615943565b600082019050919050565b600061597482615946565b9150819050919050565b6000606082019050615993600083018661482f565b6159a0602083018561482f565b6159ad604083018461482f565b949350505050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006159f66017836159b5565b9150615a01826159c0565b601782019050919050565b6000615a17826145f9565b615a2181856159b5565b9350615a31818560208601614615565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000615a736011836159b5565b9150615a7e82615a3d565b601182019050919050565b6000615a94826159e9565b9150615aa08285615a0c565b9150615aab82615a66565b9150615ab78284615a0c565b91508190509392505050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000615af9600b83614604565b9150615b0482615ac3565b602082019050919050565b60006020820190508181036000830152615b2881615aec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b9c816146e6565b92915050565b600060208284031215615bb857615bb7614539565b5b6000615bc684828501615b8d565b91505092915050565b6000819050919050565b6000615bf4615bef615bea84615bcf565b6147b5565b614712565b9050919050565b615c0481615bd9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c3f816146d4565b82525050565b6000615c518383615c36565b60208301905092915050565b6000602082019050919050565b6000615c7582615c0a565b615c7f8185615c15565b9350615c8a83615c26565b8060005b83811015615cbb578151615ca28882615c45565b9750615cad83615c5d565b925050600181019050615c8e565b5085935050505092915050565b600060a082019050615cdd600083018861482f565b615cea6020830187615bfb565b8181036040830152615cfc8186615c6a565b9050615d0b6060830185614859565b615d18608083018461482f565b9695505050505050565b600060c082019050615d376000830189614859565b615d44602083018861482f565b615d516040830187615bfb565b615d5e6060830186615bfb565b615d6b6080830185614859565b615d7860a083018461482f565b979650505050505050565b600081519050615d928161471c565b92915050565b600080600060608486031215615db157615db0614539565b5b6000615dbf86828701615d83565b9350506020615dd086828701615d83565b9250506040615de186828701615d83565b9150509250925092565b6000615df682614712565b91506000821415615e0a57615e09614cf5565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615e4b602083614604565b9150615e5682615e15565b602082019050919050565b60006020820190508181036000830152615e7a81615e3e565b905091905056fea2646970667358221220d3741f564321be5014ebf39b7ec2d4411d10e948228b282fa7a1fc79c5d43d7464736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000003888625cccbafe87fc4e264b54616cead476258

-----Decoded View---------------
Arg [0] : blacklister (address): 0x03888625CCCbAfE87fC4e264B54616cEAD476258

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000003888625cccbafe87fc4e264b54616cead476258


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.