ETH Price: $3,408.91 (-7.29%)
 

Overview

Max Total Supply

4,916,826.240148 ERBB

Holders

1,110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 27 Decimals)

Filtered by Token Holder
Uniswap V3: ERBB-USDT
Balance
1,011.813651748750800770543638119 ERBB

Value
$0.00
0x766c1134369a1c3203cf6f9e7440e57641d22621
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Exchange Request for Bitbon (ERBB) is a tokenized asset, the units of which correspond to the number of Bitbon specialized software units for accessing the ecosystem of services of the Bitbon System in 1:1 ratio.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERBB

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-12
*/

// 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/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// 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.9.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:
 *
 * ```solidity
 * 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}:
 *
 * ```solidity
 * 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. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ERBB.sol



pragma solidity ^0.8.4;




contract ERBB is ERC20, Pausable, AccessControl {
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant UNPAUSER_ROLE = keccak256("UNPAUSER_ROLE");
    bytes32 public constant SERVICE_ROLE = keccak256("SERVICE_ROLE");

    uint256 public maxSupply;

    constructor(address admin, address pauser, address unpauser, address service) ERC20("Exchange Request for Bitbon", "ERBB") {
        _grantRole(DEFAULT_ADMIN_ROLE, admin);
        _grantRole(PAUSER_ROLE, pauser);
        _grantRole(UNPAUSER_ROLE, unpauser);
        _grantRole(SERVICE_ROLE, service);

        maxSupply = 100000000 * 10**decimals();
    }

    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(UNPAUSER_ROLE) {
        _unpause();
    }

    function decimals() public pure override returns (uint8) {
        return 27;
    }

    function mint(address account, uint256 amount) external whenNotPaused onlyRole(SERVICE_ROLE) {
        require(
            totalSupply() + amount <= maxSupply,
            "mint amount exceeds max supply amount for token"
        );
        require(
            amount <= 10000 * 10**decimals(),
            "can't mint more than 10000 ERBB"
        );

        _mint(account, amount);
    }

    function burn(address account, uint256 amount) internal whenNotPaused {
        _burn(account, amount);
    }

    function transfer(address to, uint256 amount) public override whenNotPaused returns (bool) {
        if (to == address(this) || to == address(0)) {
            burn(msg.sender, amount);
            return true;
        }

        return super.transfer(to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"pauser","type":"address"},{"internalType":"address","name":"unpauser","type":"address"},{"internalType":"address","name":"service","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SERVICE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNPAUSER_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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620035e1380380620035e18339818101604052810190620000379190620003a6565b6040518060400160405280601b81526020017f45786368616e6765205265717565737420666f7220426974626f6e00000000008152506040518060400160405280600481526020017f45524242000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000692565b508060049081620000c6919062000692565b5050506000600560006101000a81548160ff021916908315150217905550620000f96000801b85620001ce60201b60201c565b6200012b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a84620001ce60201b60201c565b6200015d7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a83620001ce60201b60201c565b6200018f7fd8a7a79547af723ee3e12b59a480111268d8969c634e1a34a144d2c8b91d635b82620001ce60201b60201c565b6200019f620002c060201b60201c565b600a620001ad919062000909565b6305f5e100620001be91906200095a565b60078190555050505050620009a5565b620001e08282620002c960201b60201c565b620002bc5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002616200033460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000601b905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200036e8262000341565b9050919050565b620003808162000361565b81146200038c57600080fd5b50565b600081519050620003a08162000375565b92915050565b60008060008060808587031215620003c357620003c26200033c565b5b6000620003d3878288016200038f565b9450506020620003e6878288016200038f565b9350506040620003f9878288016200038f565b92505060606200040c878288016200038f565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049a57607f821691505b602082108103620004b057620004af62000452565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200051a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004db565b620005268683620004db565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005736200056d62000567846200053e565b62000548565b6200053e565b9050919050565b6000819050919050565b6200058f8362000552565b620005a76200059e826200057a565b848454620004e8565b825550505050565b600090565b620005be620005af565b620005cb81848462000584565b505050565b5b81811015620005f357620005e7600082620005b4565b600181019050620005d1565b5050565b601f82111562000642576200060c81620004b6565b6200061784620004cb565b8101602085101562000627578190505b6200063f6200063685620004cb565b830182620005d0565b50505b505050565b600082821c905092915050565b6000620006676000198460080262000647565b1980831691505092915050565b600062000682838362000654565b9150826002028217905092915050565b6200069d8262000418565b67ffffffffffffffff811115620006b957620006b862000423565b5b620006c5825462000481565b620006d2828285620005f7565b600060209050601f8311600181146200070a5760008415620006f5578287015190505b62000701858262000674565b86555062000771565b601f1984166200071a86620004b6565b60005b8281101562000744578489015182556001820191506020850194506020810190506200071d565b8683101562000764578489015162000760601f89168262000654565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200080757808604811115620007df57620007de62000779565b5b6001851615620007ef5780820291505b8081029050620007ff85620007a8565b9450620007bf565b94509492505050565b600082620008225760019050620008f5565b81620008325760009050620008f5565b81600181146200084b576002811462000856576200088c565b6001915050620008f5565b60ff8411156200086b576200086a62000779565b5b8360020a91508482111562000885576200088462000779565b5b50620008f5565b5060208310610133831016604e8410600b8410161715620008c65782820a905083811115620008c057620008bf62000779565b5b620008f5565b620008d58484846001620007b5565b92509050818404811115620008ef57620008ee62000779565b5b81810290505b9392505050565b600060ff82169050919050565b600062000916826200053e565b91506200092383620008fc565b9250620009527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000810565b905092915050565b600062000967826200053e565b915062000974836200053e565b925082820262000984816200053e565b915082820484148315176200099e576200099d62000779565b5b5092915050565b612c2c80620009b56000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a457c2d711610097578063d5abeb0111610071578063d5abeb0114610499578063dd62ed3e146104b7578063e63ab1e9146104e7578063fb1bb9de146105055761018e565b8063a457c2d71461041d578063a9059cbb1461044d578063d547741f1461047d5761018e565b806370a08231146103595780638456cb591461038957806391d148541461039357806395d89b41146103c3578063a20e7d47146103e1578063a217fddf146103ff5761018e565b80632f2ff15d1161014b578063395093511161012557806339509351146102e55780633f4ba83a1461031557806340c10f191461031f5780635c975abb1461033b5761018e565b80632f2ff15d1461028f578063313ce567146102ab57806336568abe146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461021157806323b872dd1461022f578063248a9ca31461025f575b600080fd5b6101ad60048036038101906101a89190611ba1565b610523565b6040516101ba9190611be9565b60405180910390f35b6101cb61059d565b6040516101d89190611c94565b60405180910390f35b6101fb60048036038101906101f69190611d4a565b61062f565b6040516102089190611be9565b60405180910390f35b610219610652565b6040516102269190611d99565b60405180910390f35b61024960048036038101906102449190611db4565b61065c565b6040516102569190611be9565b60405180910390f35b61027960048036038101906102749190611e3d565b61068b565b6040516102869190611e79565b60405180910390f35b6102a960048036038101906102a49190611e94565b6106ab565b005b6102b36106cc565b6040516102c09190611ef0565b60405180910390f35b6102e360048036038101906102de9190611e94565b6106d5565b005b6102ff60048036038101906102fa9190611d4a565b610758565b60405161030c9190611be9565b60405180910390f35b61031d61078f565b005b61033960048036038101906103349190611d4a565b6107c4565b005b6103436108bf565b6040516103509190611be9565b60405180910390f35b610373600480360381019061036e9190611f0b565b6108d6565b6040516103809190611d99565b60405180910390f35b61039161091e565b005b6103ad60048036038101906103a89190611e94565b610953565b6040516103ba9190611be9565b60405180910390f35b6103cb6109be565b6040516103d89190611c94565b60405180910390f35b6103e9610a50565b6040516103f69190611e79565b60405180910390f35b610407610a74565b6040516104149190611e79565b60405180910390f35b61043760048036038101906104329190611d4a565b610a7b565b6040516104449190611be9565b60405180910390f35b61046760048036038101906104629190611d4a565b610af2565b6040516104749190611be9565b60405180910390f35b61049760048036038101906104929190611e94565b610b8d565b005b6104a1610bae565b6040516104ae9190611d99565b60405180910390f35b6104d160048036038101906104cc9190611f38565b610bb4565b6040516104de9190611d99565b60405180910390f35b6104ef610c3b565b6040516104fc9190611e79565b60405180910390f35b61050d610c5f565b60405161051a9190611e79565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610596575061059582610c83565b5b9050919050565b6060600380546105ac90611fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890611fa7565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b60008061063a610ced565b9050610647818585610cf5565b600191505092915050565b6000600254905090565b600080610667610ced565b9050610674858285610ebe565b61067f858585610f4a565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106b48261068b565b6106bd816111c0565b6106c783836111d4565b505050565b6000601b905090565b6106dd610ced565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107419061204a565b60405180910390fd5b61075482826112b5565b5050565b600080610763610ced565b90506107848185856107758589610bb4565b61077f9190612099565b610cf5565b600191505092915050565b7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a6107b9816111c0565b6107c1611397565b50565b6107cc6113fa565b7fd8a7a79547af723ee3e12b59a480111268d8969c634e1a34a144d2c8b91d635b6107f6816111c0565b60075482610802610652565b61080c9190612099565b111561084d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108449061213f565b60405180910390fd5b6108556106cc565b600a6108619190612292565b61271061086e91906122dd565b8211156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a79061236b565b60405180910390fd5b6108ba8383611444565b505050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610948816111c0565b61095061159a565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546109cd90611fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990611fa7565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b5050505050905090565b7fd8a7a79547af723ee3e12b59a480111268d8969c634e1a34a144d2c8b91d635b81565b6000801b81565b600080610a86610ced565b90506000610a948286610bb4565b905083811015610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906123fd565b60405180910390fd5b610ae68286868403610cf5565b60019250505092915050565b6000610afc6113fa565b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610b625750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610b7a57610b7133836115fd565b60019050610b87565b610b848383611613565b90505b92915050565b610b968261068b565b610b9f816111c0565b610ba983836112b5565b505050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b9061248f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90612521565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb19190611d99565b60405180910390a3505050565b6000610eca8484610bb4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f445781811015610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061258d565b60405180910390fd5b610f438484848403610cf5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb09061261f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f906126b1565b60405180910390fd5b611033838383611636565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090612743565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a79190611d99565b60405180910390a36111ba84848461163b565b50505050565b6111d1816111cc610ced565b611640565b50565b6111de8282610953565b6112b15760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611256610ced565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112bf8282610953565b156113935760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611338610ced565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61139f6116c5565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113e3610ced565b6040516113f09190612772565b60405180910390a1565b6114026108bf565b15611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906127d9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612845565b60405180910390fd5b6114bf60008383611636565b80600260008282546114d19190612099565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115829190611d99565b60405180910390a36115966000838361163b565b5050565b6115a26113fa565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115e6610ced565b6040516115f39190612772565b60405180910390a1565b6116056113fa565b61160f828261170e565b5050565b60008061161e610ced565b905061162b818585610f4a565b600191505092915050565b505050565b505050565b61164a8282610953565b6116c157611657816118db565b6116658360001c6020611908565b604051602001611676929190612939565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b89190611c94565b60405180910390fd5b5050565b6116cd6108bf565b61170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611703906129bf565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612a51565b60405180910390fd5b61178982600083611636565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690612ae3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118c29190611d99565b60405180910390a36118d68360008461163b565b505050565b60606119018273ffffffffffffffffffffffffffffffffffffffff16601460ff16611908565b9050919050565b60606000600283600261191b91906122dd565b6119259190612099565b67ffffffffffffffff81111561193e5761193d612b03565b5b6040519080825280601f01601f1916602001820160405280156119705781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119a8576119a7612b32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611a0c57611a0b612b32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a4c91906122dd565b611a569190612099565b90505b6001811115611af6577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a9857611a97612b32565b5b1a60f81b828281518110611aaf57611aae612b32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611aef90612b61565b9050611a59565b5060008414611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190612bd6565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b7e81611b49565b8114611b8957600080fd5b50565b600081359050611b9b81611b75565b92915050565b600060208284031215611bb757611bb6611b44565b5b6000611bc584828501611b8c565b91505092915050565b60008115159050919050565b611be381611bce565b82525050565b6000602082019050611bfe6000830184611bda565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c3e578082015181840152602081019050611c23565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c6682611c04565b611c708185611c0f565b9350611c80818560208601611c20565b611c8981611c4a565b840191505092915050565b60006020820190508181036000830152611cae8184611c5b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ce182611cb6565b9050919050565b611cf181611cd6565b8114611cfc57600080fd5b50565b600081359050611d0e81611ce8565b92915050565b6000819050919050565b611d2781611d14565b8114611d3257600080fd5b50565b600081359050611d4481611d1e565b92915050565b60008060408385031215611d6157611d60611b44565b5b6000611d6f85828601611cff565b9250506020611d8085828601611d35565b9150509250929050565b611d9381611d14565b82525050565b6000602082019050611dae6000830184611d8a565b92915050565b600080600060608486031215611dcd57611dcc611b44565b5b6000611ddb86828701611cff565b9350506020611dec86828701611cff565b9250506040611dfd86828701611d35565b9150509250925092565b6000819050919050565b611e1a81611e07565b8114611e2557600080fd5b50565b600081359050611e3781611e11565b92915050565b600060208284031215611e5357611e52611b44565b5b6000611e6184828501611e28565b91505092915050565b611e7381611e07565b82525050565b6000602082019050611e8e6000830184611e6a565b92915050565b60008060408385031215611eab57611eaa611b44565b5b6000611eb985828601611e28565b9250506020611eca85828601611cff565b9150509250929050565b600060ff82169050919050565b611eea81611ed4565b82525050565b6000602082019050611f056000830184611ee1565b92915050565b600060208284031215611f2157611f20611b44565b5b6000611f2f84828501611cff565b91505092915050565b60008060408385031215611f4f57611f4e611b44565b5b6000611f5d85828601611cff565b9250506020611f6e85828601611cff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fbf57607f821691505b602082108103611fd257611fd1611f78565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612034602f83611c0f565b915061203f82611fd8565b604082019050919050565b6000602082019050818103600083015261206381612027565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120a482611d14565b91506120af83611d14565b92508282019050808211156120c7576120c661206a565b5b92915050565b7f6d696e7420616d6f756e742065786365656473206d617820737570706c79206160008201527f6d6f756e7420666f7220746f6b656e0000000000000000000000000000000000602082015250565b6000612129602f83611c0f565b9150612134826120cd565b604082019050919050565b600060208201905081810360008301526121588161211c565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156121b6578086048111156121925761219161206a565b5b60018516156121a15780820291505b80810290506121af8561215f565b9450612176565b94509492505050565b6000826121cf576001905061228b565b816121dd576000905061228b565b81600181146121f357600281146121fd5761222c565b600191505061228b565b60ff84111561220f5761220e61206a565b5b8360020a9150848211156122265761222561206a565b5b5061228b565b5060208310610133831016604e8410600b84101617156122615782820a90508381111561225c5761225b61206a565b5b61228b565b61226e848484600161216c565b925090508184048111156122855761228461206a565b5b81810290505b9392505050565b600061229d82611d14565b91506122a883611ed4565b92506122d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846121bf565b905092915050565b60006122e882611d14565b91506122f383611d14565b925082820261230181611d14565b915082820484148315176123185761231761206a565b5b5092915050565b7f63616e2774206d696e74206d6f7265207468616e203130303030204552424200600082015250565b6000612355601f83611c0f565b91506123608261231f565b602082019050919050565b6000602082019050818103600083015261238481612348565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123e7602583611c0f565b91506123f28261238b565b604082019050919050565b60006020820190508181036000830152612416816123da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612479602483611c0f565b91506124848261241d565b604082019050919050565b600060208201905081810360008301526124a88161246c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061250b602283611c0f565b9150612516826124af565b604082019050919050565b6000602082019050818103600083015261253a816124fe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612577601d83611c0f565b915061258282612541565b602082019050919050565b600060208201905081810360008301526125a68161256a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612609602583611c0f565b9150612614826125ad565b604082019050919050565b60006020820190508181036000830152612638816125fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061269b602383611c0f565b91506126a68261263f565b604082019050919050565b600060208201905081810360008301526126ca8161268e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061272d602683611c0f565b9150612738826126d1565b604082019050919050565b6000602082019050818103600083015261275c81612720565b9050919050565b61276c81611cd6565b82525050565b60006020820190506127876000830184612763565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006127c3601083611c0f565b91506127ce8261278d565b602082019050919050565b600060208201905081810360008301526127f2816127b6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061282f601f83611c0f565b915061283a826127f9565b602082019050919050565b6000602082019050818103600083015261285e81612822565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006128a6601783612865565b91506128b182612870565b601782019050919050565b60006128c782611c04565b6128d18185612865565b93506128e1818560208601611c20565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612923601183612865565b915061292e826128ed565b601182019050919050565b600061294482612899565b915061295082856128bc565b915061295b82612916565b915061296782846128bc565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006129a9601483611c0f565b91506129b482612973565b602082019050919050565b600060208201905081810360008301526129d88161299c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a3b602183611c0f565b9150612a46826129df565b604082019050919050565b60006020820190508181036000830152612a6a81612a2e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612acd602283611c0f565b9150612ad882612a71565b604082019050919050565b60006020820190508181036000830152612afc81612ac0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612b6c82611d14565b915060008203612b7f57612b7e61206a565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612bc0602083611c0f565b9150612bcb82612b8a565b602082019050919050565b60006020820190508181036000830152612bef81612bb3565b905091905056fea2646970667358221220a4751d742e0d67432ddb940bfda165c06c918ce86a16f1079e442891cb56993764736f6c63430008120033000000000000000000000000f96d119f77ceb3542be8d5b6e4b94fbfd1d4c68c0000000000000000000000003dc10ab2c597263329065e85a5fb8d30eecb59a100000000000000000000000022306c32ba8c0b1880b4097abbcfd86616df7a4b00000000000000000000000098139bf0af3a2f39e400026766a62c738e94306b

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a457c2d711610097578063d5abeb0111610071578063d5abeb0114610499578063dd62ed3e146104b7578063e63ab1e9146104e7578063fb1bb9de146105055761018e565b8063a457c2d71461041d578063a9059cbb1461044d578063d547741f1461047d5761018e565b806370a08231146103595780638456cb591461038957806391d148541461039357806395d89b41146103c3578063a20e7d47146103e1578063a217fddf146103ff5761018e565b80632f2ff15d1161014b578063395093511161012557806339509351146102e55780633f4ba83a1461031557806340c10f191461031f5780635c975abb1461033b5761018e565b80632f2ff15d1461028f578063313ce567146102ab57806336568abe146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e157806318160ddd1461021157806323b872dd1461022f578063248a9ca31461025f575b600080fd5b6101ad60048036038101906101a89190611ba1565b610523565b6040516101ba9190611be9565b60405180910390f35b6101cb61059d565b6040516101d89190611c94565b60405180910390f35b6101fb60048036038101906101f69190611d4a565b61062f565b6040516102089190611be9565b60405180910390f35b610219610652565b6040516102269190611d99565b60405180910390f35b61024960048036038101906102449190611db4565b61065c565b6040516102569190611be9565b60405180910390f35b61027960048036038101906102749190611e3d565b61068b565b6040516102869190611e79565b60405180910390f35b6102a960048036038101906102a49190611e94565b6106ab565b005b6102b36106cc565b6040516102c09190611ef0565b60405180910390f35b6102e360048036038101906102de9190611e94565b6106d5565b005b6102ff60048036038101906102fa9190611d4a565b610758565b60405161030c9190611be9565b60405180910390f35b61031d61078f565b005b61033960048036038101906103349190611d4a565b6107c4565b005b6103436108bf565b6040516103509190611be9565b60405180910390f35b610373600480360381019061036e9190611f0b565b6108d6565b6040516103809190611d99565b60405180910390f35b61039161091e565b005b6103ad60048036038101906103a89190611e94565b610953565b6040516103ba9190611be9565b60405180910390f35b6103cb6109be565b6040516103d89190611c94565b60405180910390f35b6103e9610a50565b6040516103f69190611e79565b60405180910390f35b610407610a74565b6040516104149190611e79565b60405180910390f35b61043760048036038101906104329190611d4a565b610a7b565b6040516104449190611be9565b60405180910390f35b61046760048036038101906104629190611d4a565b610af2565b6040516104749190611be9565b60405180910390f35b61049760048036038101906104929190611e94565b610b8d565b005b6104a1610bae565b6040516104ae9190611d99565b60405180910390f35b6104d160048036038101906104cc9190611f38565b610bb4565b6040516104de9190611d99565b60405180910390f35b6104ef610c3b565b6040516104fc9190611e79565b60405180910390f35b61050d610c5f565b60405161051a9190611e79565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610596575061059582610c83565b5b9050919050565b6060600380546105ac90611fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546105d890611fa7565b80156106255780601f106105fa57610100808354040283529160200191610625565b820191906000526020600020905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b60008061063a610ced565b9050610647818585610cf5565b600191505092915050565b6000600254905090565b600080610667610ced565b9050610674858285610ebe565b61067f858585610f4a565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6106b48261068b565b6106bd816111c0565b6106c783836111d4565b505050565b6000601b905090565b6106dd610ced565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107419061204a565b60405180910390fd5b61075482826112b5565b5050565b600080610763610ced565b90506107848185856107758589610bb4565b61077f9190612099565b610cf5565b600191505092915050565b7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a6107b9816111c0565b6107c1611397565b50565b6107cc6113fa565b7fd8a7a79547af723ee3e12b59a480111268d8969c634e1a34a144d2c8b91d635b6107f6816111c0565b60075482610802610652565b61080c9190612099565b111561084d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108449061213f565b60405180910390fd5b6108556106cc565b600a6108619190612292565b61271061086e91906122dd565b8211156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a79061236b565b60405180910390fd5b6108ba8383611444565b505050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610948816111c0565b61095061159a565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546109cd90611fa7565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990611fa7565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b5050505050905090565b7fd8a7a79547af723ee3e12b59a480111268d8969c634e1a34a144d2c8b91d635b81565b6000801b81565b600080610a86610ced565b90506000610a948286610bb4565b905083811015610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906123fd565b60405180910390fd5b610ae68286868403610cf5565b60019250505092915050565b6000610afc6113fa565b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610b625750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610b7a57610b7133836115fd565b60019050610b87565b610b848383611613565b90505b92915050565b610b968261068b565b610b9f816111c0565b610ba983836112b5565b505050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7f427da25fe773164f88948d3e215c94b6554e2ed5e5f203a821c9f2f6131cf75a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b9061248f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90612521565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb19190611d99565b60405180910390a3505050565b6000610eca8484610bb4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f445781811015610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061258d565b60405180910390fd5b610f438484848403610cf5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb09061261f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f906126b1565b60405180910390fd5b611033838383611636565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090612743565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a79190611d99565b60405180910390a36111ba84848461163b565b50505050565b6111d1816111cc610ced565b611640565b50565b6111de8282610953565b6112b15760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611256610ced565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112bf8282610953565b156113935760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611338610ced565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61139f6116c5565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113e3610ced565b6040516113f09190612772565b60405180910390a1565b6114026108bf565b15611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906127d9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612845565b60405180910390fd5b6114bf60008383611636565b80600260008282546114d19190612099565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115829190611d99565b60405180910390a36115966000838361163b565b5050565b6115a26113fa565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115e6610ced565b6040516115f39190612772565b60405180910390a1565b6116056113fa565b61160f828261170e565b5050565b60008061161e610ced565b905061162b818585610f4a565b600191505092915050565b505050565b505050565b61164a8282610953565b6116c157611657816118db565b6116658360001c6020611908565b604051602001611676929190612939565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b89190611c94565b60405180910390fd5b5050565b6116cd6108bf565b61170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611703906129bf565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612a51565b60405180910390fd5b61178982600083611636565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690612ae3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118c29190611d99565b60405180910390a36118d68360008461163b565b505050565b60606119018273ffffffffffffffffffffffffffffffffffffffff16601460ff16611908565b9050919050565b60606000600283600261191b91906122dd565b6119259190612099565b67ffffffffffffffff81111561193e5761193d612b03565b5b6040519080825280601f01601f1916602001820160405280156119705781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119a8576119a7612b32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611a0c57611a0b612b32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a4c91906122dd565b611a569190612099565b90505b6001811115611af6577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a9857611a97612b32565b5b1a60f81b828281518110611aaf57611aae612b32565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611aef90612b61565b9050611a59565b5060008414611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190612bd6565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b7e81611b49565b8114611b8957600080fd5b50565b600081359050611b9b81611b75565b92915050565b600060208284031215611bb757611bb6611b44565b5b6000611bc584828501611b8c565b91505092915050565b60008115159050919050565b611be381611bce565b82525050565b6000602082019050611bfe6000830184611bda565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c3e578082015181840152602081019050611c23565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c6682611c04565b611c708185611c0f565b9350611c80818560208601611c20565b611c8981611c4a565b840191505092915050565b60006020820190508181036000830152611cae8184611c5b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ce182611cb6565b9050919050565b611cf181611cd6565b8114611cfc57600080fd5b50565b600081359050611d0e81611ce8565b92915050565b6000819050919050565b611d2781611d14565b8114611d3257600080fd5b50565b600081359050611d4481611d1e565b92915050565b60008060408385031215611d6157611d60611b44565b5b6000611d6f85828601611cff565b9250506020611d8085828601611d35565b9150509250929050565b611d9381611d14565b82525050565b6000602082019050611dae6000830184611d8a565b92915050565b600080600060608486031215611dcd57611dcc611b44565b5b6000611ddb86828701611cff565b9350506020611dec86828701611cff565b9250506040611dfd86828701611d35565b9150509250925092565b6000819050919050565b611e1a81611e07565b8114611e2557600080fd5b50565b600081359050611e3781611e11565b92915050565b600060208284031215611e5357611e52611b44565b5b6000611e6184828501611e28565b91505092915050565b611e7381611e07565b82525050565b6000602082019050611e8e6000830184611e6a565b92915050565b60008060408385031215611eab57611eaa611b44565b5b6000611eb985828601611e28565b9250506020611eca85828601611cff565b9150509250929050565b600060ff82169050919050565b611eea81611ed4565b82525050565b6000602082019050611f056000830184611ee1565b92915050565b600060208284031215611f2157611f20611b44565b5b6000611f2f84828501611cff565b91505092915050565b60008060408385031215611f4f57611f4e611b44565b5b6000611f5d85828601611cff565b9250506020611f6e85828601611cff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fbf57607f821691505b602082108103611fd257611fd1611f78565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612034602f83611c0f565b915061203f82611fd8565b604082019050919050565b6000602082019050818103600083015261206381612027565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120a482611d14565b91506120af83611d14565b92508282019050808211156120c7576120c661206a565b5b92915050565b7f6d696e7420616d6f756e742065786365656473206d617820737570706c79206160008201527f6d6f756e7420666f7220746f6b656e0000000000000000000000000000000000602082015250565b6000612129602f83611c0f565b9150612134826120cd565b604082019050919050565b600060208201905081810360008301526121588161211c565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156121b6578086048111156121925761219161206a565b5b60018516156121a15780820291505b80810290506121af8561215f565b9450612176565b94509492505050565b6000826121cf576001905061228b565b816121dd576000905061228b565b81600181146121f357600281146121fd5761222c565b600191505061228b565b60ff84111561220f5761220e61206a565b5b8360020a9150848211156122265761222561206a565b5b5061228b565b5060208310610133831016604e8410600b84101617156122615782820a90508381111561225c5761225b61206a565b5b61228b565b61226e848484600161216c565b925090508184048111156122855761228461206a565b5b81810290505b9392505050565b600061229d82611d14565b91506122a883611ed4565b92506122d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846121bf565b905092915050565b60006122e882611d14565b91506122f383611d14565b925082820261230181611d14565b915082820484148315176123185761231761206a565b5b5092915050565b7f63616e2774206d696e74206d6f7265207468616e203130303030204552424200600082015250565b6000612355601f83611c0f565b91506123608261231f565b602082019050919050565b6000602082019050818103600083015261238481612348565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123e7602583611c0f565b91506123f28261238b565b604082019050919050565b60006020820190508181036000830152612416816123da565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612479602483611c0f565b91506124848261241d565b604082019050919050565b600060208201905081810360008301526124a88161246c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061250b602283611c0f565b9150612516826124af565b604082019050919050565b6000602082019050818103600083015261253a816124fe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612577601d83611c0f565b915061258282612541565b602082019050919050565b600060208201905081810360008301526125a68161256a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612609602583611c0f565b9150612614826125ad565b604082019050919050565b60006020820190508181036000830152612638816125fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061269b602383611c0f565b91506126a68261263f565b604082019050919050565b600060208201905081810360008301526126ca8161268e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061272d602683611c0f565b9150612738826126d1565b604082019050919050565b6000602082019050818103600083015261275c81612720565b9050919050565b61276c81611cd6565b82525050565b60006020820190506127876000830184612763565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006127c3601083611c0f565b91506127ce8261278d565b602082019050919050565b600060208201905081810360008301526127f2816127b6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061282f601f83611c0f565b915061283a826127f9565b602082019050919050565b6000602082019050818103600083015261285e81612822565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006128a6601783612865565b91506128b182612870565b601782019050919050565b60006128c782611c04565b6128d18185612865565b93506128e1818560208601611c20565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612923601183612865565b915061292e826128ed565b601182019050919050565b600061294482612899565b915061295082856128bc565b915061295b82612916565b915061296782846128bc565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006129a9601483611c0f565b91506129b482612973565b602082019050919050565b600060208201905081810360008301526129d88161299c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a3b602183611c0f565b9150612a46826129df565b604082019050919050565b60006020820190508181036000830152612a6a81612a2e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612acd602283611c0f565b9150612ad882612a71565b604082019050919050565b60006020820190508181036000830152612afc81612ac0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612b6c82611d14565b915060008203612b7f57612b7e61206a565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612bc0602083611c0f565b9150612bcb82612b8a565b602082019050919050565b60006020820190508181036000830152612bef81612bb3565b905091905056fea2646970667358221220a4751d742e0d67432ddb940bfda165c06c918ce86a16f1079e442891cb56993764736f6c63430008120033

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

000000000000000000000000f96d119f77ceb3542be8d5b6e4b94fbfd1d4c68c0000000000000000000000003dc10ab2c597263329065e85a5fb8d30eecb59a100000000000000000000000022306c32ba8c0b1880b4097abbcfd86616df7a4b00000000000000000000000098139bf0af3a2f39e400026766a62c738e94306b

-----Decoded View---------------
Arg [0] : admin (address): 0xF96D119f77cEb3542BE8d5b6E4B94FBfD1d4C68c
Arg [1] : pauser (address): 0x3dC10aB2c597263329065e85A5Fb8d30eEcB59a1
Arg [2] : unpauser (address): 0x22306C32BA8C0b1880b4097abbCfD86616df7a4b
Arg [3] : service (address): 0x98139bf0Af3A2f39e400026766A62c738E94306b

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000f96d119f77ceb3542be8d5b6e4b94fbfd1d4c68c
Arg [1] : 0000000000000000000000003dc10ab2c597263329065e85a5fb8d30eecb59a1
Arg [2] : 00000000000000000000000022306c32ba8c0b1880b4097abbcfd86616df7a4b
Arg [3] : 00000000000000000000000098139bf0af3a2f39e400026766a62c738e94306b


Deployed Bytecode Sourcemap

51019:1744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25906:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39958:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42318:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41087:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43099:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27729:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28170:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51860:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29314:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43769:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51773:79;;;:::i;:::-;;51953:403;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33248:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41258:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51692:73;;;:::i;:::-;;26202:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40177:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51216:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25307:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44510:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52483:277;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28610:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51289:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41847:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51074:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51143:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25906:204;25991:4;26030:32;26015:47;;;:11;:47;;;;:87;;;;26066:36;26090:11;26066:23;:36::i;:::-;26015:87;26008:94;;25906:204;;;:::o;39958:100::-;40012:13;40045:5;40038:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39958:100;:::o;42318:201::-;42401:4;42418:13;42434:12;:10;:12::i;:::-;42418:28;;42457:32;42466:5;42473:7;42482:6;42457:8;:32::i;:::-;42507:4;42500:11;;;42318:201;;;;:::o;41087:108::-;41148:7;41175:12;;41168:19;;41087:108;:::o;43099:261::-;43196:4;43213:15;43231:12;:10;:12::i;:::-;43213:30;;43254:38;43270:4;43276:7;43285:6;43254:15;:38::i;:::-;43303:27;43313:4;43319:2;43323:6;43303:9;:27::i;:::-;43348:4;43341:11;;;43099:261;;;;;:::o;27729:131::-;27803:7;27830:6;:12;27837:4;27830:12;;;;;;;;;;;:22;;;27823:29;;27729:131;;;:::o;28170:147::-;28253:18;28266:4;28253:12;:18::i;:::-;25798:16;25809:4;25798:10;:16::i;:::-;28284:25:::1;28295:4;28301:7;28284:10;:25::i;:::-;28170:147:::0;;;:::o;51860:85::-;51910:5;51935:2;51928:9;;51860:85;:::o;29314:218::-;29421:12;:10;:12::i;:::-;29410:23;;:7;:23;;;29402:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;29498:26;29510:4;29516:7;29498:11;:26::i;:::-;29314:218;;:::o;43769:238::-;43857:4;43874:13;43890:12;:10;:12::i;:::-;43874:28;;43913:64;43922:5;43929:7;43966:10;43938:25;43948:5;43955:7;43938:9;:25::i;:::-;:38;;;;:::i;:::-;43913:8;:64::i;:::-;43995:4;43988:11;;;43769:238;;;;:::o;51773:79::-;51183:26;25798:16;25809:4;25798:10;:16::i;:::-;51834:10:::1;:8;:10::i;:::-;51773:79:::0;:::o;51953:403::-;32853:19;:17;:19::i;:::-;51255:25:::1;25798:16;25809:4;25798:10;:16::i;:::-;52105:9:::2;;52095:6;52079:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;52057:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;52244:10;:8;:10::i;:::-;52240:2;:14;;;;:::i;:::-;52232:5;:22;;;;:::i;:::-;52222:6;:32;;52200:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52326:22;52332:7;52341:6;52326:5;:22::i;:::-;32883:1:::1;51953:403:::0;;:::o;33248:86::-;33295:4;33319:7;;;;;;;;;;;33312:14;;33248:86;:::o;41258:127::-;41332:7;41359:9;:18;41369:7;41359:18;;;;;;;;;;;;;;;;41352:25;;41258:127;;;:::o;51692:73::-;51112:24;25798:16;25809:4;25798:10;:16::i;:::-;51749:8:::1;:6;:8::i;:::-;51692:73:::0;:::o;26202:147::-;26288:4;26312:6;:12;26319:4;26312:12;;;;;;;;;;;:20;;:29;26333:7;26312:29;;;;;;;;;;;;;;;;;;;;;;;;;26305:36;;26202:147;;;;:::o;40177:104::-;40233:13;40266:7;40259:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40177:104;:::o;51216:64::-;51255:25;51216:64;:::o;25307:49::-;25352:4;25307:49;;;:::o;44510:436::-;44603:4;44620:13;44636:12;:10;:12::i;:::-;44620:28;;44659:24;44686:25;44696:5;44703:7;44686:9;:25::i;:::-;44659:52;;44750:15;44730:16;:35;;44722:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;44843:60;44852:5;44859:7;44887:15;44868:16;:34;44843:8;:60::i;:::-;44934:4;44927:11;;;;44510:436;;;;:::o;52483:277::-;52568:4;32853:19;:17;:19::i;:::-;52603:4:::1;52589:19;;:2;:19;;;:39;;;;52626:1;52612:16;;:2;:16;;;52589:39;52585:122;;;52645:24;52650:10;52662:6;52645:4;:24::i;:::-;52691:4;52684:11;;;;52585:122;52726:26;52741:2;52745:6;52726:14;:26::i;:::-;52719:33;;32883:1;52483:277:::0;;;;:::o;28610:149::-;28694:18;28707:4;28694:12;:18::i;:::-;25798:16;25809:4;25798:10;:16::i;:::-;28725:26:::1;28737:4;28743:7;28725:11;:26::i;:::-;28610:149:::0;;;:::o;51289:24::-;;;;:::o;41847:151::-;41936:7;41963:11;:18;41975:5;41963:18;;;;;;;;;;;;;;;:27;41982:7;41963:27;;;;;;;;;;;;;;;;41956:34;;41847:151;;;;:::o;51074:62::-;51112:24;51074:62;:::o;51143:66::-;51183:26;51143:66;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;22988:98::-;23041:7;23068:10;23061:17;;22988:98;:::o;48503:346::-;48622:1;48605:19;;:5;:19;;;48597:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48703:1;48684:21;;:7;:21;;;48676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48787:6;48757:11;:18;48769:5;48757:18;;;;;;;;;;;;;;;:27;48776:7;48757:27;;;;;;;;;;;;;;;:36;;;;48825:7;48809:32;;48818:5;48809:32;;;48834:6;48809:32;;;;;;:::i;:::-;;;;;;;;48503:346;;;:::o;49140:419::-;49241:24;49268:25;49278:5;49285:7;49268:9;:25::i;:::-;49241:52;;49328:17;49308:16;:37;49304:248;;49390:6;49370:16;:26;;49362:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49474:51;49483:5;49490:7;49518:6;49499:16;:25;49474:8;:51::i;:::-;49304:248;49230:329;49140:419;;;:::o;45416:806::-;45529:1;45513:18;;:4;:18;;;45505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45606:1;45592:16;;:2;:16;;;45584:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45661:38;45682:4;45688:2;45692:6;45661:20;:38::i;:::-;45712:19;45734:9;:15;45744:4;45734:15;;;;;;;;;;;;;;;;45712:37;;45783:6;45768:11;:21;;45760:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45900:6;45886:11;:20;45868:9;:15;45878:4;45868:15;;;;;;;;;;;;;;;:38;;;;46103:6;46086:9;:13;46096:2;46086:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;46153:2;46138:26;;46147:4;46138:26;;;46157:6;46138:26;;;;;;:::i;:::-;;;;;;;;46177:37;46197:4;46203:2;46207:6;46177:19;:37::i;:::-;45494:728;45416:806;;;:::o;26653:105::-;26720:30;26731:4;26737:12;:10;:12::i;:::-;26720:10;:30::i;:::-;26653:105;:::o;30911:238::-;30995:22;31003:4;31009:7;30995;:22::i;:::-;30990:152;;31066:4;31034:6;:12;31041:4;31034:12;;;;;;;;;;;:20;;:29;31055:7;31034:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;31117:12;:10;:12::i;:::-;31090:40;;31108:7;31090:40;;31102:4;31090:40;;;;;;;;;;30990:152;30911:238;;:::o;31329:239::-;31413:22;31421:4;31427:7;31413;:22::i;:::-;31409:152;;;31484:5;31452:6;:12;31459:4;31452:12;;;;;;;;;;;:20;;:29;31473:7;31452:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;31536:12;:10;:12::i;:::-;31509:40;;31527:7;31509:40;;31521:4;31509:40;;;;;;;;;;31409:152;31329:239;;:::o;34103:120::-;33112:16;:14;:16::i;:::-;34172:5:::1;34162:7;;:15;;;;;;;;;;;;;;;;;;34193:22;34202:12;:10;:12::i;:::-;34193:22;;;;;;:::i;:::-;;;;;;;;34103:120::o:0;33407:108::-;33478:8;:6;:8::i;:::-;33477:9;33469:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;33407:108::o;46509:548::-;46612:1;46593:21;;:7;:21;;;46585:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;46663:49;46692:1;46696:7;46705:6;46663:20;:49::i;:::-;46741:6;46725:12;;:22;;;;;;;:::i;:::-;;;;;;;;46918:6;46896:9;:18;46906:7;46896:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;46972:7;46951:37;;46968:1;46951:37;;;46981:6;46951:37;;;;;;:::i;:::-;;;;;;;;47001:48;47029:1;47033:7;47042:6;47001:19;:48::i;:::-;46509:548;;:::o;33844:118::-;32853:19;:17;:19::i;:::-;33914:4:::1;33904:7;;:14;;;;;;;;;;;;;;;;;;33934:20;33941:12;:10;:12::i;:::-;33934:20;;;;;;:::i;:::-;;;;;;;;33844:118::o:0;52364:111::-;32853:19;:17;:19::i;:::-;52445:22:::1;52451:7;52460:6;52445:5;:22::i;:::-;52364:111:::0;;:::o;41591:193::-;41670:4;41687:13;41703:12;:10;:12::i;:::-;41687:28;;41726;41736:5;41743:2;41747:6;41726:9;:28::i;:::-;41772:4;41765:11;;;41591:193;;;;:::o;50159:91::-;;;;:::o;50854:90::-;;;;:::o;27048:492::-;27137:22;27145:4;27151:7;27137;:22::i;:::-;27132:401;;27325:28;27345:7;27325:19;:28::i;:::-;27426:38;27454:4;27446:13;;27461:2;27426:19;:38::i;:::-;27230:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27176:345;;;;;;;;;;;:::i;:::-;;;;;;;;27132:401;27048:492;;:::o;33592:108::-;33659:8;:6;:8::i;:::-;33651:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;33592:108::o;47390:675::-;47493:1;47474:21;;:7;:21;;;47466:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;47546:49;47567:7;47584:1;47588:6;47546:20;:49::i;:::-;47608:22;47633:9;:18;47643:7;47633:18;;;;;;;;;;;;;;;;47608:43;;47688:6;47670:14;:24;;47662:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47807:6;47790:14;:23;47769:9;:18;47779:7;47769:18;;;;;;;;;;;;;;;:44;;;;47924:6;47908:12;;:22;;;;;;;;;;;47985:1;47959:37;;47968:7;47959:37;;;47989:6;47959:37;;;;;;:::i;:::-;;;;;;;;48009:48;48029:7;48046:1;48050:6;48009:19;:48::i;:::-;47455:610;47390:675;;:::o;18882:151::-;18940:13;18973:52;19001:4;18985:22;;16757:2;18973:52;;:11;:52::i;:::-;18966:59;;18882:151;;;:::o;18278:447::-;18353:13;18379:19;18424:1;18415:6;18411:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;18401:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18379:47;;18437:15;:6;18444:1;18437:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;18463;:6;18470:1;18463:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;18494:9;18519:1;18510:6;18506:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;18494:26;;18489:131;18526:1;18522;:5;18489:131;;;18561:8;18578:3;18570:5;:11;18561:21;;;;;;;:::i;:::-;;;;;18549:6;18556:1;18549:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;18607:1;18597:11;;;;;18529:3;;;;:::i;:::-;;;18489:131;;;;18647:1;18638:5;:10;18630:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;18710:6;18696:21;;;18278:447;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:619::-;4632:6;4640;4648;4697:2;4685:9;4676:7;4672:23;4668:32;4665:119;;;4703:79;;:::i;:::-;4665:119;4823:1;4848:53;4893:7;4884:6;4873:9;4869:22;4848:53;:::i;:::-;4838:63;;4794:117;4950:2;4976:53;5021:7;5012:6;5001:9;4997:22;4976:53;:::i;:::-;4966:63;;4921:118;5078:2;5104:53;5149:7;5140:6;5129:9;5125:22;5104:53;:::i;:::-;5094:63;;5049:118;4555:619;;;;;:::o;5180:77::-;5217:7;5246:5;5235:16;;5180:77;;;:::o;5263:122::-;5336:24;5354:5;5336:24;:::i;:::-;5329:5;5326:35;5316:63;;5375:1;5372;5365:12;5316:63;5263:122;:::o;5391:139::-;5437:5;5475:6;5462:20;5453:29;;5491:33;5518:5;5491:33;:::i;:::-;5391:139;;;;:::o;5536:329::-;5595:6;5644:2;5632:9;5623:7;5619:23;5615:32;5612:119;;;5650:79;;:::i;:::-;5612:119;5770:1;5795:53;5840:7;5831:6;5820:9;5816:22;5795:53;:::i;:::-;5785:63;;5741:117;5536:329;;;;:::o;5871:118::-;5958:24;5976:5;5958:24;:::i;:::-;5953:3;5946:37;5871:118;;:::o;5995:222::-;6088:4;6126:2;6115:9;6111:18;6103:26;;6139:71;6207:1;6196:9;6192:17;6183:6;6139:71;:::i;:::-;5995:222;;;;:::o;6223:474::-;6291:6;6299;6348:2;6336:9;6327:7;6323:23;6319:32;6316:119;;;6354:79;;:::i;:::-;6316:119;6474:1;6499:53;6544:7;6535:6;6524:9;6520:22;6499:53;:::i;:::-;6489:63;;6445:117;6601:2;6627:53;6672:7;6663:6;6652:9;6648:22;6627:53;:::i;:::-;6617:63;;6572:118;6223:474;;;;;:::o;6703:86::-;6738:7;6778:4;6771:5;6767:16;6756:27;;6703:86;;;:::o;6795:112::-;6878:22;6894:5;6878:22;:::i;:::-;6873:3;6866:35;6795:112;;:::o;6913:214::-;7002:4;7040:2;7029:9;7025:18;7017:26;;7053:67;7117:1;7106:9;7102:17;7093:6;7053:67;:::i;:::-;6913:214;;;;:::o;7133:329::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:53;7437:7;7428:6;7417:9;7413:22;7392:53;:::i;:::-;7382:63;;7338:117;7133:329;;;;:::o;7468:474::-;7536:6;7544;7593:2;7581:9;7572:7;7568:23;7564:32;7561:119;;;7599:79;;:::i;:::-;7561:119;7719:1;7744:53;7789:7;7780:6;7769:9;7765:22;7744:53;:::i;:::-;7734:63;;7690:117;7846:2;7872:53;7917:7;7908:6;7897:9;7893:22;7872:53;:::i;:::-;7862:63;;7817:118;7468:474;;;;;:::o;7948:180::-;7996:77;7993:1;7986:88;8093:4;8090:1;8083:15;8117:4;8114:1;8107:15;8134:320;8178:6;8215:1;8209:4;8205:12;8195:22;;8262:1;8256:4;8252:12;8283:18;8273:81;;8339:4;8331:6;8327:17;8317:27;;8273:81;8401:2;8393:6;8390:14;8370:18;8367:38;8364:84;;8420:18;;:::i;:::-;8364:84;8185:269;8134:320;;;:::o;8460:234::-;8600:34;8596:1;8588:6;8584:14;8577:58;8669:17;8664:2;8656:6;8652:15;8645:42;8460:234;:::o;8700:366::-;8842:3;8863:67;8927:2;8922:3;8863:67;:::i;:::-;8856:74;;8939:93;9028:3;8939:93;:::i;:::-;9057:2;9052:3;9048:12;9041:19;;8700:366;;;:::o;9072:419::-;9238:4;9276:2;9265:9;9261:18;9253:26;;9325:9;9319:4;9315:20;9311:1;9300:9;9296:17;9289:47;9353:131;9479:4;9353:131;:::i;:::-;9345:139;;9072:419;;;:::o;9497:180::-;9545:77;9542:1;9535:88;9642:4;9639:1;9632:15;9666:4;9663:1;9656:15;9683:191;9723:3;9742:20;9760:1;9742:20;:::i;:::-;9737:25;;9776:20;9794:1;9776:20;:::i;:::-;9771:25;;9819:1;9816;9812:9;9805:16;;9840:3;9837:1;9834:10;9831:36;;;9847:18;;:::i;:::-;9831:36;9683:191;;;;:::o;9880:234::-;10020:34;10016:1;10008:6;10004:14;9997:58;10089:17;10084:2;10076:6;10072:15;10065:42;9880:234;:::o;10120:366::-;10262:3;10283:67;10347:2;10342:3;10283:67;:::i;:::-;10276:74;;10359:93;10448:3;10359:93;:::i;:::-;10477:2;10472:3;10468:12;10461:19;;10120:366;;;:::o;10492:419::-;10658:4;10696:2;10685:9;10681:18;10673:26;;10745:9;10739:4;10735:20;10731:1;10720:9;10716:17;10709:47;10773:131;10899:4;10773:131;:::i;:::-;10765:139;;10492:419;;;:::o;10917:102::-;10959:8;11006:5;11003:1;10999:13;10978:34;;10917:102;;;:::o;11025:848::-;11086:5;11093:4;11117:6;11108:15;;11141:5;11132:14;;11155:712;11176:1;11166:8;11163:15;11155:712;;;11271:4;11266:3;11262:14;11256:4;11253:24;11250:50;;;11280:18;;:::i;:::-;11250:50;11330:1;11320:8;11316:16;11313:451;;;11745:4;11738:5;11734:16;11725:25;;11313:451;11795:4;11789;11785:15;11777:23;;11825:32;11848:8;11825:32;:::i;:::-;11813:44;;11155:712;;;11025:848;;;;;;;:::o;11879:1073::-;11933:5;12124:8;12114:40;;12145:1;12136:10;;12147:5;;12114:40;12173:4;12163:36;;12190:1;12181:10;;12192:5;;12163:36;12259:4;12307:1;12302:27;;;;12343:1;12338:191;;;;12252:277;;12302:27;12320:1;12311:10;;12322:5;;;12338:191;12383:3;12373:8;12370:17;12367:43;;;12390:18;;:::i;:::-;12367:43;12439:8;12436:1;12432:16;12423:25;;12474:3;12467:5;12464:14;12461:40;;;12481:18;;:::i;:::-;12461:40;12514:5;;;12252:277;;12638:2;12628:8;12625:16;12619:3;12613:4;12610:13;12606:36;12588:2;12578:8;12575:16;12570:2;12564:4;12561:12;12557:35;12541:111;12538:246;;;12694:8;12688:4;12684:19;12675:28;;12729:3;12722:5;12719:14;12716:40;;;12736:18;;:::i;:::-;12716:40;12769:5;;12538:246;12809:42;12847:3;12837:8;12831:4;12828:1;12809:42;:::i;:::-;12794:57;;;;12883:4;12878:3;12874:14;12867:5;12864:25;12861:51;;;12892:18;;:::i;:::-;12861:51;12941:4;12934:5;12930:16;12921:25;;11879:1073;;;;;;:::o;12958:281::-;13016:5;13040:23;13058:4;13040:23;:::i;:::-;13032:31;;13084:25;13100:8;13084:25;:::i;:::-;13072:37;;13128:104;13165:66;13155:8;13149:4;13128:104;:::i;:::-;13119:113;;12958:281;;;;:::o;13245:410::-;13285:7;13308:20;13326:1;13308:20;:::i;:::-;13303:25;;13342:20;13360:1;13342:20;:::i;:::-;13337:25;;13397:1;13394;13390:9;13419:30;13437:11;13419:30;:::i;:::-;13408:41;;13598:1;13589:7;13585:15;13582:1;13579:22;13559:1;13552:9;13532:83;13509:139;;13628:18;;:::i;:::-;13509:139;13293:362;13245:410;;;;:::o;13661:181::-;13801:33;13797:1;13789:6;13785:14;13778:57;13661:181;:::o;13848:366::-;13990:3;14011:67;14075:2;14070:3;14011:67;:::i;:::-;14004:74;;14087:93;14176:3;14087:93;:::i;:::-;14205:2;14200:3;14196:12;14189:19;;13848:366;;;:::o;14220:419::-;14386:4;14424:2;14413:9;14409:18;14401:26;;14473:9;14467:4;14463:20;14459:1;14448:9;14444:17;14437:47;14501:131;14627:4;14501:131;:::i;:::-;14493:139;;14220:419;;;:::o;14645:224::-;14785:34;14781:1;14773:6;14769:14;14762:58;14854:7;14849:2;14841:6;14837:15;14830:32;14645:224;:::o;14875:366::-;15017:3;15038:67;15102:2;15097:3;15038:67;:::i;:::-;15031:74;;15114:93;15203:3;15114:93;:::i;:::-;15232:2;15227:3;15223:12;15216:19;;14875:366;;;:::o;15247:419::-;15413:4;15451:2;15440:9;15436:18;15428:26;;15500:9;15494:4;15490:20;15486:1;15475:9;15471:17;15464:47;15528:131;15654:4;15528:131;:::i;:::-;15520:139;;15247:419;;;:::o;15672:223::-;15812:34;15808:1;15800:6;15796:14;15789:58;15881:6;15876:2;15868:6;15864:15;15857:31;15672:223;:::o;15901:366::-;16043:3;16064:67;16128:2;16123:3;16064:67;:::i;:::-;16057:74;;16140:93;16229:3;16140:93;:::i;:::-;16258:2;16253:3;16249:12;16242:19;;15901:366;;;:::o;16273:419::-;16439:4;16477:2;16466:9;16462:18;16454:26;;16526:9;16520:4;16516:20;16512:1;16501:9;16497:17;16490:47;16554:131;16680:4;16554:131;:::i;:::-;16546:139;;16273:419;;;:::o;16698:221::-;16838:34;16834:1;16826:6;16822:14;16815:58;16907:4;16902:2;16894:6;16890:15;16883:29;16698:221;:::o;16925:366::-;17067:3;17088:67;17152:2;17147:3;17088:67;:::i;:::-;17081:74;;17164:93;17253:3;17164:93;:::i;:::-;17282:2;17277:3;17273:12;17266:19;;16925:366;;;:::o;17297:419::-;17463:4;17501:2;17490:9;17486:18;17478:26;;17550:9;17544:4;17540:20;17536:1;17525:9;17521:17;17514:47;17578:131;17704:4;17578:131;:::i;:::-;17570:139;;17297:419;;;:::o;17722:179::-;17862:31;17858:1;17850:6;17846:14;17839:55;17722:179;:::o;17907:366::-;18049:3;18070:67;18134:2;18129:3;18070:67;:::i;:::-;18063:74;;18146:93;18235:3;18146:93;:::i;:::-;18264:2;18259:3;18255:12;18248:19;;17907:366;;;:::o;18279:419::-;18445:4;18483:2;18472:9;18468:18;18460:26;;18532:9;18526:4;18522:20;18518:1;18507:9;18503:17;18496:47;18560:131;18686:4;18560:131;:::i;:::-;18552:139;;18279:419;;;:::o;18704:224::-;18844:34;18840:1;18832:6;18828:14;18821:58;18913:7;18908:2;18900:6;18896:15;18889:32;18704:224;:::o;18934:366::-;19076:3;19097:67;19161:2;19156:3;19097:67;:::i;:::-;19090:74;;19173:93;19262:3;19173:93;:::i;:::-;19291:2;19286:3;19282:12;19275:19;;18934:366;;;:::o;19306:419::-;19472:4;19510:2;19499:9;19495:18;19487:26;;19559:9;19553:4;19549:20;19545:1;19534:9;19530:17;19523:47;19587:131;19713:4;19587:131;:::i;:::-;19579:139;;19306:419;;;:::o;19731:222::-;19871:34;19867:1;19859:6;19855:14;19848:58;19940:5;19935:2;19927:6;19923:15;19916:30;19731:222;:::o;19959:366::-;20101:3;20122:67;20186:2;20181:3;20122:67;:::i;:::-;20115:74;;20198:93;20287:3;20198:93;:::i;:::-;20316:2;20311:3;20307:12;20300:19;;19959:366;;;:::o;20331:419::-;20497:4;20535:2;20524:9;20520:18;20512:26;;20584:9;20578:4;20574:20;20570:1;20559:9;20555:17;20548:47;20612:131;20738:4;20612:131;:::i;:::-;20604:139;;20331:419;;;:::o;20756:225::-;20896:34;20892:1;20884:6;20880:14;20873:58;20965:8;20960:2;20952:6;20948:15;20941:33;20756:225;:::o;20987:366::-;21129:3;21150:67;21214:2;21209:3;21150:67;:::i;:::-;21143:74;;21226:93;21315:3;21226:93;:::i;:::-;21344:2;21339:3;21335:12;21328:19;;20987:366;;;:::o;21359:419::-;21525:4;21563:2;21552:9;21548:18;21540:26;;21612:9;21606:4;21602:20;21598:1;21587:9;21583:17;21576:47;21640:131;21766:4;21640:131;:::i;:::-;21632:139;;21359:419;;;:::o;21784:118::-;21871:24;21889:5;21871:24;:::i;:::-;21866:3;21859:37;21784:118;;:::o;21908:222::-;22001:4;22039:2;22028:9;22024:18;22016:26;;22052:71;22120:1;22109:9;22105:17;22096:6;22052:71;:::i;:::-;21908:222;;;;:::o;22136:166::-;22276:18;22272:1;22264:6;22260:14;22253:42;22136:166;:::o;22308:366::-;22450:3;22471:67;22535:2;22530:3;22471:67;:::i;:::-;22464:74;;22547:93;22636:3;22547:93;:::i;:::-;22665:2;22660:3;22656:12;22649:19;;22308:366;;;:::o;22680:419::-;22846:4;22884:2;22873:9;22869:18;22861:26;;22933:9;22927:4;22923:20;22919:1;22908:9;22904:17;22897:47;22961:131;23087:4;22961:131;:::i;:::-;22953:139;;22680:419;;;:::o;23105:181::-;23245:33;23241:1;23233:6;23229:14;23222:57;23105:181;:::o;23292:366::-;23434:3;23455:67;23519:2;23514:3;23455:67;:::i;:::-;23448:74;;23531:93;23620:3;23531:93;:::i;:::-;23649:2;23644:3;23640:12;23633:19;;23292:366;;;:::o;23664:419::-;23830:4;23868:2;23857:9;23853:18;23845:26;;23917:9;23911:4;23907:20;23903:1;23892:9;23888:17;23881:47;23945:131;24071:4;23945:131;:::i;:::-;23937:139;;23664:419;;;:::o;24089:148::-;24191:11;24228:3;24213:18;;24089:148;;;;:::o;24243:173::-;24383:25;24379:1;24371:6;24367:14;24360:49;24243:173;:::o;24422:402::-;24582:3;24603:85;24685:2;24680:3;24603:85;:::i;:::-;24596:92;;24697:93;24786:3;24697:93;:::i;:::-;24815:2;24810:3;24806:12;24799:19;;24422:402;;;:::o;24830:390::-;24936:3;24964:39;24997:5;24964:39;:::i;:::-;25019:89;25101:6;25096:3;25019:89;:::i;:::-;25012:96;;25117:65;25175:6;25170:3;25163:4;25156:5;25152:16;25117:65;:::i;:::-;25207:6;25202:3;25198:16;25191:23;;24940:280;24830:390;;;;:::o;25226:167::-;25366:19;25362:1;25354:6;25350:14;25343:43;25226:167;:::o;25399:402::-;25559:3;25580:85;25662:2;25657:3;25580:85;:::i;:::-;25573:92;;25674:93;25763:3;25674:93;:::i;:::-;25792:2;25787:3;25783:12;25776:19;;25399:402;;;:::o;25807:967::-;26189:3;26211:148;26355:3;26211:148;:::i;:::-;26204:155;;26376:95;26467:3;26458:6;26376:95;:::i;:::-;26369:102;;26488:148;26632:3;26488:148;:::i;:::-;26481:155;;26653:95;26744:3;26735:6;26653:95;:::i;:::-;26646:102;;26765:3;26758:10;;25807:967;;;;;:::o;26780:170::-;26920:22;26916:1;26908:6;26904:14;26897:46;26780:170;:::o;26956:366::-;27098:3;27119:67;27183:2;27178:3;27119:67;:::i;:::-;27112:74;;27195:93;27284:3;27195:93;:::i;:::-;27313:2;27308:3;27304:12;27297:19;;26956:366;;;:::o;27328:419::-;27494:4;27532:2;27521:9;27517:18;27509:26;;27581:9;27575:4;27571:20;27567:1;27556:9;27552:17;27545:47;27609:131;27735:4;27609:131;:::i;:::-;27601:139;;27328:419;;;:::o;27753:220::-;27893:34;27889:1;27881:6;27877:14;27870:58;27962:3;27957:2;27949:6;27945:15;27938:28;27753:220;:::o;27979:366::-;28121:3;28142:67;28206:2;28201:3;28142:67;:::i;:::-;28135:74;;28218:93;28307:3;28218:93;:::i;:::-;28336:2;28331:3;28327:12;28320:19;;27979:366;;;:::o;28351:419::-;28517:4;28555:2;28544:9;28540:18;28532:26;;28604:9;28598:4;28594:20;28590:1;28579:9;28575:17;28568:47;28632:131;28758:4;28632:131;:::i;:::-;28624:139;;28351:419;;;:::o;28776:221::-;28916:34;28912:1;28904:6;28900:14;28893:58;28985:4;28980:2;28972:6;28968:15;28961:29;28776:221;:::o;29003:366::-;29145:3;29166:67;29230:2;29225:3;29166:67;:::i;:::-;29159:74;;29242:93;29331:3;29242:93;:::i;:::-;29360:2;29355:3;29351:12;29344:19;;29003:366;;;:::o;29375:419::-;29541:4;29579:2;29568:9;29564:18;29556:26;;29628:9;29622:4;29618:20;29614:1;29603:9;29599:17;29592:47;29656:131;29782:4;29656:131;:::i;:::-;29648:139;;29375:419;;;:::o;29800:180::-;29848:77;29845:1;29838:88;29945:4;29942:1;29935:15;29969:4;29966:1;29959:15;29986:180;30034:77;30031:1;30024:88;30131:4;30128:1;30121:15;30155:4;30152:1;30145:15;30172:171;30211:3;30234:24;30252:5;30234:24;:::i;:::-;30225:33;;30280:4;30273:5;30270:15;30267:41;;30288:18;;:::i;:::-;30267:41;30335:1;30328:5;30324:13;30317:20;;30172:171;;;:::o;30349:182::-;30489:34;30485:1;30477:6;30473:14;30466:58;30349:182;:::o;30537:366::-;30679:3;30700:67;30764:2;30759:3;30700:67;:::i;:::-;30693:74;;30776:93;30865:3;30776:93;:::i;:::-;30894:2;30889:3;30885:12;30878:19;;30537:366;;;:::o;30909:419::-;31075:4;31113:2;31102:9;31098:18;31090:26;;31162:9;31156:4;31152:20;31148:1;31137:9;31133:17;31126:47;31190:131;31316:4;31190:131;:::i;:::-;31182:139;;30909:419;;;:::o

Swarm Source

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