ETH Price: $3,379.39 (-1.88%)
Gas: 2 Gwei

Token

Rodman Mystery Box (DRMB)
 

Overview

Max Total Supply

5,000 DRMB

Holders

2,475

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DRMB
0x820dfdc28a5d4dd681752190a6450c3f795a8116
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:
RodmanMysteryBox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-28
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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/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/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.6.0) (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 `IERC721Receiver.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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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 (last updated v4.6.0) (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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

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

// File: RodmanMysteryBox.sol


pragma solidity ^0.8.4;





contract RodmanMysteryBox is ERC721, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using Counters for Counters.Counter;

    bool public visibility;
    string public invisibleURI;
    string public baseURI;

    Counters.Counter private _tokenIdCounter;

    constructor() ERC721("Rodman Mystery Box", "DRMB") {
        visibility = false;
        setInvisibleURI(
            "ipfs://"
        );
        baseURI = "ipfs://";
    }

    function airDrop(address[] calldata addresses) public onlyOwner {
        for (uint256 i; i < addresses.length; i++) {
            safeMint(addresses[i]);
        }
    }

    function safeMint(address to) public onlyOwner {
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();
        _safeMint(to, tokenId);
    }

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

    function setVisible() public onlyOwner {
        visibility = true;
    }

    function setInvisibleURI(string memory URI) public onlyOwner {
        invisibleURI = URI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory)
    {
        if (visibility == false) {
            return string(abi.encodePacked(invisibleURI, _tokenId.toString()));
        }

        return string(abi.encodePacked(baseURI, _tokenId.toString()));

    }

    function setbaseURI(string memory URI) public onlyOwner {
        baseURI = URI;
    }

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

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":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"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"invisibleURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":"setInvisibleURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setVisible","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setbaseURI","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"visibility","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601281526020017f526f646d616e204d79737465727920426f7800000000000000000000000000008152506040518060400160405280600481526020017f44524d420000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000332565b508060019080519060200190620000af92919062000332565b505050620000d2620000c66200018f60201b60201c565b6200019760201b60201c565b60016007819055506000600860006101000a81548160ff0219169083151502179055506200013b6040518060400160405280600781526020017f697066733a2f2f000000000000000000000000000000000000000000000000008152506200025d60201b60201c565b6040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600a90805190602001906200018892919062000332565b50620004ca565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026d6200018f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002936200030860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e39062000409565b60405180910390fd5b80600990805190602001906200030492919062000332565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000340906200043c565b90600052602060002090601f016020900481019282620003645760008555620003b0565b82601f106200037f57805160ff1916838001178555620003b0565b82800160010185558215620003b0579182015b82811115620003af57825182559160200191906001019062000392565b5b509050620003bf9190620003c3565b5090565b5b80821115620003de576000816000905550600101620003c4565b5090565b6000620003f16020836200042b565b9150620003fe82620004a1565b602082019050919050565b600060208201905081810360008301526200042481620003e2565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045557607f821691505b602082108114156200046c576200046b62000472565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6132fe80620004da6000396000f3fe608060405234801561001057600080fd5b50600436106101725760003560e01c80636c0360eb116100de578063a22cb46511610097578063bffd950811610071578063bffd9508146103fd578063c87b56dd14610419578063e985e9c514610449578063f2fde38b1461047957610172565b8063a22cb465146103a7578063b6d46dc5146103c3578063b88d4fde146103e157610172565b80636c0360eb1461030957806370a0823114610327578063715018a6146103575780638b24a49d146103615780638da5cb5b1461036b57806395d89b411461038957610172565b806323b872dd1161013057806323b872dd1461024b57806329adec141461026757806340d097c31461028557806342842e0e146102a15780634a44f379146102bd5780636352211e146102d957610172565b8062b6849f1461017757806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d575b600080fd5b610191600480360381019061018c91906122e0565b610495565b005b6101ad60048036038101906101a8919061232d565b610567565b6040516101ba91906127e4565b60405180910390f35b6101cb610649565b6040516101d891906127ff565b60405180910390f35b6101fb60048036038101906101f691906123d0565b6106db565b604051610208919061277d565b60405180910390f35b61022b600480360381019061022691906122a0565b610760565b005b610235610878565b6040516102429190612a01565b60405180910390f35b6102656004803603810190610260919061218a565b610889565b005b61026f6108e9565b60405161027c91906127e4565b60405180910390f35b61029f600480360381019061029a919061211d565b6108fc565b005b6102bb60048036038101906102b6919061218a565b61099e565b005b6102d760048036038101906102d29190612387565b6109be565b005b6102f360048036038101906102ee91906123d0565b610a54565b604051610300919061277d565b60405180910390f35b610311610b06565b60405161031e91906127ff565b60405180910390f35b610341600480360381019061033c919061211d565b610b94565b60405161034e9190612a01565b60405180910390f35b61035f610c4c565b005b610369610cd4565b005b610373610d6d565b604051610380919061277d565b60405180910390f35b610391610d97565b60405161039e91906127ff565b60405180910390f35b6103c160048036038101906103bc9190612260565b610e29565b005b6103cb610e3f565b6040516103d891906127ff565b60405180910390f35b6103fb60048036038101906103f691906121dd565b610ecd565b005b61041760048036038101906104129190612387565b610f2f565b005b610433600480360381019061042e91906123d0565b610fc5565b60405161044091906127ff565b60405180910390f35b610463600480360381019061045e919061214a565b611048565b60405161047091906127e4565b60405180910390f35b610493600480360381019061048e919061211d565b6110dc565b005b61049d6111d4565b73ffffffffffffffffffffffffffffffffffffffff166104bb610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610508906129a1565b60405180910390fd5b60005b828290508110156105625761054f83838381811061053557610534612dd6565b5b905060200201602081019061054a919061211d565b6108fc565b808061055a90612ccf565b915050610514565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106425750610641826111dc565b5b9050919050565b60606000805461065890612c6c565b80601f016020809104026020016040519081016040528092919081815260200182805461068490612c6c565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b60006106e682611246565b610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071c90612981565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076b82610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d3906129c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107fb6111d4565b73ffffffffffffffffffffffffffffffffffffffff16148061082a5750610829816108246111d4565b611048565b5b610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090612901565b60405180910390fd5b61087383836112b2565b505050565b6000610884600b61136b565b905090565b61089a6108946111d4565b82611379565b6108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d0906129e1565b60405180910390fd5b6108e4838383611457565b505050565b600860009054906101000a900460ff1681565b6109046111d4565b73ffffffffffffffffffffffffffffffffffffffff16610922610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f906129a1565b60405180910390fd5b610982600b6116be565b600061098e600b61136b565b905061099a82826116d4565b5050565b6109b983838360405180602001604052806000815250610ecd565b505050565b6109c66111d4565b73ffffffffffffffffffffffffffffffffffffffff166109e4610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906129a1565b60405180910390fd5b80600a9080519060200190610a50929190611edb565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490612941565b60405180910390fd5b80915050919050565b600a8054610b1390612c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f90612c6c565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612921565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c546111d4565b73ffffffffffffffffffffffffffffffffffffffff16610c72610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906129a1565b60405180910390fd5b610cd260006116f2565b565b610cdc6111d4565b73ffffffffffffffffffffffffffffffffffffffff16610cfa610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906129a1565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610da690612c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd290612c6c565b8015610e1f5780601f10610df457610100808354040283529160200191610e1f565b820191906000526020600020905b815481529060010190602001808311610e0257829003601f168201915b5050505050905090565b610e3b610e346111d4565b83836117b8565b5050565b60098054610e4c90612c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890612c6c565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b505050505081565b610ede610ed86111d4565b83611379565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f14906129e1565b60405180910390fd5b610f2984848484611925565b50505050565b610f376111d4565b73ffffffffffffffffffffffffffffffffffffffff16610f55610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906129a1565b60405180910390fd5b8060099080519060200190610fc1929190611edb565b5050565b606060001515600860009054906101000a900460ff1615151415611015576009610fee83611981565b604051602001610fff929190612759565b6040516020818303038152906040529050611043565b600a61102083611981565b604051602001611031929190612759565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110e46111d4565b73ffffffffffffffffffffffffffffffffffffffff16611102610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906129a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90612841565b60405180910390fd5b6111d1816116f2565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661132583610a54565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061138482611246565b6113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906128e1565b60405180910390fd5b60006113ce83610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611410575061140f8185611048565b5b8061144e57508373ffffffffffffffffffffffffffffffffffffffff16611436846106db565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661147782610a54565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612861565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906128a1565b60405180910390fd5b611548838383611ae2565b6115536000826112b2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a39190612b82565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115fa9190612afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116b9838383611ae7565b505050565b6001816000016000828254019250508190555050565b6116ee828260405180602001604052806000815250611aec565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906128c1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191891906127e4565b60405180910390a3505050565b611930848484611457565b61193c84848484611b47565b61197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290612821565b60405180910390fd5b50505050565b606060008214156119c9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611add565b600082905060005b600082146119fb5780806119e490612ccf565b915050600a826119f49190612b51565b91506119d1565b60008167ffffffffffffffff811115611a1757611a16612e05565b5b6040519080825280601f01601f191660200182016040528015611a495781602001600182028036833780820191505090505b5090505b60008514611ad657600182611a629190612b82565b9150600a85611a719190612d18565b6030611a7d9190612afb565b60f81b818381518110611a9357611a92612dd6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611acf9190612b51565b9450611a4d565b8093505050505b919050565b505050565b505050565b611af68383611cde565b611b036000848484611b47565b611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990612821565b60405180910390fd5b505050565b6000611b688473ffffffffffffffffffffffffffffffffffffffff16611eb8565b15611cd1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b916111d4565b8786866040518563ffffffff1660e01b8152600401611bb39493929190612798565b602060405180830381600087803b158015611bcd57600080fd5b505af1925050508015611bfe57506040513d601f19601f82011682018060405250810190611bfb919061235a565b60015b611c81573d8060008114611c2e576040519150601f19603f3d011682016040523d82523d6000602084013e611c33565b606091505b50600081511415611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090612821565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cd6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590612961565b60405180910390fd5b611d5781611246565b15611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90612881565b60405180910390fd5b611da360008383611ae2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df39190612afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb460008383611ae7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ee790612c6c565b90600052602060002090601f016020900481019282611f095760008555611f50565b82601f10611f2257805160ff1916838001178555611f50565b82800160010185558215611f50579182015b82811115611f4f578251825591602001919060010190611f34565b5b509050611f5d9190611f61565b5090565b5b80821115611f7a576000816000905550600101611f62565b5090565b6000611f91611f8c84612a41565b612a1c565b905082815260208101848484011115611fad57611fac612e43565b5b611fb8848285612c2a565b509392505050565b6000611fd3611fce84612a72565b612a1c565b905082815260208101848484011115611fef57611fee612e43565b5b611ffa848285612c2a565b509392505050565b6000813590506120118161326c565b92915050565b60008083601f84011261202d5761202c612e39565b5b8235905067ffffffffffffffff81111561204a57612049612e34565b5b60208301915083602082028301111561206657612065612e3e565b5b9250929050565b60008135905061207c81613283565b92915050565b6000813590506120918161329a565b92915050565b6000815190506120a68161329a565b92915050565b600082601f8301126120c1576120c0612e39565b5b81356120d1848260208601611f7e565b91505092915050565b600082601f8301126120ef576120ee612e39565b5b81356120ff848260208601611fc0565b91505092915050565b600081359050612117816132b1565b92915050565b60006020828403121561213357612132612e4d565b5b600061214184828501612002565b91505092915050565b6000806040838503121561216157612160612e4d565b5b600061216f85828601612002565b925050602061218085828601612002565b9150509250929050565b6000806000606084860312156121a3576121a2612e4d565b5b60006121b186828701612002565b93505060206121c286828701612002565b92505060406121d386828701612108565b9150509250925092565b600080600080608085870312156121f7576121f6612e4d565b5b600061220587828801612002565b945050602061221687828801612002565b935050604061222787828801612108565b925050606085013567ffffffffffffffff81111561224857612247612e48565b5b612254878288016120ac565b91505092959194509250565b6000806040838503121561227757612276612e4d565b5b600061228585828601612002565b92505060206122968582860161206d565b9150509250929050565b600080604083850312156122b7576122b6612e4d565b5b60006122c585828601612002565b92505060206122d685828601612108565b9150509250929050565b600080602083850312156122f7576122f6612e4d565b5b600083013567ffffffffffffffff81111561231557612314612e48565b5b61232185828601612017565b92509250509250929050565b60006020828403121561234357612342612e4d565b5b600061235184828501612082565b91505092915050565b6000602082840312156123705761236f612e4d565b5b600061237e84828501612097565b91505092915050565b60006020828403121561239d5761239c612e4d565b5b600082013567ffffffffffffffff8111156123bb576123ba612e48565b5b6123c7848285016120da565b91505092915050565b6000602082840312156123e6576123e5612e4d565b5b60006123f484828501612108565b91505092915050565b61240681612bb6565b82525050565b61241581612bc8565b82525050565b600061242682612ab8565b6124308185612ace565b9350612440818560208601612c39565b61244981612e52565b840191505092915050565b600061245f82612ac3565b6124698185612adf565b9350612479818560208601612c39565b61248281612e52565b840191505092915050565b600061249882612ac3565b6124a28185612af0565b93506124b2818560208601612c39565b80840191505092915050565b600081546124cb81612c6c565b6124d58186612af0565b945060018216600081146124f0576001811461250157612534565b60ff19831686528186019350612534565b61250a85612aa3565b60005b8381101561252c5781548189015260018201915060208101905061250d565b838801955050505b50505092915050565b600061254a603283612adf565b915061255582612e63565b604082019050919050565b600061256d602683612adf565b915061257882612eb2565b604082019050919050565b6000612590602583612adf565b915061259b82612f01565b604082019050919050565b60006125b3601c83612adf565b91506125be82612f50565b602082019050919050565b60006125d6602483612adf565b91506125e182612f79565b604082019050919050565b60006125f9601983612adf565b915061260482612fc8565b602082019050919050565b600061261c602c83612adf565b915061262782612ff1565b604082019050919050565b600061263f603883612adf565b915061264a82613040565b604082019050919050565b6000612662602a83612adf565b915061266d8261308f565b604082019050919050565b6000612685602983612adf565b9150612690826130de565b604082019050919050565b60006126a8602083612adf565b91506126b38261312d565b602082019050919050565b60006126cb602c83612adf565b91506126d682613156565b604082019050919050565b60006126ee602083612adf565b91506126f9826131a5565b602082019050919050565b6000612711602183612adf565b915061271c826131ce565b604082019050919050565b6000612734603183612adf565b915061273f8261321d565b604082019050919050565b61275381612c20565b82525050565b600061276582856124be565b9150612771828461248d565b91508190509392505050565b600060208201905061279260008301846123fd565b92915050565b60006080820190506127ad60008301876123fd565b6127ba60208301866123fd565b6127c7604083018561274a565b81810360608301526127d9818461241b565b905095945050505050565b60006020820190506127f9600083018461240c565b92915050565b600060208201905081810360008301526128198184612454565b905092915050565b6000602082019050818103600083015261283a8161253d565b9050919050565b6000602082019050818103600083015261285a81612560565b9050919050565b6000602082019050818103600083015261287a81612583565b9050919050565b6000602082019050818103600083015261289a816125a6565b9050919050565b600060208201905081810360008301526128ba816125c9565b9050919050565b600060208201905081810360008301526128da816125ec565b9050919050565b600060208201905081810360008301526128fa8161260f565b9050919050565b6000602082019050818103600083015261291a81612632565b9050919050565b6000602082019050818103600083015261293a81612655565b9050919050565b6000602082019050818103600083015261295a81612678565b9050919050565b6000602082019050818103600083015261297a8161269b565b9050919050565b6000602082019050818103600083015261299a816126be565b9050919050565b600060208201905081810360008301526129ba816126e1565b9050919050565b600060208201905081810360008301526129da81612704565b9050919050565b600060208201905081810360008301526129fa81612727565b9050919050565b6000602082019050612a16600083018461274a565b92915050565b6000612a26612a37565b9050612a328282612c9e565b919050565b6000604051905090565b600067ffffffffffffffff821115612a5c57612a5b612e05565b5b612a6582612e52565b9050602081019050919050565b600067ffffffffffffffff821115612a8d57612a8c612e05565b5b612a9682612e52565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b0682612c20565b9150612b1183612c20565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b4657612b45612d49565b5b828201905092915050565b6000612b5c82612c20565b9150612b6783612c20565b925082612b7757612b76612d78565b5b828204905092915050565b6000612b8d82612c20565b9150612b9883612c20565b925082821015612bab57612baa612d49565b5b828203905092915050565b6000612bc182612c00565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c57578082015181840152602081019050612c3c565b83811115612c66576000848401525b50505050565b60006002820490506001821680612c8457607f821691505b60208210811415612c9857612c97612da7565b5b50919050565b612ca782612e52565b810181811067ffffffffffffffff82111715612cc657612cc5612e05565b5b80604052505050565b6000612cda82612c20565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d0d57612d0c612d49565b5b600182019050919050565b6000612d2382612c20565b9150612d2e83612c20565b925082612d3e57612d3d612d78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61327581612bb6565b811461328057600080fd5b50565b61328c81612bc8565b811461329757600080fd5b50565b6132a381612bd4565b81146132ae57600080fd5b50565b6132ba81612c20565b81146132c557600080fd5b5056fea2646970667358221220972187b764a4e4adf73f3de107884c2f957f62319d301089be5e442c84bce9ce64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101725760003560e01c80636c0360eb116100de578063a22cb46511610097578063bffd950811610071578063bffd9508146103fd578063c87b56dd14610419578063e985e9c514610449578063f2fde38b1461047957610172565b8063a22cb465146103a7578063b6d46dc5146103c3578063b88d4fde146103e157610172565b80636c0360eb1461030957806370a0823114610327578063715018a6146103575780638b24a49d146103615780638da5cb5b1461036b57806395d89b411461038957610172565b806323b872dd1161013057806323b872dd1461024b57806329adec141461026757806340d097c31461028557806342842e0e146102a15780634a44f379146102bd5780636352211e146102d957610172565b8062b6849f1461017757806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d575b600080fd5b610191600480360381019061018c91906122e0565b610495565b005b6101ad60048036038101906101a8919061232d565b610567565b6040516101ba91906127e4565b60405180910390f35b6101cb610649565b6040516101d891906127ff565b60405180910390f35b6101fb60048036038101906101f691906123d0565b6106db565b604051610208919061277d565b60405180910390f35b61022b600480360381019061022691906122a0565b610760565b005b610235610878565b6040516102429190612a01565b60405180910390f35b6102656004803603810190610260919061218a565b610889565b005b61026f6108e9565b60405161027c91906127e4565b60405180910390f35b61029f600480360381019061029a919061211d565b6108fc565b005b6102bb60048036038101906102b6919061218a565b61099e565b005b6102d760048036038101906102d29190612387565b6109be565b005b6102f360048036038101906102ee91906123d0565b610a54565b604051610300919061277d565b60405180910390f35b610311610b06565b60405161031e91906127ff565b60405180910390f35b610341600480360381019061033c919061211d565b610b94565b60405161034e9190612a01565b60405180910390f35b61035f610c4c565b005b610369610cd4565b005b610373610d6d565b604051610380919061277d565b60405180910390f35b610391610d97565b60405161039e91906127ff565b60405180910390f35b6103c160048036038101906103bc9190612260565b610e29565b005b6103cb610e3f565b6040516103d891906127ff565b60405180910390f35b6103fb60048036038101906103f691906121dd565b610ecd565b005b61041760048036038101906104129190612387565b610f2f565b005b610433600480360381019061042e91906123d0565b610fc5565b60405161044091906127ff565b60405180910390f35b610463600480360381019061045e919061214a565b611048565b60405161047091906127e4565b60405180910390f35b610493600480360381019061048e919061211d565b6110dc565b005b61049d6111d4565b73ffffffffffffffffffffffffffffffffffffffff166104bb610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610511576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610508906129a1565b60405180910390fd5b60005b828290508110156105625761054f83838381811061053557610534612dd6565b5b905060200201602081019061054a919061211d565b6108fc565b808061055a90612ccf565b915050610514565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106425750610641826111dc565b5b9050919050565b60606000805461065890612c6c565b80601f016020809104026020016040519081016040528092919081815260200182805461068490612c6c565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b60006106e682611246565b610725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071c90612981565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076b82610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d3906129c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107fb6111d4565b73ffffffffffffffffffffffffffffffffffffffff16148061082a5750610829816108246111d4565b611048565b5b610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090612901565b60405180910390fd5b61087383836112b2565b505050565b6000610884600b61136b565b905090565b61089a6108946111d4565b82611379565b6108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d0906129e1565b60405180910390fd5b6108e4838383611457565b505050565b600860009054906101000a900460ff1681565b6109046111d4565b73ffffffffffffffffffffffffffffffffffffffff16610922610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f906129a1565b60405180910390fd5b610982600b6116be565b600061098e600b61136b565b905061099a82826116d4565b5050565b6109b983838360405180602001604052806000815250610ecd565b505050565b6109c66111d4565b73ffffffffffffffffffffffffffffffffffffffff166109e4610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a31906129a1565b60405180910390fd5b80600a9080519060200190610a50929190611edb565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490612941565b60405180910390fd5b80915050919050565b600a8054610b1390612c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f90612c6c565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612921565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c546111d4565b73ffffffffffffffffffffffffffffffffffffffff16610c72610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906129a1565b60405180910390fd5b610cd260006116f2565b565b610cdc6111d4565b73ffffffffffffffffffffffffffffffffffffffff16610cfa610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906129a1565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610da690612c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd290612c6c565b8015610e1f5780601f10610df457610100808354040283529160200191610e1f565b820191906000526020600020905b815481529060010190602001808311610e0257829003601f168201915b5050505050905090565b610e3b610e346111d4565b83836117b8565b5050565b60098054610e4c90612c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890612c6c565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b505050505081565b610ede610ed86111d4565b83611379565b610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f14906129e1565b60405180910390fd5b610f2984848484611925565b50505050565b610f376111d4565b73ffffffffffffffffffffffffffffffffffffffff16610f55610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa2906129a1565b60405180910390fd5b8060099080519060200190610fc1929190611edb565b5050565b606060001515600860009054906101000a900460ff1615151415611015576009610fee83611981565b604051602001610fff929190612759565b6040516020818303038152906040529050611043565b600a61102083611981565b604051602001611031929190612759565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110e46111d4565b73ffffffffffffffffffffffffffffffffffffffff16611102610d6d565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f906129a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90612841565b60405180910390fd5b6111d1816116f2565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661132583610a54565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061138482611246565b6113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906128e1565b60405180910390fd5b60006113ce83610a54565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611410575061140f8185611048565b5b8061144e57508373ffffffffffffffffffffffffffffffffffffffff16611436846106db565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661147782610a54565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612861565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906128a1565b60405180910390fd5b611548838383611ae2565b6115536000826112b2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a39190612b82565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115fa9190612afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116b9838383611ae7565b505050565b6001816000016000828254019250508190555050565b6116ee828260405180602001604052806000815250611aec565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906128c1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191891906127e4565b60405180910390a3505050565b611930848484611457565b61193c84848484611b47565b61197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290612821565b60405180910390fd5b50505050565b606060008214156119c9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611add565b600082905060005b600082146119fb5780806119e490612ccf565b915050600a826119f49190612b51565b91506119d1565b60008167ffffffffffffffff811115611a1757611a16612e05565b5b6040519080825280601f01601f191660200182016040528015611a495781602001600182028036833780820191505090505b5090505b60008514611ad657600182611a629190612b82565b9150600a85611a719190612d18565b6030611a7d9190612afb565b60f81b818381518110611a9357611a92612dd6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611acf9190612b51565b9450611a4d565b8093505050505b919050565b505050565b505050565b611af68383611cde565b611b036000848484611b47565b611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990612821565b60405180910390fd5b505050565b6000611b688473ffffffffffffffffffffffffffffffffffffffff16611eb8565b15611cd1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b916111d4565b8786866040518563ffffffff1660e01b8152600401611bb39493929190612798565b602060405180830381600087803b158015611bcd57600080fd5b505af1925050508015611bfe57506040513d601f19601f82011682018060405250810190611bfb919061235a565b60015b611c81573d8060008114611c2e576040519150601f19603f3d011682016040523d82523d6000602084013e611c33565b606091505b50600081511415611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090612821565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cd6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590612961565b60405180910390fd5b611d5781611246565b15611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90612881565b60405180910390fd5b611da360008383611ae2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df39190612afb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb460008383611ae7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ee790612c6c565b90600052602060002090601f016020900481019282611f095760008555611f50565b82601f10611f2257805160ff1916838001178555611f50565b82800160010185558215611f50579182015b82811115611f4f578251825591602001919060010190611f34565b5b509050611f5d9190611f61565b5090565b5b80821115611f7a576000816000905550600101611f62565b5090565b6000611f91611f8c84612a41565b612a1c565b905082815260208101848484011115611fad57611fac612e43565b5b611fb8848285612c2a565b509392505050565b6000611fd3611fce84612a72565b612a1c565b905082815260208101848484011115611fef57611fee612e43565b5b611ffa848285612c2a565b509392505050565b6000813590506120118161326c565b92915050565b60008083601f84011261202d5761202c612e39565b5b8235905067ffffffffffffffff81111561204a57612049612e34565b5b60208301915083602082028301111561206657612065612e3e565b5b9250929050565b60008135905061207c81613283565b92915050565b6000813590506120918161329a565b92915050565b6000815190506120a68161329a565b92915050565b600082601f8301126120c1576120c0612e39565b5b81356120d1848260208601611f7e565b91505092915050565b600082601f8301126120ef576120ee612e39565b5b81356120ff848260208601611fc0565b91505092915050565b600081359050612117816132b1565b92915050565b60006020828403121561213357612132612e4d565b5b600061214184828501612002565b91505092915050565b6000806040838503121561216157612160612e4d565b5b600061216f85828601612002565b925050602061218085828601612002565b9150509250929050565b6000806000606084860312156121a3576121a2612e4d565b5b60006121b186828701612002565b93505060206121c286828701612002565b92505060406121d386828701612108565b9150509250925092565b600080600080608085870312156121f7576121f6612e4d565b5b600061220587828801612002565b945050602061221687828801612002565b935050604061222787828801612108565b925050606085013567ffffffffffffffff81111561224857612247612e48565b5b612254878288016120ac565b91505092959194509250565b6000806040838503121561227757612276612e4d565b5b600061228585828601612002565b92505060206122968582860161206d565b9150509250929050565b600080604083850312156122b7576122b6612e4d565b5b60006122c585828601612002565b92505060206122d685828601612108565b9150509250929050565b600080602083850312156122f7576122f6612e4d565b5b600083013567ffffffffffffffff81111561231557612314612e48565b5b61232185828601612017565b92509250509250929050565b60006020828403121561234357612342612e4d565b5b600061235184828501612082565b91505092915050565b6000602082840312156123705761236f612e4d565b5b600061237e84828501612097565b91505092915050565b60006020828403121561239d5761239c612e4d565b5b600082013567ffffffffffffffff8111156123bb576123ba612e48565b5b6123c7848285016120da565b91505092915050565b6000602082840312156123e6576123e5612e4d565b5b60006123f484828501612108565b91505092915050565b61240681612bb6565b82525050565b61241581612bc8565b82525050565b600061242682612ab8565b6124308185612ace565b9350612440818560208601612c39565b61244981612e52565b840191505092915050565b600061245f82612ac3565b6124698185612adf565b9350612479818560208601612c39565b61248281612e52565b840191505092915050565b600061249882612ac3565b6124a28185612af0565b93506124b2818560208601612c39565b80840191505092915050565b600081546124cb81612c6c565b6124d58186612af0565b945060018216600081146124f0576001811461250157612534565b60ff19831686528186019350612534565b61250a85612aa3565b60005b8381101561252c5781548189015260018201915060208101905061250d565b838801955050505b50505092915050565b600061254a603283612adf565b915061255582612e63565b604082019050919050565b600061256d602683612adf565b915061257882612eb2565b604082019050919050565b6000612590602583612adf565b915061259b82612f01565b604082019050919050565b60006125b3601c83612adf565b91506125be82612f50565b602082019050919050565b60006125d6602483612adf565b91506125e182612f79565b604082019050919050565b60006125f9601983612adf565b915061260482612fc8565b602082019050919050565b600061261c602c83612adf565b915061262782612ff1565b604082019050919050565b600061263f603883612adf565b915061264a82613040565b604082019050919050565b6000612662602a83612adf565b915061266d8261308f565b604082019050919050565b6000612685602983612adf565b9150612690826130de565b604082019050919050565b60006126a8602083612adf565b91506126b38261312d565b602082019050919050565b60006126cb602c83612adf565b91506126d682613156565b604082019050919050565b60006126ee602083612adf565b91506126f9826131a5565b602082019050919050565b6000612711602183612adf565b915061271c826131ce565b604082019050919050565b6000612734603183612adf565b915061273f8261321d565b604082019050919050565b61275381612c20565b82525050565b600061276582856124be565b9150612771828461248d565b91508190509392505050565b600060208201905061279260008301846123fd565b92915050565b60006080820190506127ad60008301876123fd565b6127ba60208301866123fd565b6127c7604083018561274a565b81810360608301526127d9818461241b565b905095945050505050565b60006020820190506127f9600083018461240c565b92915050565b600060208201905081810360008301526128198184612454565b905092915050565b6000602082019050818103600083015261283a8161253d565b9050919050565b6000602082019050818103600083015261285a81612560565b9050919050565b6000602082019050818103600083015261287a81612583565b9050919050565b6000602082019050818103600083015261289a816125a6565b9050919050565b600060208201905081810360008301526128ba816125c9565b9050919050565b600060208201905081810360008301526128da816125ec565b9050919050565b600060208201905081810360008301526128fa8161260f565b9050919050565b6000602082019050818103600083015261291a81612632565b9050919050565b6000602082019050818103600083015261293a81612655565b9050919050565b6000602082019050818103600083015261295a81612678565b9050919050565b6000602082019050818103600083015261297a8161269b565b9050919050565b6000602082019050818103600083015261299a816126be565b9050919050565b600060208201905081810360008301526129ba816126e1565b9050919050565b600060208201905081810360008301526129da81612704565b9050919050565b600060208201905081810360008301526129fa81612727565b9050919050565b6000602082019050612a16600083018461274a565b92915050565b6000612a26612a37565b9050612a328282612c9e565b919050565b6000604051905090565b600067ffffffffffffffff821115612a5c57612a5b612e05565b5b612a6582612e52565b9050602081019050919050565b600067ffffffffffffffff821115612a8d57612a8c612e05565b5b612a9682612e52565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b0682612c20565b9150612b1183612c20565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b4657612b45612d49565b5b828201905092915050565b6000612b5c82612c20565b9150612b6783612c20565b925082612b7757612b76612d78565b5b828204905092915050565b6000612b8d82612c20565b9150612b9883612c20565b925082821015612bab57612baa612d49565b5b828203905092915050565b6000612bc182612c00565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c57578082015181840152602081019050612c3c565b83811115612c66576000848401525b50505050565b60006002820490506001821680612c8457607f821691505b60208210811415612c9857612c97612da7565b5b50919050565b612ca782612e52565b810181811067ffffffffffffffff82111715612cc657612cc5612e05565b5b80604052505050565b6000612cda82612c20565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d0d57612d0c612d49565b5b600182019050919050565b6000612d2382612c20565b9150612d2e83612c20565b925082612d3e57612d3d612d78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61327581612bb6565b811461328057600080fd5b50565b61328c81612bc8565b811461329757600080fd5b50565b6132a381612bd4565b81146132ae57600080fd5b50565b6132ba81612c20565b81146132c557600080fd5b5056fea2646970667358221220972187b764a4e4adf73f3de107884c2f957f62319d301089be5e442c84bce9ce64736f6c63430008070033

Deployed Bytecode Sourcemap

41591:1649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42064:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28406:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29351:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30911:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30434:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42434:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31661:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41736:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42246:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32071:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43041:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29045:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41798:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28775:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8989:103;;;:::i;:::-;;42546:75;;;:::i;:::-;;8338:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29520:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31204:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41765:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32327:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42629:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42735:298;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31430:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9247:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42064:174;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42144:9:::1;42139:92;42159:9;;:16;;42155:1;:20;42139:92;;;42197:22;42206:9;;42216:1;42206:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;42197:8;:22::i;:::-;42177:3;;;;;:::i;:::-;;;;42139:92;;;;42064:174:::0;;:::o;28406:305::-;28508:4;28560:25;28545:40;;;:11;:40;;;;:105;;;;28617:33;28602:48;;;:11;:48;;;;28545:105;:158;;;;28667:36;28691:11;28667:23;:36::i;:::-;28545:158;28525:178;;28406:305;;;:::o;29351:100::-;29405:13;29438:5;29431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29351:100;:::o;30911:221::-;30987:7;31015:16;31023:7;31015;:16::i;:::-;31007:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31100:15;:24;31116:7;31100:24;;;;;;;;;;;;;;;;;;;;;31093:31;;30911:221;;;:::o;30434:411::-;30515:13;30531:23;30546:7;30531:14;:23::i;:::-;30515:39;;30579:5;30573:11;;:2;:11;;;;30565:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30673:5;30657:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30682:37;30699:5;30706:12;:10;:12::i;:::-;30682:16;:37::i;:::-;30657:62;30635:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;30816:21;30825:2;30829:7;30816:8;:21::i;:::-;30504:341;30434:411;;:::o;42434:104::-;42478:7;42505:25;:15;:23;:25::i;:::-;42498:32;;42434:104;:::o;31661:339::-;31856:41;31875:12;:10;:12::i;:::-;31889:7;31856:18;:41::i;:::-;31848:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31964:28;31974:4;31980:2;31984:7;31964:9;:28::i;:::-;31661:339;;;:::o;41736:22::-;;;;;;;;;;;;;:::o;42246:180::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42304:27:::1;:15;:25;:27::i;:::-;42342:15;42360:25;:15;:23;:25::i;:::-;42342:43;;42396:22;42406:2;42410:7;42396:9;:22::i;:::-;42293:133;42246:180:::0;:::o;32071:185::-;32209:39;32226:4;32232:2;32236:7;32209:39;;;;;;;;;;;;:16;:39::i;:::-;32071:185;;;:::o;43041:88::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43118:3:::1;43108:7;:13;;;;;;;;;;;;:::i;:::-;;43041:88:::0;:::o;29045:239::-;29117:7;29137:13;29153:7;:16;29161:7;29153:16;;;;;;;;;;;;;;;;;;;;;29137:32;;29205:1;29188:19;;:5;:19;;;;29180:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29271:5;29264:12;;;29045:239;;;:::o;41798:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28775:208::-;28847:7;28892:1;28875:19;;:5;:19;;;;28867:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28959:9;:16;28969:5;28959:16;;;;;;;;;;;;;;;;28952:23;;28775:208;;;:::o;8989:103::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9054:30:::1;9081:1;9054:18;:30::i;:::-;8989:103::o:0;42546:75::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42609:4:::1;42596:10;;:17;;;;;;;;;;;;;;;;;;42546:75::o:0;8338:87::-;8384:7;8411:6;;;;;;;;;;;8404:13;;8338:87;:::o;29520:104::-;29576:13;29609:7;29602:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29520:104;:::o;31204:155::-;31299:52;31318:12;:10;:12::i;:::-;31332:8;31342;31299:18;:52::i;:::-;31204:155;;:::o;41765:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32327:328::-;32502:41;32521:12;:10;:12::i;:::-;32535:7;32502:18;:41::i;:::-;32494:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32608:39;32622:4;32628:2;32632:7;32641:5;32608:13;:39::i;:::-;32327:328;;;;:::o;42629:98::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42716:3:::1;42701:12;:18;;;;;;;;;;;;:::i;:::-;;42629:98:::0;:::o;42735:298::-;42801:13;42850:5;42836:19;;:10;;;;;;;;;;;:19;;;42832:118;;;42903:12;42917:19;:8;:17;:19::i;:::-;42886:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42872:66;;;;42832:118;42993:7;43002:19;:8;:17;:19::i;:::-;42976:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42962:61;;42735:298;;;;:::o;31430:164::-;31527:4;31551:18;:25;31570:5;31551:25;;;;;;;;;;;;;;;:35;31577:8;31551:35;;;;;;;;;;;;;;;;;;;;;;;;;31544:42;;31430:164;;;;:::o;9247:201::-;8569:12;:10;:12::i;:::-;8558:23;;:7;:5;:7::i;:::-;:23;;;8550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9356:1:::1;9336:22;;:8;:22;;;;9328:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9412:28;9431:8;9412:18;:28::i;:::-;9247:201:::0;:::o;7062:98::-;7115:7;7142:10;7135:17;;7062:98;:::o;21145:157::-;21230:4;21269:25;21254:40;;;:11;:40;;;;21247:47;;21145:157;;;:::o;34165:127::-;34230:4;34282:1;34254:30;;:7;:16;34262:7;34254:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34247:37;;34165:127;;;:::o;38311:174::-;38413:2;38386:15;:24;38402:7;38386:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38469:7;38465:2;38431:46;;38440:23;38455:7;38440:14;:23::i;:::-;38431:46;;;;;;;;;;;;38311:174;;:::o;3666:114::-;3731:7;3758;:14;;;3751:21;;3666:114;;;:::o;34459:348::-;34552:4;34577:16;34585:7;34577;:16::i;:::-;34569:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34653:13;34669:23;34684:7;34669:14;:23::i;:::-;34653:39;;34722:5;34711:16;;:7;:16;;;:52;;;;34731:32;34748:5;34755:7;34731:16;:32::i;:::-;34711:52;:87;;;;34791:7;34767:31;;:20;34779:7;34767:11;:20::i;:::-;:31;;;34711:87;34703:96;;;34459:348;;;;:::o;37568:625::-;37727:4;37700:31;;:23;37715:7;37700:14;:23::i;:::-;:31;;;37692:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37806:1;37792:16;;:2;:16;;;;37784:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37862:39;37883:4;37889:2;37893:7;37862:20;:39::i;:::-;37966:29;37983:1;37987:7;37966:8;:29::i;:::-;38027:1;38008:9;:15;38018:4;38008:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38056:1;38039:9;:13;38049:2;38039:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38087:2;38068:7;:16;38076:7;38068:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38126:7;38122:2;38107:27;;38116:4;38107:27;;;;;;;;;;;;38147:38;38167:4;38173:2;38177:7;38147:19;:38::i;:::-;37568:625;;;:::o;3788:127::-;3895:1;3877:7;:14;;;:19;;;;;;;;;;;3788:127;:::o;35149:110::-;35225:26;35235:2;35239:7;35225:26;;;;;;;;;;;;:9;:26::i;:::-;35149:110;;:::o;9608:191::-;9682:16;9701:6;;;;;;;;;;;9682:25;;9727:8;9718:6;;:17;;;;;;;;;;;;;;;;;;9782:8;9751:40;;9772:8;9751:40;;;;;;;;;;;;9671:128;9608:191;:::o;38627:315::-;38782:8;38773:17;;:5;:17;;;;38765:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38869:8;38831:18;:25;38850:5;38831:25;;;;;;;;;;;;;;;:35;38857:8;38831:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38915:8;38893:41;;38908:5;38893:41;;;38925:8;38893:41;;;;;;:::i;:::-;;;;;;;;38627:315;;;:::o;33537:::-;33694:28;33704:4;33710:2;33714:7;33694:9;:28::i;:::-;33741:48;33764:4;33770:2;33774:7;33783:5;33741:22;:48::i;:::-;33733:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33537:315;;;;:::o;4624:723::-;4680:13;4910:1;4901:5;:10;4897:53;;;4928:10;;;;;;;;;;;;;;;;;;;;;4897:53;4960:12;4975:5;4960:20;;4991:14;5016:78;5031:1;5023:4;:9;5016:78;;5049:8;;;;;:::i;:::-;;;;5080:2;5072:10;;;;;:::i;:::-;;;5016:78;;;5104:19;5136:6;5126:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5104:39;;5154:154;5170:1;5161:5;:10;5154:154;;5198:1;5188:11;;;;;:::i;:::-;;;5265:2;5257:5;:10;;;;:::i;:::-;5244:2;:24;;;;:::i;:::-;5231:39;;5214:6;5221;5214:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5294:2;5285:11;;;;;:::i;:::-;;;5154:154;;;5332:6;5318:21;;;;;4624:723;;;;:::o;40878:126::-;;;;:::o;41389:125::-;;;;:::o;35486:321::-;35616:18;35622:2;35626:7;35616:5;:18::i;:::-;35667:54;35698:1;35702:2;35706:7;35715:5;35667:22;:54::i;:::-;35645:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35486:321;;;:::o;39507:799::-;39662:4;39683:15;:2;:13;;;:15::i;:::-;39679:620;;;39735:2;39719:36;;;39756:12;:10;:12::i;:::-;39770:4;39776:7;39785:5;39719:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39715:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39978:1;39961:6;:13;:18;39957:272;;;40004:60;;;;;;;;;;:::i;:::-;;;;;;;;39957:272;40179:6;40173:13;40164:6;40160:2;40156:15;40149:38;39715:529;39852:41;;;39842:51;;;:6;:51;;;;39835:58;;;;;39679:620;40283:4;40276:11;;39507:799;;;;;;;:::o;36143:439::-;36237:1;36223:16;;:2;:16;;;;36215:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36296:16;36304:7;36296;:16::i;:::-;36295:17;36287:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36358:45;36387:1;36391:2;36395:7;36358:20;:45::i;:::-;36433:1;36416:9;:13;36426:2;36416:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36464:2;36445:7;:16;36453:7;36445:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36509:7;36505:2;36484:33;;36501:1;36484:33;;;;;;;;;;;;36530:44;36558:1;36562:2;36566:7;36530:19;:44::i;:::-;36143:439;;:::o;11039:326::-;11099:4;11356:1;11334:7;:19;;;:23;11327:30;;11039:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:118::-;8401:24;8419:5;8401:24;:::i;:::-;8396:3;8389:37;8314:118;;:::o;8438:109::-;8519:21;8534:5;8519:21;:::i;:::-;8514:3;8507:34;8438:109;;:::o;8553:360::-;8639:3;8667:38;8699:5;8667:38;:::i;:::-;8721:70;8784:6;8779:3;8721:70;:::i;:::-;8714:77;;8800:52;8845:6;8840:3;8833:4;8826:5;8822:16;8800:52;:::i;:::-;8877:29;8899:6;8877:29;:::i;:::-;8872:3;8868:39;8861:46;;8643:270;8553:360;;;;:::o;8919:364::-;9007:3;9035:39;9068:5;9035:39;:::i;:::-;9090:71;9154:6;9149:3;9090:71;:::i;:::-;9083:78;;9170:52;9215:6;9210:3;9203:4;9196:5;9192:16;9170:52;:::i;:::-;9247:29;9269:6;9247:29;:::i;:::-;9242:3;9238:39;9231:46;;9011:272;8919:364;;;;:::o;9289:377::-;9395:3;9423:39;9456:5;9423:39;:::i;:::-;9478:89;9560:6;9555:3;9478:89;:::i;:::-;9471:96;;9576:52;9621:6;9616:3;9609:4;9602:5;9598:16;9576:52;:::i;:::-;9653:6;9648:3;9644:16;9637:23;;9399:267;9289:377;;;;:::o;9696:845::-;9799:3;9836:5;9830:12;9865:36;9891:9;9865:36;:::i;:::-;9917:89;9999:6;9994:3;9917:89;:::i;:::-;9910:96;;10037:1;10026:9;10022:17;10053:1;10048:137;;;;10199:1;10194:341;;;;10015:520;;10048:137;10132:4;10128:9;10117;10113:25;10108:3;10101:38;10168:6;10163:3;10159:16;10152:23;;10048:137;;10194:341;10261:38;10293:5;10261:38;:::i;:::-;10321:1;10335:154;10349:6;10346:1;10343:13;10335:154;;;10423:7;10417:14;10413:1;10408:3;10404:11;10397:35;10473:1;10464:7;10460:15;10449:26;;10371:4;10368:1;10364:12;10359:17;;10335:154;;;10518:6;10513:3;10509:16;10502:23;;10201:334;;10015:520;;9803:738;;9696:845;;;;:::o;10547:366::-;10689:3;10710:67;10774:2;10769:3;10710:67;:::i;:::-;10703:74;;10786:93;10875:3;10786:93;:::i;:::-;10904:2;10899:3;10895:12;10888:19;;10547:366;;;:::o;10919:::-;11061:3;11082:67;11146:2;11141:3;11082:67;:::i;:::-;11075:74;;11158:93;11247:3;11158:93;:::i;:::-;11276:2;11271:3;11267:12;11260:19;;10919:366;;;:::o;11291:::-;11433:3;11454:67;11518:2;11513:3;11454:67;:::i;:::-;11447:74;;11530:93;11619:3;11530:93;:::i;:::-;11648:2;11643:3;11639:12;11632:19;;11291:366;;;:::o;11663:::-;11805:3;11826:67;11890:2;11885:3;11826:67;:::i;:::-;11819:74;;11902:93;11991:3;11902:93;:::i;:::-;12020:2;12015:3;12011:12;12004:19;;11663:366;;;:::o;12035:::-;12177:3;12198:67;12262:2;12257:3;12198:67;:::i;:::-;12191:74;;12274:93;12363:3;12274:93;:::i;:::-;12392:2;12387:3;12383:12;12376:19;;12035:366;;;:::o;12407:::-;12549:3;12570:67;12634:2;12629:3;12570:67;:::i;:::-;12563:74;;12646:93;12735:3;12646:93;:::i;:::-;12764:2;12759:3;12755:12;12748:19;;12407:366;;;:::o;12779:::-;12921:3;12942:67;13006:2;13001:3;12942:67;:::i;:::-;12935:74;;13018:93;13107:3;13018:93;:::i;:::-;13136:2;13131:3;13127:12;13120:19;;12779:366;;;:::o;13151:::-;13293:3;13314:67;13378:2;13373:3;13314:67;:::i;:::-;13307:74;;13390:93;13479:3;13390:93;:::i;:::-;13508:2;13503:3;13499:12;13492:19;;13151:366;;;:::o;13523:::-;13665:3;13686:67;13750:2;13745:3;13686:67;:::i;:::-;13679:74;;13762:93;13851:3;13762:93;:::i;:::-;13880:2;13875:3;13871:12;13864:19;;13523:366;;;:::o;13895:::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:::-;14409:3;14430:67;14494:2;14489:3;14430:67;:::i;:::-;14423:74;;14506:93;14595:3;14506:93;:::i;:::-;14624:2;14619:3;14615:12;14608:19;;14267:366;;;:::o;14639:::-;14781:3;14802:67;14866:2;14861:3;14802:67;:::i;:::-;14795:74;;14878:93;14967:3;14878:93;:::i;:::-;14996:2;14991:3;14987:12;14980:19;;14639:366;;;:::o;15011:::-;15153:3;15174:67;15238:2;15233:3;15174:67;:::i;:::-;15167:74;;15250:93;15339:3;15250:93;:::i;:::-;15368:2;15363:3;15359:12;15352:19;;15011:366;;;:::o;15383:::-;15525:3;15546:67;15610:2;15605:3;15546:67;:::i;:::-;15539:74;;15622:93;15711:3;15622:93;:::i;:::-;15740:2;15735:3;15731:12;15724:19;;15383:366;;;:::o;15755:::-;15897:3;15918:67;15982:2;15977:3;15918:67;:::i;:::-;15911:74;;15994:93;16083:3;15994:93;:::i;:::-;16112:2;16107:3;16103:12;16096:19;;15755:366;;;:::o;16127:118::-;16214:24;16232:5;16214:24;:::i;:::-;16209:3;16202:37;16127:118;;:::o;16251:429::-;16428:3;16450:92;16538:3;16529:6;16450:92;:::i;:::-;16443:99;;16559:95;16650:3;16641:6;16559:95;:::i;:::-;16552:102;;16671:3;16664:10;;16251:429;;;;;:::o;16686:222::-;16779:4;16817:2;16806:9;16802:18;16794:26;;16830:71;16898:1;16887:9;16883:17;16874:6;16830:71;:::i;:::-;16686:222;;;;:::o;16914:640::-;17109:4;17147:3;17136:9;17132:19;17124:27;;17161:71;17229:1;17218:9;17214:17;17205:6;17161:71;:::i;:::-;17242:72;17310:2;17299:9;17295:18;17286:6;17242:72;:::i;:::-;17324;17392:2;17381:9;17377:18;17368:6;17324:72;:::i;:::-;17443:9;17437:4;17433:20;17428:2;17417:9;17413:18;17406:48;17471:76;17542:4;17533:6;17471:76;:::i;:::-;17463:84;;16914:640;;;;;;;:::o;17560:210::-;17647:4;17685:2;17674:9;17670:18;17662:26;;17698:65;17760:1;17749:9;17745:17;17736:6;17698:65;:::i;:::-;17560:210;;;;:::o;17776:313::-;17889:4;17927:2;17916:9;17912:18;17904:26;;17976:9;17970:4;17966:20;17962:1;17951:9;17947:17;17940:47;18004:78;18077:4;18068:6;18004:78;:::i;:::-;17996:86;;17776:313;;;;:::o;18095:419::-;18261:4;18299:2;18288:9;18284:18;18276:26;;18348:9;18342:4;18338:20;18334:1;18323:9;18319:17;18312:47;18376:131;18502:4;18376:131;:::i;:::-;18368:139;;18095:419;;;:::o;18520:::-;18686:4;18724:2;18713:9;18709:18;18701:26;;18773:9;18767:4;18763:20;18759:1;18748:9;18744:17;18737:47;18801:131;18927:4;18801:131;:::i;:::-;18793:139;;18520:419;;;:::o;18945:::-;19111:4;19149:2;19138:9;19134:18;19126:26;;19198:9;19192:4;19188:20;19184:1;19173:9;19169:17;19162:47;19226:131;19352:4;19226:131;:::i;:::-;19218:139;;18945:419;;;:::o;19370:::-;19536:4;19574:2;19563:9;19559:18;19551:26;;19623:9;19617:4;19613:20;19609:1;19598:9;19594:17;19587:47;19651:131;19777:4;19651:131;:::i;:::-;19643:139;;19370:419;;;:::o;19795:::-;19961:4;19999:2;19988:9;19984:18;19976:26;;20048:9;20042:4;20038:20;20034:1;20023:9;20019:17;20012:47;20076:131;20202:4;20076:131;:::i;:::-;20068:139;;19795:419;;;:::o;20220:::-;20386:4;20424:2;20413:9;20409:18;20401:26;;20473:9;20467:4;20463:20;20459:1;20448:9;20444:17;20437:47;20501:131;20627:4;20501:131;:::i;:::-;20493:139;;20220:419;;;:::o;20645:::-;20811:4;20849:2;20838:9;20834:18;20826:26;;20898:9;20892:4;20888:20;20884:1;20873:9;20869:17;20862:47;20926:131;21052:4;20926:131;:::i;:::-;20918:139;;20645:419;;;:::o;21070:::-;21236:4;21274:2;21263:9;21259:18;21251:26;;21323:9;21317:4;21313:20;21309:1;21298:9;21294:17;21287:47;21351:131;21477:4;21351:131;:::i;:::-;21343:139;;21070:419;;;:::o;21495:::-;21661:4;21699:2;21688:9;21684:18;21676:26;;21748:9;21742:4;21738:20;21734:1;21723:9;21719:17;21712:47;21776:131;21902:4;21776:131;:::i;:::-;21768:139;;21495:419;;;:::o;21920:::-;22086:4;22124:2;22113:9;22109:18;22101:26;;22173:9;22167:4;22163:20;22159:1;22148:9;22144:17;22137:47;22201:131;22327:4;22201:131;:::i;:::-;22193:139;;21920:419;;;:::o;22345:::-;22511:4;22549:2;22538:9;22534:18;22526:26;;22598:9;22592:4;22588:20;22584:1;22573:9;22569:17;22562:47;22626:131;22752:4;22626:131;:::i;:::-;22618:139;;22345:419;;;:::o;22770:::-;22936:4;22974:2;22963:9;22959:18;22951:26;;23023:9;23017:4;23013:20;23009:1;22998:9;22994:17;22987:47;23051:131;23177:4;23051:131;:::i;:::-;23043:139;;22770:419;;;:::o;23195:::-;23361:4;23399:2;23388:9;23384:18;23376:26;;23448:9;23442:4;23438:20;23434:1;23423:9;23419:17;23412:47;23476:131;23602:4;23476:131;:::i;:::-;23468:139;;23195:419;;;:::o;23620:::-;23786:4;23824:2;23813:9;23809:18;23801:26;;23873:9;23867:4;23863:20;23859:1;23848:9;23844:17;23837:47;23901:131;24027:4;23901:131;:::i;:::-;23893:139;;23620:419;;;:::o;24045:::-;24211:4;24249:2;24238:9;24234:18;24226:26;;24298:9;24292:4;24288:20;24284:1;24273:9;24269:17;24262:47;24326:131;24452:4;24326:131;:::i;:::-;24318:139;;24045:419;;;:::o;24470:222::-;24563:4;24601:2;24590:9;24586:18;24578:26;;24614:71;24682:1;24671:9;24667:17;24658:6;24614:71;:::i;:::-;24470:222;;;;:::o;24698:129::-;24732:6;24759:20;;:::i;:::-;24749:30;;24788:33;24816:4;24808:6;24788:33;:::i;:::-;24698:129;;;:::o;24833:75::-;24866:6;24899:2;24893:9;24883:19;;24833:75;:::o;24914:307::-;24975:4;25065:18;25057:6;25054:30;25051:56;;;25087:18;;:::i;:::-;25051:56;25125:29;25147:6;25125:29;:::i;:::-;25117:37;;25209:4;25203;25199:15;25191:23;;24914:307;;;:::o;25227:308::-;25289:4;25379:18;25371:6;25368:30;25365:56;;;25401:18;;:::i;:::-;25365:56;25439:29;25461:6;25439:29;:::i;:::-;25431:37;;25523:4;25517;25513:15;25505:23;;25227:308;;;:::o;25541:141::-;25590:4;25613:3;25605:11;;25636:3;25633:1;25626:14;25670:4;25667:1;25657:18;25649:26;;25541:141;;;:::o;25688:98::-;25739:6;25773:5;25767:12;25757:22;;25688:98;;;:::o;25792:99::-;25844:6;25878:5;25872:12;25862:22;;25792:99;;;:::o;25897:168::-;25980:11;26014:6;26009:3;26002:19;26054:4;26049:3;26045:14;26030:29;;25897:168;;;;:::o;26071:169::-;26155:11;26189:6;26184:3;26177:19;26229:4;26224:3;26220:14;26205:29;;26071:169;;;;:::o;26246:148::-;26348:11;26385:3;26370:18;;26246:148;;;;:::o;26400:305::-;26440:3;26459:20;26477:1;26459:20;:::i;:::-;26454:25;;26493:20;26511:1;26493:20;:::i;:::-;26488:25;;26647:1;26579:66;26575:74;26572:1;26569:81;26566:107;;;26653:18;;:::i;:::-;26566:107;26697:1;26694;26690:9;26683:16;;26400:305;;;;:::o;26711:185::-;26751:1;26768:20;26786:1;26768:20;:::i;:::-;26763:25;;26802:20;26820:1;26802:20;:::i;:::-;26797:25;;26841:1;26831:35;;26846:18;;:::i;:::-;26831:35;26888:1;26885;26881:9;26876:14;;26711:185;;;;:::o;26902:191::-;26942:4;26962:20;26980:1;26962:20;:::i;:::-;26957:25;;26996:20;27014:1;26996:20;:::i;:::-;26991:25;;27035:1;27032;27029:8;27026:34;;;27040:18;;:::i;:::-;27026:34;27085:1;27082;27078:9;27070:17;;26902:191;;;;:::o;27099:96::-;27136:7;27165:24;27183:5;27165:24;:::i;:::-;27154:35;;27099:96;;;:::o;27201:90::-;27235:7;27278:5;27271:13;27264:21;27253:32;;27201:90;;;:::o;27297:149::-;27333:7;27373:66;27366:5;27362:78;27351:89;;27297:149;;;:::o;27452:126::-;27489:7;27529:42;27522:5;27518:54;27507:65;;27452:126;;;:::o;27584:77::-;27621:7;27650:5;27639:16;;27584:77;;;:::o;27667:154::-;27751:6;27746:3;27741;27728:30;27813:1;27804:6;27799:3;27795:16;27788:27;27667:154;;;:::o;27827:307::-;27895:1;27905:113;27919:6;27916:1;27913:13;27905:113;;;28004:1;27999:3;27995:11;27989:18;27985:1;27980:3;27976:11;27969:39;27941:2;27938:1;27934:10;27929:15;;27905:113;;;28036:6;28033:1;28030:13;28027:101;;;28116:1;28107:6;28102:3;28098:16;28091:27;28027:101;27876:258;27827:307;;;:::o;28140:320::-;28184:6;28221:1;28215:4;28211:12;28201:22;;28268:1;28262:4;28258:12;28289:18;28279:81;;28345:4;28337:6;28333:17;28323:27;;28279:81;28407:2;28399:6;28396:14;28376:18;28373:38;28370:84;;;28426:18;;:::i;:::-;28370:84;28191:269;28140:320;;;:::o;28466:281::-;28549:27;28571:4;28549:27;:::i;:::-;28541:6;28537:40;28679:6;28667:10;28664:22;28643:18;28631:10;28628:34;28625:62;28622:88;;;28690:18;;:::i;:::-;28622:88;28730:10;28726:2;28719:22;28509:238;28466:281;;:::o;28753:233::-;28792:3;28815:24;28833:5;28815:24;:::i;:::-;28806:33;;28861:66;28854:5;28851:77;28848:103;;;28931:18;;:::i;:::-;28848:103;28978:1;28971:5;28967:13;28960:20;;28753:233;;;:::o;28992:176::-;29024:1;29041:20;29059:1;29041:20;:::i;:::-;29036:25;;29075:20;29093:1;29075:20;:::i;:::-;29070:25;;29114:1;29104:35;;29119:18;;:::i;:::-;29104:35;29160:1;29157;29153:9;29148:14;;28992:176;;;;:::o;29174:180::-;29222:77;29219:1;29212:88;29319:4;29316:1;29309:15;29343:4;29340:1;29333:15;29360:180;29408:77;29405:1;29398:88;29505:4;29502:1;29495:15;29529:4;29526:1;29519:15;29546:180;29594:77;29591:1;29584:88;29691:4;29688:1;29681:15;29715:4;29712:1;29705:15;29732:180;29780:77;29777:1;29770:88;29877:4;29874:1;29867:15;29901:4;29898:1;29891:15;29918:180;29966:77;29963:1;29956:88;30063:4;30060:1;30053:15;30087:4;30084:1;30077:15;30104:117;30213:1;30210;30203:12;30227:117;30336:1;30333;30326:12;30350:117;30459:1;30456;30449:12;30473:117;30582:1;30579;30572:12;30596:117;30705:1;30702;30695:12;30719:117;30828:1;30825;30818:12;30842:102;30883:6;30934:2;30930:7;30925:2;30918:5;30914:14;30910:28;30900:38;;30842:102;;;:::o;30950:237::-;31090:34;31086:1;31078:6;31074:14;31067:58;31159:20;31154:2;31146:6;31142:15;31135:45;30950:237;:::o;31193:225::-;31333:34;31329:1;31321:6;31317:14;31310:58;31402:8;31397:2;31389:6;31385:15;31378:33;31193:225;:::o;31424:224::-;31564:34;31560:1;31552:6;31548:14;31541:58;31633:7;31628:2;31620:6;31616:15;31609:32;31424:224;:::o;31654:178::-;31794:30;31790:1;31782:6;31778:14;31771:54;31654:178;:::o;31838:223::-;31978:34;31974:1;31966:6;31962:14;31955:58;32047:6;32042:2;32034:6;32030:15;32023:31;31838:223;:::o;32067:175::-;32207:27;32203:1;32195:6;32191:14;32184:51;32067:175;:::o;32248:231::-;32388:34;32384:1;32376:6;32372:14;32365:58;32457:14;32452:2;32444:6;32440:15;32433:39;32248:231;:::o;32485:243::-;32625:34;32621:1;32613:6;32609:14;32602:58;32694:26;32689:2;32681:6;32677:15;32670:51;32485:243;:::o;32734:229::-;32874:34;32870:1;32862:6;32858:14;32851:58;32943:12;32938:2;32930:6;32926:15;32919:37;32734:229;:::o;32969:228::-;33109:34;33105:1;33097:6;33093:14;33086:58;33178:11;33173:2;33165:6;33161:15;33154:36;32969:228;:::o;33203:182::-;33343:34;33339:1;33331:6;33327:14;33320:58;33203:182;:::o;33391:231::-;33531:34;33527:1;33519:6;33515:14;33508:58;33600:14;33595:2;33587:6;33583:15;33576:39;33391:231;:::o;33628:182::-;33768:34;33764:1;33756:6;33752:14;33745:58;33628:182;:::o;33816:220::-;33956:34;33952:1;33944:6;33940:14;33933:58;34025:3;34020:2;34012:6;34008:15;34001:28;33816:220;:::o;34042:236::-;34182:34;34178:1;34170:6;34166:14;34159:58;34251:19;34246:2;34238:6;34234:15;34227:44;34042:236;:::o;34284:122::-;34357:24;34375:5;34357:24;:::i;:::-;34350:5;34347:35;34337:63;;34396:1;34393;34386:12;34337:63;34284:122;:::o;34412:116::-;34482:21;34497:5;34482:21;:::i;:::-;34475:5;34472:32;34462:60;;34518:1;34515;34508:12;34462:60;34412:116;:::o;34534:120::-;34606:23;34623:5;34606:23;:::i;:::-;34599:5;34596:34;34586:62;;34644:1;34641;34634:12;34586:62;34534:120;:::o;34660:122::-;34733:24;34751:5;34733:24;:::i;:::-;34726:5;34723:35;34713:63;;34772:1;34769;34762:12;34713:63;34660:122;:::o

Swarm Source

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