ETH Price: $1,600.94 (-1.01%)
Gas: 8 Gwei
 

Overview

Max Total Supply

2,482,813 KLEIN

Holders

1

Total Transfers

-

Market

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

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:
KLEINToken

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-02
*/

// File: @openzeppelin/contracts/access/IAccessControl.sol
// 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: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/access/AccessControl.sol
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @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, _msgSender());
        _;
    }

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

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

    /**
     * @dev 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) 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.
     */
    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`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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: contracts/KLEINToken.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


contract KLEINToken is ERC20, AccessControl {
    string private __name = "KLEIN Token";
    string private __symbol = "KLEIN";
    uint8 private __decimals = 2;
    uint private __INITIAL_SUPPLY = 410000000;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    event Minted(address addr, uint256 amount);
    event Burned(address addr, uint256 amount);

    constructor() public ERC20(__name, __symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(MINTER_ROLE, msg.sender);
        _setupRole(BURNER_ROLE, msg.sender);
        _mint(msg.sender, __INITIAL_SUPPLY);
    }

    function burn(address from, uint256 amount) public {
        require(hasRole(BURNER_ROLE, _msgSender()), "KLEIN Token: Caller is not a burner");
        _burn(from, amount);
        emit Burned(from, amount);
    }

    function mint(address to, uint256 amount) public {
        require(hasRole(MINTER_ROLE, _msgSender()), "KLEIN Token: Caller is not a minter");
        _mint(to, amount);
        emit Minted(to, amount);
    }

    function decimals() public view virtual override returns (uint8) {
        return __decimals;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURNER_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":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

60806040526040518060400160405280600b81526020017f4b4c45494e20546f6b656e0000000000000000000000000000000000000000008152506006908051906020019062000051929190620005bc565b506040518060400160405280600581526020017f4b4c45494e000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f929190620005bc565b506002600860006101000a81548160ff021916908360ff1602179055506318701a80600955348015620000d157600080fd5b5060068054620000e1906200069b565b80601f01602080910402602001604051908101604052809291908181526020018280546200010f906200069b565b8015620001605780601f10620001345761010080835404028352916020019162000160565b820191906000526020600020905b8154815290600101906020018083116200014257829003601f168201915b50505050506007805462000174906200069b565b80601f0160208091040260200160405190810160405280929190818152602001828054620001a2906200069b565b8015620001f35780601f10620001c757610100808354040283529160200191620001f3565b820191906000526020600020905b815481529060010190602001808311620001d557829003601f168201915b5050505050816003908051906020019062000210929190620005bc565b50806004908051906020019062000229929190620005bc565b505050620002416000801b33620002bf60201b60201c565b620002737f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002bf60201b60201c565b620002a57f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620002bf60201b60201c565b620002b933600954620002d560201b60201c565b62000817565b620002d182826200044d60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e9062000731565b60405180910390fd5b6200035b600083836200053f60201b60201c565b80600260008282546200036f91906200078c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003c691906200078c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200042d9190620007fa565b60405180910390a362000449600083836200054460201b60201c565b5050565b6200045f82826200054960201b60201c565b6200053b5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004e0620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620005ca906200069b565b90600052602060002090601f016020900481019282620005ee57600085556200063a565b82601f106200060957805160ff19168380011785556200063a565b828001600101855582156200063a579182015b82811115620006395782518255916020019190600101906200061c565b5b5090506200064991906200064d565b5090565b5b80821115620006685760008160009055506001016200064e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b457607f821691505b602082108103620006ca57620006c96200066c565b5b50919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000719601f83620006d0565b91506200072682620006e1565b602082019050919050565b600060208201905081810360008301526200074c816200070a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007998262000753565b9150620007a68362000753565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007de57620007dd6200075d565b5b828201905092915050565b620007f48162000753565b82525050565b6000602082019050620008116000830184620007e9565b92915050565b61289780620008276000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf1461039d578063a457c2d7146103bb578063a9059cbb146103eb578063d53913931461041b578063d547741f14610439578063dd62ed3e1461045557610142565b806340c10f19146102e757806370a082311461030357806391d148541461033357806395d89b41146103635780639dc29fac1461038157610142565b8063248a9ca31161010a578063248a9ca314610213578063282c51f3146102435780632f2ff15d14610261578063313ce5671461027d57806336568abe1461029b57806339509351146102b757610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c91906119b7565b610485565b60405161016e91906119ff565b60405180910390f35b61017f6104ff565b60405161018c9190611ab3565b60405180910390f35b6101af60048036038101906101aa9190611b69565b610591565b6040516101bc91906119ff565b60405180910390f35b6101cd6105b4565b6040516101da9190611bb8565b60405180910390f35b6101fd60048036038101906101f89190611bd3565b6105be565b60405161020a91906119ff565b60405180910390f35b61022d60048036038101906102289190611c5c565b6105ed565b60405161023a9190611c98565b60405180910390f35b61024b61060d565b6040516102589190611c98565b60405180910390f35b61027b60048036038101906102769190611cb3565b610631565b005b61028561065a565b6040516102929190611d0f565b60405180910390f35b6102b560048036038101906102b09190611cb3565b610671565b005b6102d160048036038101906102cc9190611b69565b6106f4565b6040516102de91906119ff565b60405180910390f35b61030160048036038101906102fc9190611b69565b61079e565b005b61031d60048036038101906103189190611d2a565b610855565b60405161032a9190611bb8565b60405180910390f35b61034d60048036038101906103489190611cb3565b61089d565b60405161035a91906119ff565b60405180910390f35b61036b610908565b6040516103789190611ab3565b60405180910390f35b61039b60048036038101906103969190611b69565b61099a565b005b6103a5610a51565b6040516103b29190611c98565b60405180910390f35b6103d560048036038101906103d09190611b69565b610a58565b6040516103e291906119ff565b60405180910390f35b61040560048036038101906104009190611b69565b610b42565b60405161041291906119ff565b60405180910390f35b610423610b65565b6040516104309190611c98565b60405180910390f35b610453600480360381019061044e9190611cb3565b610b89565b005b61046f600480360381019061046a9190611d57565b610bb2565b60405161047c9190611bb8565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f857506104f782610c39565b5b9050919050565b60606003805461050e90611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611dc6565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610ca3565b90506105a9818585610cab565b600191505092915050565b6000600254905090565b6000806105c9610ca3565b90506105d6858285610e74565b6105e1858585610f00565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61063a826105ed565b61064b81610646610ca3565b61117f565b610655838361121c565b505050565b6000600860009054906101000a900460ff16905090565b610679610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dd90611e69565b60405180910390fd5b6106f082826112fd565b5050565b6000806106ff610ca3565b9050610793818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461078e9190611eb8565b610cab565b600191505092915050565b6107cf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107ca610ca3565b61089d565b61080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080590611f80565b60405180910390fd5b61081882826113df565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051610849929190611faf565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461091790611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461094390611dc6565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6109cb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486109c6610ca3565b61089d565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a019061204a565b60405180910390fd5b610a14828261153e565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78282604051610a45929190611faf565b60405180910390a15050565b6000801b81565b600080610a63610ca3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b20906120dc565b60405180910390fd5b610b368286868403610cab565b60019250505092915050565b600080610b4d610ca3565b9050610b5a818585610f00565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b92826105ed565b610ba381610b9e610ca3565b61117f565b610bad83836112fd565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061216e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090612200565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e679190611bb8565b60405180910390a3505050565b6000610e808484610bb2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610efa5781811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39061226c565b60405180910390fd5b610ef98484848403610cab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906122fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612390565b60405180910390fd5b610fe9838383611714565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690612422565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111029190611eb8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111669190611bb8565b60405180910390a3611179848484611719565b50505050565b611189828261089d565b611218576111ae8173ffffffffffffffffffffffffffffffffffffffff16601461171e565b6111bc8360001c602061171e565b6040516020016111cd929190612516565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9190611ab3565b60405180910390fd5b5050565b611226828261089d565b6112f95760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061129e610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611307828261089d565b156113db5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611380610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061259c565b60405180910390fd5b61145a60008383611714565b806002600082825461146c9190611eb8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c19190611eb8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115269190611bb8565b60405180910390a361153a60008383611719565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a49061262e565b60405180910390fd5b6115b982600083611714565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561163f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611636906126c0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461169691906126e0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fb9190611bb8565b60405180910390a361170f83600084611719565b505050565b505050565b505050565b6060600060028360026117319190612714565b61173b9190611eb8565b67ffffffffffffffff8111156117545761175361276e565b5b6040519080825280601f01601f1916602001820160405280156117865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117be576117bd61279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106118225761182161279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026118629190612714565b61186c9190611eb8565b90505b600181111561190c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106118ae576118ad61279d565b5b1a60f81b8282815181106118c5576118c461279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611905906127cc565b905061186f565b5060008414611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790612841565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119948161195f565b811461199f57600080fd5b50565b6000813590506119b18161198b565b92915050565b6000602082840312156119cd576119cc61195a565b5b60006119db848285016119a2565b91505092915050565b60008115159050919050565b6119f9816119e4565b82525050565b6000602082019050611a1460008301846119f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a54578082015181840152602081019050611a39565b83811115611a63576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a8582611a1a565b611a8f8185611a25565b9350611a9f818560208601611a36565b611aa881611a69565b840191505092915050565b60006020820190508181036000830152611acd8184611a7a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b0082611ad5565b9050919050565b611b1081611af5565b8114611b1b57600080fd5b50565b600081359050611b2d81611b07565b92915050565b6000819050919050565b611b4681611b33565b8114611b5157600080fd5b50565b600081359050611b6381611b3d565b92915050565b60008060408385031215611b8057611b7f61195a565b5b6000611b8e85828601611b1e565b9250506020611b9f85828601611b54565b9150509250929050565b611bb281611b33565b82525050565b6000602082019050611bcd6000830184611ba9565b92915050565b600080600060608486031215611bec57611beb61195a565b5b6000611bfa86828701611b1e565b9350506020611c0b86828701611b1e565b9250506040611c1c86828701611b54565b9150509250925092565b6000819050919050565b611c3981611c26565b8114611c4457600080fd5b50565b600081359050611c5681611c30565b92915050565b600060208284031215611c7257611c7161195a565b5b6000611c8084828501611c47565b91505092915050565b611c9281611c26565b82525050565b6000602082019050611cad6000830184611c89565b92915050565b60008060408385031215611cca57611cc961195a565b5b6000611cd885828601611c47565b9250506020611ce985828601611b1e565b9150509250929050565b600060ff82169050919050565b611d0981611cf3565b82525050565b6000602082019050611d246000830184611d00565b92915050565b600060208284031215611d4057611d3f61195a565b5b6000611d4e84828501611b1e565b91505092915050565b60008060408385031215611d6e57611d6d61195a565b5b6000611d7c85828601611b1e565b9250506020611d8d85828601611b1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dde57607f821691505b602082108103611df157611df0611d97565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611e53602f83611a25565b9150611e5e82611df7565b604082019050919050565b60006020820190508181036000830152611e8281611e46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ec382611b33565b9150611ece83611b33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f02611e89565b5b828201905092915050565b7f4b4c45494e20546f6b656e3a2043616c6c6572206973206e6f742061206d696e60008201527f7465720000000000000000000000000000000000000000000000000000000000602082015250565b6000611f6a602383611a25565b9150611f7582611f0e565b604082019050919050565b60006020820190508181036000830152611f9981611f5d565b9050919050565b611fa981611af5565b82525050565b6000604082019050611fc46000830185611fa0565b611fd16020830184611ba9565b9392505050565b7f4b4c45494e20546f6b656e3a2043616c6c6572206973206e6f7420612062757260008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b6000612034602383611a25565b915061203f82611fd8565b604082019050919050565b6000602082019050818103600083015261206381612027565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120c6602583611a25565b91506120d18261206a565b604082019050919050565b600060208201905081810360008301526120f5816120b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612158602483611a25565b9150612163826120fc565b604082019050919050565b600060208201905081810360008301526121878161214b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ea602283611a25565b91506121f58261218e565b604082019050919050565b60006020820190508181036000830152612219816121dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612256601d83611a25565b915061226182612220565b602082019050919050565b6000602082019050818103600083015261228581612249565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122e8602583611a25565b91506122f38261228c565b604082019050919050565b60006020820190508181036000830152612317816122db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061237a602383611a25565b91506123858261231e565b604082019050919050565b600060208201905081810360008301526123a98161236d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061240c602683611a25565b9150612417826123b0565b604082019050919050565b6000602082019050818103600083015261243b816123ff565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612483601783612442565b915061248e8261244d565b601782019050919050565b60006124a482611a1a565b6124ae8185612442565b93506124be818560208601611a36565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612500601183612442565b915061250b826124ca565b601182019050919050565b600061252182612476565b915061252d8285612499565b9150612538826124f3565b91506125448284612499565b91508190509392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612586601f83611a25565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612618602183611a25565b9150612623826125bc565b604082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126aa602283611a25565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b60006126eb82611b33565b91506126f683611b33565b92508282101561270957612708611e89565b5b828203905092915050565b600061271f82611b33565b915061272a83611b33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276357612762611e89565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006127d782611b33565b9150600082036127ea576127e9611e89565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061282b602083611a25565b9150612836826127f5565b602082019050919050565b6000602082019050818103600083015261285a8161281e565b905091905056fea264697066735822122095381bf217c18896650a047d9f62fe4c3015eeaeb9c3c9c63723a9a5c42b769c64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf1461039d578063a457c2d7146103bb578063a9059cbb146103eb578063d53913931461041b578063d547741f14610439578063dd62ed3e1461045557610142565b806340c10f19146102e757806370a082311461030357806391d148541461033357806395d89b41146103635780639dc29fac1461038157610142565b8063248a9ca31161010a578063248a9ca314610213578063282c51f3146102435780632f2ff15d14610261578063313ce5671461027d57806336568abe1461029b57806339509351146102b757610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c91906119b7565b610485565b60405161016e91906119ff565b60405180910390f35b61017f6104ff565b60405161018c9190611ab3565b60405180910390f35b6101af60048036038101906101aa9190611b69565b610591565b6040516101bc91906119ff565b60405180910390f35b6101cd6105b4565b6040516101da9190611bb8565b60405180910390f35b6101fd60048036038101906101f89190611bd3565b6105be565b60405161020a91906119ff565b60405180910390f35b61022d60048036038101906102289190611c5c565b6105ed565b60405161023a9190611c98565b60405180910390f35b61024b61060d565b6040516102589190611c98565b60405180910390f35b61027b60048036038101906102769190611cb3565b610631565b005b61028561065a565b6040516102929190611d0f565b60405180910390f35b6102b560048036038101906102b09190611cb3565b610671565b005b6102d160048036038101906102cc9190611b69565b6106f4565b6040516102de91906119ff565b60405180910390f35b61030160048036038101906102fc9190611b69565b61079e565b005b61031d60048036038101906103189190611d2a565b610855565b60405161032a9190611bb8565b60405180910390f35b61034d60048036038101906103489190611cb3565b61089d565b60405161035a91906119ff565b60405180910390f35b61036b610908565b6040516103789190611ab3565b60405180910390f35b61039b60048036038101906103969190611b69565b61099a565b005b6103a5610a51565b6040516103b29190611c98565b60405180910390f35b6103d560048036038101906103d09190611b69565b610a58565b6040516103e291906119ff565b60405180910390f35b61040560048036038101906104009190611b69565b610b42565b60405161041291906119ff565b60405180910390f35b610423610b65565b6040516104309190611c98565b60405180910390f35b610453600480360381019061044e9190611cb3565b610b89565b005b61046f600480360381019061046a9190611d57565b610bb2565b60405161047c9190611bb8565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f857506104f782610c39565b5b9050919050565b60606003805461050e90611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611dc6565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610ca3565b90506105a9818585610cab565b600191505092915050565b6000600254905090565b6000806105c9610ca3565b90506105d6858285610e74565b6105e1858585610f00565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61063a826105ed565b61064b81610646610ca3565b61117f565b610655838361121c565b505050565b6000600860009054906101000a900460ff16905090565b610679610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dd90611e69565b60405180910390fd5b6106f082826112fd565b5050565b6000806106ff610ca3565b9050610793818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461078e9190611eb8565b610cab565b600191505092915050565b6107cf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107ca610ca3565b61089d565b61080e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080590611f80565b60405180910390fd5b61081882826113df565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051610849929190611faf565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461091790611dc6565b80601f016020809104026020016040519081016040528092919081815260200182805461094390611dc6565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6109cb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486109c6610ca3565b61089d565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a019061204a565b60405180910390fd5b610a14828261153e565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78282604051610a45929190611faf565b60405180910390a15050565b6000801b81565b600080610a63610ca3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b20906120dc565b60405180910390fd5b610b368286868403610cab565b60019250505092915050565b600080610b4d610ca3565b9050610b5a818585610f00565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610b92826105ed565b610ba381610b9e610ca3565b61117f565b610bad83836112fd565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061216e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090612200565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e679190611bb8565b60405180910390a3505050565b6000610e808484610bb2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610efa5781811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39061226c565b60405180910390fd5b610ef98484848403610cab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906122fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590612390565b60405180910390fd5b610fe9838383611714565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690612422565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111029190611eb8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111669190611bb8565b60405180910390a3611179848484611719565b50505050565b611189828261089d565b611218576111ae8173ffffffffffffffffffffffffffffffffffffffff16601461171e565b6111bc8360001c602061171e565b6040516020016111cd929190612516565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9190611ab3565b60405180910390fd5b5050565b611226828261089d565b6112f95760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061129e610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611307828261089d565b156113db5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611380610ca3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114459061259c565b60405180910390fd5b61145a60008383611714565b806002600082825461146c9190611eb8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c19190611eb8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115269190611bb8565b60405180910390a361153a60008383611719565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a49061262e565b60405180910390fd5b6115b982600083611714565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561163f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611636906126c0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461169691906126e0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fb9190611bb8565b60405180910390a361170f83600084611719565b505050565b505050565b505050565b6060600060028360026117319190612714565b61173b9190611eb8565b67ffffffffffffffff8111156117545761175361276e565b5b6040519080825280601f01601f1916602001820160405280156117865781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106117be576117bd61279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106118225761182161279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026118629190612714565b61186c9190611eb8565b90505b600181111561190c577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106118ae576118ad61279d565b5b1a60f81b8282815181106118c5576118c461279d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611905906127cc565b905061186f565b5060008414611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790612841565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6119948161195f565b811461199f57600080fd5b50565b6000813590506119b18161198b565b92915050565b6000602082840312156119cd576119cc61195a565b5b60006119db848285016119a2565b91505092915050565b60008115159050919050565b6119f9816119e4565b82525050565b6000602082019050611a1460008301846119f0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a54578082015181840152602081019050611a39565b83811115611a63576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a8582611a1a565b611a8f8185611a25565b9350611a9f818560208601611a36565b611aa881611a69565b840191505092915050565b60006020820190508181036000830152611acd8184611a7a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b0082611ad5565b9050919050565b611b1081611af5565b8114611b1b57600080fd5b50565b600081359050611b2d81611b07565b92915050565b6000819050919050565b611b4681611b33565b8114611b5157600080fd5b50565b600081359050611b6381611b3d565b92915050565b60008060408385031215611b8057611b7f61195a565b5b6000611b8e85828601611b1e565b9250506020611b9f85828601611b54565b9150509250929050565b611bb281611b33565b82525050565b6000602082019050611bcd6000830184611ba9565b92915050565b600080600060608486031215611bec57611beb61195a565b5b6000611bfa86828701611b1e565b9350506020611c0b86828701611b1e565b9250506040611c1c86828701611b54565b9150509250925092565b6000819050919050565b611c3981611c26565b8114611c4457600080fd5b50565b600081359050611c5681611c30565b92915050565b600060208284031215611c7257611c7161195a565b5b6000611c8084828501611c47565b91505092915050565b611c9281611c26565b82525050565b6000602082019050611cad6000830184611c89565b92915050565b60008060408385031215611cca57611cc961195a565b5b6000611cd885828601611c47565b9250506020611ce985828601611b1e565b9150509250929050565b600060ff82169050919050565b611d0981611cf3565b82525050565b6000602082019050611d246000830184611d00565b92915050565b600060208284031215611d4057611d3f61195a565b5b6000611d4e84828501611b1e565b91505092915050565b60008060408385031215611d6e57611d6d61195a565b5b6000611d7c85828601611b1e565b9250506020611d8d85828601611b1e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dde57607f821691505b602082108103611df157611df0611d97565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611e53602f83611a25565b9150611e5e82611df7565b604082019050919050565b60006020820190508181036000830152611e8281611e46565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ec382611b33565b9150611ece83611b33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f02611e89565b5b828201905092915050565b7f4b4c45494e20546f6b656e3a2043616c6c6572206973206e6f742061206d696e60008201527f7465720000000000000000000000000000000000000000000000000000000000602082015250565b6000611f6a602383611a25565b9150611f7582611f0e565b604082019050919050565b60006020820190508181036000830152611f9981611f5d565b9050919050565b611fa981611af5565b82525050565b6000604082019050611fc46000830185611fa0565b611fd16020830184611ba9565b9392505050565b7f4b4c45494e20546f6b656e3a2043616c6c6572206973206e6f7420612062757260008201527f6e65720000000000000000000000000000000000000000000000000000000000602082015250565b6000612034602383611a25565b915061203f82611fd8565b604082019050919050565b6000602082019050818103600083015261206381612027565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120c6602583611a25565b91506120d18261206a565b604082019050919050565b600060208201905081810360008301526120f5816120b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612158602483611a25565b9150612163826120fc565b604082019050919050565b600060208201905081810360008301526121878161214b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121ea602283611a25565b91506121f58261218e565b604082019050919050565b60006020820190508181036000830152612219816121dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612256601d83611a25565b915061226182612220565b602082019050919050565b6000602082019050818103600083015261228581612249565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122e8602583611a25565b91506122f38261228c565b604082019050919050565b60006020820190508181036000830152612317816122db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061237a602383611a25565b91506123858261231e565b604082019050919050565b600060208201905081810360008301526123a98161236d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061240c602683611a25565b9150612417826123b0565b604082019050919050565b6000602082019050818103600083015261243b816123ff565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612483601783612442565b915061248e8261244d565b601782019050919050565b60006124a482611a1a565b6124ae8185612442565b93506124be818560208601611a36565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612500601183612442565b915061250b826124ca565b601182019050919050565b600061252182612476565b915061252d8285612499565b9150612538826124f3565b91506125448284612499565b91508190509392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612586601f83611a25565b915061259182612550565b602082019050919050565b600060208201905081810360008301526125b581612579565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612618602183611a25565b9150612623826125bc565b604082019050919050565b600060208201905081810360008301526126478161260b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126aa602283611a25565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b60006126eb82611b33565b91506126f683611b33565b92508282101561270957612708611e89565b5b828203905092915050565b600061271f82611b33565b915061272a83611b33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276357612762611e89565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006127d782611b33565b9150600082036127ea576127e9611e89565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061282b602083611a25565b9150612836826127f5565b602082019050919050565b6000602082019050818103600083015261285a8161281e565b905091905056fea264697066735822122095381bf217c18896650a047d9f62fe4c3015eeaeb9c3c9c63723a9a5c42b769c64736f6c634300080d0033

Deployed Bytecode Sourcemap

32179:1258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10561:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21286:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23637:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22406:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24418:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11988:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32466:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12381:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33333:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13429:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25122:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33113:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22577:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10857:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21505:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32887:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9948:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25865:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22910:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32397:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12773:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23166:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10561:204;10646:4;10685:32;10670:47;;;:11;:47;;;;:87;;;;10721:36;10745:11;10721:23;:36::i;:::-;10670:87;10663:94;;10561:204;;;:::o;21286:100::-;21340:13;21373:5;21366:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21286:100;:::o;23637:201::-;23720:4;23737:13;23753:12;:10;:12::i;:::-;23737:28;;23776:32;23785:5;23792:7;23801:6;23776:8;:32::i;:::-;23826:4;23819:11;;;23637:201;;;;:::o;22406:108::-;22467:7;22494:12;;22487:19;;22406:108;:::o;24418:295::-;24549:4;24566:15;24584:12;:10;:12::i;:::-;24566:30;;24607:38;24623:4;24629:7;24638:6;24607:15;:38::i;:::-;24656:27;24666:4;24672:2;24676:6;24656:9;:27::i;:::-;24701:4;24694:11;;;24418:295;;;;;:::o;11988:131::-;12062:7;12089:6;:12;12096:4;12089:12;;;;;;;;;;;:22;;;12082:29;;11988:131;;;:::o;32466:62::-;32504:24;32466:62;:::o;12381:147::-;12464:18;12477:4;12464:12;:18::i;:::-;10439:30;10450:4;10456:12;:10;:12::i;:::-;10439:10;:30::i;:::-;12495:25:::1;12506:4;12512:7;12495:10;:25::i;:::-;12381:147:::0;;;:::o;33333:101::-;33391:5;33416:10;;;;;;;;;;;33409:17;;33333:101;:::o;13429:218::-;13536:12;:10;:12::i;:::-;13525:23;;:7;:23;;;13517:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13613:26;13625:4;13631:7;13613:11;:26::i;:::-;13429:218;;:::o;25122:240::-;25210:4;25227:13;25243:12;:10;:12::i;:::-;25227:28;;25266:66;25275:5;25282:7;25321:10;25291:11;:18;25303:5;25291:18;;;;;;;;;;;;;;;:27;25310:7;25291:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;25266:8;:66::i;:::-;25350:4;25343:11;;;25122:240;;;;:::o;33113:212::-;33181:34;32435:24;33202:12;:10;:12::i;:::-;33181:7;:34::i;:::-;33173:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;33266:17;33272:2;33276:6;33266:5;:17::i;:::-;33299:18;33306:2;33310:6;33299:18;;;;;;;:::i;:::-;;;;;;;;33113:212;;:::o;22577:127::-;22651:7;22678:9;:18;22688:7;22678:18;;;;;;;;;;;;;;;;22671:25;;22577:127;;;:::o;10857:147::-;10943:4;10967:6;:12;10974:4;10967:12;;;;;;;;;;;:20;;:29;10988:7;10967:29;;;;;;;;;;;;;;;;;;;;;;;;;10960:36;;10857:147;;;;:::o;21505:104::-;21561:13;21594:7;21587:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21505:104;:::o;32887:218::-;32957:34;32504:24;32978:12;:10;:12::i;:::-;32957:7;:34::i;:::-;32949:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;33042:19;33048:4;33054:6;33042:5;:19::i;:::-;33077:20;33084:4;33090:6;33077:20;;;;;;;:::i;:::-;;;;;;;;32887:218;;:::o;9948:49::-;9993:4;9948:49;;;:::o;25865:438::-;25958:4;25975:13;25991:12;:10;:12::i;:::-;25975:28;;26014:24;26041:11;:18;26053:5;26041:18;;;;;;;;;;;;;;;:27;26060:7;26041:27;;;;;;;;;;;;;;;;26014:54;;26107:15;26087:16;:35;;26079:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26200:60;26209:5;26216:7;26244:15;26225:16;:34;26200:8;:60::i;:::-;26291:4;26284:11;;;;25865:438;;;;:::o;22910:193::-;22989:4;23006:13;23022:12;:10;:12::i;:::-;23006:28;;23045;23055:5;23062:2;23066:6;23045:9;:28::i;:::-;23091:4;23084:11;;;22910:193;;;;:::o;32397:62::-;32435:24;32397:62;:::o;12773:149::-;12857:18;12870:4;12857:12;:18::i;:::-;10439:30;10450:4;10456:12;:10;:12::i;:::-;10439:10;:30::i;:::-;12888:26:::1;12900:4;12906:7;12888:11;:26::i;:::-;12773:149:::0;;;:::o;23166:151::-;23255:7;23282:11;:18;23294:5;23282:18;;;;;;;;;;;;;;;:27;23301:7;23282:27;;;;;;;;;;;;;;;;23275:34;;23166:151;;;;:::o;7818:157::-;7903:4;7942:25;7927:40;;;:11;:40;;;;7920:47;;7818:157;;;:::o;3712:98::-;3765:7;3792:10;3785:17;;3712:98;:::o;29501:380::-;29654:1;29637:19;;:5;:19;;;29629:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29735:1;29716:21;;:7;:21;;;29708:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29819:6;29789:11;:18;29801:5;29789:18;;;;;;;;;;;;;;;:27;29808:7;29789:27;;;;;;;;;;;;;;;:36;;;;29857:7;29841:32;;29850:5;29841:32;;;29866:6;29841:32;;;;;;:::i;:::-;;;;;;;;29501:380;;;:::o;30168:453::-;30303:24;30330:25;30340:5;30347:7;30330:9;:25::i;:::-;30303:52;;30390:17;30370:16;:37;30366:248;;30452:6;30432:16;:26;;30424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30536:51;30545:5;30552:7;30580:6;30561:16;:25;30536:8;:51::i;:::-;30366:248;30292:329;30168:453;;;:::o;26782:671::-;26929:1;26913:18;;:4;:18;;;26905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27006:1;26992:16;;:2;:16;;;26984:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27061:38;27082:4;27088:2;27092:6;27061:20;:38::i;:::-;27112:19;27134:9;:15;27144:4;27134:15;;;;;;;;;;;;;;;;27112:37;;27183:6;27168:11;:21;;27160:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;27300:6;27286:11;:20;27268:9;:15;27278:4;27268:15;;;;;;;;;;;;;;;:38;;;;27345:6;27328:9;:13;27338:2;27328:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;27384:2;27369:26;;27378:4;27369:26;;;27388:6;27369:26;;;;;;:::i;:::-;;;;;;;;27408:37;27428:4;27434:2;27438:6;27408:19;:37::i;:::-;26894:559;26782:671;;;:::o;11294:505::-;11383:22;11391:4;11397:7;11383;:22::i;:::-;11378:414;;11571:41;11599:7;11571:41;;11609:2;11571:19;:41::i;:::-;11685:38;11713:4;11705:13;;11720:2;11685:19;:38::i;:::-;11476:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11422:358;;;;;;;;;;;:::i;:::-;;;;;;;;11378:414;11294:505;;:::o;14930:238::-;15014:22;15022:4;15028:7;15014;:22::i;:::-;15009:152;;15085:4;15053:6;:12;15060:4;15053:12;;;;;;;;;;;:20;;:29;15074:7;15053:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;15136:12;:10;:12::i;:::-;15109:40;;15127:7;15109:40;;15121:4;15109:40;;;;;;;;;;15009:152;14930:238;;:::o;15300:239::-;15384:22;15392:4;15398:7;15384;:22::i;:::-;15380:152;;;15455:5;15423:6;:12;15430:4;15423:12;;;;;;;;;;;:20;;:29;15444:7;15423:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;15507:12;:10;:12::i;:::-;15480:40;;15498:7;15480:40;;15492:4;15480:40;;;;;;;;;;15380:152;15300:239;;:::o;27740:399::-;27843:1;27824:21;;:7;:21;;;27816:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;27894:49;27923:1;27927:7;27936:6;27894:20;:49::i;:::-;27972:6;27956:12;;:22;;;;;;;:::i;:::-;;;;;;;;28011:6;27989:9;:18;27999:7;27989:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;28054:7;28033:37;;28050:1;28033:37;;;28063:6;28033:37;;;;;;:::i;:::-;;;;;;;;28083:48;28111:1;28115:7;28124:6;28083:19;:48::i;:::-;27740:399;;:::o;28472:591::-;28575:1;28556:21;;:7;:21;;;28548:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28628:49;28649:7;28666:1;28670:6;28628:20;:49::i;:::-;28690:22;28715:9;:18;28725:7;28715:18;;;;;;;;;;;;;;;;28690:43;;28770:6;28752:14;:24;;28744:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28889:6;28872:14;:23;28851:9;:18;28861:7;28851:18;;;;;;;;;;;;;;;:44;;;;28933:6;28917:12;;:22;;;;;;;:::i;:::-;;;;;;;;28983:1;28957:37;;28966:7;28957:37;;;28987:6;28957:37;;;;;;:::i;:::-;;;;;;;;29007:48;29027:7;29044:1;29048:6;29007:19;:48::i;:::-;28537:526;28472:591;;:::o;31221:125::-;;;;:::o;31950:124::-;;;;:::o;5588:451::-;5663:13;5689:19;5734:1;5725:6;5721:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5711:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5689:47;;5747:15;:6;5754:1;5747:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5773;:6;5780:1;5773:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5804:9;5829:1;5820:6;5816:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5804:26;;5799:135;5836:1;5832;:5;5799:135;;;5871:12;5892:3;5884:5;:11;5871:25;;;;;;;:::i;:::-;;;;;5859:6;5866:1;5859:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;5921:1;5911:11;;;;;5839:3;;;;:::i;:::-;;;5799:135;;;;5961:1;5952:5;:10;5944:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;6024:6;6010:21;;;5588:451;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:77::-;5265:7;5294:5;5283:16;;5228:77;;;:::o;5311:122::-;5384:24;5402:5;5384:24;:::i;:::-;5377:5;5374:35;5364:63;;5423:1;5420;5413:12;5364:63;5311:122;:::o;5439:139::-;5485:5;5523:6;5510:20;5501:29;;5539:33;5566:5;5539:33;:::i;:::-;5439:139;;;;:::o;5584:329::-;5643:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:119;;;5698:79;;:::i;:::-;5660:119;5818:1;5843:53;5888:7;5879:6;5868:9;5864:22;5843:53;:::i;:::-;5833:63;;5789:117;5584:329;;;;:::o;5919:118::-;6006:24;6024:5;6006:24;:::i;:::-;6001:3;5994:37;5919:118;;:::o;6043:222::-;6136:4;6174:2;6163:9;6159:18;6151:26;;6187:71;6255:1;6244:9;6240:17;6231:6;6187:71;:::i;:::-;6043:222;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:474::-;7584:6;7592;7641:2;7629:9;7620:7;7616:23;7612:32;7609:119;;;7647:79;;:::i;:::-;7609:119;7767:1;7792:53;7837:7;7828:6;7817:9;7813:22;7792:53;:::i;:::-;7782:63;;7738:117;7894:2;7920:53;7965:7;7956:6;7945:9;7941:22;7920:53;:::i;:::-;7910:63;;7865:118;7516:474;;;;;:::o;7996:180::-;8044:77;8041:1;8034:88;8141:4;8138:1;8131:15;8165:4;8162:1;8155:15;8182:320;8226:6;8263:1;8257:4;8253:12;8243:22;;8310:1;8304:4;8300:12;8331:18;8321:81;;8387:4;8379:6;8375:17;8365:27;;8321:81;8449:2;8441:6;8438:14;8418:18;8415:38;8412:84;;8468:18;;:::i;:::-;8412:84;8233:269;8182:320;;;:::o;8508:234::-;8648:34;8644:1;8636:6;8632:14;8625:58;8717:17;8712:2;8704:6;8700:15;8693:42;8508:234;:::o;8748:366::-;8890:3;8911:67;8975:2;8970:3;8911:67;:::i;:::-;8904:74;;8987:93;9076:3;8987:93;:::i;:::-;9105:2;9100:3;9096:12;9089:19;;8748:366;;;:::o;9120:419::-;9286:4;9324:2;9313:9;9309:18;9301:26;;9373:9;9367:4;9363:20;9359:1;9348:9;9344:17;9337:47;9401:131;9527:4;9401:131;:::i;:::-;9393:139;;9120:419;;;:::o;9545:180::-;9593:77;9590:1;9583:88;9690:4;9687:1;9680:15;9714:4;9711:1;9704:15;9731:305;9771:3;9790:20;9808:1;9790:20;:::i;:::-;9785:25;;9824:20;9842:1;9824:20;:::i;:::-;9819:25;;9978:1;9910:66;9906:74;9903:1;9900:81;9897:107;;;9984:18;;:::i;:::-;9897:107;10028:1;10025;10021:9;10014:16;;9731:305;;;;:::o;10042:222::-;10182:34;10178:1;10170:6;10166:14;10159:58;10251:5;10246:2;10238:6;10234:15;10227:30;10042:222;:::o;10270:366::-;10412:3;10433:67;10497:2;10492:3;10433:67;:::i;:::-;10426:74;;10509:93;10598:3;10509:93;:::i;:::-;10627:2;10622:3;10618:12;10611:19;;10270:366;;;:::o;10642:419::-;10808:4;10846:2;10835:9;10831:18;10823:26;;10895:9;10889:4;10885:20;10881:1;10870:9;10866:17;10859:47;10923:131;11049:4;10923:131;:::i;:::-;10915:139;;10642:419;;;:::o;11067:118::-;11154:24;11172:5;11154:24;:::i;:::-;11149:3;11142:37;11067:118;;:::o;11191:332::-;11312:4;11350:2;11339:9;11335:18;11327:26;;11363:71;11431:1;11420:9;11416:17;11407:6;11363:71;:::i;:::-;11444:72;11512:2;11501:9;11497:18;11488:6;11444:72;:::i;:::-;11191:332;;;;;:::o;11529:222::-;11669:34;11665:1;11657:6;11653:14;11646:58;11738:5;11733:2;11725:6;11721:15;11714:30;11529:222;:::o;11757:366::-;11899:3;11920:67;11984:2;11979:3;11920:67;:::i;:::-;11913:74;;11996:93;12085:3;11996:93;:::i;:::-;12114:2;12109:3;12105:12;12098:19;;11757:366;;;:::o;12129:419::-;12295:4;12333:2;12322:9;12318:18;12310:26;;12382:9;12376:4;12372:20;12368:1;12357:9;12353:17;12346:47;12410:131;12536:4;12410:131;:::i;:::-;12402:139;;12129:419;;;:::o;12554:224::-;12694:34;12690:1;12682:6;12678:14;12671:58;12763:7;12758:2;12750:6;12746:15;12739:32;12554:224;:::o;12784:366::-;12926:3;12947:67;13011:2;13006:3;12947:67;:::i;:::-;12940:74;;13023:93;13112:3;13023:93;:::i;:::-;13141:2;13136:3;13132:12;13125:19;;12784:366;;;:::o;13156:419::-;13322:4;13360:2;13349:9;13345:18;13337:26;;13409:9;13403:4;13399:20;13395:1;13384:9;13380:17;13373:47;13437:131;13563:4;13437:131;:::i;:::-;13429:139;;13156:419;;;:::o;13581:223::-;13721:34;13717:1;13709:6;13705:14;13698:58;13790:6;13785:2;13777:6;13773:15;13766:31;13581:223;:::o;13810:366::-;13952:3;13973:67;14037:2;14032:3;13973:67;:::i;:::-;13966:74;;14049:93;14138:3;14049:93;:::i;:::-;14167:2;14162:3;14158:12;14151:19;;13810:366;;;:::o;14182:419::-;14348:4;14386:2;14375:9;14371:18;14363:26;;14435:9;14429:4;14425:20;14421:1;14410:9;14406:17;14399:47;14463:131;14589:4;14463:131;:::i;:::-;14455:139;;14182:419;;;:::o;14607:221::-;14747:34;14743:1;14735:6;14731:14;14724:58;14816:4;14811:2;14803:6;14799:15;14792:29;14607:221;:::o;14834:366::-;14976:3;14997:67;15061:2;15056:3;14997:67;:::i;:::-;14990:74;;15073:93;15162:3;15073:93;:::i;:::-;15191:2;15186:3;15182:12;15175:19;;14834:366;;;:::o;15206:419::-;15372:4;15410:2;15399:9;15395:18;15387:26;;15459:9;15453:4;15449:20;15445:1;15434:9;15430:17;15423:47;15487:131;15613:4;15487:131;:::i;:::-;15479:139;;15206:419;;;:::o;15631:179::-;15771:31;15767:1;15759:6;15755:14;15748:55;15631:179;:::o;15816:366::-;15958:3;15979:67;16043:2;16038:3;15979:67;:::i;:::-;15972:74;;16055:93;16144:3;16055:93;:::i;:::-;16173:2;16168:3;16164:12;16157:19;;15816:366;;;:::o;16188:419::-;16354:4;16392:2;16381:9;16377:18;16369:26;;16441:9;16435:4;16431:20;16427:1;16416:9;16412:17;16405:47;16469:131;16595:4;16469:131;:::i;:::-;16461:139;;16188:419;;;:::o;16613:224::-;16753:34;16749:1;16741:6;16737:14;16730:58;16822:7;16817:2;16809:6;16805:15;16798:32;16613:224;:::o;16843:366::-;16985:3;17006:67;17070:2;17065:3;17006:67;:::i;:::-;16999:74;;17082:93;17171:3;17082:93;:::i;:::-;17200:2;17195:3;17191:12;17184:19;;16843:366;;;:::o;17215:419::-;17381:4;17419:2;17408:9;17404:18;17396:26;;17468:9;17462:4;17458:20;17454:1;17443:9;17439:17;17432:47;17496:131;17622:4;17496:131;:::i;:::-;17488:139;;17215:419;;;:::o;17640:222::-;17780:34;17776:1;17768:6;17764:14;17757:58;17849:5;17844:2;17836:6;17832:15;17825:30;17640:222;:::o;17868:366::-;18010:3;18031:67;18095:2;18090:3;18031:67;:::i;:::-;18024:74;;18107:93;18196:3;18107:93;:::i;:::-;18225:2;18220:3;18216:12;18209:19;;17868:366;;;:::o;18240:419::-;18406:4;18444:2;18433:9;18429:18;18421:26;;18493:9;18487:4;18483:20;18479:1;18468:9;18464:17;18457:47;18521:131;18647:4;18521:131;:::i;:::-;18513:139;;18240:419;;;:::o;18665:225::-;18805:34;18801:1;18793:6;18789:14;18782:58;18874:8;18869:2;18861:6;18857:15;18850:33;18665:225;:::o;18896:366::-;19038:3;19059:67;19123:2;19118:3;19059:67;:::i;:::-;19052:74;;19135:93;19224:3;19135:93;:::i;:::-;19253:2;19248:3;19244:12;19237:19;;18896:366;;;:::o;19268:419::-;19434:4;19472:2;19461:9;19457:18;19449:26;;19521:9;19515:4;19511:20;19507:1;19496:9;19492:17;19485:47;19549:131;19675:4;19549:131;:::i;:::-;19541:139;;19268:419;;;:::o;19693:148::-;19795:11;19832:3;19817:18;;19693:148;;;;:::o;19847:173::-;19987:25;19983:1;19975:6;19971:14;19964:49;19847:173;:::o;20026:402::-;20186:3;20207:85;20289:2;20284:3;20207:85;:::i;:::-;20200:92;;20301:93;20390:3;20301:93;:::i;:::-;20419:2;20414:3;20410:12;20403:19;;20026:402;;;:::o;20434:377::-;20540:3;20568:39;20601:5;20568:39;:::i;:::-;20623:89;20705:6;20700:3;20623:89;:::i;:::-;20616:96;;20721:52;20766:6;20761:3;20754:4;20747:5;20743:16;20721:52;:::i;:::-;20798:6;20793:3;20789:16;20782:23;;20544:267;20434:377;;;;:::o;20817:167::-;20957:19;20953:1;20945:6;20941:14;20934:43;20817:167;:::o;20990:402::-;21150:3;21171:85;21253:2;21248:3;21171:85;:::i;:::-;21164:92;;21265:93;21354:3;21265:93;:::i;:::-;21383:2;21378:3;21374:12;21367:19;;20990:402;;;:::o;21398:967::-;21780:3;21802:148;21946:3;21802:148;:::i;:::-;21795:155;;21967:95;22058:3;22049:6;21967:95;:::i;:::-;21960:102;;22079:148;22223:3;22079:148;:::i;:::-;22072:155;;22244:95;22335:3;22326:6;22244:95;:::i;:::-;22237:102;;22356:3;22349:10;;21398:967;;;;;:::o;22371:181::-;22511:33;22507:1;22499:6;22495:14;22488:57;22371:181;:::o;22558:366::-;22700:3;22721:67;22785:2;22780:3;22721:67;:::i;:::-;22714:74;;22797:93;22886:3;22797:93;:::i;:::-;22915:2;22910:3;22906:12;22899:19;;22558:366;;;:::o;22930:419::-;23096:4;23134:2;23123:9;23119:18;23111:26;;23183:9;23177:4;23173:20;23169:1;23158:9;23154:17;23147:47;23211:131;23337:4;23211:131;:::i;:::-;23203:139;;22930:419;;;:::o;23355:220::-;23495:34;23491:1;23483:6;23479:14;23472:58;23564:3;23559:2;23551:6;23547:15;23540:28;23355:220;:::o;23581:366::-;23723:3;23744:67;23808:2;23803:3;23744:67;:::i;:::-;23737:74;;23820:93;23909:3;23820:93;:::i;:::-;23938:2;23933:3;23929:12;23922:19;;23581:366;;;:::o;23953:419::-;24119:4;24157:2;24146:9;24142:18;24134:26;;24206:9;24200:4;24196:20;24192:1;24181:9;24177:17;24170:47;24234:131;24360:4;24234:131;:::i;:::-;24226:139;;23953:419;;;:::o;24378:221::-;24518:34;24514:1;24506:6;24502:14;24495:58;24587:4;24582:2;24574:6;24570:15;24563:29;24378:221;:::o;24605:366::-;24747:3;24768:67;24832:2;24827:3;24768:67;:::i;:::-;24761:74;;24844:93;24933:3;24844:93;:::i;:::-;24962:2;24957:3;24953:12;24946:19;;24605:366;;;:::o;24977:419::-;25143:4;25181:2;25170:9;25166:18;25158:26;;25230:9;25224:4;25220:20;25216:1;25205:9;25201:17;25194:47;25258:131;25384:4;25258:131;:::i;:::-;25250:139;;24977:419;;;:::o;25402:191::-;25442:4;25462:20;25480:1;25462:20;:::i;:::-;25457:25;;25496:20;25514:1;25496:20;:::i;:::-;25491:25;;25535:1;25532;25529:8;25526:34;;;25540:18;;:::i;:::-;25526:34;25585:1;25582;25578:9;25570:17;;25402:191;;;;:::o;25599:348::-;25639:7;25662:20;25680:1;25662:20;:::i;:::-;25657:25;;25696:20;25714:1;25696:20;:::i;:::-;25691:25;;25884:1;25816:66;25812:74;25809:1;25806:81;25801:1;25794:9;25787:17;25783:105;25780:131;;;25891:18;;:::i;:::-;25780:131;25939:1;25936;25932:9;25921:20;;25599:348;;;;:::o;25953:180::-;26001:77;25998:1;25991:88;26098:4;26095:1;26088:15;26122:4;26119:1;26112:15;26139:180;26187:77;26184:1;26177:88;26284:4;26281:1;26274:15;26308:4;26305:1;26298:15;26325:171;26364:3;26387:24;26405:5;26387:24;:::i;:::-;26378:33;;26433:4;26426:5;26423:15;26420:41;;26441:18;;:::i;:::-;26420:41;26488:1;26481:5;26477:13;26470:20;;26325:171;;;:::o;26502:182::-;26642:34;26638:1;26630:6;26626:14;26619:58;26502:182;:::o;26690:366::-;26832:3;26853:67;26917:2;26912:3;26853:67;:::i;:::-;26846:74;;26929:93;27018:3;26929:93;:::i;:::-;27047:2;27042:3;27038:12;27031:19;;26690:366;;;:::o;27062:419::-;27228:4;27266:2;27255:9;27251:18;27243:26;;27315:9;27309:4;27305:20;27301:1;27290:9;27286:17;27279:47;27343:131;27469:4;27343:131;:::i;:::-;27335:139;;27062:419;;;:::o

Swarm Source

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