ETH Price: $3,456.17 (-0.78%)
Gas: 2 Gwei

Token

Paradox (PARA)
 

Overview

Max Total Supply

849,994,765.999999876599998766 PARA

Holders

904

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 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:
Paradox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

// File: @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/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.7.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);
        _;
    }

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @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.7.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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: Paradox.sol


pragma solidity ^0.8.4;




contract Paradox is ERC20, ERC20Burnable, AccessControl {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor() ERC20("Paradox", "PARA") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
    }

    function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) {
        _mint(to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f50617261646f78000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504152410000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000430565b508060049080519060200190620000af92919062000430565b505050620000f233620000c76200013f60201b60201c565b600a620000d5919062000620565b633b9aca00620000e691906200075d565b6200014860201b60201c565b620001076000801b33620002c160201b60201c565b620001397f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002c160201b60201c565b6200089f565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b29062000518565b60405180910390fd5b620001cf60008383620003b360201b60201c565b8060026000828254620001e3919062000568565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200023a919062000568565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002a191906200053a565b60405180910390a3620002bd60008383620003b860201b60201c565b5050565b620002d38282620003bd60201b60201c565b620003af5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003546200042860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200043e90620007d5565b90600052602060002090601f016020900481019282620004625760008555620004ae565b82601f106200047d57805160ff1916838001178555620004ae565b82800160010185558215620004ae579182015b82811115620004ad57825182559160200191906001019062000490565b5b509050620004bd9190620004c1565b5090565b5b80821115620004dc576000816000905550600101620004c2565b5090565b6000620004ef601f8362000557565b9150620004fc8262000876565b602082019050919050565b6200051281620007be565b82525050565b600060208201905081810360008301526200053381620004e0565b9050919050565b600060208201905062000551600083018462000507565b92915050565b600082825260208201905092915050565b60006200057582620007be565b91506200058283620007be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005ba57620005b96200080b565b5b828201905092915050565b6000808291508390505b60018511156200061757808604811115620005ef57620005ee6200080b565b5b6001851615620005ff5780820291505b80810290506200060f8562000869565b9450620005cf565b94509492505050565b60006200062d82620007be565b91506200063a83620007c8565b9250620006697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000671565b905092915050565b60008262000683576001905062000756565b8162000693576000905062000756565b8160018114620006ac5760028114620006b757620006ed565b600191505062000756565b60ff841115620006cc57620006cb6200080b565b5b8360020a915084821115620006e657620006e56200080b565b5b5062000756565b5060208310610133831016604e8410600b8410161715620007275782820a9050838111156200072157620007206200080b565b5b62000756565b620007368484846001620005c5565b9250905081840481111562000750576200074f6200080b565b5b81810290505b9392505050565b60006200076a82620007be565b91506200077783620007be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007b357620007b26200080b565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007ee57607f821691505b602082108114156200080557620008046200083a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61255980620008af6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806342966c68116100b8578063a217fddf1161007c578063a217fddf1461039b578063a457c2d7146103b9578063a9059cbb146103e9578063d539139314610419578063d547741f14610437578063dd62ed3e1461045357610142565b806342966c68146102e557806370a082311461030157806379cc67901461033157806391d148541461034d57806395d89b411461037d57610142565b8063248a9ca31161010a578063248a9ca3146102135780632f2ff15d14610243578063313ce5671461025f57806336568abe1461027d578063395093511461029957806340c10f19146102c957610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c919061190a565b610483565b60405161016e9190611c2e565b60405180910390f35b61017f6104fd565b60405161018c9190611c64565b60405180910390f35b6101af60048036038101906101aa919061185d565b61058f565b6040516101bc9190611c2e565b60405180910390f35b6101cd6105b2565b6040516101da9190611e06565b60405180910390f35b6101fd60048036038101906101f8919061180a565b6105bc565b60405161020a9190611c2e565b60405180910390f35b61022d6004803603810190610228919061189d565b6105eb565b60405161023a9190611c49565b60405180910390f35b61025d600480360381019061025891906118ca565b61060b565b005b61026761062c565b6040516102749190611e21565b60405180910390f35b610297600480360381019061029291906118ca565b610635565b005b6102b360048036038101906102ae919061185d565b6106b8565b6040516102c09190611c2e565b60405180910390f35b6102e360048036038101906102de919061185d565b6106ef565b005b6102ff60048036038101906102fa9190611937565b610728565b005b61031b6004803603810190610316919061179d565b61073c565b6040516103289190611e06565b60405180910390f35b61034b6004803603810190610346919061185d565b610784565b005b610367600480360381019061036291906118ca565b6107a4565b6040516103749190611c2e565b60405180910390f35b61038561080f565b6040516103929190611c64565b60405180910390f35b6103a36108a1565b6040516103b09190611c49565b60405180910390f35b6103d360048036038101906103ce919061185d565b6108a8565b6040516103e09190611c2e565b60405180910390f35b61040360048036038101906103fe919061185d565b61091f565b6040516104109190611c2e565b60405180910390f35b610421610942565b60405161042e9190611c49565b60405180910390f35b610451600480360381019061044c91906118ca565b610966565b005b61046d600480360381019061046891906117ca565b610987565b60405161047a9190611e06565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f657506104f582610a0e565b5b9050919050565b60606003805461050c9061202f565b80601f01602080910402602001604051908101604052809291908181526020018280546105389061202f565b80156105855780601f1061055a57610100808354040283529160200191610585565b820191906000526020600020905b81548152906001019060200180831161056857829003601f168201915b5050505050905090565b60008061059a610a78565b90506105a7818585610a80565b600191505092915050565b6000600254905090565b6000806105c7610a78565b90506105d4858285610c4b565b6105df858585610cd7565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b610614826105eb565b61061d81610f58565b6106278383610f6c565b505050565b60006012905090565b61063d610a78565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a190611dc6565b60405180910390fd5b6106b4828261104d565b5050565b6000806106c3610a78565b90506106e48185856106d58589610987565b6106df9190611e63565b610a80565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661071981610f58565b610723838361112f565b505050565b610739610733610a78565b8261128f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61079682610790610a78565b83610c4b565b6107a0828261128f565b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461081e9061202f565b80601f016020809104026020016040519081016040528092919081815260200182805461084a9061202f565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b6000801b81565b6000806108b3610a78565b905060006108c18286610987565b905083811015610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90611da6565b60405180910390fd5b6109138286868403610a80565b60019250505092915050565b60008061092a610a78565b9050610937818585610cd7565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61096f826105eb565b61097881610f58565b610982838361104d565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790611d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790611ce6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3e9190611e06565b60405180910390a3505050565b6000610c578484610987565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd15781811015610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90611d06565b60405180910390fd5b610cd08484848403610a80565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611d66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611ca6565b60405180910390fd5b610dc2838383611466565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611d26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610edb9190611e63565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f9190611e06565b60405180910390a3610f5284848461146b565b50505050565b610f6981610f64610a78565b611470565b50565b610f7682826107a4565b6110495760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610fee610a78565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61105782826107a4565b1561112b5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110d0610a78565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690611de6565b60405180910390fd5b6111ab60008383611466565b80600260008282546111bd9190611e63565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112129190611e63565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112779190611e06565b60405180910390a361128b6000838361146b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690611d46565b60405180910390fd5b61130b82600083611466565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890611cc6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113e89190611f13565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161144d9190611e06565b60405180910390a36114618360008461146b565b505050565b505050565b505050565b61147a82826107a4565b6115095761149f8173ffffffffffffffffffffffffffffffffffffffff16601461150d565b6114ad8360001c602061150d565b6040516020016114be929190611bf4565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115009190611c64565b60405180910390fd5b5050565b6060600060028360026115209190611eb9565b61152a9190611e63565b67ffffffffffffffff811115611543576115426120ee565b5b6040519080825280601f01601f1916602001820160405280156115755781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106115ad576115ac6120bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611611576116106120bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026116519190611eb9565b61165b9190611e63565b90505b60018111156116fb577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061169d5761169c6120bf565b5b1a60f81b8282815181106116b4576116b36120bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806116f490612005565b905061165e565b506000841461173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690611c86565b60405180910390fd5b8091505092915050565b600081359050611758816124c7565b92915050565b60008135905061176d816124de565b92915050565b600081359050611782816124f5565b92915050565b6000813590506117978161250c565b92915050565b6000602082840312156117b3576117b261211d565b5b60006117c184828501611749565b91505092915050565b600080604083850312156117e1576117e061211d565b5b60006117ef85828601611749565b925050602061180085828601611749565b9150509250929050565b6000806000606084860312156118235761182261211d565b5b600061183186828701611749565b935050602061184286828701611749565b925050604061185386828701611788565b9150509250925092565b600080604083850312156118745761187361211d565b5b600061188285828601611749565b925050602061189385828601611788565b9150509250929050565b6000602082840312156118b3576118b261211d565b5b60006118c18482850161175e565b91505092915050565b600080604083850312156118e1576118e061211d565b5b60006118ef8582860161175e565b925050602061190085828601611749565b9150509250929050565b6000602082840312156119205761191f61211d565b5b600061192e84828501611773565b91505092915050565b60006020828403121561194d5761194c61211d565b5b600061195b84828501611788565b91505092915050565b61196d81611f59565b82525050565b61197c81611f65565b82525050565b600061198d82611e3c565b6119978185611e47565b93506119a7818560208601611fd2565b6119b081612122565b840191505092915050565b60006119c682611e3c565b6119d08185611e58565b93506119e0818560208601611fd2565b80840191505092915050565b60006119f9602083611e47565b9150611a0482612133565b602082019050919050565b6000611a1c602383611e47565b9150611a278261215c565b604082019050919050565b6000611a3f602283611e47565b9150611a4a826121ab565b604082019050919050565b6000611a62602283611e47565b9150611a6d826121fa565b604082019050919050565b6000611a85601d83611e47565b9150611a9082612249565b602082019050919050565b6000611aa8602683611e47565b9150611ab382612272565b604082019050919050565b6000611acb602183611e47565b9150611ad6826122c1565b604082019050919050565b6000611aee602583611e47565b9150611af982612310565b604082019050919050565b6000611b11602483611e47565b9150611b1c8261235f565b604082019050919050565b6000611b34601783611e58565b9150611b3f826123ae565b601782019050919050565b6000611b57602583611e47565b9150611b62826123d7565b604082019050919050565b6000611b7a601183611e58565b9150611b8582612426565b601182019050919050565b6000611b9d602f83611e47565b9150611ba88261244f565b604082019050919050565b6000611bc0601f83611e47565b9150611bcb8261249e565b602082019050919050565b611bdf81611fbb565b82525050565b611bee81611fc5565b82525050565b6000611bff82611b27565b9150611c0b82856119bb565b9150611c1682611b6d565b9150611c2282846119bb565b91508190509392505050565b6000602082019050611c436000830184611964565b92915050565b6000602082019050611c5e6000830184611973565b92915050565b60006020820190508181036000830152611c7e8184611982565b905092915050565b60006020820190508181036000830152611c9f816119ec565b9050919050565b60006020820190508181036000830152611cbf81611a0f565b9050919050565b60006020820190508181036000830152611cdf81611a32565b9050919050565b60006020820190508181036000830152611cff81611a55565b9050919050565b60006020820190508181036000830152611d1f81611a78565b9050919050565b60006020820190508181036000830152611d3f81611a9b565b9050919050565b60006020820190508181036000830152611d5f81611abe565b9050919050565b60006020820190508181036000830152611d7f81611ae1565b9050919050565b60006020820190508181036000830152611d9f81611b04565b9050919050565b60006020820190508181036000830152611dbf81611b4a565b9050919050565b60006020820190508181036000830152611ddf81611b90565b9050919050565b60006020820190508181036000830152611dff81611bb3565b9050919050565b6000602082019050611e1b6000830184611bd6565b92915050565b6000602082019050611e366000830184611be5565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611e6e82611fbb565b9150611e7983611fbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611eae57611ead612061565b5b828201905092915050565b6000611ec482611fbb565b9150611ecf83611fbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f0857611f07612061565b5b828202905092915050565b6000611f1e82611fbb565b9150611f2983611fbb565b925082821015611f3c57611f3b612061565b5b828203905092915050565b6000611f5282611f9b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ff0578082015181840152602081019050611fd5565b83811115611fff576000848401525b50505050565b600061201082611fbb565b9150600082141561202457612023612061565b5b600182039050919050565b6000600282049050600182168061204757607f821691505b6020821081141561205b5761205a612090565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6124d081611f47565b81146124db57600080fd5b50565b6124e781611f65565b81146124f257600080fd5b50565b6124fe81611f6f565b811461250957600080fd5b50565b61251581611fbb565b811461252057600080fd5b5056fea2646970667358221220fbf53955a2224a0c4737c6052de068c2bd488d82725bfa3ccdb8febe5ef1c3ac64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806342966c68116100b8578063a217fddf1161007c578063a217fddf1461039b578063a457c2d7146103b9578063a9059cbb146103e9578063d539139314610419578063d547741f14610437578063dd62ed3e1461045357610142565b806342966c68146102e557806370a082311461030157806379cc67901461033157806391d148541461034d57806395d89b411461037d57610142565b8063248a9ca31161010a578063248a9ca3146102135780632f2ff15d14610243578063313ce5671461025f57806336568abe1461027d578063395093511461029957806340c10f19146102c957610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c919061190a565b610483565b60405161016e9190611c2e565b60405180910390f35b61017f6104fd565b60405161018c9190611c64565b60405180910390f35b6101af60048036038101906101aa919061185d565b61058f565b6040516101bc9190611c2e565b60405180910390f35b6101cd6105b2565b6040516101da9190611e06565b60405180910390f35b6101fd60048036038101906101f8919061180a565b6105bc565b60405161020a9190611c2e565b60405180910390f35b61022d6004803603810190610228919061189d565b6105eb565b60405161023a9190611c49565b60405180910390f35b61025d600480360381019061025891906118ca565b61060b565b005b61026761062c565b6040516102749190611e21565b60405180910390f35b610297600480360381019061029291906118ca565b610635565b005b6102b360048036038101906102ae919061185d565b6106b8565b6040516102c09190611c2e565b60405180910390f35b6102e360048036038101906102de919061185d565b6106ef565b005b6102ff60048036038101906102fa9190611937565b610728565b005b61031b6004803603810190610316919061179d565b61073c565b6040516103289190611e06565b60405180910390f35b61034b6004803603810190610346919061185d565b610784565b005b610367600480360381019061036291906118ca565b6107a4565b6040516103749190611c2e565b60405180910390f35b61038561080f565b6040516103929190611c64565b60405180910390f35b6103a36108a1565b6040516103b09190611c49565b60405180910390f35b6103d360048036038101906103ce919061185d565b6108a8565b6040516103e09190611c2e565b60405180910390f35b61040360048036038101906103fe919061185d565b61091f565b6040516104109190611c2e565b60405180910390f35b610421610942565b60405161042e9190611c49565b60405180910390f35b610451600480360381019061044c91906118ca565b610966565b005b61046d600480360381019061046891906117ca565b610987565b60405161047a9190611e06565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f657506104f582610a0e565b5b9050919050565b60606003805461050c9061202f565b80601f01602080910402602001604051908101604052809291908181526020018280546105389061202f565b80156105855780601f1061055a57610100808354040283529160200191610585565b820191906000526020600020905b81548152906001019060200180831161056857829003601f168201915b5050505050905090565b60008061059a610a78565b90506105a7818585610a80565b600191505092915050565b6000600254905090565b6000806105c7610a78565b90506105d4858285610c4b565b6105df858585610cd7565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b610614826105eb565b61061d81610f58565b6106278383610f6c565b505050565b60006012905090565b61063d610a78565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a190611dc6565b60405180910390fd5b6106b4828261104d565b5050565b6000806106c3610a78565b90506106e48185856106d58589610987565b6106df9190611e63565b610a80565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661071981610f58565b610723838361112f565b505050565b610739610733610a78565b8261128f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61079682610790610a78565b83610c4b565b6107a0828261128f565b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461081e9061202f565b80601f016020809104026020016040519081016040528092919081815260200182805461084a9061202f565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b6000801b81565b6000806108b3610a78565b905060006108c18286610987565b905083811015610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90611da6565b60405180910390fd5b6109138286868403610a80565b60019250505092915050565b60008061092a610a78565b9050610937818585610cd7565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61096f826105eb565b61097881610f58565b610982838361104d565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790611d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790611ce6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3e9190611e06565b60405180910390a3505050565b6000610c578484610987565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd15781811015610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90611d06565b60405180910390fd5b610cd08484848403610a80565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611d66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611ca6565b60405180910390fd5b610dc2838383611466565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611d26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610edb9190611e63565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3f9190611e06565b60405180910390a3610f5284848461146b565b50505050565b610f6981610f64610a78565b611470565b50565b610f7682826107a4565b6110495760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610fee610a78565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61105782826107a4565b1561112b5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110d0610a78565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690611de6565b60405180910390fd5b6111ab60008383611466565b80600260008282546111bd9190611e63565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112129190611e63565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112779190611e06565b60405180910390a361128b6000838361146b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690611d46565b60405180910390fd5b61130b82600083611466565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138890611cc6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113e89190611f13565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161144d9190611e06565b60405180910390a36114618360008461146b565b505050565b505050565b505050565b61147a82826107a4565b6115095761149f8173ffffffffffffffffffffffffffffffffffffffff16601461150d565b6114ad8360001c602061150d565b6040516020016114be929190611bf4565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115009190611c64565b60405180910390fd5b5050565b6060600060028360026115209190611eb9565b61152a9190611e63565b67ffffffffffffffff811115611543576115426120ee565b5b6040519080825280601f01601f1916602001820160405280156115755781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106115ad576115ac6120bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611611576116106120bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026116519190611eb9565b61165b9190611e63565b90505b60018111156116fb577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061169d5761169c6120bf565b5b1a60f81b8282815181106116b4576116b36120bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806116f490612005565b905061165e565b506000841461173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690611c86565b60405180910390fd5b8091505092915050565b600081359050611758816124c7565b92915050565b60008135905061176d816124de565b92915050565b600081359050611782816124f5565b92915050565b6000813590506117978161250c565b92915050565b6000602082840312156117b3576117b261211d565b5b60006117c184828501611749565b91505092915050565b600080604083850312156117e1576117e061211d565b5b60006117ef85828601611749565b925050602061180085828601611749565b9150509250929050565b6000806000606084860312156118235761182261211d565b5b600061183186828701611749565b935050602061184286828701611749565b925050604061185386828701611788565b9150509250925092565b600080604083850312156118745761187361211d565b5b600061188285828601611749565b925050602061189385828601611788565b9150509250929050565b6000602082840312156118b3576118b261211d565b5b60006118c18482850161175e565b91505092915050565b600080604083850312156118e1576118e061211d565b5b60006118ef8582860161175e565b925050602061190085828601611749565b9150509250929050565b6000602082840312156119205761191f61211d565b5b600061192e84828501611773565b91505092915050565b60006020828403121561194d5761194c61211d565b5b600061195b84828501611788565b91505092915050565b61196d81611f59565b82525050565b61197c81611f65565b82525050565b600061198d82611e3c565b6119978185611e47565b93506119a7818560208601611fd2565b6119b081612122565b840191505092915050565b60006119c682611e3c565b6119d08185611e58565b93506119e0818560208601611fd2565b80840191505092915050565b60006119f9602083611e47565b9150611a0482612133565b602082019050919050565b6000611a1c602383611e47565b9150611a278261215c565b604082019050919050565b6000611a3f602283611e47565b9150611a4a826121ab565b604082019050919050565b6000611a62602283611e47565b9150611a6d826121fa565b604082019050919050565b6000611a85601d83611e47565b9150611a9082612249565b602082019050919050565b6000611aa8602683611e47565b9150611ab382612272565b604082019050919050565b6000611acb602183611e47565b9150611ad6826122c1565b604082019050919050565b6000611aee602583611e47565b9150611af982612310565b604082019050919050565b6000611b11602483611e47565b9150611b1c8261235f565b604082019050919050565b6000611b34601783611e58565b9150611b3f826123ae565b601782019050919050565b6000611b57602583611e47565b9150611b62826123d7565b604082019050919050565b6000611b7a601183611e58565b9150611b8582612426565b601182019050919050565b6000611b9d602f83611e47565b9150611ba88261244f565b604082019050919050565b6000611bc0601f83611e47565b9150611bcb8261249e565b602082019050919050565b611bdf81611fbb565b82525050565b611bee81611fc5565b82525050565b6000611bff82611b27565b9150611c0b82856119bb565b9150611c1682611b6d565b9150611c2282846119bb565b91508190509392505050565b6000602082019050611c436000830184611964565b92915050565b6000602082019050611c5e6000830184611973565b92915050565b60006020820190508181036000830152611c7e8184611982565b905092915050565b60006020820190508181036000830152611c9f816119ec565b9050919050565b60006020820190508181036000830152611cbf81611a0f565b9050919050565b60006020820190508181036000830152611cdf81611a32565b9050919050565b60006020820190508181036000830152611cff81611a55565b9050919050565b60006020820190508181036000830152611d1f81611a78565b9050919050565b60006020820190508181036000830152611d3f81611a9b565b9050919050565b60006020820190508181036000830152611d5f81611abe565b9050919050565b60006020820190508181036000830152611d7f81611ae1565b9050919050565b60006020820190508181036000830152611d9f81611b04565b9050919050565b60006020820190508181036000830152611dbf81611b4a565b9050919050565b60006020820190508181036000830152611ddf81611b90565b9050919050565b60006020820190508181036000830152611dff81611bb3565b9050919050565b6000602082019050611e1b6000830184611bd6565b92915050565b6000602082019050611e366000830184611be5565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611e6e82611fbb565b9150611e7983611fbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611eae57611ead612061565b5b828201905092915050565b6000611ec482611fbb565b9150611ecf83611fbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f0857611f07612061565b5b828202905092915050565b6000611f1e82611fbb565b9150611f2983611fbb565b925082821015611f3c57611f3b612061565b5b828203905092915050565b6000611f5282611f9b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ff0578082015181840152602081019050611fd5565b83811115611fff576000848401525b50505050565b600061201082611fbb565b9150600082141561202457612023612061565b5b600182039050919050565b6000600282049050600182168061204757607f821691505b6020821081141561205b5761205a612090565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6124d081611f47565b81146124db57600080fd5b50565b6124e781611f65565b81146124f257600080fd5b50565b6124fe81611f6f565b811461250957600080fd5b50565b61251581611fbb565b811461252057600080fd5b5056fea2646970667358221220fbf53955a2224a0c4737c6052de068c2bd488d82725bfa3ccdb8febe5ef1c3ac64736f6c63430008070033

Deployed Bytecode Sourcemap

34405:457:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10954:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22396:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24747:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23516:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25528:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12790:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13231:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23358:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14375:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26232:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34752:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33765:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23687:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34175:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11250:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22615:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10355:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26973:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24020:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34468:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13671:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24276:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10954:204;11039:4;11078:32;11063:47;;;:11;:47;;;;:87;;;;11114:36;11138:11;11114:23;:36::i;:::-;11063:87;11056:94;;10954:204;;;:::o;22396:100::-;22450:13;22483:5;22476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22396:100;:::o;24747:201::-;24830:4;24847:13;24863:12;:10;:12::i;:::-;24847:28;;24886:32;24895:5;24902:7;24911:6;24886:8;:32::i;:::-;24936:4;24929:11;;;24747:201;;;;:::o;23516:108::-;23577:7;23604:12;;23597:19;;23516:108;:::o;25528:295::-;25659:4;25676:15;25694:12;:10;:12::i;:::-;25676:30;;25717:38;25733:4;25739:7;25748:6;25717:15;:38::i;:::-;25766:27;25776:4;25782:2;25786:6;25766:9;:27::i;:::-;25811:4;25804:11;;;25528:295;;;;;:::o;12790:131::-;12864:7;12891:6;:12;12898:4;12891:12;;;;;;;;;;;:22;;;12884:29;;12790:131;;;:::o;13231:147::-;13314:18;13327:4;13314:12;:18::i;:::-;10846:16;10857:4;10846:10;:16::i;:::-;13345:25:::1;13356:4;13362:7;13345:10;:25::i;:::-;13231:147:::0;;;:::o;23358:93::-;23416:5;23441:2;23434:9;;23358:93;:::o;14375:218::-;14482:12;:10;:12::i;:::-;14471:23;;:7;:23;;;14463:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;14559:26;14571:4;14577:7;14559:11;:26::i;:::-;14375:218;;:::o;26232:238::-;26320:4;26337:13;26353:12;:10;:12::i;:::-;26337:28;;26376:64;26385:5;26392:7;26429:10;26401:25;26411:5;26418:7;26401:9;:25::i;:::-;:38;;;;:::i;:::-;26376:8;:64::i;:::-;26458:4;26451:11;;;26232:238;;;;:::o;34752:107::-;34506:24;10846:16;10857:4;10846:10;:16::i;:::-;34834:17:::1;34840:2;34844:6;34834:5;:17::i;:::-;34752:107:::0;;;:::o;33765:91::-;33821:27;33827:12;:10;:12::i;:::-;33841:6;33821:5;:27::i;:::-;33765:91;:::o;23687:127::-;23761:7;23788:9;:18;23798:7;23788:18;;;;;;;;;;;;;;;;23781:25;;23687:127;;;:::o;34175:164::-;34252:46;34268:7;34277:12;:10;:12::i;:::-;34291:6;34252:15;:46::i;:::-;34309:22;34315:7;34324:6;34309:5;:22::i;:::-;34175:164;;:::o;11250:147::-;11336:4;11360:6;:12;11367:4;11360:12;;;;;;;;;;;:20;;:29;11381:7;11360:29;;;;;;;;;;;;;;;;;;;;;;;;;11353:36;;11250:147;;;;:::o;22615:104::-;22671:13;22704:7;22697:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22615:104;:::o;10355:49::-;10400:4;10355:49;;;:::o;26973:436::-;27066:4;27083:13;27099:12;:10;:12::i;:::-;27083:28;;27122:24;27149:25;27159:5;27166:7;27149:9;:25::i;:::-;27122:52;;27213:15;27193:16;:35;;27185:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;27306:60;27315:5;27322:7;27350:15;27331:16;:34;27306:8;:60::i;:::-;27397:4;27390:11;;;;26973:436;;;;:::o;24020:193::-;24099:4;24116:13;24132:12;:10;:12::i;:::-;24116:28;;24155;24165:5;24172:2;24176:6;24155:9;:28::i;:::-;24201:4;24194:11;;;24020:193;;;;:::o;34468:62::-;34506:24;34468:62;:::o;13671:149::-;13755:18;13768:4;13755:12;:18::i;:::-;10846:16;10857:4;10846:10;:16::i;:::-;13786:26:::1;13798:4;13804:7;13786:11;:26::i;:::-;13671:149:::0;;;:::o;24276:151::-;24365:7;24392:11;:18;24404:5;24392:18;;;;;;;;;;;;;;;:27;24411:7;24392:27;;;;;;;;;;;;;;;;24385:34;;24276:151;;;;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;8163:98::-;8216:7;8243:10;8236:17;;8163:98;:::o;30598:380::-;30751:1;30734:19;;:5;:19;;;;30726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30832:1;30813:21;;:7;:21;;;;30805:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30916:6;30886:11;:18;30898:5;30886:18;;;;;;;;;;;;;;;:27;30905:7;30886:27;;;;;;;;;;;;;;;:36;;;;30954:7;30938:32;;30947:5;30938:32;;;30963:6;30938:32;;;;;;:::i;:::-;;;;;;;;30598:380;;;:::o;31269:453::-;31404:24;31431:25;31441:5;31448:7;31431:9;:25::i;:::-;31404:52;;31491:17;31471:16;:37;31467:248;;31553:6;31533:16;:26;;31525:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31637:51;31646:5;31653:7;31681:6;31662:16;:25;31637:8;:51::i;:::-;31467:248;31393:329;31269:453;;;:::o;27879:671::-;28026:1;28010:18;;:4;:18;;;;28002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28103:1;28089:16;;:2;:16;;;;28081:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28158:38;28179:4;28185:2;28189:6;28158:20;:38::i;:::-;28209:19;28231:9;:15;28241:4;28231:15;;;;;;;;;;;;;;;;28209:37;;28280:6;28265:11;:21;;28257:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28397:6;28383:11;:20;28365:9;:15;28375:4;28365:15;;;;;;;;;;;;;;;:38;;;;28442:6;28425:9;:13;28435:2;28425:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;28481:2;28466:26;;28475:4;28466:26;;;28485:6;28466:26;;;;;;:::i;:::-;;;;;;;;28505:37;28525:4;28531:2;28535:6;28505:19;:37::i;:::-;27991:559;27879:671;;;:::o;11701:105::-;11768:30;11779:4;11785:12;:10;:12::i;:::-;11768:10;:30::i;:::-;11701:105;:::o;15972:238::-;16056:22;16064:4;16070:7;16056;:22::i;:::-;16051:152;;16127:4;16095:6;:12;16102:4;16095:12;;;;;;;;;;;:20;;:29;16116:7;16095:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;16178:12;:10;:12::i;:::-;16151:40;;16169:7;16151:40;;16163:4;16151:40;;;;;;;;;;16051:152;15972:238;;:::o;16390:239::-;16474:22;16482:4;16488:7;16474;:22::i;:::-;16470:152;;;16545:5;16513:6;:12;16520:4;16513:12;;;;;;;;;;;:20;;:29;16534:7;16513:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;16597:12;:10;:12::i;:::-;16570:40;;16588:7;16570:40;;16582:4;16570:40;;;;;;;;;;16470:152;16390:239;;:::o;28837:399::-;28940:1;28921:21;;:7;:21;;;;28913:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28991:49;29020:1;29024:7;29033:6;28991:20;:49::i;:::-;29069:6;29053:12;;:22;;;;;;;:::i;:::-;;;;;;;;29108:6;29086:9;:18;29096:7;29086:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;29151:7;29130:37;;29147:1;29130:37;;;29160:6;29130:37;;;;;;:::i;:::-;;;;;;;;29180:48;29208:1;29212:7;29221:6;29180:19;:48::i;:::-;28837:399;;:::o;29569:591::-;29672:1;29653:21;;:7;:21;;;;29645:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29725:49;29746:7;29763:1;29767:6;29725:20;:49::i;:::-;29787:22;29812:9;:18;29822:7;29812:18;;;;;;;;;;;;;;;;29787:43;;29867:6;29849:14;:24;;29841:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29986:6;29969:14;:23;29948:9;:18;29958:7;29948:18;;;;;;;;;;;;;;;:44;;;;30030:6;30014:12;;:22;;;;;;;:::i;:::-;;;;;;;;30080:1;30054:37;;30063:7;30054:37;;;30084:6;30054:37;;;;;;:::i;:::-;;;;;;;;30104:48;30124:7;30141:1;30145:6;30104:19;:48::i;:::-;29634:526;29569:591;;:::o;32322:125::-;;;;:::o;33051:124::-;;;;:::o;12096:505::-;12185:22;12193:4;12199:7;12185;:22::i;:::-;12180:414;;12373:41;12401:7;12373:41;;12411:2;12373:19;:41::i;:::-;12487:38;12515:4;12507:13;;12522:2;12487:19;:38::i;:::-;12278:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12224:358;;;;;;;;;;;:::i;:::-;;;;;;;;12180:414;12096:505;;:::o;3677:451::-;3752:13;3778:19;3823:1;3814:6;3810:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3800:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3778:47;;3836:15;:6;3843:1;3836:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3862;:6;3869:1;3862:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3893:9;3918:1;3909:6;3905:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3893:26;;3888:135;3925:1;3921;:5;3888:135;;;3960:12;3981:3;3973:5;:11;3960:25;;;;;;;:::i;:::-;;;;;3948:6;3955:1;3948:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;4010:1;4000:11;;;;;3928:3;;;;:::i;:::-;;;3888:135;;;;4050:1;4041:5;:10;4033:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4113:6;4099:21;;;3677:451;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:119;;;3767:79;;:::i;:::-;3729:119;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3653:329;;;;:::o;3988:109::-;4069:21;4084:5;4069:21;:::i;:::-;4064:3;4057:34;3988:109;;:::o;4103:118::-;4190:24;4208:5;4190:24;:::i;:::-;4185:3;4178:37;4103:118;;:::o;4227:364::-;4315:3;4343:39;4376:5;4343:39;:::i;:::-;4398:71;4462:6;4457:3;4398:71;:::i;:::-;4391:78;;4478:52;4523:6;4518:3;4511:4;4504:5;4500:16;4478:52;:::i;:::-;4555:29;4577:6;4555:29;:::i;:::-;4550:3;4546:39;4539:46;;4319:272;4227:364;;;;:::o;4597:377::-;4703:3;4731:39;4764:5;4731:39;:::i;:::-;4786:89;4868:6;4863:3;4786:89;:::i;:::-;4779:96;;4884:52;4929:6;4924:3;4917:4;4910:5;4906:16;4884:52;:::i;:::-;4961:6;4956:3;4952:16;4945:23;;4707:267;4597:377;;;;:::o;4980:366::-;5122:3;5143:67;5207:2;5202:3;5143:67;:::i;:::-;5136:74;;5219:93;5308:3;5219:93;:::i;:::-;5337:2;5332:3;5328:12;5321:19;;4980:366;;;:::o;5352:::-;5494:3;5515:67;5579:2;5574:3;5515:67;:::i;:::-;5508:74;;5591:93;5680:3;5591:93;:::i;:::-;5709:2;5704:3;5700:12;5693:19;;5352:366;;;:::o;5724:::-;5866:3;5887:67;5951:2;5946:3;5887:67;:::i;:::-;5880:74;;5963:93;6052:3;5963:93;:::i;:::-;6081:2;6076:3;6072:12;6065:19;;5724:366;;;:::o;6096:::-;6238:3;6259:67;6323:2;6318:3;6259:67;:::i;:::-;6252:74;;6335:93;6424:3;6335:93;:::i;:::-;6453:2;6448:3;6444:12;6437:19;;6096:366;;;:::o;6468:::-;6610:3;6631:67;6695:2;6690:3;6631:67;:::i;:::-;6624:74;;6707:93;6796:3;6707:93;:::i;:::-;6825:2;6820:3;6816:12;6809:19;;6468:366;;;:::o;6840:::-;6982:3;7003:67;7067:2;7062:3;7003:67;:::i;:::-;6996:74;;7079:93;7168:3;7079:93;:::i;:::-;7197:2;7192:3;7188:12;7181:19;;6840:366;;;:::o;7212:::-;7354:3;7375:67;7439:2;7434:3;7375:67;:::i;:::-;7368:74;;7451:93;7540:3;7451:93;:::i;:::-;7569:2;7564:3;7560:12;7553:19;;7212:366;;;:::o;7584:::-;7726:3;7747:67;7811:2;7806:3;7747:67;:::i;:::-;7740:74;;7823:93;7912:3;7823:93;:::i;:::-;7941:2;7936:3;7932:12;7925:19;;7584:366;;;:::o;7956:::-;8098:3;8119:67;8183:2;8178:3;8119:67;:::i;:::-;8112:74;;8195:93;8284:3;8195:93;:::i;:::-;8313:2;8308:3;8304:12;8297:19;;7956:366;;;:::o;8328:402::-;8488:3;8509:85;8591:2;8586:3;8509:85;:::i;:::-;8502:92;;8603:93;8692:3;8603:93;:::i;:::-;8721:2;8716:3;8712:12;8705:19;;8328:402;;;:::o;8736:366::-;8878:3;8899:67;8963:2;8958:3;8899:67;:::i;:::-;8892:74;;8975:93;9064:3;8975:93;:::i;:::-;9093:2;9088:3;9084:12;9077:19;;8736:366;;;:::o;9108:402::-;9268:3;9289:85;9371:2;9366:3;9289:85;:::i;:::-;9282:92;;9383:93;9472:3;9383:93;:::i;:::-;9501:2;9496:3;9492:12;9485:19;;9108:402;;;:::o;9516:366::-;9658:3;9679:67;9743:2;9738:3;9679:67;:::i;:::-;9672:74;;9755:93;9844:3;9755:93;:::i;:::-;9873:2;9868:3;9864:12;9857:19;;9516:366;;;:::o;9888:::-;10030:3;10051:67;10115:2;10110:3;10051:67;:::i;:::-;10044:74;;10127:93;10216:3;10127:93;:::i;:::-;10245:2;10240:3;10236:12;10229:19;;9888:366;;;:::o;10260:118::-;10347:24;10365:5;10347:24;:::i;:::-;10342:3;10335:37;10260:118;;:::o;10384:112::-;10467:22;10483:5;10467:22;:::i;:::-;10462:3;10455:35;10384:112;;:::o;10502:967::-;10884:3;10906:148;11050:3;10906:148;:::i;:::-;10899:155;;11071:95;11162:3;11153:6;11071:95;:::i;:::-;11064:102;;11183:148;11327:3;11183:148;:::i;:::-;11176:155;;11348:95;11439:3;11430:6;11348:95;:::i;:::-;11341:102;;11460:3;11453:10;;10502:967;;;;;:::o;11475:210::-;11562:4;11600:2;11589:9;11585:18;11577:26;;11613:65;11675:1;11664:9;11660:17;11651:6;11613:65;:::i;:::-;11475:210;;;;:::o;11691:222::-;11784:4;11822:2;11811:9;11807:18;11799:26;;11835:71;11903:1;11892:9;11888:17;11879:6;11835:71;:::i;:::-;11691:222;;;;:::o;11919:313::-;12032:4;12070:2;12059:9;12055:18;12047:26;;12119:9;12113:4;12109:20;12105:1;12094:9;12090:17;12083:47;12147:78;12220:4;12211:6;12147:78;:::i;:::-;12139:86;;11919:313;;;;:::o;12238:419::-;12404:4;12442:2;12431:9;12427:18;12419:26;;12491:9;12485:4;12481:20;12477:1;12466:9;12462:17;12455:47;12519:131;12645:4;12519:131;:::i;:::-;12511:139;;12238:419;;;:::o;12663:::-;12829:4;12867:2;12856:9;12852:18;12844:26;;12916:9;12910:4;12906:20;12902:1;12891:9;12887:17;12880:47;12944:131;13070:4;12944:131;:::i;:::-;12936:139;;12663:419;;;:::o;13088:::-;13254:4;13292:2;13281:9;13277:18;13269:26;;13341:9;13335:4;13331:20;13327:1;13316:9;13312:17;13305:47;13369:131;13495:4;13369:131;:::i;:::-;13361:139;;13088:419;;;:::o;13513:::-;13679:4;13717:2;13706:9;13702:18;13694:26;;13766:9;13760:4;13756:20;13752:1;13741:9;13737:17;13730:47;13794:131;13920:4;13794:131;:::i;:::-;13786:139;;13513:419;;;:::o;13938:::-;14104:4;14142:2;14131:9;14127:18;14119:26;;14191:9;14185:4;14181:20;14177:1;14166:9;14162:17;14155:47;14219:131;14345:4;14219:131;:::i;:::-;14211:139;;13938:419;;;:::o;14363:::-;14529:4;14567:2;14556:9;14552:18;14544:26;;14616:9;14610:4;14606:20;14602:1;14591:9;14587:17;14580:47;14644:131;14770:4;14644:131;:::i;:::-;14636:139;;14363:419;;;:::o;14788:::-;14954:4;14992:2;14981:9;14977:18;14969:26;;15041:9;15035:4;15031:20;15027:1;15016:9;15012:17;15005:47;15069:131;15195:4;15069:131;:::i;:::-;15061:139;;14788:419;;;:::o;15213:::-;15379:4;15417:2;15406:9;15402:18;15394:26;;15466:9;15460:4;15456:20;15452:1;15441:9;15437:17;15430:47;15494:131;15620:4;15494:131;:::i;:::-;15486:139;;15213:419;;;:::o;15638:::-;15804:4;15842:2;15831:9;15827:18;15819:26;;15891:9;15885:4;15881:20;15877:1;15866:9;15862:17;15855:47;15919:131;16045:4;15919:131;:::i;:::-;15911:139;;15638:419;;;:::o;16063:::-;16229:4;16267:2;16256:9;16252:18;16244:26;;16316:9;16310:4;16306:20;16302:1;16291:9;16287:17;16280:47;16344:131;16470:4;16344:131;:::i;:::-;16336:139;;16063:419;;;:::o;16488:::-;16654:4;16692:2;16681:9;16677:18;16669:26;;16741:9;16735:4;16731:20;16727:1;16716:9;16712:17;16705:47;16769:131;16895:4;16769:131;:::i;:::-;16761:139;;16488:419;;;:::o;16913:::-;17079:4;17117:2;17106:9;17102:18;17094:26;;17166:9;17160:4;17156:20;17152:1;17141:9;17137:17;17130:47;17194:131;17320:4;17194:131;:::i;:::-;17186:139;;16913:419;;;:::o;17338:222::-;17431:4;17469:2;17458:9;17454:18;17446:26;;17482:71;17550:1;17539:9;17535:17;17526:6;17482:71;:::i;:::-;17338:222;;;;:::o;17566:214::-;17655:4;17693:2;17682:9;17678:18;17670:26;;17706:67;17770:1;17759:9;17755:17;17746:6;17706:67;:::i;:::-;17566:214;;;;:::o;17867:99::-;17919:6;17953:5;17947:12;17937:22;;17867:99;;;:::o;17972:169::-;18056:11;18090:6;18085:3;18078:19;18130:4;18125:3;18121:14;18106:29;;17972:169;;;;:::o;18147:148::-;18249:11;18286:3;18271:18;;18147:148;;;;:::o;18301:305::-;18341:3;18360:20;18378:1;18360:20;:::i;:::-;18355:25;;18394:20;18412:1;18394:20;:::i;:::-;18389:25;;18548:1;18480:66;18476:74;18473:1;18470:81;18467:107;;;18554:18;;:::i;:::-;18467:107;18598:1;18595;18591:9;18584:16;;18301:305;;;;:::o;18612:348::-;18652:7;18675:20;18693:1;18675:20;:::i;:::-;18670:25;;18709:20;18727:1;18709:20;:::i;:::-;18704:25;;18897:1;18829:66;18825:74;18822:1;18819:81;18814:1;18807:9;18800:17;18796:105;18793:131;;;18904:18;;:::i;:::-;18793:131;18952:1;18949;18945:9;18934:20;;18612:348;;;;:::o;18966:191::-;19006:4;19026:20;19044:1;19026:20;:::i;:::-;19021:25;;19060:20;19078:1;19060:20;:::i;:::-;19055:25;;19099:1;19096;19093:8;19090:34;;;19104:18;;:::i;:::-;19090:34;19149:1;19146;19142:9;19134:17;;18966:191;;;;:::o;19163:96::-;19200:7;19229:24;19247:5;19229:24;:::i;:::-;19218:35;;19163:96;;;:::o;19265:90::-;19299:7;19342:5;19335:13;19328:21;19317:32;;19265:90;;;:::o;19361:77::-;19398:7;19427:5;19416:16;;19361:77;;;:::o;19444:149::-;19480:7;19520:66;19513:5;19509:78;19498:89;;19444:149;;;:::o;19599:126::-;19636:7;19676:42;19669:5;19665:54;19654:65;;19599:126;;;:::o;19731:77::-;19768:7;19797:5;19786:16;;19731:77;;;:::o;19814:86::-;19849:7;19889:4;19882:5;19878:16;19867:27;;19814:86;;;:::o;19906:307::-;19974:1;19984:113;19998:6;19995:1;19992:13;19984:113;;;20083:1;20078:3;20074:11;20068:18;20064:1;20059:3;20055:11;20048:39;20020:2;20017:1;20013:10;20008:15;;19984:113;;;20115:6;20112:1;20109:13;20106:101;;;20195:1;20186:6;20181:3;20177:16;20170:27;20106:101;19955:258;19906:307;;;:::o;20219:171::-;20258:3;20281:24;20299:5;20281:24;:::i;:::-;20272:33;;20327:4;20320:5;20317:15;20314:41;;;20335:18;;:::i;:::-;20314:41;20382:1;20375:5;20371:13;20364:20;;20219:171;;;:::o;20396:320::-;20440:6;20477:1;20471:4;20467:12;20457:22;;20524:1;20518:4;20514:12;20545:18;20535:81;;20601:4;20593:6;20589:17;20579:27;;20535:81;20663:2;20655:6;20652:14;20632:18;20629:38;20626:84;;;20682:18;;:::i;:::-;20626:84;20447:269;20396:320;;;:::o;20722:180::-;20770:77;20767:1;20760:88;20867:4;20864:1;20857:15;20891:4;20888:1;20881:15;20908:180;20956:77;20953:1;20946:88;21053:4;21050:1;21043:15;21077:4;21074:1;21067:15;21094:180;21142:77;21139:1;21132:88;21239:4;21236:1;21229:15;21263:4;21260:1;21253:15;21280:180;21328:77;21325:1;21318:88;21425:4;21422:1;21415:15;21449:4;21446:1;21439:15;21589:117;21698:1;21695;21688:12;21712:102;21753:6;21804:2;21800:7;21795:2;21788:5;21784:14;21780:28;21770:38;;21712:102;;;:::o;21820:182::-;21960:34;21956:1;21948:6;21944:14;21937:58;21820:182;:::o;22008:222::-;22148:34;22144:1;22136:6;22132:14;22125:58;22217:5;22212:2;22204:6;22200:15;22193:30;22008:222;:::o;22236:221::-;22376:34;22372:1;22364:6;22360:14;22353:58;22445:4;22440:2;22432:6;22428:15;22421:29;22236:221;:::o;22463:::-;22603:34;22599:1;22591:6;22587:14;22580:58;22672:4;22667:2;22659:6;22655:15;22648:29;22463:221;:::o;22690:179::-;22830:31;22826:1;22818:6;22814:14;22807:55;22690:179;:::o;22875:225::-;23015:34;23011:1;23003:6;22999:14;22992:58;23084:8;23079:2;23071:6;23067:15;23060:33;22875:225;:::o;23106:220::-;23246:34;23242:1;23234:6;23230:14;23223:58;23315:3;23310:2;23302:6;23298:15;23291:28;23106:220;:::o;23332:224::-;23472:34;23468:1;23460:6;23456:14;23449:58;23541:7;23536:2;23528:6;23524:15;23517:32;23332:224;:::o;23562:223::-;23702:34;23698:1;23690:6;23686:14;23679:58;23771:6;23766:2;23758:6;23754:15;23747:31;23562:223;:::o;23791:173::-;23931:25;23927:1;23919:6;23915:14;23908:49;23791:173;:::o;23970:224::-;24110:34;24106:1;24098:6;24094:14;24087:58;24179:7;24174:2;24166:6;24162:15;24155:32;23970:224;:::o;24200:167::-;24340:19;24336:1;24328:6;24324:14;24317:43;24200:167;:::o;24373:234::-;24513:34;24509:1;24501:6;24497:14;24490:58;24582:17;24577:2;24569:6;24565:15;24558:42;24373:234;:::o;24613:181::-;24753:33;24749:1;24741:6;24737:14;24730:57;24613:181;:::o;24800:122::-;24873:24;24891:5;24873:24;:::i;:::-;24866:5;24863:35;24853:63;;24912:1;24909;24902:12;24853:63;24800:122;:::o;24928:::-;25001:24;25019:5;25001:24;:::i;:::-;24994:5;24991:35;24981:63;;25040:1;25037;25030:12;24981:63;24928:122;:::o;25056:120::-;25128:23;25145:5;25128:23;:::i;:::-;25121:5;25118:34;25108:62;;25166:1;25163;25156:12;25108:62;25056:120;:::o;25182:122::-;25255:24;25273:5;25255:24;:::i;:::-;25248:5;25245:35;25235:63;;25294:1;25291;25284:12;25235:63;25182:122;:::o

Swarm Source

ipfs://fbf53955a2224a0c4737c6052de068c2bd488d82725bfa3ccdb8febe5ef1c3ac
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.