ETH Price: $3,398.79 (+6.47%)
Gas: 18 Gwei

Token

Inferno Genesis Keys (INFERNO)
 

Overview

Max Total Supply

927 INFERNO

Holders

569

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
marimur.eth
Balance
1 INFERNO
0x0CA5E28503BE54e777FDdAe3ac5F3206BCD46ee9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Inferno

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-27
*/

// File: contracts/ownable.sol



pragma solidity ^0.8.0;

contract Ownable {
    address public owner;


    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
    * @dev The Ownable constructor sets the original `owner` of the contract to the sender
    * account.
    */
    constructor() {
        owner = msg.sender;
    }

    /**
    * @dev Throws if called by any account other than the owner.
    */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /*
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

}
// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;





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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: contracts/Inferno.sol


pragma solidity ^0.8.0;







contract Inferno is ERC721, ERC721URIStorage, Pausable, AccessControl, Ownable {
    using Counters for Counters.Counter;

    struct Supply {
        uint256 aqu;
        uint256 ari;
        uint256 can;
        uint256 cap;
        uint256 gem;
        uint256 leo;
        uint256 lib;
        uint256 pis;
        uint256 sag;
        uint256 sco;
        uint256 tau;
        uint256 vir;
    }

    struct ZodiacSign {
        string uri;
        Counters.Counter counter;
        bool exists;
    }

    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    string private currentPhase = "six";
    Counters.Counter private _tokenCounter;

    mapping(string => ZodiacSign) private zodiacSigns;
    mapping(uint256 => string) private _tokenZodiac;

    mapping(address => bool) private _sixes_minted;
    mapping(address => bool) private _sevens_minted;

    uint256 private _public_price = 150000000000000000; // 0.15 Ether
    uint256 private _wl_price = 100000000000000000;     // 0.10 Ether  
    uint256 private _maxSupply = 12000;
    uint256 private _maxZodiacSupply = 1000;

    uint256 private _phaseMaxSupply = 666;
    uint256 private _initialPhaseCount = 0;

    bool private _isSalePublic = false;

    string private base_uri = "";
    string curi = "";

    bool initialized = false;
    address dantes_castodial = 0x4d87EbD494E3f266Edd17f5e88E374473FB19DCF;

    constructor() ERC721("Inferno Genesis Keys", "INFERNO") {
        _pause();

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);

        zodiacSigns["aqu"] = ZodiacSign("Aquarius",   Counters.Counter(0), true);
        zodiacSigns["ari"] = ZodiacSign("Aries",      Counters.Counter(0), true);
        zodiacSigns["can"] = ZodiacSign("Cancer",     Counters.Counter(0), true);
        zodiacSigns["cap"] = ZodiacSign("Capricorn",  Counters.Counter(0), true);
        zodiacSigns["gem"] = ZodiacSign("Gemini",     Counters.Counter(0), true);
        zodiacSigns["leo"] = ZodiacSign("Leo",        Counters.Counter(0), true);
        zodiacSigns["lib"] = ZodiacSign("Libra",      Counters.Counter(0), true);
        zodiacSigns["pis"] = ZodiacSign("Pisces",     Counters.Counter(0), true);
        zodiacSigns["sag"] = ZodiacSign("Sagittarius", Counters.Counter(0), true);
        zodiacSigns["sco"] = ZodiacSign("Scorpio",    Counters.Counter(0), true);
        zodiacSigns["tau"] = ZodiacSign("Taurus",     Counters.Counter(0), true);
        zodiacSigns["vir"] = ZodiacSign("Virgo",      Counters.Counter(0), true);

        initializeMint();
    }

    function mintKeyWhitelist(address to, string calldata sign, string calldata phase, uint8 _v, bytes32 _r, bytes32 _s) public payable onlyValidAccess( phase, _v, _r, _s) {
        if(paused()) {
            revert(
                string(
                    abi.encodePacked(
                        "Sales not active"
                    )
                )
            );
        }

        if(_tokenCounter.current() + 1 > _initialPhaseCount + _phaseMaxSupply) {
            revert(
                string(
                    abi.encodePacked(
                        "Current phase has minted out."
                    )
                )
            );
        }

        if(_wl_price != msg.value) {
            revert(
                string(
                    abi.encodePacked(
                        "Invalid Quantity"
                    )
                )
            );
        }

        if(keccak256(abi.encodePacked(currentPhase)) != keccak256(abi.encodePacked(phase))) {
            revert(
                string(
                    abi.encodePacked(
                        "Invalid Phase"
                    )
                )
            );
        }

        if(keccak256(abi.encodePacked(currentPhase)) == keccak256(abi.encodePacked("six"))) {
            if(_sixes_minted[msg.sender]) {
                revert(
                    string(
                        abi.encodePacked(
                            "Mint limit reached"
                        )
                    )
                );
            } else {
                _sixes_minted[msg.sender] = true;
            }
        }

        if(keccak256(abi.encodePacked(currentPhase)) == keccak256(abi.encodePacked("seven"))) {
            if(_sevens_minted[msg.sender]) {
                revert(
                    string(
                        abi.encodePacked(
                            "Mint limit reached"
                        )
                    )
                );
            } else {
                _sevens_minted[msg.sender] = true;
            }
        }

        mintKey(to, sign);
    }

    function mintKeyPublic(address to, string calldata sign) public payable {
        if(paused()) {
            revert(
                string(
                    abi.encodePacked(
                        "Sales not active"
                    )
                )
            );
        }

        if(_phaseMaxSupply > 0 && _tokenCounter.current() + 1 > _initialPhaseCount + _phaseMaxSupply) {
            revert(
                string(
                    abi.encodePacked(
                        "Current phase has minted out."
                    )
                )
            );
        }

        if(!_isSalePublic) {
            revert(
                string(
                    abi.encodePacked(
                        "Public sale not active"
                    )
                )
            );
        }

        if(_public_price != msg.value) {
            revert(
                string(
                    abi.encodePacked(
                        "Invalid Quantity"
                    )
                )
            );
        }

        mintKey(to, sign);
    }

    function mintKey(address to, string calldata sign) internal {
        uint256 tokenId = _tokenCounter.current() + 1;

        if(tokenId >= _maxSupply) {
            revert(
                string(
                    abi.encodePacked(
                        "No more tokens"
                    )
                )
            );
        }
        _tokenCounter.increment();
        
        // if(_minted[msg.sender]) {
        //     revert(
        //         string(
        //             abi.encodePacked(
        //                 "Mint limit reached"
        //             )
        //         )
        //     );
        // } else {
        //     _minted[msg.sender] = true;
        // }

        string memory uri;

        if(zodiacSigns[sign].exists) {
            if(zodiacSigns[sign].counter.current() >= _maxZodiacSupply) {
                revert(
                    string(
                        abi.encodePacked(
                            "No more ",
                            zodiacSigns[sign].uri,
                            " tokens"
                        )
                    )
                );
            }
            uri = string(
                abi.encodePacked(
                    zodiacSigns[sign].uri,
                    "/",
                    Strings.toString(tokenId)
                )
            );
            zodiacSigns[sign].counter.increment();
            _tokenZodiac[tokenId] = zodiacSigns[sign].uri;
        } else {
            revert(
                string(
                    abi.encodePacked(
                        "Invalid Zodiac Sign"
                    )
                )
            );
        }
        
        // mint current + 1 e.g 0 + 1
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function _baseURI() internal view override returns (string memory) {
        return base_uri;
    }

    function setBaseUri(string calldata uri) public onlyRole(DEFAULT_ADMIN_ROLE) {
        base_uri = uri;
    }

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

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }
    
    function enablePublic() public onlyRole(PAUSER_ROLE) {
        _isSalePublic = true;
    }
    
    function disablePublic() public onlyRole(PAUSER_ROLE) {
        _isSalePublic = false;
    }

    function setPrice(uint256 wl_price, uint256 public_price) public onlyRole(PAUSER_ROLE) {
        _public_price = public_price;
        _wl_price = wl_price;
    }

    // phase: 'six', 'seven', or 'general'
    // updateSupply: true for first use of setPhase when switching to phase 'six' or 'seven' part 1. On part 2 of phases 'six' or 'seven' updateSupply = false
    function setPhase(bool updateSupply, uint256 phaseSupply, string memory phase) public onlyRole(PAUSER_ROLE) {
        currentPhase = phase;

        if(updateSupply) {
            _phaseMaxSupply = phaseSupply; // Takes current minted count and adds new phase's supply giving max index # of current phase.
            _initialPhaseCount = _tokenCounter.current();
            if(phaseSupply == 0) {
                _isSalePublic = true;
            } else {
                _isSalePublic = false;
            }
        }
    }

    // whenNotPaused
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override
    {
        if(initialized) require(!paused(), "ERC721Pausable: token transfer while paused");
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function getCurrentPhase() public view returns(string memory) {
        return currentPhase;
    }

    function isSalePublic() public view returns(bool) {
        return _isSalePublic;
    }
    
    function price() public view returns(uint256) {
        if(_isSalePublic) {
            return _public_price;
        } else {
            return _wl_price;
        }
    }

    function maxSupply() public view returns(uint256) {
        return _maxSupply;
    }

    function maxPhaseSupply() public view returns(uint256) {
        return _phaseMaxSupply;
    }

    function maxZodiacSupply() public view returns(uint256) {
        return _maxZodiacSupply;
    }

    function totalSupply() public view returns(uint256) {
        return _tokenCounter.current();
    }

    function totalPhaseSupply() public view returns(uint256) {
        return _tokenCounter.current() - _initialPhaseCount;
    }

    function totalZodiacSupply() public view returns(Supply memory) {
        return Supply (
            zodiacSigns["aqu"].counter.current(),
            zodiacSigns["ari"].counter.current(),
            zodiacSigns["can"].counter.current(),
            zodiacSigns["cap"].counter.current(),
            zodiacSigns["gem"].counter.current(),
            zodiacSigns["leo"].counter.current(),
            zodiacSigns["lib"].counter.current(),
            zodiacSigns["pis"].counter.current(),
            zodiacSigns["sag"].counter.current(),
            zodiacSigns["sco"].counter.current(),
            zodiacSigns["tau"].counter.current(),
            zodiacSigns["vir"].counter.current()
        );
    }
    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    // function baseURI() view returns (string memory) {
    //     return base_uri;
    // }

    function tokenZodiac(uint256 tokenId) public view returns(string memory) {
        return _tokenZodiac[tokenId];
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
        // require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        // string memory baseURI = _baseURI();
        // return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId))) : "";
    }

    function initializeMint() internal onlyOwner {
        require(!initialized, "Already initialized");
        preMint(owner, "aqu");
        preMint(owner, "ari");
        preMint(owner, "can");
        preMint(owner, "cap");
        preMint(owner, "gem");
        preMint(owner, "leo");
        preMint(owner, "lib");
        preMint(owner, "pis");
        preMint(owner, "sag");
        preMint(owner, "sco");
        preMint(owner, "tau");
        preMint(owner, "vir");
        _initialPhaseCount = 12;
        initialized = true;
    }

    function preMint(address to, string memory sign) internal {
        uint256 tokenId = _tokenCounter.current() + 1;
        string memory uri;

        if(zodiacSigns[sign].exists) {
            uri = string(
                abi.encodePacked(
                    "Honorary_",
                    zodiacSigns[sign].uri,
                    "/",
                    Strings.toString(tokenId)
                )
            );
            zodiacSigns[sign].counter.increment();
            _tokenZodiac[tokenId] = zodiacSigns[sign].uri;
        } else {
            revert(
                string(
                    abi.encodePacked(
                        "Invalid Zodiac Sign"
                    )
                )
            );
        }
        _tokenCounter.increment();
        _mint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    modifier onlyValidAccess(string calldata phase, uint8 _v, bytes32 _r, bytes32 _s) 
    {
        require( isValidAccessMessage(msg.sender, phase, _v, _r, _s), "Not whitelisted");
        _;
    }

    function isValidAccessMessage(
        address _add,
        string calldata _pha,
        uint8 _v,
        bytes32 _r,
        bytes32 _s)
        view public returns (bool)
    {
        bytes32 hash = keccak256(
            abi.encodePacked(
                this, 
                _add,
                keccak256(abi.encodePacked(_pha))
            )
        );

        address recoverd = ecrecover(
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    hash
                )
            ),
            _v,
            _r,
            _s
        );
        return owner == recoverd;
    }

    function withdrawAll() public onlyOwner {
        (bool success,) = dantes_castodial.call{value: address(this).balance}("");
        require (success, "Transfer failed.");
    }

    function setContractURI(string memory newuri) public onlyRole(DEFAULT_ADMIN_ROLE) {
        curi = newuri;
    }

    function contractURI() public view returns (string memory) {
        return curi;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":true,"internalType":"uint256","name":"tokenId","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disablePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPhase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalePublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"string","name":"_pha","type":"string"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPhaseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxZodiacSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"sign","type":"string"}],"name":"mintKeyPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"sign","type":"string"},{"internalType":"string","name":"phase","type":"string"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintKeyWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"updateSupply","type":"bool"},{"internalType":"uint256","name":"phaseSupply","type":"uint256"},{"internalType":"string","name":"phase","type":"string"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wl_price","type":"uint256"},{"internalType":"uint256","name":"public_price","type":"uint256"}],"name":"setPrice","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenZodiac","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPhaseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalZodiacSupply","outputs":[{"components":[{"internalType":"uint256","name":"aqu","type":"uint256"},{"internalType":"uint256","name":"ari","type":"uint256"},{"internalType":"uint256","name":"can","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"gem","type":"uint256"},{"internalType":"uint256","name":"leo","type":"uint256"},{"internalType":"uint256","name":"lib","type":"uint256"},{"internalType":"uint256","name":"pis","type":"uint256"},{"internalType":"uint256","name":"sag","type":"uint256"},{"internalType":"uint256","name":"sco","type":"uint256"},{"internalType":"uint256","name":"tau","type":"uint256"},{"internalType":"uint256","name":"vir","type":"uint256"}],"internalType":"struct Inferno.Supply","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260036080819052620e6d2f60eb1b60a09081526200002691600a9190620012ab565b50670214e8348c4f000060105567016345785d8a0000601155612ee06012556103e860135561029a601455600060158190556016805460ff19169055604080516020810191829052829052620000809160179190620012ab565b50604080516020810191829052600090819052620000a191601891620012ab565b50601980546001600160a81b031916744d87ebd494e3f266edd17f5e88e374473fb19dcf00179055348015620000d657600080fd5b50604080518082018252601481527f496e6665726e6f2047656e65736973204b657973000000000000000000000000602080830191825283518085019094526007845266494e4645524e4f60c81b9084015281519192916200013b91600091620012ab565b50805162000151906001906020840190620012ab565b50506007805460ff1916905550600980546001600160a01b031916331790556200017a62000910565b62000187600033620009af565b620001b37f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620009af565b6040805160a08101825260086060820190815267417175617269757360c01b608083015281528151602080820184526000825282015260018183015290516261717560e81b8152600c90600301908152602001604051809103902060008201518160000190805190602001906200022c929190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a08101845260056060820190815264417269657360d81b608083015281528351808301855260008152818301528084019290925282516261726960e81b8152600c60038201529251928390036023019092208151805192939192620002c69284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a0810184526006606082019081526521b0b731b2b960d11b608083015281528351808301855260008152818301528084019290925282516231b0b760e91b8152600c60038201529251928390036023019092208151805192939192620003619284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a0810184526009606082019081526821b0b83934b1b7b93760b91b608083015281528351808301855260008152818301528084019290925282516206361760ec1b8152600c60038201529251928390036023019092208151805192939192620003ff9284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a0810184526006606082019081526547656d696e6960d01b608083015281528351808301855260008152818301528084019290925282516267656d60e81b8152600c600382015292519283900360230190922081518051929391926200049a9284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a081018452600360608201818152624c656f60e81b60808401528252845180840186526000815282840152818501939093528351626c656f60e81b8152600c938101939093529251918290036023019091208251805191926200053492849290910190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a081018452600560608201908152644c6962726160d81b60808301528152835180830185526000815281830152808401929092528251623634b160e91b8152600c60038201529251928390036023019092208151805192939192620005ce9284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a0810184526006606082019081526550697363657360d01b608083015281528351808301855260008152818301528084019290925282516270697360e81b8152600c60038201529251928390036023019092208151805192939192620006699284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a081018452600b606082019081526a536167697474617269757360a81b608083015281528351808301855260008152818301528084019290925282516273616760e81b8152600c60038201529251928390036023019092208151805192939192620007099284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a0810184526007606082019081526653636f7270696f60c81b608083015281528351808301855260008152818301528084019290925282516273636f60e81b8152600c60038201529251928390036023019092208151805192939192620007a59284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a0810184526006606082019081526554617572757360d01b608083015281528351808301855260008152818301528084019290925282516274617560e81b8152600c60038201529251928390036023019092208151805192939192620008409284920190620012ab565b50602082810151516001838101919091556040938401516002909301805493151560ff1990941693909317909255825160a08101845260056060820190815264566972676f60d81b60808301528152835180830185526000815281830152808401929092528251623b34b960e91b8152600c60038201529251928390036023019092208151805192939192620008da9284920190620012ab565b5060208201515160018201556040909101516002909101805460ff19169115159190911790556200090a62000a54565b62001668565b60075460ff16156200095c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064015b60405180910390fd5b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620009923390565b6040516001600160a01b03909116815260200160405180910390a1565b60008281526008602090815260408083206001600160a01b038516845290915290205460ff1662000a505760008281526008602090815260408083206001600160a01b03851684529091529020805460ff1916600117905562000a0f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6009546001600160a01b0316331462000a6c57600080fd5b60195460ff161562000ac15760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a656400000000000000000000000000604482015260640162000953565b60095460408051808201909152600381526261717560e81b602082015262000af3916001600160a01b03169062000d2d565b60095460408051808201909152600381526261726960e81b602082015262000b25916001600160a01b03169062000d2d565b60095460408051808201909152600381526231b0b760e91b602082015262000b57916001600160a01b03169062000d2d565b60095460408051808201909152600381526206361760ec1b602082015262000b89916001600160a01b03169062000d2d565b60095460408051808201909152600381526267656d60e81b602082015262000bbb916001600160a01b03169062000d2d565b6009546040805180820190915260038152626c656f60e81b602082015262000bed916001600160a01b03169062000d2d565b6009546040805180820190915260038152623634b160e91b602082015262000c1f916001600160a01b03169062000d2d565b60095460408051808201909152600381526270697360e81b602082015262000c51916001600160a01b03169062000d2d565b60095460408051808201909152600381526273616760e81b602082015262000c83916001600160a01b03169062000d2d565b60095460408051808201909152600381526273636f60e81b602082015262000cb5916001600160a01b03169062000d2d565b60095460408051808201909152600381526274617560e81b602082015262000ce7916001600160a01b03169062000d2d565b6009546040805180820190915260038152623b34b960e91b602082015262000d19916001600160a01b03169062000d2d565b600c6015556019805460ff19166001179055565b600062000d46600b62000efb60201b620018351760201c565b62000d5390600162001523565b90506060600c8360405162000d699190620013f3565b9081526040519081900360200190206002015460ff161562000e7257600c8360405162000d979190620013f3565b908152602001604051809103902060000162000dbe8362000eff60201b620018391760201c565b60405160200162000dd192919062001411565b604051602081830303815290604052905062000e1a600c8460405162000df89190620013f3565b90815260200160405180910390206001016200101c60201b6200193f1760201c565b600c8360405162000e2c9190620013f3565b9081526020016040518091039020600001600d600084815260200190815260200160002090805462000e5e906200159e565b62000e6b9291906200133a565b5062000ec6565b6040517f496e76616c6964205a6f64696163205369676e00000000000000000000000000602082015260330160408051601f198184030181529082905262461bcd60e51b82526200095391600401620014ee565b62000edd600b6200101c60201b6200193f1760201c565b62000ee9848362001025565b62000ef582826200117b565b50505050565b5490565b60608162000f245750506040805180820190915260018152600360fc1b602082015290565b8160005b811562000f54578062000f3b81620015db565b915062000f4c9050600a836200153e565b915062000f28565b6000816001600160401b0381111562000f715762000f7162001652565b6040519080825280601f01601f19166020018201604052801562000f9c576020820181803683370190505b5090505b8415620010145762000fb460018362001555565b915062000fc3600a86620015f9565b62000fd090603062001523565b60f81b81838151811062000fe85762000fe86200163c565b60200101906001600160f81b031916908160001a9053506200100c600a866200153e565b945062000fa0565b949350505050565b80546001019055565b6001600160a01b0382166200107d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000953565b6000818152600260205260409020546001600160a01b031615620010e45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000953565b620010f2600083836200121e565b6001600160a01b03821660009081526003602052604081208054600192906200111d90849062001523565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000828152600260205260409020546001600160a01b0316620011f85760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840162000953565b600082815260066020908152604090912082516200121992840190620012ab565b505050565b60195460ff1615620012935760075460ff1615620012935760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b606482015260840162000953565b620012198383836200121960201b62000aab1760201c565b828054620012b9906200159e565b90600052602060002090601f016020900481019282620012dd576000855562001328565b82601f10620012f857805160ff191683800117855562001328565b8280016001018555821562001328579182015b82811115620013285782518255916020019190600101906200130b565b5062001336929150620013be565b5090565b82805462001348906200159e565b90600052602060002090601f0160209004810192826200136c576000855562001328565b82601f106200137f578054855562001328565b828001600101855582156200132857600052602060002091601f016020900482015b8281111562001328578254825591600101919060010190620013a1565b5b80821115620013365760008155600101620013bf565b60008151620013e98185602086016200156f565b9290920192915050565b60008251620014078184602087016200156f565b9190910192915050565b68486f6e6f726172795f60b81b8152600060096000855481600182811c9150808316806200144057607f831692505b60208084108214156200146157634e487b7160e01b86526022600452602486fd5b8180156200147857600181146200148e57620014c1565b60ff1986168a890152848a0188019650620014c1565b60008c81526020902060005b86811015620014b75781548c82018b01529085019083016200149a565b505087858b010196505b505050505050620014e4620014dd82602f60f81b815260010190565b86620013d5565b9695505050505050565b60208152600082518060208401526200150f8160408501602087016200156f565b601f01601f19169190910160400192915050565b6000821982111562001539576200153962001610565b500190565b60008262001550576200155062001626565b500490565b6000828210156200156a576200156a62001610565b500390565b60005b838110156200158c57818101518382015260200162001572565b8381111562000ef55750506000910152565b600181811c90821680620015b357607f821691505b60208210811415620015d557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620015f257620015f262001610565b5060010190565b6000826200160b576200160b62001626565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6134e780620016786000396000f3fe60806040526004361061027d5760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063e63ab1e91161007a578063e63ab1e91461078a578063e8a3d485146107ac578063e985e9c5146107c1578063f2fde38b1461080a578063f329d9d71461082a578063f7d975771461084a57600080fd5b8063b88d4fde146106eb578063c87b56dd1461070b578063d072a89e1461072b578063d547741f14610740578063d5abeb0114610760578063dc64a7541461077557600080fd5b8063a0bcfc7f11610113578063a0bcfc7f146105cf578063a217fddf146105ef578063a22cb46514610604578063a3a40ea514610624578063aaa6e11b14610639578063affef86a1461064e57600080fd5b80638da5cb5b1461054557806391d1485414610565578063938e3d7b1461058557806395d89b41146105a5578063a035b1fe146105ba57600080fd5b806336568abe116101f357806359557a77116101ac57806359557a77146104ab5780635c975abb146104c35780636352211e146104db57806370a08231146104fb5780638456cb591461051b578063853828b61461053057600080fd5b806336568abe146104015780633f4ba83a146104215780633fa1fc6e1461043657806342842e0e146104565780635883f3b01461047657806359018ab21461049657600080fd5b806318160ddd1161024557806318160ddd1461034657806323b872dd14610369578063248a9ca3146103895780632f2ff15d146103b957806331051f9e146103d957806334e7d83f146103ec57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806310f0205914610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612f62565b61086a565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61087b565b6040516102ae919061325e565b3480156102e557600080fd5b506102f96102f4366004612f26565b61090d565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612ea5565b61099a565b005b610331610341366004612d37565b610ab0565b34801561035257600080fd5b5061035b610bd0565b6040519081526020016102ae565b34801561037557600080fd5b50610331610384366004612c55565b610be0565b34801561039557600080fd5b5061035b6103a4366004612f26565b60009081526008602052604090206001015490565b3480156103c557600080fd5b506103316103d4366004612f3f565b610c11565b6103316103e7366004612d8a565b610c37565b3480156103f857600080fd5b50610331610f2a565b34801561040d57600080fd5b5061033161041c366004612f3f565b610f50565b34801561042d57600080fd5b50610331610fce565b34801561044257600080fd5b506102cc610451366004612f26565b610ff2565b34801561046257600080fd5b50610331610471366004612c55565b611094565b34801561048257600080fd5b506102a2610491366004612e2e565b6110af565b3480156104a257600080fd5b5060135461035b565b3480156104b757600080fd5b5060165460ff166102a2565b3480156104cf57600080fd5b5060075460ff166102a2565b3480156104e757600080fd5b506102f96104f6366004612f26565b6111f0565b34801561050757600080fd5b5061035b610516366004612c07565b611267565b34801561052757600080fd5b506103316112ee565b34801561053c57600080fd5b5061033161130f565b34801561055157600080fd5b506009546102f9906001600160a01b031681565b34801561057157600080fd5b506102a2610580366004612f3f565b6113c1565b34801561059157600080fd5b506103316105a0366004612fde565b6113ec565b3480156105b157600080fd5b506102cc61140b565b3480156105c657600080fd5b5061035b61141a565b3480156105db57600080fd5b506103316105ea366004612f9c565b611436565b3480156105fb57600080fd5b5061035b600081565b34801561061057600080fd5b5061033161061f366004612d0d565b611454565b34801561063057600080fd5b506102cc61145f565b34801561064557600080fd5b5061035b61146e565b34801561065a57600080fd5b50610663611486565b6040516102ae9190815181526020808301519082015260408083015190820152606080830151908201526080808301519082015260a0808301519082015260c0808301519082015260e0808301519082015261010080830151908201526101208083015190820152610140808301519082015261016091820151918101919091526101800190565b3480156106f757600080fd5b50610331610706366004612c91565b61168d565b34801561071757600080fd5b506102cc610726366004612f26565b6116bf565b34801561073757600080fd5b5060145461035b565b34801561074c57600080fd5b5061033161075b366004612f3f565b6116ca565b34801561076c57600080fd5b5060125461035b565b34801561078157600080fd5b506103316116f0565b34801561079657600080fd5b5061035b60008051602061349283398151915281565b3480156107b857600080fd5b506102cc611719565b3480156107cd57600080fd5b506102a26107dc366004612c22565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081657600080fd5b50610331610825366004612c07565b611728565b34801561083657600080fd5b50610331610845366004612ecf565b6117ae565b34801561085657600080fd5b50610331610865366004613013565b611813565b600061087582611948565b92915050565b60606000805461088a906133b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906133b9565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b60006109188261196d565b61097e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a5826111f0565b9050806001600160a01b0316836001600160a01b03161415610a135760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610975565b336001600160a01b0382161480610a2f5750610a2f81336107dc565b610aa15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610975565b610aab838361198a565b505050565b60075460ff1615610b01576040516f53616c6573206e6f742061637469766560801b60208201526030015b60408051601f198184030181529082905262461bcd60e51b82526109759160040161325e565b6000601454118015610b2e5750601454601554610b1e9190613314565b600b54610b2c906001613314565b115b15610b64576040517f43757272656e7420706861736520686173206d696e746564206f75742e0000006020820152603d01610adb565b60165460ff16610b9857604051755075626c69632073616c65206e6f742061637469766560501b6020820152603601610adb565b3460105414610bc5576040516f496e76616c6964205175616e7469747960801b6020820152603001610adb565b610aab8383836119f8565b6000610bdb600b5490565b905090565b610bea3382611bd3565b610c065760405162461bcd60e51b8152600401610975906132c3565b610aab838383611cb9565b600082815260086020526040902060010154610c2d8133611e64565b610aab8383611ea2565b8484848484610c4a3386868686866110af565b610c885760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610975565b60075460ff1615610cb7576040516f53616c6573206e6f742061637469766560801b6020820152603001610adb565b601454601554610cc79190613314565b600b54610cd5906001613314565b1115610d0c576040517f43757272656e7420706861736520686173206d696e746564206f75742e0000006020820152603d01610adb565b3460115414610d39576040516f496e76616c6964205175616e7469747960801b6020820152603001610adb565b8989604051602001610d4c9291906130fb565b60405160208183030381529060405280519060200120600a604051602001610d74919061313a565b6040516020818303038152906040528051906020012014610db0576040516c496e76616c696420506861736560981b6020820152602d01610adb565b604051620e6d2f60eb1b602082015260230160405160208183030381529060405280519060200120600a604051602001610dea919061313a565b604051602081830303815290604052805190602001201415610e5f57336000908152600e602052604090205460ff1615610e445760405171135a5b9d081b1a5b5a5d081c995858da195960721b6020820152603201610adb565b336000908152600e60205260409020805460ff191660011790555b6040516439b2bb32b760d91b602082015260250160405160208183030381529060405280519060200120600a604051602001610e9b919061313a565b604051602081830303815290604052805190602001201415610f1057336000908152600f602052604090205460ff1615610ef55760405171135a5b9d081b1a5b5a5d081c995858da195960721b6020820152603201610adb565b336000908152600f60205260409020805460ff191660011790555b610f1b8d8d8d6119f8565b50505050505050505050505050565b600080516020613492833981519152610f438133611e64565b506016805460ff19169055565b6001600160a01b0381163314610fc05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610975565b610fca8282611f28565b5050565b600080516020613492833981519152610fe78133611e64565b610fef611f8f565b50565b6000818152600d6020526040902080546060919061100f906133b9565b80601f016020809104026020016040519081016040528092919081815260200182805461103b906133b9565b80156110885780601f1061105d57610100808354040283529160200191611088565b820191906000526020600020905b81548152906001019060200180831161106b57829003601f168201915b50505050509050919050565b610aab8383836040518060200160405280600081525061168d565b600080308888886040516020016110c79291906130fb565b60408051601f198184030181529082905280516020918201206bffffffffffffffffffffffff19606095861b8116928401929092529290931b90921660348301526048820152606801604051602081830303815290604052805190602001209050600060018260405160200161116991907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff891690820152606081018790526080810186905260a0016020604051602081039080840390855afa1580156111c7573d6000803e3d6000fd5b5050604051601f1901516009546001600160a01b039182169116149a9950505050505050505050565b6000818152600260205260408120546001600160a01b0316806108755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610975565b60006001600160a01b0382166112d25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610975565b506001600160a01b031660009081526003602052604090205490565b6000805160206134928339815191526113078133611e64565b610fef612022565b6009546001600160a01b0316331461132657600080fd5b60195460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611378576040519150601f19603f3d011682016040523d82523d6000602084013e61137d565b606091505b5050905080610fef5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610975565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006113f88133611e64565b8151610aab906018906020850190612963565b60606001805461088a906133b9565b60165460009060ff161561142f575060105490565b5060115490565b60006114428133611e64565b61144e601784846129e7565b50505050565b610fca33838361209d565b6060600a805461088a906133b9565b600060155461147c600b5490565b610bdb919061335f565b6114ea6040518061018001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806101800160405280611526600c604051611511906261717560e81b815260030190565b90815260200160405180910390206001015490565b8152602001611546600c604051611511906261726960e81b815260030190565b8152602001611566600c604051611511906231b0b760e91b815260030190565b8152602001611586600c604051611511906206361760ec1b815260030190565b81526020016115a6600c604051611511906267656d60e81b815260030190565b81526020016115c6600c60405161151190626c656f60e81b815260030190565b81526020016115e6600c60405161151190623634b160e91b815260030190565b8152602001611606600c604051611511906270697360e81b815260030190565b8152602001611626600c604051611511906273616760e81b815260030190565b8152602001611646600c604051611511906273636f60e81b815260030190565b8152602001611666600c604051611511906274617560e81b815260030190565b8152602001611686600c60405161151190623b34b960e91b815260030190565b9052919050565b6116973383611bd3565b6116b35760405162461bcd60e51b8152600401610975906132c3565b61144e8484848461216c565b60606108758261219f565b6000828152600860205260409020600101546116e68133611e64565b610aab8383611f28565b6000805160206134928339815191526117098133611e64565b506016805460ff19166001179055565b60606018805461088a906133b9565b6009546001600160a01b0316331461173f57600080fd5b6001600160a01b03811661175257600080fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206134928339815191526117c78133611e64565b81516117da90600a906020850190612963565b50831561144e576014839055600b5460155582611803576016805460ff1916600117905561144e565b6016805460ff1916905550505050565b60008051602061349283398151915261182c8133611e64565b50601055601155565b5490565b60608161185d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118875780611871816133f4565b91506118809050600a8361332c565b9150611861565b60008167ffffffffffffffff8111156118a2576118a2613465565b6040519080825280601f01601f1916602001820160405280156118cc576020820181803683370190505b5090505b8415611937576118e160018361335f565b91506118ee600a8661340f565b6118f9906030613314565b60f81b81838151811061190e5761190e61344f565b60200101906001600160f81b031916908160001a905350611930600a8661332c565b94506118d0565b949350505050565b80546001019055565b60006001600160e01b03198216637965db0b60e01b1480610875575061087582612301565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119bf826111f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a03600b5490565b611a0e906001613314565b90506012548110611a3b576040516d4e6f206d6f726520746f6b656e7360901b6020820152602e01610adb565b611a49600b80546001019055565b6060600c8484604051611a5d9291906130fb565b9081526040519081900360200190206002015460ff1615611b9157601354611a90600c86866040516115119291906130fb565b10611ac357600c8484604051611aa79291906130fb565b90815260405160209181900382018120610adb92909101613178565b600c8484604051611ad59291906130fb565b908152604051908190036020019020611aed83611839565b604051602001611afe929190613146565b6040516020818303038152906040529050611b3e600c8585604051611b249291906130fb565b908152602001604051809103902060010180546001019055565b600c8484604051611b509291906130fb565b9081526020016040518091039020600001600d6000848152602001908152602001600020908054611b80906133b9565b611b8b929190612a5b565b50611bb8565b6040517224b73b30b634b2102d37b234b0b19029b4b3b760691b6020820152603301610adb565b611bc28583612351565b611bcc828261236b565b5050505050565b6000611bde8261196d565b611c3f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610975565b6000611c4a836111f0565b9050806001600160a01b0316846001600160a01b03161480611c855750836001600160a01b0316611c7a8461090d565b6001600160a01b0316145b8061193757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611937565b826001600160a01b0316611ccc826111f0565b6001600160a01b031614611d345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610975565b6001600160a01b038216611d965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610975565b611da18383836123f6565b611dac60008261198a565b6001600160a01b0383166000908152600360205260408120805460019290611dd590849061335f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e03908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e6e82826113c1565b610fca57611e86816001600160a01b03166014612468565b611e91836020612468565b604051602001610adb9291906131ac565b611eac82826113c1565b610fca5760008281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611ee43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611f3282826113c1565b15610fca5760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60075460ff16611fd85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610975565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60075460ff16156120685760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610975565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120053390565b816001600160a01b0316836001600160a01b031614156120ff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610975565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612177848484611cb9565b6121838484848461260b565b61144e5760405162461bcd60e51b815260040161097590613271565b60606121aa8261196d565b6122105760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610975565b60008281526006602052604081208054612229906133b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612255906133b9565b80156122a25780601f10612277576101008083540402835291602001916122a2565b820191906000526020600020905b81548152906001019060200180831161228557829003601f168201915b5050505050905060006122b3612718565b90508051600014156122c6575092915050565b8151156122f85780826040516020016122e092919061310b565b60405160208183030381529060405292505050919050565b61193784612727565b60006001600160e01b031982166380ac58cd60e01b148061233257506001600160e01b03198216635b5e139f60e01b145b8061087557506301ffc9a760e01b6001600160e01b0319831614610875565b610fca8282604051806020016040528060008152506127f1565b6123748261196d565b6123d75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610975565b60008281526006602090815260409091208251610aab92840190612963565b60195460ff1615610aab5760075460ff1615610aab5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610975565b60606000612477836002613340565b612482906002613314565b67ffffffffffffffff81111561249a5761249a613465565b6040519080825280601f01601f1916602001820160405280156124c4576020820181803683370190505b509050600360fc1b816000815181106124df576124df61344f565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061250e5761250e61344f565b60200101906001600160f81b031916908160001a9053506000612532846002613340565b61253d906001613314565b90505b60018111156125b5576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106125715761257161344f565b1a60f81b8282815181106125875761258761344f565b60200101906001600160f81b031916908160001a90535060049490941c936125ae816133a2565b9050612540565b5083156126045760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610975565b9392505050565b60006001600160a01b0384163b1561270d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061264f903390899088908890600401613221565b602060405180830381600087803b15801561266957600080fd5b505af1925050508015612699575060408051601f3d908101601f1916820190925261269691810190612f7f565b60015b6126f3573d8080156126c7576040519150601f19603f3d011682016040523d82523d6000602084013e6126cc565b606091505b5080516126eb5760405162461bcd60e51b815260040161097590613271565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611937565b506001949350505050565b60606017805461088a906133b9565b60606127328261196d565b6127965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610975565b60006127a0612718565b905060008151116127c05760405180602001604052806000815250612604565b806127ca84611839565b6040516020016127db92919061310b565b6040516020818303038152906040529392505050565b6127fb8383612824565b612808600084848461260b565b610aab5760405162461bcd60e51b815260040161097590613271565b6001600160a01b03821661287a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610975565b6128838161196d565b156128d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610975565b6128dc600083836123f6565b6001600160a01b0382166000908152600360205260408120805460019290612905908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461296f906133b9565b90600052602060002090601f01602090048101928261299157600085556129d7565b82601f106129aa57805160ff19168380011785556129d7565b828001600101855582156129d7579182015b828111156129d75782518255916020019190600101906129bc565b506129e3929150612ad6565b5090565b8280546129f3906133b9565b90600052602060002090601f016020900481019282612a1557600085556129d7565b82601f10612a2e5782800160ff198235161785556129d7565b828001600101855582156129d7579182015b828111156129d7578235825591602001919060010190612a40565b828054612a67906133b9565b90600052602060002090601f016020900481019282612a8957600085556129d7565b82601f10612a9a57805485556129d7565b828001600101855582156129d757600052602060002091601f016020900482015b828111156129d7578254825591600101919060010190612abb565b5b808211156129e35760008155600101612ad7565b600067ffffffffffffffff80841115612b0657612b06613465565b604051601f8501601f19908116603f01168101908282118183101715612b2e57612b2e613465565b81604052809350858152868686011115612b4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b7857600080fd5b919050565b80358015158114612b7857600080fd5b60008083601f840112612b9f57600080fd5b50813567ffffffffffffffff811115612bb757600080fd5b602083019150836020828501011115612bcf57600080fd5b9250929050565b600082601f830112612be757600080fd5b61260483833560208501612aeb565b803560ff81168114612b7857600080fd5b600060208284031215612c1957600080fd5b61260482612b61565b60008060408385031215612c3557600080fd5b612c3e83612b61565b9150612c4c60208401612b61565b90509250929050565b600080600060608486031215612c6a57600080fd5b612c7384612b61565b9250612c8160208501612b61565b9150604084013590509250925092565b60008060008060808587031215612ca757600080fd5b612cb085612b61565b9350612cbe60208601612b61565b925060408501359150606085013567ffffffffffffffff811115612ce157600080fd5b8501601f81018713612cf257600080fd5b612d0187823560208401612aeb565b91505092959194509250565b60008060408385031215612d2057600080fd5b612d2983612b61565b9150612c4c60208401612b7d565b600080600060408486031215612d4c57600080fd5b612d5584612b61565b9250602084013567ffffffffffffffff811115612d7157600080fd5b612d7d86828701612b8d565b9497909650939450505050565b60008060008060008060008060c0898b031215612da657600080fd5b612daf89612b61565b9750602089013567ffffffffffffffff80821115612dcc57600080fd5b612dd88c838d01612b8d565b909950975060408b0135915080821115612df157600080fd5b50612dfe8b828c01612b8d565b9096509450612e11905060608a01612bf6565b92506080890135915060a089013590509295985092959890939650565b60008060008060008060a08789031215612e4757600080fd5b612e5087612b61565b9550602087013567ffffffffffffffff811115612e6c57600080fd5b612e7889828a01612b8d565b9096509450612e8b905060408801612bf6565b925060608701359150608087013590509295509295509295565b60008060408385031215612eb857600080fd5b612ec183612b61565b946020939093013593505050565b600080600060608486031215612ee457600080fd5b612eed84612b7d565b925060208401359150604084013567ffffffffffffffff811115612f1057600080fd5b612f1c86828701612bd6565b9150509250925092565b600060208284031215612f3857600080fd5b5035919050565b60008060408385031215612f5257600080fd5b82359150612c4c60208401612b61565b600060208284031215612f7457600080fd5b81356126048161347b565b600060208284031215612f9157600080fd5b81516126048161347b565b60008060208385031215612faf57600080fd5b823567ffffffffffffffff811115612fc657600080fd5b612fd285828601612b8d565b90969095509350505050565b600060208284031215612ff057600080fd5b813567ffffffffffffffff81111561300757600080fd5b61193784828501612bd6565b6000806040838503121561302657600080fd5b50508035926020909101359150565b6000815180845261304d816020860160208601613376565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061307b57607f831692505b602080841082141561309d57634e487b7160e01b600052602260045260246000fd5b8180156130b157600181146130c2576130ef565b60ff198616895284890196506130ef565b60008881526020902060005b868110156130e75781548b8201529085019083016130ce565b505084890196505b50505050505092915050565b8183823760009101908152919050565b6000835161311d818460208801613376565b835190830190613131818360208801613376565b01949350505050565b60006126048284613061565b60006131528285613061565b602f60f81b8152835161316c816001840160208801613376565b01600101949350505050565b67027379036b7b932960c51b815260006131956008830184613061565b6620746f6b656e7360c81b81526007019392505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516131e4816017850160208801613376565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613215816028840160208801613376565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061325490830184613035565b9695505050505050565b6020815260006126046020830184613035565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561332757613327613423565b500190565b60008261333b5761333b613439565b500490565b600081600019048311821515161561335a5761335a613423565b500290565b60008282101561337157613371613423565b500390565b60005b83811015613391578181015183820152602001613379565b8381111561144e5750506000910152565b6000816133b1576133b1613423565b506000190190565b600181811c908216806133cd57607f821691505b602082108114156133ee57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561340857613408613423565b5060010190565b60008261341e5761341e613439565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fef57600080fdfe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862aa26469706673582212201c0e77098f6550037d7fe284e7e4bee760c1aae1e3cf22c019783bd73e04fd3164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063e63ab1e91161007a578063e63ab1e91461078a578063e8a3d485146107ac578063e985e9c5146107c1578063f2fde38b1461080a578063f329d9d71461082a578063f7d975771461084a57600080fd5b8063b88d4fde146106eb578063c87b56dd1461070b578063d072a89e1461072b578063d547741f14610740578063d5abeb0114610760578063dc64a7541461077557600080fd5b8063a0bcfc7f11610113578063a0bcfc7f146105cf578063a217fddf146105ef578063a22cb46514610604578063a3a40ea514610624578063aaa6e11b14610639578063affef86a1461064e57600080fd5b80638da5cb5b1461054557806391d1485414610565578063938e3d7b1461058557806395d89b41146105a5578063a035b1fe146105ba57600080fd5b806336568abe116101f357806359557a77116101ac57806359557a77146104ab5780635c975abb146104c35780636352211e146104db57806370a08231146104fb5780638456cb591461051b578063853828b61461053057600080fd5b806336568abe146104015780633f4ba83a146104215780633fa1fc6e1461043657806342842e0e146104565780635883f3b01461047657806359018ab21461049657600080fd5b806318160ddd1161024557806318160ddd1461034657806323b872dd14610369578063248a9ca3146103895780632f2ff15d146103b957806331051f9e146103d957806334e7d83f146103ec57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806310f0205914610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612f62565b61086a565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61087b565b6040516102ae919061325e565b3480156102e557600080fd5b506102f96102f4366004612f26565b61090d565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612ea5565b61099a565b005b610331610341366004612d37565b610ab0565b34801561035257600080fd5b5061035b610bd0565b6040519081526020016102ae565b34801561037557600080fd5b50610331610384366004612c55565b610be0565b34801561039557600080fd5b5061035b6103a4366004612f26565b60009081526008602052604090206001015490565b3480156103c557600080fd5b506103316103d4366004612f3f565b610c11565b6103316103e7366004612d8a565b610c37565b3480156103f857600080fd5b50610331610f2a565b34801561040d57600080fd5b5061033161041c366004612f3f565b610f50565b34801561042d57600080fd5b50610331610fce565b34801561044257600080fd5b506102cc610451366004612f26565b610ff2565b34801561046257600080fd5b50610331610471366004612c55565b611094565b34801561048257600080fd5b506102a2610491366004612e2e565b6110af565b3480156104a257600080fd5b5060135461035b565b3480156104b757600080fd5b5060165460ff166102a2565b3480156104cf57600080fd5b5060075460ff166102a2565b3480156104e757600080fd5b506102f96104f6366004612f26565b6111f0565b34801561050757600080fd5b5061035b610516366004612c07565b611267565b34801561052757600080fd5b506103316112ee565b34801561053c57600080fd5b5061033161130f565b34801561055157600080fd5b506009546102f9906001600160a01b031681565b34801561057157600080fd5b506102a2610580366004612f3f565b6113c1565b34801561059157600080fd5b506103316105a0366004612fde565b6113ec565b3480156105b157600080fd5b506102cc61140b565b3480156105c657600080fd5b5061035b61141a565b3480156105db57600080fd5b506103316105ea366004612f9c565b611436565b3480156105fb57600080fd5b5061035b600081565b34801561061057600080fd5b5061033161061f366004612d0d565b611454565b34801561063057600080fd5b506102cc61145f565b34801561064557600080fd5b5061035b61146e565b34801561065a57600080fd5b50610663611486565b6040516102ae9190815181526020808301519082015260408083015190820152606080830151908201526080808301519082015260a0808301519082015260c0808301519082015260e0808301519082015261010080830151908201526101208083015190820152610140808301519082015261016091820151918101919091526101800190565b3480156106f757600080fd5b50610331610706366004612c91565b61168d565b34801561071757600080fd5b506102cc610726366004612f26565b6116bf565b34801561073757600080fd5b5060145461035b565b34801561074c57600080fd5b5061033161075b366004612f3f565b6116ca565b34801561076c57600080fd5b5060125461035b565b34801561078157600080fd5b506103316116f0565b34801561079657600080fd5b5061035b60008051602061349283398151915281565b3480156107b857600080fd5b506102cc611719565b3480156107cd57600080fd5b506102a26107dc366004612c22565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081657600080fd5b50610331610825366004612c07565b611728565b34801561083657600080fd5b50610331610845366004612ecf565b6117ae565b34801561085657600080fd5b50610331610865366004613013565b611813565b600061087582611948565b92915050565b60606000805461088a906133b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906133b9565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b60006109188261196d565b61097e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a5826111f0565b9050806001600160a01b0316836001600160a01b03161415610a135760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610975565b336001600160a01b0382161480610a2f5750610a2f81336107dc565b610aa15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610975565b610aab838361198a565b505050565b60075460ff1615610b01576040516f53616c6573206e6f742061637469766560801b60208201526030015b60408051601f198184030181529082905262461bcd60e51b82526109759160040161325e565b6000601454118015610b2e5750601454601554610b1e9190613314565b600b54610b2c906001613314565b115b15610b64576040517f43757272656e7420706861736520686173206d696e746564206f75742e0000006020820152603d01610adb565b60165460ff16610b9857604051755075626c69632073616c65206e6f742061637469766560501b6020820152603601610adb565b3460105414610bc5576040516f496e76616c6964205175616e7469747960801b6020820152603001610adb565b610aab8383836119f8565b6000610bdb600b5490565b905090565b610bea3382611bd3565b610c065760405162461bcd60e51b8152600401610975906132c3565b610aab838383611cb9565b600082815260086020526040902060010154610c2d8133611e64565b610aab8383611ea2565b8484848484610c4a3386868686866110af565b610c885760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610975565b60075460ff1615610cb7576040516f53616c6573206e6f742061637469766560801b6020820152603001610adb565b601454601554610cc79190613314565b600b54610cd5906001613314565b1115610d0c576040517f43757272656e7420706861736520686173206d696e746564206f75742e0000006020820152603d01610adb565b3460115414610d39576040516f496e76616c6964205175616e7469747960801b6020820152603001610adb565b8989604051602001610d4c9291906130fb565b60405160208183030381529060405280519060200120600a604051602001610d74919061313a565b6040516020818303038152906040528051906020012014610db0576040516c496e76616c696420506861736560981b6020820152602d01610adb565b604051620e6d2f60eb1b602082015260230160405160208183030381529060405280519060200120600a604051602001610dea919061313a565b604051602081830303815290604052805190602001201415610e5f57336000908152600e602052604090205460ff1615610e445760405171135a5b9d081b1a5b5a5d081c995858da195960721b6020820152603201610adb565b336000908152600e60205260409020805460ff191660011790555b6040516439b2bb32b760d91b602082015260250160405160208183030381529060405280519060200120600a604051602001610e9b919061313a565b604051602081830303815290604052805190602001201415610f1057336000908152600f602052604090205460ff1615610ef55760405171135a5b9d081b1a5b5a5d081c995858da195960721b6020820152603201610adb565b336000908152600f60205260409020805460ff191660011790555b610f1b8d8d8d6119f8565b50505050505050505050505050565b600080516020613492833981519152610f438133611e64565b506016805460ff19169055565b6001600160a01b0381163314610fc05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610975565b610fca8282611f28565b5050565b600080516020613492833981519152610fe78133611e64565b610fef611f8f565b50565b6000818152600d6020526040902080546060919061100f906133b9565b80601f016020809104026020016040519081016040528092919081815260200182805461103b906133b9565b80156110885780601f1061105d57610100808354040283529160200191611088565b820191906000526020600020905b81548152906001019060200180831161106b57829003601f168201915b50505050509050919050565b610aab8383836040518060200160405280600081525061168d565b600080308888886040516020016110c79291906130fb565b60408051601f198184030181529082905280516020918201206bffffffffffffffffffffffff19606095861b8116928401929092529290931b90921660348301526048820152606801604051602081830303815290604052805190602001209050600060018260405160200161116991907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff891690820152606081018790526080810186905260a0016020604051602081039080840390855afa1580156111c7573d6000803e3d6000fd5b5050604051601f1901516009546001600160a01b039182169116149a9950505050505050505050565b6000818152600260205260408120546001600160a01b0316806108755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610975565b60006001600160a01b0382166112d25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610975565b506001600160a01b031660009081526003602052604090205490565b6000805160206134928339815191526113078133611e64565b610fef612022565b6009546001600160a01b0316331461132657600080fd5b60195460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611378576040519150601f19603f3d011682016040523d82523d6000602084013e61137d565b606091505b5050905080610fef5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610975565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006113f88133611e64565b8151610aab906018906020850190612963565b60606001805461088a906133b9565b60165460009060ff161561142f575060105490565b5060115490565b60006114428133611e64565b61144e601784846129e7565b50505050565b610fca33838361209d565b6060600a805461088a906133b9565b600060155461147c600b5490565b610bdb919061335f565b6114ea6040518061018001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806101800160405280611526600c604051611511906261717560e81b815260030190565b90815260200160405180910390206001015490565b8152602001611546600c604051611511906261726960e81b815260030190565b8152602001611566600c604051611511906231b0b760e91b815260030190565b8152602001611586600c604051611511906206361760ec1b815260030190565b81526020016115a6600c604051611511906267656d60e81b815260030190565b81526020016115c6600c60405161151190626c656f60e81b815260030190565b81526020016115e6600c60405161151190623634b160e91b815260030190565b8152602001611606600c604051611511906270697360e81b815260030190565b8152602001611626600c604051611511906273616760e81b815260030190565b8152602001611646600c604051611511906273636f60e81b815260030190565b8152602001611666600c604051611511906274617560e81b815260030190565b8152602001611686600c60405161151190623b34b960e91b815260030190565b9052919050565b6116973383611bd3565b6116b35760405162461bcd60e51b8152600401610975906132c3565b61144e8484848461216c565b60606108758261219f565b6000828152600860205260409020600101546116e68133611e64565b610aab8383611f28565b6000805160206134928339815191526117098133611e64565b506016805460ff19166001179055565b60606018805461088a906133b9565b6009546001600160a01b0316331461173f57600080fd5b6001600160a01b03811661175257600080fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206134928339815191526117c78133611e64565b81516117da90600a906020850190612963565b50831561144e576014839055600b5460155582611803576016805460ff1916600117905561144e565b6016805460ff1916905550505050565b60008051602061349283398151915261182c8133611e64565b50601055601155565b5490565b60608161185d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118875780611871816133f4565b91506118809050600a8361332c565b9150611861565b60008167ffffffffffffffff8111156118a2576118a2613465565b6040519080825280601f01601f1916602001820160405280156118cc576020820181803683370190505b5090505b8415611937576118e160018361335f565b91506118ee600a8661340f565b6118f9906030613314565b60f81b81838151811061190e5761190e61344f565b60200101906001600160f81b031916908160001a905350611930600a8661332c565b94506118d0565b949350505050565b80546001019055565b60006001600160e01b03198216637965db0b60e01b1480610875575061087582612301565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119bf826111f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a03600b5490565b611a0e906001613314565b90506012548110611a3b576040516d4e6f206d6f726520746f6b656e7360901b6020820152602e01610adb565b611a49600b80546001019055565b6060600c8484604051611a5d9291906130fb565b9081526040519081900360200190206002015460ff1615611b9157601354611a90600c86866040516115119291906130fb565b10611ac357600c8484604051611aa79291906130fb565b90815260405160209181900382018120610adb92909101613178565b600c8484604051611ad59291906130fb565b908152604051908190036020019020611aed83611839565b604051602001611afe929190613146565b6040516020818303038152906040529050611b3e600c8585604051611b249291906130fb565b908152602001604051809103902060010180546001019055565b600c8484604051611b509291906130fb565b9081526020016040518091039020600001600d6000848152602001908152602001600020908054611b80906133b9565b611b8b929190612a5b565b50611bb8565b6040517224b73b30b634b2102d37b234b0b19029b4b3b760691b6020820152603301610adb565b611bc28583612351565b611bcc828261236b565b5050505050565b6000611bde8261196d565b611c3f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610975565b6000611c4a836111f0565b9050806001600160a01b0316846001600160a01b03161480611c855750836001600160a01b0316611c7a8461090d565b6001600160a01b0316145b8061193757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611937565b826001600160a01b0316611ccc826111f0565b6001600160a01b031614611d345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610975565b6001600160a01b038216611d965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610975565b611da18383836123f6565b611dac60008261198a565b6001600160a01b0383166000908152600360205260408120805460019290611dd590849061335f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e03908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e6e82826113c1565b610fca57611e86816001600160a01b03166014612468565b611e91836020612468565b604051602001610adb9291906131ac565b611eac82826113c1565b610fca5760008281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611ee43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611f3282826113c1565b15610fca5760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60075460ff16611fd85760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610975565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60075460ff16156120685760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610975565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120053390565b816001600160a01b0316836001600160a01b031614156120ff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610975565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612177848484611cb9565b6121838484848461260b565b61144e5760405162461bcd60e51b815260040161097590613271565b60606121aa8261196d565b6122105760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610975565b60008281526006602052604081208054612229906133b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612255906133b9565b80156122a25780601f10612277576101008083540402835291602001916122a2565b820191906000526020600020905b81548152906001019060200180831161228557829003601f168201915b5050505050905060006122b3612718565b90508051600014156122c6575092915050565b8151156122f85780826040516020016122e092919061310b565b60405160208183030381529060405292505050919050565b61193784612727565b60006001600160e01b031982166380ac58cd60e01b148061233257506001600160e01b03198216635b5e139f60e01b145b8061087557506301ffc9a760e01b6001600160e01b0319831614610875565b610fca8282604051806020016040528060008152506127f1565b6123748261196d565b6123d75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610975565b60008281526006602090815260409091208251610aab92840190612963565b60195460ff1615610aab5760075460ff1615610aab5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610975565b60606000612477836002613340565b612482906002613314565b67ffffffffffffffff81111561249a5761249a613465565b6040519080825280601f01601f1916602001820160405280156124c4576020820181803683370190505b509050600360fc1b816000815181106124df576124df61344f565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061250e5761250e61344f565b60200101906001600160f81b031916908160001a9053506000612532846002613340565b61253d906001613314565b90505b60018111156125b5576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106125715761257161344f565b1a60f81b8282815181106125875761258761344f565b60200101906001600160f81b031916908160001a90535060049490941c936125ae816133a2565b9050612540565b5083156126045760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610975565b9392505050565b60006001600160a01b0384163b1561270d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061264f903390899088908890600401613221565b602060405180830381600087803b15801561266957600080fd5b505af1925050508015612699575060408051601f3d908101601f1916820190925261269691810190612f7f565b60015b6126f3573d8080156126c7576040519150601f19603f3d011682016040523d82523d6000602084013e6126cc565b606091505b5080516126eb5760405162461bcd60e51b815260040161097590613271565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611937565b506001949350505050565b60606017805461088a906133b9565b60606127328261196d565b6127965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610975565b60006127a0612718565b905060008151116127c05760405180602001604052806000815250612604565b806127ca84611839565b6040516020016127db92919061310b565b6040516020818303038152906040529392505050565b6127fb8383612824565b612808600084848461260b565b610aab5760405162461bcd60e51b815260040161097590613271565b6001600160a01b03821661287a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610975565b6128838161196d565b156128d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610975565b6128dc600083836123f6565b6001600160a01b0382166000908152600360205260408120805460019290612905908490613314565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461296f906133b9565b90600052602060002090601f01602090048101928261299157600085556129d7565b82601f106129aa57805160ff19168380011785556129d7565b828001600101855582156129d7579182015b828111156129d75782518255916020019190600101906129bc565b506129e3929150612ad6565b5090565b8280546129f3906133b9565b90600052602060002090601f016020900481019282612a1557600085556129d7565b82601f10612a2e5782800160ff198235161785556129d7565b828001600101855582156129d7579182015b828111156129d7578235825591602001919060010190612a40565b828054612a67906133b9565b90600052602060002090601f016020900481019282612a8957600085556129d7565b82601f10612a9a57805485556129d7565b828001600101855582156129d757600052602060002091601f016020900482015b828111156129d7578254825591600101919060010190612abb565b5b808211156129e35760008155600101612ad7565b600067ffffffffffffffff80841115612b0657612b06613465565b604051601f8501601f19908116603f01168101908282118183101715612b2e57612b2e613465565b81604052809350858152868686011115612b4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b7857600080fd5b919050565b80358015158114612b7857600080fd5b60008083601f840112612b9f57600080fd5b50813567ffffffffffffffff811115612bb757600080fd5b602083019150836020828501011115612bcf57600080fd5b9250929050565b600082601f830112612be757600080fd5b61260483833560208501612aeb565b803560ff81168114612b7857600080fd5b600060208284031215612c1957600080fd5b61260482612b61565b60008060408385031215612c3557600080fd5b612c3e83612b61565b9150612c4c60208401612b61565b90509250929050565b600080600060608486031215612c6a57600080fd5b612c7384612b61565b9250612c8160208501612b61565b9150604084013590509250925092565b60008060008060808587031215612ca757600080fd5b612cb085612b61565b9350612cbe60208601612b61565b925060408501359150606085013567ffffffffffffffff811115612ce157600080fd5b8501601f81018713612cf257600080fd5b612d0187823560208401612aeb565b91505092959194509250565b60008060408385031215612d2057600080fd5b612d2983612b61565b9150612c4c60208401612b7d565b600080600060408486031215612d4c57600080fd5b612d5584612b61565b9250602084013567ffffffffffffffff811115612d7157600080fd5b612d7d86828701612b8d565b9497909650939450505050565b60008060008060008060008060c0898b031215612da657600080fd5b612daf89612b61565b9750602089013567ffffffffffffffff80821115612dcc57600080fd5b612dd88c838d01612b8d565b909950975060408b0135915080821115612df157600080fd5b50612dfe8b828c01612b8d565b9096509450612e11905060608a01612bf6565b92506080890135915060a089013590509295985092959890939650565b60008060008060008060a08789031215612e4757600080fd5b612e5087612b61565b9550602087013567ffffffffffffffff811115612e6c57600080fd5b612e7889828a01612b8d565b9096509450612e8b905060408801612bf6565b925060608701359150608087013590509295509295509295565b60008060408385031215612eb857600080fd5b612ec183612b61565b946020939093013593505050565b600080600060608486031215612ee457600080fd5b612eed84612b7d565b925060208401359150604084013567ffffffffffffffff811115612f1057600080fd5b612f1c86828701612bd6565b9150509250925092565b600060208284031215612f3857600080fd5b5035919050565b60008060408385031215612f5257600080fd5b82359150612c4c60208401612b61565b600060208284031215612f7457600080fd5b81356126048161347b565b600060208284031215612f9157600080fd5b81516126048161347b565b60008060208385031215612faf57600080fd5b823567ffffffffffffffff811115612fc657600080fd5b612fd285828601612b8d565b90969095509350505050565b600060208284031215612ff057600080fd5b813567ffffffffffffffff81111561300757600080fd5b61193784828501612bd6565b6000806040838503121561302657600080fd5b50508035926020909101359150565b6000815180845261304d816020860160208601613376565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061307b57607f831692505b602080841082141561309d57634e487b7160e01b600052602260045260246000fd5b8180156130b157600181146130c2576130ef565b60ff198616895284890196506130ef565b60008881526020902060005b868110156130e75781548b8201529085019083016130ce565b505084890196505b50505050505092915050565b8183823760009101908152919050565b6000835161311d818460208801613376565b835190830190613131818360208801613376565b01949350505050565b60006126048284613061565b60006131528285613061565b602f60f81b8152835161316c816001840160208801613376565b01600101949350505050565b67027379036b7b932960c51b815260006131956008830184613061565b6620746f6b656e7360c81b81526007019392505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516131e4816017850160208801613376565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613215816028840160208801613376565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061325490830184613035565b9695505050505050565b6020815260006126046020830184613035565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561332757613327613423565b500190565b60008261333b5761333b613439565b500490565b600081600019048311821515161561335a5761335a613423565b500290565b60008282101561337157613371613423565b500390565b60005b83811015613391578181015183820152602001613379565b8381111561144e5750506000910152565b6000816133b1576133b1613423565b506000190190565b600181811c908216806133cd57607f821691505b602082108114156133ee57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561340857613408613423565b5060010190565b60008261341e5761341e613439565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fef57600080fdfe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862aa26469706673582212201c0e77098f6550037d7fe284e7e4bee760c1aae1e3cf22c019783bd73e04fd3164736f6c63430008070033

Deployed Bytecode Sourcemap

51024:15205:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64694:209;;;;;;;;;;-1:-1:-1;64694:209:0;;;;;:::i;:::-;;:::i;:::-;;;20200:14:1;;20193:22;20175:41;;20163:2;20148:18;64694:209:0;;;;;;;;37449:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39008:221::-;;;;;;;;;;-1:-1:-1;39008:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;19498:32:1;;;19480:51;;19468:2;19453:18;39008:221:0;19334:203:1;38531:411:0;;;;;;;;;;-1:-1:-1;38531:411:0;;;;;:::i;:::-;;:::i;:::-;;55876:1128;;;;;;:::i;:::-;;:::i;61402:101::-;;;;;;;;;;;;;:::i;:::-;;;20373:25:1;;;20361:2;20346:18;61402:101:0;20227:177:1;39758:339:0;;;;;;;;;;-1:-1:-1;39758:339:0;;;;;:::i;:::-;;:::i;25887:123::-;;;;;;;;;;-1:-1:-1;25887:123:0;;;;;:::i;:::-;25953:7;25980:12;;;:6;:12;;;;;:22;;;;25887:123;26272:147;;;;;;;;;;-1:-1:-1;26272:147:0;;;;;:::i;:::-;;:::i;53695:2173::-;;;;;;:::i;:::-;;:::i;59378:94::-;;;;;;;;;;;;;:::i;27320:218::-;;;;;;;;;;-1:-1:-1;27320:218:0;;;;;:::i;:::-;;:::i;59185:77::-;;;;;;;;;;;;;:::i;62664:120::-;;;;;;;;;;-1:-1:-1;62664:120:0;;;;;:::i;:::-;;:::i;40168:185::-;;;;;;;;;;-1:-1:-1;40168:185:0;;;;;:::i;:::-;;:::i;65118:701::-;;;;;;;;;;-1:-1:-1;65118:701:0;;;;;:::i;:::-;;:::i;61296:98::-;;;;;;;;;;-1:-1:-1;61370:16:0;;61296:98;;60811:89;;;;;;;;;;-1:-1:-1;60879:13:0;;;;60811:89;;9586:86;;;;;;;;;;-1:-1:-1;9657:7:0;;;;9586:86;;37143:239;;;;;;;;;;-1:-1:-1;37143:239:0;;;;;:::i;:::-;;:::i;36873:208::-;;;;;;;;;;-1:-1:-1;36873:208:0;;;;;:::i;:::-;;:::i;59104:73::-;;;;;;;;;;;;;:::i;65827:180::-;;;;;;;;;;;;;:::i;89:20::-;;;;;;;;;;-1:-1:-1;89:20:0;;;;-1:-1:-1;;;;;89:20:0;;;24772:139;;;;;;;;;;-1:-1:-1;24772:139:0;;;;;:::i;:::-;;:::i;66015:114::-;;;;;;;;;;-1:-1:-1;66015:114:0;;;;;:::i;:::-;;:::i;37618:104::-;;;;;;;;;;;;;:::i;60912:178::-;;;;;;;;;;;;;:::i;58986:110::-;;;;;;;;;;-1:-1:-1;58986:110:0;;;;;:::i;:::-;;:::i;23863:49::-;;;;;;;;;;-1:-1:-1;23863:49:0;23908:4;23863:49;;39301:155;;;;;;;;;;-1:-1:-1;39301:155:0;;;;;:::i;:::-;;:::i;60703:100::-;;;;;;;;;;;;;:::i;61511:127::-;;;;;;;;;;;;;:::i;61646:720::-;;;;;;;;;;;;;:::i;:::-;;;;;;30268:13:1;;30250:32;;30338:4;30326:17;;;30320:24;30298:20;;;30291:54;30401:4;30389:17;;;30383:24;30361:20;;;30354:54;30464:4;30452:17;;;30446:24;30424:20;;;30417:54;30527:4;30515:17;;;30509:24;30487:20;;;30480:54;30590:4;30578:17;;;30572:24;30550:20;;;30543:54;30653:4;30641:17;;;30635:24;30613:20;;;30606:54;30716:4;30704:17;;;30698:24;30676:20;;;30669:54;30742:6;30790:15;;;30784:22;30764:18;;;30757:50;30826:6;30874:15;;;30868:22;30848:18;;;30841:50;30910:6;30958:15;;;30952:22;30932:18;;;30925:50;30994:6;31042:15;;;31036:22;31016:18;;;31009:50;;;;30237:3;30222:19;;30055:1010;40424:328:0;;;;;;;;;;-1:-1:-1;40424:328:0;;;;;:::i;:::-;;:::i;62792:450::-;;;;;;;;;;-1:-1:-1;62792:450:0;;;;;:::i;:::-;;:::i;61192:96::-;;;;;;;;;;-1:-1:-1;61265:15:0;;61192:96;;26664:149;;;;;;;;;;-1:-1:-1;26664:149:0;;;;;:::i;:::-;;:::i;61098:86::-;;;;;;;;;;-1:-1:-1;61166:10:0;;61098:86;;59274:92;;;;;;;;;;;;;:::i;51560:62::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;51560:62:0;;66137:89;;;;;;;;;;;;;:::i;39527:164::-;;;;;;;;;;-1:-1:-1;39527:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39648:25:0;;;39624:4;39648:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39527:164;732:192;;;;;;;;;;-1:-1:-1;732:192:0;;;;;:::i;:::-;;:::i;59857:538::-;;;;;;;;;;-1:-1:-1;59857:538:0;;;;;:::i;:::-;;:::i;59480:165::-;;;;;;;;;;-1:-1:-1;59480:165:0;;;;;:::i;:::-;;:::i;64694:209::-;64830:4;64859:36;64883:11;64859:23;:36::i;:::-;64852:43;64694:209;-1:-1:-1;;64694:209:0:o;37449:100::-;37503:13;37536:5;37529:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37449:100;:::o;39008:221::-;39084:7;39112:16;39120:7;39112;:16::i;:::-;39104:73;;;;-1:-1:-1;;;39104:73:0;;27437:2:1;39104:73:0;;;27419:21:1;27476:2;27456:18;;;27449:30;27515:34;27495:18;;;27488:62;-1:-1:-1;;;27566:18:1;;;27559:42;27618:19;;39104:73:0;;;;;;;;;-1:-1:-1;39197:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39197:24:0;;39008:221::o;38531:411::-;38612:13;38628:23;38643:7;38628:14;:23::i;:::-;38612:39;;38676:5;-1:-1:-1;;;;;38670:11:0;:2;-1:-1:-1;;;;;38670:11:0;;;38662:57;;;;-1:-1:-1;;;38662:57:0;;28676:2:1;38662:57:0;;;28658:21:1;28715:2;28695:18;;;28688:30;28754:34;28734:18;;;28727:62;-1:-1:-1;;;28805:18:1;;;28798:31;28846:19;;38662:57:0;28474:397:1;38662:57:0;8320:10;-1:-1:-1;;;;;38754:21:0;;;;:62;;-1:-1:-1;38779:37:0;38796:5;8320:10;39527:164;:::i;38779:37::-;38732:168;;;;-1:-1:-1;;;38732:168:0;;24653:2:1;38732:168:0;;;24635:21:1;24692:2;24672:18;;;24665:30;24731:34;24711:18;;;24704:62;24802:26;24782:18;;;24775:54;24846:19;;38732:168:0;24451:420:1;38732:168:0;38913:21;38922:2;38926:7;38913:8;:21::i;:::-;38601:341;38531:411;;:::o;55876:1128::-;9657:7;;;;55959:212;;;56041:84;;-1:-1:-1;;;56041:84:0;;;12372:31:1;12419:12;;56041:84:0;;;;-1:-1:-1;;56041:84:0;;;;;;;;;;-1:-1:-1;;;55987:172:0;;;;;;;:::i;55959:212::-;56204:1;56186:15;;:19;:89;;;;;56260:15;;56239:18;;:36;;;;:::i;:::-;56209:13;1895:14;56209:27;;56235:1;56209:27;:::i;:::-;:66;56186:89;56183:306;;;56346:97;;13829:31:1;56346:97:0;;;13817:44:1;13877:12;;56346:97:0;13615:280:1;56183:306:0;56505:13;;;;56501:224;;56589:90;;-1:-1:-1;;;56589:90:0;;;15937:37:1;15990:12;;56589:90:0;15735:273:1;56501:224:0;56757:9;56740:13;;:26;56737:230;;56837:84;;-1:-1:-1;;;56837:84:0;;;13029:31:1;13076:12;;56837:84:0;12827:267:1;56737:230:0;56979:17;56987:2;56991:4;;56979:7;:17::i;61402:101::-;61445:7;61472:23;:13;1895:14;;1803:114;61472:23;61465:30;;61402:101;:::o;39758:339::-;39953:41;8320:10;39986:7;39953:18;:41::i;:::-;39945:103;;;;-1:-1:-1;;;39945:103:0;;;;;;;:::i;:::-;40061:28;40071:4;40077:2;40081:7;40061:9;:28::i;26272:147::-;25953:7;25980:12;;;:6;:12;;;;;:22;;;24354:30;24365:4;8320:10;24354;:30::i;:::-;26386:25:::1;26397:4;26403:7;26386:10;:25::i;53695:2173::-:0;53844:5;;53851:2;53855;53859;65019:51;65040:10;65052:5;;65059:2;65063;65067;65019:20;:51::i;:::-;65010:80;;;;-1:-1:-1;;;65010:80:0;;25078:2:1;65010:80:0;;;25060:21:1;25117:2;25097:18;;;25090:30;-1:-1:-1;;;25136:18:1;;;25129:45;25191:18;;65010:80:0;24876:339:1;65010:80:0;9657:7;;;;53874:212:::1;;;53956:84;::::0;-1:-1:-1;;;53956:84:0::1;::::0;::::1;12372:31:1::0;12419:12;;53956:84:0::1;12170:267:1::0;53874:212:0::1;54152:15;;54131:18;;:36;;;;:::i;:::-;54101:13;1895:14:::0;54101:27:::1;::::0;54127:1:::1;54101:27;:::i;:::-;:66;54098:283;;;54238:97;::::0;13829:31:1;54238:97:0::1;::::0;::::1;13817:44:1::0;13877:12;;54238:97:0::1;13615:280:1::0;54098:283:0::1;54409:9;54396;;:22;54393:226;;54489:84;::::0;-1:-1:-1;;;54489:84:0::1;::::0;::::1;13029:31:1::0;13076:12;;54489:84:0::1;12827:267:1::0;54393:226:0::1;54706:5;;54689:23;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54679:34;;;;;;54661:12;54644:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;54634:41;;;;;;:79;54631:280;;54784:81;::::0;-1:-1:-1;;;54784:81:0::1;::::0;::::1;16473:28:1::0;16517:12;;54784:81:0::1;16271:264:1::0;54631:280:0::1;54981:23;::::0;-1:-1:-1;;;54981:23:0::1;::::0;::::1;16742:18:1::0;16776:11;;54981:23:0::1;;;;;;;;;;;;54971:34;;;;;;54953:12;54936:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;54926:41;;;;;;:79;54923:446;;;55039:10;55025:25;::::0;;;:13:::1;:25;::::0;;;;;::::1;;55022:336;;;55133:94;::::0;-1:-1:-1;;;55133:94:0::1;::::0;::::1;11838:33:1::0;11887:12;;55133:94:0::1;11636:269:1::0;55022:336:0::1;55324:10;55310:25;::::0;;;:13:::1;:25;::::0;;;;:32;;-1:-1:-1;;55310:32:0::1;55338:4;55310:32;::::0;;55022:336:::1;55439:25;::::0;-1:-1:-1;;;55439:25:0::1;::::0;::::1;12112:20:1::0;12148:11;;55439:25:0::1;;;;;;;;;;;;55429:36;;;;;;55411:12;55394:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;55384:41;;;;;;:81;55381:450;;;55500:10;55485:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;55482:338;;;55594:94;::::0;-1:-1:-1;;;55594:94:0::1;::::0;::::1;11838:33:1::0;11887:12;;55594:94:0::1;11636:269:1::0;55482:338:0::1;55786:10;55771:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;55771:33:0::1;55800:4;55771:33;::::0;;55482:338:::1;55843:17;55851:2;55855:4;;55843:7;:17::i;:::-;53695:2173:::0;;;;;;;;;;;;;:::o;59378:94::-;-1:-1:-1;;;;;;;;;;;24354:30:0;51598:24;8320:10;24354;:30::i;:::-;-1:-1:-1;59443:13:0::1;:21:::0;;-1:-1:-1;;59443:21:0::1;::::0;;59378:94::o;27320:218::-;-1:-1:-1;;;;;27416:23:0;;8320:10;27416:23;27408:83;;;;-1:-1:-1;;;27408:83:0;;29841:2:1;27408:83:0;;;29823:21:1;29880:2;29860:18;;;29853:30;29919:34;29899:18;;;29892:62;-1:-1:-1;;;29970:18:1;;;29963:45;30025:19;;27408:83:0;29639:411:1;27408:83:0;27504:26;27516:4;27522:7;27504:11;:26::i;:::-;27320:218;;:::o;59185:77::-;-1:-1:-1;;;;;;;;;;;24354:30:0;51598:24;8320:10;24354;:30::i;:::-;59244:10:::1;:8;:10::i;:::-;59185:77:::0;:::o;62664:120::-;62755:21;;;;:12;:21;;;;;62748:28;;62722:13;;62755:21;62748:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62664:120;;;:::o;40168:185::-;40306:39;40323:4;40329:2;40333:7;40306:39;;;;;;;;;;;;:16;:39::i;65118:701::-;65294:4;65316:12;65390:4;65414;65464;;65447:22;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;65447:22:0;;;;;;;;;;65437:33;;65447:22;65437:33;;;;-1:-1:-1;;10011:2:1;10007:15;;;10003:24;;65355:130:0;;;9991:37:1;;;;10062:15;;;;10058:24;;;10044:12;;;10037:46;10099:12;;;10092:28;10136:12;;65355:130:0;;;;;;;;;;;;65331:165;;;;;;65316:180;;65509:16;65528:248;65676:4;65580:119;;;;;;;12684:66:1;12672:79;;12776:2;12767:12;;12760:28;;;;12813:2;12804:12;;12442:380;65580:119:0;;;;-1:-1:-1;;65580:119:0;;;;;;;;;65552:162;;65580:119;65552:162;;;;65528:248;;;;;;;;;20636:25:1;20709:4;20697:17;;20677:18;;;20670:45;20731:18;;;20724:34;;;20774:18;;;20767:34;;;20608:19;;65528:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;65528:248:0;;-1:-1:-1;;65528:248:0;;65794:5;;-1:-1:-1;;;;;65794:17:0;;;:5;;:17;;65118:701;-1:-1:-1;;;;;;;;;;65118:701:0:o;37143:239::-;37215:7;37251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37251:16:0;37286:19;37278:73;;;;-1:-1:-1;;;37278:73:0;;25833:2:1;37278:73:0;;;25815:21:1;25872:2;25852:18;;;25845:30;25911:34;25891:18;;;25884:62;-1:-1:-1;;;25962:18:1;;;25955:39;26011:19;;37278:73:0;25631:405:1;36873:208:0;36945:7;-1:-1:-1;;;;;36973:19:0;;36965:74;;;;-1:-1:-1;;;36965:74:0;;25422:2:1;36965:74:0;;;25404:21:1;25461:2;25441:18;;;25434:30;25500:34;25480:18;;;25473:62;-1:-1:-1;;;25551:18:1;;;25544:40;25601:19;;36965:74:0;25220:406:1;36965:74:0;-1:-1:-1;;;;;;37057:16:0;;;;;:9;:16;;;;;;;36873:208::o;59104:73::-;-1:-1:-1;;;;;;;;;;;24354:30:0;51598:24;8320:10;24354;:30::i;:::-;59161:8:::1;:6;:8::i;65827:180::-:0;533:5;;-1:-1:-1;;;;;533:5:0;519:10;:19;511:28;;;;;;65896:16:::1;::::0;:55:::1;::::0;65879:12:::1;::::0;65896:16:::1;::::0;::::1;-1:-1:-1::0;;;;;65896:16:0::1;::::0;65925:21:::1;::::0;65879:12;65896:55;65879:12;65896:55;65925:21;65896:16;:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65878:73;;;65971:7;65962:37;;;::::0;-1:-1:-1;;;65962:37:0;;29078:2:1;65962:37:0::1;::::0;::::1;29060:21:1::0;29117:2;29097:18;;;29090:30;-1:-1:-1;;;29136:18:1;;;29129:46;29192:18;;65962:37:0::1;28876:340:1::0;24772:139:0;24850:4;24874:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;24874:29:0;;;;;;;;;;;;;;;24772:139::o;66015:114::-;23908:4;24354:30;23908:4;8320:10;24354;:30::i;:::-;66108:13;;::::1;::::0;:4:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;37618:104::-:0;37674:13;37707:7;37700:14;;;;;:::i;60912:178::-;60972:13;;60949:7;;60972:13;;60969:114;;;-1:-1:-1;61009:13:0;;;60912:178::o;60969:114::-;-1:-1:-1;61062:9:0;;;60912:178::o;58986:110::-;23908:4;24354:30;23908:4;8320:10;24354;:30::i;:::-;59074:14:::1;:8;59085:3:::0;;59074:14:::1;:::i;:::-;;58986:110:::0;;;:::o;39301:155::-;39396:52;8320:10;39429:8;39439;39396:18;:52::i;60703:100::-;60750:13;60783:12;60776:19;;;;;:::i;61511:127::-;61559:7;61612:18;;61586:23;:13;1895:14;;1803:114;61586:23;:44;;;;:::i;61646:720::-;61695:13;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61695:13:0;61728:630;;;;;;;;61750:36;:11;:18;;;;-1:-1:-1;;;14372:18:1;;14415:1;14406:11;;14170:253;61750:18:0;;;;;;;;;;;;;:26;;1895:14;;1803:114;61750:36;61728:630;;;;61801:36;:11;:18;;;;-1:-1:-1;;;17000:18:1;;17043:1;17034:11;;16798:253;61801:36:0;61728:630;;;;61852:36;:11;:18;;;;-1:-1:-1;;;14888:18:1;;14931:1;14922:11;;14686:253;61852:36:0;61728:630;;;;61903:36;:11;:18;;;;-1:-1:-1;;;19020:18:1;;19063:1;19054:11;;18818:253;61903:36:0;61728:630;;;;61954:36;:11;:18;;;;-1:-1:-1;;;14630:18:1;;14673:1;14664:11;;14428:253;61954:36:0;61728:630;;;;62005:36;:11;:18;;;;-1:-1:-1;;;13301:18:1;;13344:1;13335:11;;13099:253;62005:36:0;61728:630;;;;62056:36;:11;:18;;;;-1:-1:-1;;;13559:18:1;;13602:1;13593:11;;13357:253;62056:36:0;61728:630;;;;62107:36;:11;:18;;;;-1:-1:-1;;;17971:18:1;;18014:1;18005:11;;17769:253;62107:36:0;61728:630;;;;62158:36;:11;:18;;;;-1:-1:-1;;;15146:18:1;;15189:1;15180:11;;14944:253;62158:36:0;61728:630;;;;62209:36;:11;:18;;;;-1:-1:-1;;;15679:18:1;;15722:1;15713:11;;15477:253;62209:36:0;61728:630;;;;62260:36;:11;:18;;;;-1:-1:-1;;;16215:18:1;;16258:1;16249:11;;16013:253;62260:36:0;61728:630;;;;62311:36;:11;:18;;;;-1:-1:-1;;;19278:18:1;;19321:1;19312:11;;19076:253;62311:36:0;61728:630;;61721:637;61646:720;-1:-1:-1;61646:720:0:o;40424:328::-;40599:41;8320:10;40632:7;40599:18;:41::i;:::-;40591:103;;;;-1:-1:-1;;;40591:103:0;;;;;;;:::i;:::-;40705:39;40719:4;40725:2;40729:7;40738:5;40705:13;:39::i;62792:450::-;62919:13;62957:23;62972:7;62957:14;:23::i;26664:149::-;25953:7;25980:12;;;:6;:12;;;;;:22;;;24354:30;24365:4;8320:10;24354;:30::i;:::-;26779:26:::1;26791:4;26797:7;26779:11;:26::i;59274:92::-:0;-1:-1:-1;;;;;;;;;;;24354:30:0;51598:24;8320:10;24354;:30::i;:::-;-1:-1:-1;59338:13:0::1;:20:::0;;-1:-1:-1;;59338:20:0::1;59354:4;59338:20;::::0;;59274:92::o;66137:89::-;66181:13;66214:4;66207:11;;;;;:::i;732:192::-;533:5;;-1:-1:-1;;;;;533:5:0;519:10;:19;511:28;;;;;;-1:-1:-1;;;;;813:22:0;::::1;805:31;;;::::0;::::1;;873:5;::::0;852:37:::1;::::0;-1:-1:-1;;;;;852:37:0;;::::1;::::0;873:5:::1;::::0;852:37:::1;::::0;873:5:::1;::::0;852:37:::1;900:5;:16:::0;;-1:-1:-1;;;;;;900:16:0::1;-1:-1:-1::0;;;;;900:16:0;;;::::1;::::0;;;::::1;::::0;;732:192::o;59857:538::-;-1:-1:-1;;;;;;;;;;;24354:30:0;51598:24;8320:10;24354;:30::i;:::-;59976:20;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60012:12;60009:379;;;60041:15;:29:::0;;;60201:13:::1;1895:14:::0;60180:18:::1;:44:::0;60242:16;60239:138:::1;;60279:13;:20:::0;;-1:-1:-1;;60279:20:0::1;60295:4;60279:20;::::0;;60239:138:::1;;;60340:13;:21:::0;;-1:-1:-1;;60340:21:0::1;::::0;;59857:538;;;;:::o;59480:165::-;-1:-1:-1;;;;;;;;;;;24354:30:0;51598:24;8320:10;24354;:30::i;:::-;-1:-1:-1;59578:13:0::1;:28:::0;59617:9:::1;:20:::0;59480:165::o;1803:114::-;1895:14;;1803:114::o;5802:723::-;5858:13;6079:10;6075:53;;-1:-1:-1;;6106:10:0;;;;;;;;;;;;-1:-1:-1;;;6106:10:0;;;;;5802:723::o;6075:53::-;6153:5;6138:12;6194:78;6201:9;;6194:78;;6227:8;;;;:::i;:::-;;-1:-1:-1;6250:10:0;;-1:-1:-1;6258:2:0;6250:10;;:::i;:::-;;;6194:78;;;6282:19;6314:6;6304:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6304:17:0;;6282:39;;6332:154;6339:10;;6332:154;;6366:11;6376:1;6366:11;;:::i;:::-;;-1:-1:-1;6435:10:0;6443:2;6435:5;:10;:::i;:::-;6422:24;;:2;:24;:::i;:::-;6409:39;;6392:6;6399;6392:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6392:56:0;;;;;;;;-1:-1:-1;6463:11:0;6472:2;6463:11;;:::i;:::-;;;6332:154;;;6510:6;5802:723;-1:-1:-1;;;;5802:723:0:o;1925:127::-;2014:19;;2032:1;2014:19;;;1925:127::o;24476:204::-;24561:4;-1:-1:-1;;;;;;24585:47:0;;-1:-1:-1;;;24585:47:0;;:87;;;24636:36;24660:11;24636:23;:36::i;42262:127::-;42327:4;42351:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42351:16:0;:30;;;42262:127::o;46244:174::-;46319:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;46319:29:0;-1:-1:-1;;;;;46319:29:0;;;;;;;;:24;;46373:23;46319:24;46373:14;:23::i;:::-;-1:-1:-1;;;;;46364:46:0;;;;;;;;;;;46244:174;;:::o;57012:1857::-;57083:15;57101:23;:13;1895:14;;1803:114;57101:23;:27;;57127:1;57101:27;:::i;:::-;57083:45;;57155:10;;57144:7;:21;57141:223;;57236:82;;-1:-1:-1;;;57236:82:0;;;14102:29:1;14147:12;;57236:82:0;13900:265:1;57141:223:0;57374:25;:13;2014:19;;2032:1;2014:19;;;1925:127;57374:25;57749:17;57782:11;57794:4;;57782:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:24;;;;;57779:964;;;57865:16;;57826:35;:11;57838:4;;57826:17;;;;;;;:::i;:35::-;:55;57823:375;;58052:11;58064:4;;58052:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;57964:176;;58052:17;;57964:176;;:::i;57823:375::-;58282:11;58294:4;;58282:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;58352:25;58369:7;58352:16;:25::i;:::-;58243:153;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58212:199;;58426:37;:11;58438:4;;58426:17;;;;;;;:::i;:::-;;;;;;;;;;;;;:25;;2014:19;;2032:1;2014:19;;;1925:127;58426:37;58502:11;58514:4;;58502:17;;;;;;;:::i;:::-;;;;;;;;;;;;;:21;;58478:12;:21;58491:7;58478:21;;;;;;;;;;;:45;;;;;;:::i;:::-;;;;;;:::i;:::-;;57779:964;;;58610:87;;-1:-1:-1;;;58610:87:0;;;15404:34:1;15454:12;;58610:87:0;15202:270:1;57779:964:0;58802:22;58812:2;58816:7;58802:9;:22::i;:::-;58835:26;58848:7;58857:3;58835:12;:26::i;:::-;57072:1797;;57012:1857;;;:::o;42556:348::-;42649:4;42674:16;42682:7;42674;:16::i;:::-;42666:73;;;;-1:-1:-1;;;42666:73:0;;23895:2:1;42666:73:0;;;23877:21:1;23934:2;23914:18;;;23907:30;23973:34;23953:18;;;23946:62;-1:-1:-1;;;24024:18:1;;;24017:42;24076:19;;42666:73:0;23693:408:1;42666:73:0;42750:13;42766:23;42781:7;42766:14;:23::i;:::-;42750:39;;42819:5;-1:-1:-1;;;;;42808:16:0;:7;-1:-1:-1;;;;;42808:16:0;;:51;;;;42852:7;-1:-1:-1;;;;;42828:31:0;:20;42840:7;42828:11;:20::i;:::-;-1:-1:-1;;;;;42828:31:0;;42808:51;:87;;;-1:-1:-1;;;;;;39648:25:0;;;39624:4;39648:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42863:32;39527:164;45548:578;45707:4;-1:-1:-1;;;;;45680:31:0;:23;45695:7;45680:14;:23::i;:::-;-1:-1:-1;;;;;45680:31:0;;45672:85;;;;-1:-1:-1;;;45672:85:0;;27850:2:1;45672:85:0;;;27832:21:1;27889:2;27869:18;;;27862:30;27928:34;27908:18;;;27901:62;-1:-1:-1;;;27979:18:1;;;27972:39;28028:19;;45672:85:0;27648:405:1;45672:85:0;-1:-1:-1;;;;;45776:16:0;;45768:65;;;;-1:-1:-1;;;45768:65:0;;23136:2:1;45768:65:0;;;23118:21:1;23175:2;23155:18;;;23148:30;23214:34;23194:18;;;23187:62;-1:-1:-1;;;23265:18:1;;;23258:34;23309:19;;45768:65:0;22934:400:1;45768:65:0;45846:39;45867:4;45873:2;45877:7;45846:20;:39::i;:::-;45950:29;45967:1;45971:7;45950:8;:29::i;:::-;-1:-1:-1;;;;;45992:15:0;;;;;;:9;:15;;;;;:20;;46011:1;;45992:15;:20;;46011:1;;45992:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46023:13:0;;;;;;:9;:13;;;;;:18;;46040:1;;46023:13;:18;;46040:1;;46023:18;:::i;:::-;;;;-1:-1:-1;;46052:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46052:21:0;-1:-1:-1;;;;;46052:21:0;;;;;;;;;46091:27;;46052:16;;46091:27;;;;;;;45548:578;;;:::o;25201:497::-;25282:22;25290:4;25296:7;25282;:22::i;:::-;25277:414;;25470:41;25498:7;-1:-1:-1;;;;;25470:41:0;25508:2;25470:19;:41::i;:::-;25584:38;25612:4;25619:2;25584:19;:38::i;:::-;25375:270;;;;;;;;;:::i;28821:238::-;28905:22;28913:4;28919:7;28905;:22::i;:::-;28900:152;;28944:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;28944:29:0;;;;;;;;;:36;;-1:-1:-1;;28944:36:0;28976:4;28944:36;;;29027:12;8320:10;;8240:98;29027:12;-1:-1:-1;;;;;29000:40:0;29018:7;-1:-1:-1;;;;;29000:40:0;29012:4;29000:40;;;;;;;;;;28821:238;;:::o;29191:239::-;29275:22;29283:4;29289:7;29275;:22::i;:::-;29271:152;;;29346:5;29314:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29314:29:0;;;;;;;;;;:37;;-1:-1:-1;;29314:37:0;;;29371:40;8320:10;;29314:12;;29371:40;;29346:5;29371:40;29191:239;;:::o;10645:120::-;9657:7;;;;10181:41;;;;-1:-1:-1;;;10181:41:0;;22011:2:1;10181:41:0;;;21993:21:1;22050:2;22030:18;;;22023:30;-1:-1:-1;;;22069:18:1;;;22062:50;22129:18;;10181:41:0;21809:344:1;10181:41:0;10704:7:::1;:15:::0;;-1:-1:-1;;10704:15:0::1;::::0;;10735:22:::1;8320:10:::0;10744:12:::1;10735:22;::::0;-1:-1:-1;;;;;19498:32:1;;;19480:51;;19468:2;19453:18;10735:22:0::1;;;;;;;10645:120::o:0;10386:118::-;9657:7;;;;9911:9;9903:38;;;;-1:-1:-1;;;9903:38:0;;24308:2:1;9903:38:0;;;24290:21:1;24347:2;24327:18;;;24320:30;-1:-1:-1;;;24366:18:1;;;24359:46;24422:18;;9903:38:0;24106:340:1;9903:38:0;10446:7:::1;:14:::0;;-1:-1:-1;;10446:14:0::1;10456:4;10446:14;::::0;;10476:20:::1;10483:12;8320:10:::0;;8240:98;46560:315;46715:8;-1:-1:-1;;;;;46706:17:0;:5;-1:-1:-1;;;;;46706:17:0;;;46698:55;;;;-1:-1:-1;;;46698:55:0;;23541:2:1;46698:55:0;;;23523:21:1;23580:2;23560:18;;;23553:30;23619:27;23599:18;;;23592:55;23664:18;;46698:55:0;23339:349:1;46698:55:0;-1:-1:-1;;;;;46764:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;46764:46:0;;;;;;;;;;46826:41;;20175::1;;;46826::0;;20148:18:1;46826:41:0;;;;;;;46560:315;;;:::o;41634:::-;41791:28;41801:4;41807:2;41811:7;41791:9;:28::i;:::-;41838:48;41861:4;41867:2;41871:7;41880:5;41838:22;:48::i;:::-;41830:111;;;;-1:-1:-1;;;41830:111:0;;;;;;;:::i;49455:679::-;49528:13;49562:16;49570:7;49562;:16::i;:::-;49554:78;;;;-1:-1:-1;;;49554:78:0;;27019:2:1;49554:78:0;;;27001:21:1;27058:2;27038:18;;;27031:30;27097:34;27077:18;;;27070:62;-1:-1:-1;;;27148:18:1;;;27141:47;27205:19;;49554:78:0;26817:413:1;49554:78:0;49645:23;49671:19;;;:10;:19;;;;;49645:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49701:18;49722:10;:8;:10::i;:::-;49701:31;;49814:4;49808:18;49830:1;49808:23;49804:72;;;-1:-1:-1;49855:9:0;49455:679;-1:-1:-1;;49455:679:0:o;49804:72::-;49980:23;;:27;49976:108;;50055:4;50061:9;50038:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50024:48;;;;49455:679;;;:::o;49976:108::-;50103:23;50118:7;50103:14;:23::i;36504:305::-;36606:4;-1:-1:-1;;;;;;36643:40:0;;-1:-1:-1;;;36643:40:0;;:105;;-1:-1:-1;;;;;;;36700:48:0;;-1:-1:-1;;;36700:48:0;36643:105;:158;;;-1:-1:-1;;;;;;;;;;21845:40:0;;;36765:36;21736:157;43246:110;43322:26;43332:2;43336:7;43322:26;;;;;;;;;;;;:9;:26::i;50290:217::-;50390:16;50398:7;50390;:16::i;:::-;50382:75;;;;-1:-1:-1;;;50382:75:0;;26243:2:1;50382:75:0;;;26225:21:1;26282:2;26262:18;;;26255:30;26321:34;26301:18;;;26294:62;-1:-1:-1;;;26372:18:1;;;26365:44;26426:19;;50382:75:0;26041:410:1;50382:75:0;50468:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;60425:270::-;60553:11;;;;60550:81;;;9657:7;;;;60574:9;60566:65;;;;-1:-1:-1;;;60566:65:0;;21599:2:1;60566:65:0;;;21581:21:1;21638:2;21618:18;;;21611:30;21677:34;21657:18;;;21650:62;-1:-1:-1;;;21728:18:1;;;21721:41;21779:19;;60566:65:0;21397:407:1;7103:451:0;7178:13;7204:19;7236:10;7240:6;7236:1;:10;:::i;:::-;:14;;7249:1;7236:14;:::i;:::-;7226:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7226:25:0;;7204:47;;-1:-1:-1;;;7262:6:0;7269:1;7262:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;7262:15:0;;;;;;;;;-1:-1:-1;;;7288:6:0;7295:1;7288:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;7288:15:0;;;;;;;;-1:-1:-1;7319:9:0;7331:10;7335:6;7331:1;:10;:::i;:::-;:14;;7344:1;7331:14;:::i;:::-;7319:26;;7314:135;7351:1;7347;:5;7314:135;;;-1:-1:-1;;;7399:5:0;7407:3;7399:11;7386:25;;;;;;;:::i;:::-;;;;7374:6;7381:1;7374:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;7374:37:0;;;;;;;;-1:-1:-1;7436:1:0;7426:11;;;;;7354:3;;;:::i;:::-;;;7314:135;;;-1:-1:-1;7467:10:0;;7459:55;;;;-1:-1:-1;;;7459:55:0;;21238:2:1;7459:55:0;;;21220:21:1;;;21257:18;;;21250:30;21316:34;21296:18;;;21289:62;21368:18;;7459:55:0;21036:356:1;7459:55:0;7539:6;7103:451;-1:-1:-1;;;7103:451:0:o;47440:799::-;47595:4;-1:-1:-1;;;;;47616:13:0;;11915:20;11963:8;47612:620;;47652:72;;-1:-1:-1;;;47652:72:0;;-1:-1:-1;;;;;47652:36:0;;;;;:72;;8320:10;;47703:4;;47709:7;;47718:5;;47652:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47652:72:0;;;;;;;;-1:-1:-1;;47652:72:0;;;;;;;;;;;;:::i;:::-;;;47648:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47894:13:0;;47890:272;;47937:60;;-1:-1:-1;;;47937:60:0;;;;;;;:::i;47890:272::-;48112:6;48106:13;48097:6;48093:2;48089:15;48082:38;47648:529;-1:-1:-1;;;;;;47775:51:0;-1:-1:-1;;;47775:51:0;;-1:-1:-1;47768:58:0;;47612:620;-1:-1:-1;48216:4:0;47440:799;;;;;;:::o;58877:101::-;58929:13;58962:8;58955:15;;;;;:::i;37793:334::-;37866:13;37900:16;37908:7;37900;:16::i;:::-;37892:76;;;;-1:-1:-1;;;37892:76:0;;28260:2:1;37892:76:0;;;28242:21:1;28299:2;28279:18;;;28272:30;28338:34;28318:18;;;28311:62;-1:-1:-1;;;28389:18:1;;;28382:45;28444:19;;37892:76:0;28058:411:1;37892:76:0;37981:21;38005:10;:8;:10::i;:::-;37981:34;;38057:1;38039:7;38033:21;:25;:86;;;;;;;;;;;;;;;;;38085:7;38094:18;:7;:16;:18::i;:::-;38068:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38026:93;37793:334;-1:-1:-1;;;37793:334:0:o;43583:321::-;43713:18;43719:2;43723:7;43713:5;:18::i;:::-;43764:54;43795:1;43799:2;43803:7;43812:5;43764:22;:54::i;:::-;43742:154;;;;-1:-1:-1;;;43742:154:0;;;;;;;:::i;44240:382::-;-1:-1:-1;;;;;44320:16:0;;44312:61;;;;-1:-1:-1;;;44312:61:0;;26658:2:1;44312:61:0;;;26640:21:1;;;26677:18;;;26670:30;26736:34;26716:18;;;26709:62;26788:18;;44312:61:0;26456:356:1;44312:61:0;44393:16;44401:7;44393;:16::i;:::-;44392:17;44384:58;;;;-1:-1:-1;;;44384:58:0;;22779:2:1;44384:58:0;;;22761:21:1;22818:2;22798:18;;;22791:30;22857;22837:18;;;22830:58;22905:18;;44384:58:0;22577:352:1;44384:58:0;44455:45;44484:1;44488:2;44492:7;44455:20;:45::i;:::-;-1:-1:-1;;;;;44513:13:0;;;;;;:9;:13;;;;;:18;;44530:1;;44513:13;:18;;44530:1;;44513:18;:::i;:::-;;;;-1:-1:-1;;44542:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44542:21:0;-1:-1:-1;;;;;44542:21:0;;;;;;;;44581:33;;44542:16;;;44581:33;;44542:16;;44581:33;44240:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:348;1045:8;1055:6;1109:3;1102:4;1094:6;1090:17;1086:27;1076:55;;1127:1;1124;1117:12;1076:55;-1:-1:-1;1150:20:1;;1193:18;1182:30;;1179:50;;;1225:1;1222;1215:12;1179:50;1262:4;1254:6;1250:17;1238:29;;1314:3;1307:4;1298:6;1290;1286:19;1282:30;1279:39;1276:59;;;1331:1;1328;1321:12;1276:59;993:348;;;;;:::o;1346:221::-;1389:5;1442:3;1435:4;1427:6;1423:17;1419:27;1409:55;;1460:1;1457;1450:12;1409:55;1482:79;1557:3;1548:6;1535:20;1528:4;1520:6;1516:17;1482:79;:::i;1572:156::-;1638:20;;1698:4;1687:16;;1677:27;;1667:55;;1718:1;1715;1708:12;1733:186;1792:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;1884:29;1903:9;1884:29;:::i;1924:260::-;1992:6;2000;2053:2;2041:9;2032:7;2028:23;2024:32;2021:52;;;2069:1;2066;2059:12;2021:52;2092:29;2111:9;2092:29;:::i;:::-;2082:39;;2140:38;2174:2;2163:9;2159:18;2140:38;:::i;:::-;2130:48;;1924:260;;;;;:::o;2189:328::-;2266:6;2274;2282;2335:2;2323:9;2314:7;2310:23;2306:32;2303:52;;;2351:1;2348;2341:12;2303:52;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2422:38;2456:2;2445:9;2441:18;2422:38;:::i;:::-;2412:48;;2507:2;2496:9;2492:18;2479:32;2469:42;;2189:328;;;;;:::o;2522:666::-;2617:6;2625;2633;2641;2694:3;2682:9;2673:7;2669:23;2665:33;2662:53;;;2711:1;2708;2701:12;2662:53;2734:29;2753:9;2734:29;:::i;:::-;2724:39;;2782:38;2816:2;2805:9;2801:18;2782:38;:::i;:::-;2772:48;;2867:2;2856:9;2852:18;2839:32;2829:42;;2922:2;2911:9;2907:18;2894:32;2949:18;2941:6;2938:30;2935:50;;;2981:1;2978;2971:12;2935:50;3004:22;;3057:4;3049:13;;3045:27;-1:-1:-1;3035:55:1;;3086:1;3083;3076:12;3035:55;3109:73;3174:7;3169:2;3156:16;3151:2;3147;3143:11;3109:73;:::i;:::-;3099:83;;;2522:666;;;;;;;:::o;3193:254::-;3258:6;3266;3319:2;3307:9;3298:7;3294:23;3290:32;3287:52;;;3335:1;3332;3325:12;3287:52;3358:29;3377:9;3358:29;:::i;:::-;3348:39;;3406:35;3437:2;3426:9;3422:18;3406:35;:::i;3452:485::-;3532:6;3540;3548;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3640:29;3659:9;3640:29;:::i;:::-;3630:39;;3720:2;3709:9;3705:18;3692:32;3747:18;3739:6;3736:30;3733:50;;;3779:1;3776;3769:12;3733:50;3818:59;3869:7;3860:6;3849:9;3845:22;3818:59;:::i;:::-;3452:485;;3896:8;;-1:-1:-1;3792:85:1;;-1:-1:-1;;;;3452:485:1:o;3942:1004::-;4068:6;4076;4084;4092;4100;4108;4116;4124;4177:3;4165:9;4156:7;4152:23;4148:33;4145:53;;;4194:1;4191;4184:12;4145:53;4217:29;4236:9;4217:29;:::i;:::-;4207:39;;4297:2;4286:9;4282:18;4269:32;4320:18;4361:2;4353:6;4350:14;4347:34;;;4377:1;4374;4367:12;4347:34;4416:59;4467:7;4458:6;4447:9;4443:22;4416:59;:::i;:::-;4494:8;;-1:-1:-1;4390:85:1;-1:-1:-1;4582:2:1;4567:18;;4554:32;;-1:-1:-1;4598:16:1;;;4595:36;;;4627:1;4624;4617:12;4595:36;;4666:61;4719:7;4708:8;4697:9;4693:24;4666:61;:::i;:::-;4746:8;;-1:-1:-1;4640:87:1;-1:-1:-1;4800:36:1;;-1:-1:-1;4832:2:1;4817:18;;4800:36;:::i;:::-;4790:46;;4883:3;4872:9;4868:19;4855:33;4845:43;;4935:3;4924:9;4920:19;4907:33;4897:43;;3942:1004;;;;;;;;;;;:::o;4951:693::-;5056:6;5064;5072;5080;5088;5096;5149:3;5137:9;5128:7;5124:23;5120:33;5117:53;;;5166:1;5163;5156:12;5117:53;5189:29;5208:9;5189:29;:::i;:::-;5179:39;;5269:2;5258:9;5254:18;5241:32;5296:18;5288:6;5285:30;5282:50;;;5328:1;5325;5318:12;5282:50;5367:59;5418:7;5409:6;5398:9;5394:22;5367:59;:::i;:::-;5445:8;;-1:-1:-1;5341:85:1;-1:-1:-1;5499:36:1;;-1:-1:-1;5531:2:1;5516:18;;5499:36;:::i;:::-;5489:46;;5582:2;5571:9;5567:18;5554:32;5544:42;;5633:3;5622:9;5618:19;5605:33;5595:43;;4951:693;;;;;;;;:::o;5649:254::-;5717:6;5725;5778:2;5766:9;5757:7;5753:23;5749:32;5746:52;;;5794:1;5791;5784:12;5746:52;5817:29;5836:9;5817:29;:::i;:::-;5807:39;5893:2;5878:18;;;;5865:32;;-1:-1:-1;;;5649:254:1:o;5908:458::-;5992:6;6000;6008;6061:2;6049:9;6040:7;6036:23;6032:32;6029:52;;;6077:1;6074;6067:12;6029:52;6100:26;6116:9;6100:26;:::i;:::-;6090:36;;6173:2;6162:9;6158:18;6145:32;6135:42;;6228:2;6217:9;6213:18;6200:32;6255:18;6247:6;6244:30;6241:50;;;6287:1;6284;6277:12;6241:50;6310;6352:7;6343:6;6332:9;6328:22;6310:50;:::i;:::-;6300:60;;;5908:458;;;;;:::o;6371:180::-;6430:6;6483:2;6471:9;6462:7;6458:23;6454:32;6451:52;;;6499:1;6496;6489:12;6451:52;-1:-1:-1;6522:23:1;;6371:180;-1:-1:-1;6371:180:1:o;6556:254::-;6624:6;6632;6685:2;6673:9;6664:7;6660:23;6656:32;6653:52;;;6701:1;6698;6691:12;6653:52;6737:9;6724:23;6714:33;;6766:38;6800:2;6789:9;6785:18;6766:38;:::i;6815:245::-;6873:6;6926:2;6914:9;6905:7;6901:23;6897:32;6894:52;;;6942:1;6939;6932:12;6894:52;6981:9;6968:23;7000:30;7024:5;7000:30;:::i;7065:249::-;7134:6;7187:2;7175:9;7166:7;7162:23;7158:32;7155:52;;;7203:1;7200;7193:12;7155:52;7235:9;7229:16;7254:30;7278:5;7254:30;:::i;7319:411::-;7390:6;7398;7451:2;7439:9;7430:7;7426:23;7422:32;7419:52;;;7467:1;7464;7457:12;7419:52;7507:9;7494:23;7540:18;7532:6;7529:30;7526:50;;;7572:1;7569;7562:12;7526:50;7611:59;7662:7;7653:6;7642:9;7638:22;7611:59;:::i;:::-;7689:8;;7585:85;;-1:-1:-1;7319:411:1;-1:-1:-1;;;;7319:411:1:o;7735:322::-;7804:6;7857:2;7845:9;7836:7;7832:23;7828:32;7825:52;;;7873:1;7870;7863:12;7825:52;7913:9;7900:23;7946:18;7938:6;7935:30;7932:50;;;7978:1;7975;7968:12;7932:50;8001;8043:7;8034:6;8023:9;8019:22;8001:50;:::i;8247:248::-;8315:6;8323;8376:2;8364:9;8355:7;8351:23;8347:32;8344:52;;;8392:1;8389;8382:12;8344:52;-1:-1:-1;;8415:23:1;;;8485:2;8470:18;;;8457:32;;-1:-1:-1;8247:248:1:o;8500:257::-;8541:3;8579:5;8573:12;8606:6;8601:3;8594:19;8622:63;8678:6;8671:4;8666:3;8662:14;8655:4;8648:5;8644:16;8622:63;:::i;:::-;8739:2;8718:15;-1:-1:-1;;8714:29:1;8705:39;;;;8746:4;8701:50;;8500:257;-1:-1:-1;;8500:257:1:o;8762:973::-;8847:12;;8812:3;;8902:1;8922:18;;;;8975;;;;9002:61;;9056:4;9048:6;9044:17;9034:27;;9002:61;9082:2;9130;9122:6;9119:14;9099:18;9096:38;9093:161;;;9176:10;9171:3;9167:20;9164:1;9157:31;9211:4;9208:1;9201:15;9239:4;9236:1;9229:15;9093:161;9270:18;9297:104;;;;9415:1;9410:319;;;;9263:466;;9297:104;-1:-1:-1;;9330:24:1;;9318:37;;9375:16;;;;-1:-1:-1;9297:104:1;;9410:319;31325:1;31318:14;;;31362:4;31349:18;;9504:1;9518:165;9532:6;9529:1;9526:13;9518:165;;;9610:14;;9597:11;;;9590:35;9653:16;;;;9547:10;;9518:165;;;9522:3;;9712:6;9707:3;9703:16;9696:23;;9263:466;;;;;;;8762:973;;;;:::o;10159:273::-;10344:6;10336;10331:3;10318:33;10300:3;10370:16;;10395:13;;;10370:16;10159:273;-1:-1:-1;10159:273:1:o;10437:470::-;10616:3;10654:6;10648:13;10670:53;10716:6;10711:3;10704:4;10696:6;10692:17;10670:53;:::i;:::-;10786:13;;10745:16;;;;10808:57;10786:13;10745:16;10842:4;10830:17;;10808:57;:::i;:::-;10881:20;;10437:470;-1:-1:-1;;;;10437:470:1:o;10912:197::-;11040:3;11065:38;11099:3;11091:6;11065:38;:::i;11114:517::-;11391:3;11419:38;11453:3;11445:6;11419:38;:::i;:::-;-1:-1:-1;;;11473:2:1;11466:15;11510:6;11504:13;11526:60;11579:6;11575:1;11571:2;11567:10;11560:4;11552:6;11548:17;11526:60;:::i;:::-;11606:15;11623:1;11602:23;;11114:517;-1:-1:-1;;;;11114:517:1:o;17266:498::-;-1:-1:-1;;;17621:3:1;17614:23;17596:3;17656:46;17699:1;17694:3;17690:11;17682:6;17656:46;:::i;:::-;-1:-1:-1;;;17711:21:1;;17756:1;17748:10;;17266:498;-1:-1:-1;;;17266:498:1:o;18027:786::-;18438:25;18433:3;18426:38;18408:3;18493:6;18487:13;18509:62;18564:6;18559:2;18554:3;18550:12;18543:4;18535:6;18531:17;18509:62;:::i;:::-;-1:-1:-1;;;18630:2:1;18590:16;;;18622:11;;;18615:40;18680:13;;18702:63;18680:13;18751:2;18743:11;;18736:4;18724:17;;18702:63;:::i;:::-;18785:17;18804:2;18781:26;;18027:786;-1:-1:-1;;;;18027:786:1:o;19542:488::-;-1:-1:-1;;;;;19811:15:1;;;19793:34;;19863:15;;19858:2;19843:18;;19836:43;19910:2;19895:18;;19888:34;;;19958:3;19953:2;19938:18;;19931:31;;;19736:4;;19979:45;;20004:19;;19996:6;19979:45;:::i;:::-;19971:53;19542:488;-1:-1:-1;;;;;;19542:488:1:o;20812:219::-;20961:2;20950:9;20943:21;20924:4;20981:44;21021:2;21010:9;21006:18;20998:6;20981:44;:::i;22158:414::-;22360:2;22342:21;;;22399:2;22379:18;;;22372:30;22438:34;22433:2;22418:18;;22411:62;-1:-1:-1;;;22504:2:1;22489:18;;22482:48;22562:3;22547:19;;22158:414::o;29221:413::-;29423:2;29405:21;;;29462:2;29442:18;;;29435:30;29501:34;29496:2;29481:18;;29474:62;-1:-1:-1;;;29567:2:1;29552:18;;29545:47;29624:3;29609:19;;29221:413::o;31378:128::-;31418:3;31449:1;31445:6;31442:1;31439:13;31436:39;;;31455:18;;:::i;:::-;-1:-1:-1;31491:9:1;;31378:128::o;31511:120::-;31551:1;31577;31567:35;;31582:18;;:::i;:::-;-1:-1:-1;31616:9:1;;31511:120::o;31636:168::-;31676:7;31742:1;31738;31734:6;31730:14;31727:1;31724:21;31719:1;31712:9;31705:17;31701:45;31698:71;;;31749:18;;:::i;:::-;-1:-1:-1;31789:9:1;;31636:168::o;31809:125::-;31849:4;31877:1;31874;31871:8;31868:34;;;31882:18;;:::i;:::-;-1:-1:-1;31919:9:1;;31809:125::o;31939:258::-;32011:1;32021:113;32035:6;32032:1;32029:13;32021:113;;;32111:11;;;32105:18;32092:11;;;32085:39;32057:2;32050:10;32021:113;;;32152:6;32149:1;32146:13;32143:48;;;-1:-1:-1;;32187:1:1;32169:16;;32162:27;31939:258::o;32202:136::-;32241:3;32269:5;32259:39;;32278:18;;:::i;:::-;-1:-1:-1;;;32314:18:1;;32202:136::o;32343:380::-;32422:1;32418:12;;;;32465;;;32486:61;;32540:4;32532:6;32528:17;32518:27;;32486:61;32593:2;32585:6;32582:14;32562:18;32559:38;32556:161;;;32639:10;32634:3;32630:20;32627:1;32620:31;32674:4;32671:1;32664:15;32702:4;32699:1;32692:15;32556:161;;32343:380;;;:::o;32728:135::-;32767:3;-1:-1:-1;;32788:17:1;;32785:43;;;32808:18;;:::i;:::-;-1:-1:-1;32855:1:1;32844:13;;32728:135::o;32868:112::-;32900:1;32926;32916:35;;32931:18;;:::i;:::-;-1:-1:-1;32965:9:1;;32868:112::o;32985:127::-;33046:10;33041:3;33037:20;33034:1;33027:31;33077:4;33074:1;33067:15;33101:4;33098:1;33091:15;33117:127;33178:10;33173:3;33169:20;33166:1;33159:31;33209:4;33206:1;33199:15;33233:4;33230:1;33223:15;33249:127;33310:10;33305:3;33301:20;33298:1;33291:31;33341:4;33338:1;33331:15;33365:4;33362:1;33355:15;33381:127;33442:10;33437:3;33433:20;33430:1;33423:31;33473:4;33470:1;33463:15;33497:4;33494:1;33487:15;33513:131;-1:-1:-1;;;;;;33587:32:1;;33577:43;;33567:71;;33634:1;33631;33624:12

Swarm Source

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