ETH Price: $2,310.82 (-6.08%)

Token

Dreamium (DR)
 

Overview

Max Total Supply

13 DR

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
dreamescrow.eth
Balance
13 DR
0x388ccf8784b24f16a632c896c5837fdecb363f0a
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:
Dreamium

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-23
*/

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/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/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/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/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

/*
  ____                           _                 
 |  _ \ _ __ ___  __ _ _ __ ___ (_)_   _ _ __ ___  
 | | | | '__/ _ \/ _` | '_ ` _ \| | | | | '_ ` _ \ 
 | |_| | | |  __/ (_| | | | | | | | |_| | | | | | |
 |____/|_|  \___|\__,_|_| |_| |_|_|\__,_|_| |_| |_|
                                                   
                By Devko.dev#7286
*/

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

contract Dreamium is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string private _contractURI= "https://gateway.pinata.cloud/ipfs/QmV8RgDdSYTPwnGXP8yA9Ryx39ZPze1uJETeJe5qfRpihq";
    string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmcymEvMZe5Tz6Ab9V8aDR538TU8wxpbbYkHsuHq1n5Jhk/";
    
    constructor() ERC721("Dreamium", "DR") { 
        for (uint256 i = 0; i < 13; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function withdraw() external onlyOwner{
        payable(msg.sender).transfer(address(this).balance);
    }

    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner  {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060508152602001620046fd60509139600b90805190602001906200003592919062000cbe565b506040518060800160405280605181526020016200474d60519139600c90805190602001906200006792919062000cbe565b503480156200007557600080fd5b506040518060400160405280600881526020017f447265616d69756d0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44520000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fa92919062000cbe565b5080600190805190602001906200011392919062000cbe565b505050620001366200012a6200018f60201b60201c565b6200019760201b60201c565b60005b600d8110156200018857620001723360016200015a6200025d60201b60201c565b62000166919062000fb9565b6200026a60201b60201c565b80806200017f9062001127565b91505062000139565b50620012ee565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600880549050905090565b6200028c8282604051806020016040528060008152506200029060201b60201c565b5050565b620002a28383620002fe60201b60201c565b620002b76000848484620004e460201b60201c565b620002f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f09062000f04565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003689062000f6a565b60405180910390fd5b62000382816200069e60201b60201c565b15620003c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bc9062000f26565b60405180910390fd5b620003d9600083836200070a60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200042b919062000fb9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005128473ffffffffffffffffffffffffffffffffffffffff166200085160201b620011e21760201c565b1562000691578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005446200018f60201b60201c565b8786866040518563ffffffff1660e01b815260040162000568949392919062000eb0565b602060405180830381600087803b1580156200058357600080fd5b505af1925050508015620005b757506040513d601f19601f82011682018060405250810190620005b4919062000d85565b60015b62000640573d8060008114620005ea576040519150601f19603f3d011682016040523d82523d6000602084013e620005ef565b606091505b5060008151141562000638576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062f9062000f04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000696565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007228383836200086460201b620011f51760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200076f5762000769816200086960201b60201c565b620007b7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620007b657620007b58382620008b260201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200080457620007fe8162000a2f60201b60201c565b6200084c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200084b576200084a828262000b7760201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008cc8462000c0360201b62000ad71760201c565b620008d8919062001016565b9050600060076000848152602001908152602001600020549050818114620009be576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000a45919062001016565b905060006009600084815260200190815260200160002054905060006008838154811062000a9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000ae5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000b5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000b8f8362000c0360201b62000ad71760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c6e9062000f48565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ccc90620010f1565b90600052602060002090601f01602090048101928262000cf0576000855562000d3c565b82601f1062000d0b57805160ff191683800117855562000d3c565b8280016001018555821562000d3c579182015b8281111562000d3b57825182559160200191906001019062000d1e565b5b50905062000d4b919062000d4f565b5090565b5b8082111562000d6a57600081600090555060010162000d50565b5090565b60008151905062000d7f81620012d4565b92915050565b60006020828403121562000d9857600080fd5b600062000da88482850162000d6e565b91505092915050565b62000dbc8162001051565b82525050565b600062000dcf8262000f8c565b62000ddb818562000f97565b935062000ded818560208601620010bb565b62000df881620011d3565b840191505092915050565b600062000e1260328362000fa8565b915062000e1f82620011e4565b604082019050919050565b600062000e39601c8362000fa8565b915062000e468262001233565b602082019050919050565b600062000e60602a8362000fa8565b915062000e6d826200125c565b604082019050919050565b600062000e8760208362000fa8565b915062000e9482620012ab565b602082019050919050565b62000eaa81620010b1565b82525050565b600060808201905062000ec7600083018762000db1565b62000ed6602083018662000db1565b62000ee5604083018562000e9f565b818103606083015262000ef9818462000dc2565b905095945050505050565b6000602082019050818103600083015262000f1f8162000e03565b9050919050565b6000602082019050818103600083015262000f418162000e2a565b9050919050565b6000602082019050818103600083015262000f638162000e51565b9050919050565b6000602082019050818103600083015262000f858162000e78565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000fc682620010b1565b915062000fd383620010b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200100b576200100a62001175565b5b828201905092915050565b60006200102382620010b1565b91506200103083620010b1565b92508282101562001046576200104562001175565b5b828203905092915050565b60006200105e8262001091565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010db578082015181840152602081019050620010be565b83811115620010eb576000848401525b50505050565b600060028204905060018216806200110a57607f821691505b60208210811415620011215762001120620011a4565b5b50919050565b60006200113482620010b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200116a576200116962001175565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b620012df8162001065565b8114620012eb57600080fd5b50565b6133ff80620012fe6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb4651461038a578063b88d4fde146103a6578063c87b56dd146103c2578063e8a3d485146103f2578063e985e9c514610410578063f2fde38b146104405761014d565b80636352211e146102c857806370a08231146102f8578063715018a6146103285780638da5cb5b14610332578063938e3d7b1461035057806395d89b411461036c5761014d565b806323b872dd1161011557806323b872dd1461020a5780632f745c59146102265780633ccfd60b1461025657806342842e0e146102605780634f6ccce71461027c57806355f804b3146102ac5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612404565b61045c565b60405161017991906128ce565b60405180910390f35b61018a6104d6565b60405161019791906128e9565b60405180910390f35b6101ba60048036038101906101b5919061249b565b610568565b6040516101c79190612867565b60405180910390f35b6101ea60048036038101906101e591906123c8565b6105ed565b005b6101f4610705565b6040516102019190612b0b565b60405180910390f35b610224600480360381019061021f91906122c2565b610712565b005b610240600480360381019061023b91906123c8565b610772565b60405161024d9190612b0b565b60405180910390f35b61025e610817565b005b61027a600480360381019061027591906122c2565b6108dc565b005b6102966004803603810190610291919061249b565b6108fc565b6040516102a39190612b0b565b60405180910390f35b6102c660048036038101906102c19190612456565b610993565b005b6102e260048036038101906102dd919061249b565b610a25565b6040516102ef9190612867565b60405180910390f35b610312600480360381019061030d919061225d565b610ad7565b60405161031f9190612b0b565b60405180910390f35b610330610b8f565b005b61033a610c17565b6040516103479190612867565b60405180910390f35b61036a60048036038101906103659190612456565b610c41565b005b610374610cd3565b60405161038191906128e9565b60405180910390f35b6103a4600480360381019061039f919061238c565b610d65565b005b6103c060048036038101906103bb9190612311565b610ee6565b005b6103dc60048036038101906103d7919061249b565b610f48565b6040516103e991906128e9565b60405180910390f35b6103fa610fc4565b60405161040791906128e9565b60405180910390f35b61042a60048036038101906104259190612286565b611056565b60405161043791906128ce565b60405180910390f35b61045a6004803603810190610455919061225d565b6110ea565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104cf57506104ce826111fa565b5b9050919050565b6060600080546104e590612d45565b80601f016020809104026020016040519081016040528092919081815260200182805461051190612d45565b801561055e5780601f106105335761010080835404028352916020019161055e565b820191906000526020600020905b81548152906001019060200180831161054157829003601f168201915b5050505050905090565b6000610573826112dc565b6105b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a990612a2b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f882610a25565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066090612aab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610688611348565b73ffffffffffffffffffffffffffffffffffffffff1614806106b757506106b6816106b1611348565b611056565b5b6106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906129cb565b60405180910390fd5b6107008383611350565b505050565b6000600880549050905090565b61072361071d611348565b82611409565b610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990612acb565b60405180910390fd5b61076d8383836114e7565b505050565b600061077d83610ad7565b82106107be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b59061290b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61081f611348565b73ffffffffffffffffffffffffffffffffffffffff1661083d610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612a4b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108d9573d6000803e3d6000fd5b50565b6108f783838360405180602001604052806000815250610ee6565b505050565b6000610906610705565b8210610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612aeb565b60405180910390fd5b60088281548110610981577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61099b611348565b73ffffffffffffffffffffffffffffffffffffffff166109b9610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690612a4b565b60405180910390fd5b8181600c9190610a2092919061209f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590612a0b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f906129eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b97611348565b73ffffffffffffffffffffffffffffffffffffffff16610bb5610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290612a4b565b60405180910390fd5b610c156000611743565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c49611348565b73ffffffffffffffffffffffffffffffffffffffff16610c67610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490612a4b565b60405180910390fd5b8181600b9190610cce92919061209f565b505050565b606060018054610ce290612d45565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0e90612d45565b8015610d5b5780601f10610d3057610100808354040283529160200191610d5b565b820191906000526020600020905b815481529060010190602001808311610d3e57829003601f168201915b5050505050905090565b610d6d611348565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd29061298b565b60405180910390fd5b8060056000610de8611348565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e95611348565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eda91906128ce565b60405180910390a35050565b610ef7610ef1611348565b83611409565b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612acb565b60405180910390fd5b610f4284848484611809565b50505050565b6060610f53826112dc565b610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612a8b565b60405180910390fd5b600c610f9d83611865565b604051602001610fae929190612843565b6040516020818303038152906040529050919050565b6060600b8054610fd390612d45565b80601f0160208091040260200160405190810160405280929190818152602001828054610fff90612d45565b801561104c5780601f106110215761010080835404028352916020019161104c565b820191906000526020600020905b81548152906001019060200180831161102f57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110f2611348565b73ffffffffffffffffffffffffffffffffffffffff16611110610c17565b73ffffffffffffffffffffffffffffffffffffffff1614611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90612a4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd9061294b565b60405180910390fd5b6111df81611743565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112c557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112d557506112d482611a12565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c383610a25565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611414826112dc565b611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a906129ab565b60405180910390fd5b600061145e83610a25565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114cd57508373ffffffffffffffffffffffffffffffffffffffff166114b584610568565b73ffffffffffffffffffffffffffffffffffffffff16145b806114de57506114dd8185611056565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661150782610a25565b73ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490612a6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c49061296b565b60405180910390fd5b6115d8838383611a7c565b6115e3600082611350565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116339190612c5b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461168a9190612bd4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118148484846114e7565b61182084848484611b90565b61185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061292b565b60405180910390fd5b50505050565b606060008214156118ad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a0d565b600082905060005b600082146118df5780806118c890612da8565b915050600a826118d89190612c2a565b91506118b5565b60008167ffffffffffffffff811115611921577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119535781602001600182028036833780820191505090505b5090505b60008514611a065760018261196c9190612c5b565b9150600a8561197b9190612df1565b60306119879190612bd4565b60f81b8183815181106119c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119ff9190612c2a565b9450611957565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611a878383836111f5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aca57611ac581611d27565b611b09565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b0857611b078382611d70565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4c57611b4781611edd565b611b8b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611b8a57611b898282612020565b5b5b505050565b6000611bb18473ffffffffffffffffffffffffffffffffffffffff166111e2565b15611d1a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bda611348565b8786866040518563ffffffff1660e01b8152600401611bfc9493929190612882565b602060405180830381600087803b158015611c1657600080fd5b505af1925050508015611c4757506040513d601f19601f82011682018060405250810190611c44919061242d565b60015b611cca573d8060008114611c77576040519150601f19603f3d011682016040523d82523d6000602084013e611c7c565b606091505b50600081511415611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb99061292b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d1f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611d7d84610ad7565b611d879190612c5b565b9050600060076000848152602001908152602001600020549050818114611e6c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611ef19190612c5b565b9050600060096000848152602001908152602001600020549050600060088381548110611f47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110611f8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612004577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061202b83610ad7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546120ab90612d45565b90600052602060002090601f0160209004810192826120cd5760008555612114565b82601f106120e657803560ff1916838001178555612114565b82800160010185558215612114579182015b828111156121135782358255916020019190600101906120f8565b5b5090506121219190612125565b5090565b5b8082111561213e576000816000905550600101612126565b5090565b600061215561215084612b4b565b612b26565b90508281526020810184848401111561216d57600080fd5b612178848285612d03565b509392505050565b60008135905061218f8161336d565b92915050565b6000813590506121a481613384565b92915050565b6000813590506121b98161339b565b92915050565b6000815190506121ce8161339b565b92915050565b600082601f8301126121e557600080fd5b81356121f5848260208601612142565b91505092915050565b60008083601f84011261221057600080fd5b8235905067ffffffffffffffff81111561222957600080fd5b60208301915083600182028301111561224157600080fd5b9250929050565b600081359050612257816133b2565b92915050565b60006020828403121561226f57600080fd5b600061227d84828501612180565b91505092915050565b6000806040838503121561229957600080fd5b60006122a785828601612180565b92505060206122b885828601612180565b9150509250929050565b6000806000606084860312156122d757600080fd5b60006122e586828701612180565b93505060206122f686828701612180565b925050604061230786828701612248565b9150509250925092565b6000806000806080858703121561232757600080fd5b600061233587828801612180565b945050602061234687828801612180565b935050604061235787828801612248565b925050606085013567ffffffffffffffff81111561237457600080fd5b612380878288016121d4565b91505092959194509250565b6000806040838503121561239f57600080fd5b60006123ad85828601612180565b92505060206123be85828601612195565b9150509250929050565b600080604083850312156123db57600080fd5b60006123e985828601612180565b92505060206123fa85828601612248565b9150509250929050565b60006020828403121561241657600080fd5b6000612424848285016121aa565b91505092915050565b60006020828403121561243f57600080fd5b600061244d848285016121bf565b91505092915050565b6000806020838503121561246957600080fd5b600083013567ffffffffffffffff81111561248357600080fd5b61248f858286016121fe565b92509250509250929050565b6000602082840312156124ad57600080fd5b60006124bb84828501612248565b91505092915050565b6124cd81612c8f565b82525050565b6124dc81612ca1565b82525050565b60006124ed82612b91565b6124f78185612ba7565b9350612507818560208601612d12565b61251081612ede565b840191505092915050565b600061252682612b9c565b6125308185612bb8565b9350612540818560208601612d12565b61254981612ede565b840191505092915050565b600061255f82612b9c565b6125698185612bc9565b9350612579818560208601612d12565b80840191505092915050565b6000815461259281612d45565b61259c8186612bc9565b945060018216600081146125b757600181146125c8576125fb565b60ff198316865281860193506125fb565b6125d185612b7c565b60005b838110156125f3578154818901526001820191506020810190506125d4565b838801955050505b50505092915050565b6000612611602b83612bb8565b915061261c82612eef565b604082019050919050565b6000612634603283612bb8565b915061263f82612f3e565b604082019050919050565b6000612657602683612bb8565b915061266282612f8d565b604082019050919050565b600061267a602483612bb8565b915061268582612fdc565b604082019050919050565b600061269d601983612bb8565b91506126a88261302b565b602082019050919050565b60006126c0602c83612bb8565b91506126cb82613054565b604082019050919050565b60006126e3603883612bb8565b91506126ee826130a3565b604082019050919050565b6000612706602a83612bb8565b9150612711826130f2565b604082019050919050565b6000612729602983612bb8565b915061273482613141565b604082019050919050565b600061274c602c83612bb8565b915061275782613190565b604082019050919050565b600061276f602083612bb8565b915061277a826131df565b602082019050919050565b6000612792602983612bb8565b915061279d82613208565b604082019050919050565b60006127b5601f83612bb8565b91506127c082613257565b602082019050919050565b60006127d8602183612bb8565b91506127e382613280565b604082019050919050565b60006127fb603183612bb8565b9150612806826132cf565b604082019050919050565b600061281e602c83612bb8565b91506128298261331e565b604082019050919050565b61283d81612cf9565b82525050565b600061284f8285612585565b915061285b8284612554565b91508190509392505050565b600060208201905061287c60008301846124c4565b92915050565b600060808201905061289760008301876124c4565b6128a460208301866124c4565b6128b16040830185612834565b81810360608301526128c381846124e2565b905095945050505050565b60006020820190506128e360008301846124d3565b92915050565b60006020820190508181036000830152612903818461251b565b905092915050565b6000602082019050818103600083015261292481612604565b9050919050565b6000602082019050818103600083015261294481612627565b9050919050565b600060208201905081810360008301526129648161264a565b9050919050565b600060208201905081810360008301526129848161266d565b9050919050565b600060208201905081810360008301526129a481612690565b9050919050565b600060208201905081810360008301526129c4816126b3565b9050919050565b600060208201905081810360008301526129e4816126d6565b9050919050565b60006020820190508181036000830152612a04816126f9565b9050919050565b60006020820190508181036000830152612a248161271c565b9050919050565b60006020820190508181036000830152612a448161273f565b9050919050565b60006020820190508181036000830152612a6481612762565b9050919050565b60006020820190508181036000830152612a8481612785565b9050919050565b60006020820190508181036000830152612aa4816127a8565b9050919050565b60006020820190508181036000830152612ac4816127cb565b9050919050565b60006020820190508181036000830152612ae4816127ee565b9050919050565b60006020820190508181036000830152612b0481612811565b9050919050565b6000602082019050612b206000830184612834565b92915050565b6000612b30612b41565b9050612b3c8282612d77565b919050565b6000604051905090565b600067ffffffffffffffff821115612b6657612b65612eaf565b5b612b6f82612ede565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bdf82612cf9565b9150612bea83612cf9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1f57612c1e612e22565b5b828201905092915050565b6000612c3582612cf9565b9150612c4083612cf9565b925082612c5057612c4f612e51565b5b828204905092915050565b6000612c6682612cf9565b9150612c7183612cf9565b925082821015612c8457612c83612e22565b5b828203905092915050565b6000612c9a82612cd9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d30578082015181840152602081019050612d15565b83811115612d3f576000848401525b50505050565b60006002820490506001821680612d5d57607f821691505b60208210811415612d7157612d70612e80565b5b50919050565b612d8082612ede565b810181811067ffffffffffffffff82111715612d9f57612d9e612eaf565b5b80604052505050565b6000612db382612cf9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612de657612de5612e22565b5b600182019050919050565b6000612dfc82612cf9565b9150612e0783612cf9565b925082612e1757612e16612e51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61337681612c8f565b811461338157600080fd5b50565b61338d81612ca1565b811461339857600080fd5b50565b6133a481612cad565b81146133af57600080fd5b50565b6133bb81612cf9565b81146133c657600080fd5b5056fea26469706673582212201e2891a86992a40f91335cfd09795d8e574cbb3291d2631db2cf8f6a8ffa3d3064736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56385267446453595450776e4758503879413952797833395a507a6531754a4554654a65357166527069687168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63796d45764d5a6535547a3641623956386144523533385455387778706262596b4873754871316e354a686b2f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb4651461038a578063b88d4fde146103a6578063c87b56dd146103c2578063e8a3d485146103f2578063e985e9c514610410578063f2fde38b146104405761014d565b80636352211e146102c857806370a08231146102f8578063715018a6146103285780638da5cb5b14610332578063938e3d7b1461035057806395d89b411461036c5761014d565b806323b872dd1161011557806323b872dd1461020a5780632f745c59146102265780633ccfd60b1461025657806342842e0e146102605780634f6ccce71461027c57806355f804b3146102ac5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190612404565b61045c565b60405161017991906128ce565b60405180910390f35b61018a6104d6565b60405161019791906128e9565b60405180910390f35b6101ba60048036038101906101b5919061249b565b610568565b6040516101c79190612867565b60405180910390f35b6101ea60048036038101906101e591906123c8565b6105ed565b005b6101f4610705565b6040516102019190612b0b565b60405180910390f35b610224600480360381019061021f91906122c2565b610712565b005b610240600480360381019061023b91906123c8565b610772565b60405161024d9190612b0b565b60405180910390f35b61025e610817565b005b61027a600480360381019061027591906122c2565b6108dc565b005b6102966004803603810190610291919061249b565b6108fc565b6040516102a39190612b0b565b60405180910390f35b6102c660048036038101906102c19190612456565b610993565b005b6102e260048036038101906102dd919061249b565b610a25565b6040516102ef9190612867565b60405180910390f35b610312600480360381019061030d919061225d565b610ad7565b60405161031f9190612b0b565b60405180910390f35b610330610b8f565b005b61033a610c17565b6040516103479190612867565b60405180910390f35b61036a60048036038101906103659190612456565b610c41565b005b610374610cd3565b60405161038191906128e9565b60405180910390f35b6103a4600480360381019061039f919061238c565b610d65565b005b6103c060048036038101906103bb9190612311565b610ee6565b005b6103dc60048036038101906103d7919061249b565b610f48565b6040516103e991906128e9565b60405180910390f35b6103fa610fc4565b60405161040791906128e9565b60405180910390f35b61042a60048036038101906104259190612286565b611056565b60405161043791906128ce565b60405180910390f35b61045a6004803603810190610455919061225d565b6110ea565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104cf57506104ce826111fa565b5b9050919050565b6060600080546104e590612d45565b80601f016020809104026020016040519081016040528092919081815260200182805461051190612d45565b801561055e5780601f106105335761010080835404028352916020019161055e565b820191906000526020600020905b81548152906001019060200180831161054157829003601f168201915b5050505050905090565b6000610573826112dc565b6105b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a990612a2b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f882610a25565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066090612aab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610688611348565b73ffffffffffffffffffffffffffffffffffffffff1614806106b757506106b6816106b1611348565b611056565b5b6106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed906129cb565b60405180910390fd5b6107008383611350565b505050565b6000600880549050905090565b61072361071d611348565b82611409565b610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990612acb565b60405180910390fd5b61076d8383836114e7565b505050565b600061077d83610ad7565b82106107be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b59061290b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61081f611348565b73ffffffffffffffffffffffffffffffffffffffff1661083d610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612a4b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108d9573d6000803e3d6000fd5b50565b6108f783838360405180602001604052806000815250610ee6565b505050565b6000610906610705565b8210610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90612aeb565b60405180910390fd5b60088281548110610981577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61099b611348565b73ffffffffffffffffffffffffffffffffffffffff166109b9610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690612a4b565b60405180910390fd5b8181600c9190610a2092919061209f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590612a0b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f906129eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b97611348565b73ffffffffffffffffffffffffffffffffffffffff16610bb5610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290612a4b565b60405180910390fd5b610c156000611743565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c49611348565b73ffffffffffffffffffffffffffffffffffffffff16610c67610c17565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490612a4b565b60405180910390fd5b8181600b9190610cce92919061209f565b505050565b606060018054610ce290612d45565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0e90612d45565b8015610d5b5780601f10610d3057610100808354040283529160200191610d5b565b820191906000526020600020905b815481529060010190602001808311610d3e57829003601f168201915b5050505050905090565b610d6d611348565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd29061298b565b60405180910390fd5b8060056000610de8611348565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e95611348565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eda91906128ce565b60405180910390a35050565b610ef7610ef1611348565b83611409565b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612acb565b60405180910390fd5b610f4284848484611809565b50505050565b6060610f53826112dc565b610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612a8b565b60405180910390fd5b600c610f9d83611865565b604051602001610fae929190612843565b6040516020818303038152906040529050919050565b6060600b8054610fd390612d45565b80601f0160208091040260200160405190810160405280929190818152602001828054610fff90612d45565b801561104c5780601f106110215761010080835404028352916020019161104c565b820191906000526020600020905b81548152906001019060200180831161102f57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110f2611348565b73ffffffffffffffffffffffffffffffffffffffff16611110610c17565b73ffffffffffffffffffffffffffffffffffffffff1614611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90612a4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd9061294b565b60405180910390fd5b6111df81611743565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112c557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112d557506112d482611a12565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c383610a25565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611414826112dc565b611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a906129ab565b60405180910390fd5b600061145e83610a25565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114cd57508373ffffffffffffffffffffffffffffffffffffffff166114b584610568565b73ffffffffffffffffffffffffffffffffffffffff16145b806114de57506114dd8185611056565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661150782610a25565b73ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490612a6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c49061296b565b60405180910390fd5b6115d8838383611a7c565b6115e3600082611350565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116339190612c5b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461168a9190612bd4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118148484846114e7565b61182084848484611b90565b61185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061292b565b60405180910390fd5b50505050565b606060008214156118ad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a0d565b600082905060005b600082146118df5780806118c890612da8565b915050600a826118d89190612c2a565b91506118b5565b60008167ffffffffffffffff811115611921577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119535781602001600182028036833780820191505090505b5090505b60008514611a065760018261196c9190612c5b565b9150600a8561197b9190612df1565b60306119879190612bd4565b60f81b8183815181106119c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119ff9190612c2a565b9450611957565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611a878383836111f5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aca57611ac581611d27565b611b09565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b0857611b078382611d70565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4c57611b4781611edd565b611b8b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611b8a57611b898282612020565b5b5b505050565b6000611bb18473ffffffffffffffffffffffffffffffffffffffff166111e2565b15611d1a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bda611348565b8786866040518563ffffffff1660e01b8152600401611bfc9493929190612882565b602060405180830381600087803b158015611c1657600080fd5b505af1925050508015611c4757506040513d601f19601f82011682018060405250810190611c44919061242d565b60015b611cca573d8060008114611c77576040519150601f19603f3d011682016040523d82523d6000602084013e611c7c565b606091505b50600081511415611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb99061292b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d1f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611d7d84610ad7565b611d879190612c5b565b9050600060076000848152602001908152602001600020549050818114611e6c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611ef19190612c5b565b9050600060096000848152602001908152602001600020549050600060088381548110611f47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110611f8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612004577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061202b83610ad7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546120ab90612d45565b90600052602060002090601f0160209004810192826120cd5760008555612114565b82601f106120e657803560ff1916838001178555612114565b82800160010185558215612114579182015b828111156121135782358255916020019190600101906120f8565b5b5090506121219190612125565b5090565b5b8082111561213e576000816000905550600101612126565b5090565b600061215561215084612b4b565b612b26565b90508281526020810184848401111561216d57600080fd5b612178848285612d03565b509392505050565b60008135905061218f8161336d565b92915050565b6000813590506121a481613384565b92915050565b6000813590506121b98161339b565b92915050565b6000815190506121ce8161339b565b92915050565b600082601f8301126121e557600080fd5b81356121f5848260208601612142565b91505092915050565b60008083601f84011261221057600080fd5b8235905067ffffffffffffffff81111561222957600080fd5b60208301915083600182028301111561224157600080fd5b9250929050565b600081359050612257816133b2565b92915050565b60006020828403121561226f57600080fd5b600061227d84828501612180565b91505092915050565b6000806040838503121561229957600080fd5b60006122a785828601612180565b92505060206122b885828601612180565b9150509250929050565b6000806000606084860312156122d757600080fd5b60006122e586828701612180565b93505060206122f686828701612180565b925050604061230786828701612248565b9150509250925092565b6000806000806080858703121561232757600080fd5b600061233587828801612180565b945050602061234687828801612180565b935050604061235787828801612248565b925050606085013567ffffffffffffffff81111561237457600080fd5b612380878288016121d4565b91505092959194509250565b6000806040838503121561239f57600080fd5b60006123ad85828601612180565b92505060206123be85828601612195565b9150509250929050565b600080604083850312156123db57600080fd5b60006123e985828601612180565b92505060206123fa85828601612248565b9150509250929050565b60006020828403121561241657600080fd5b6000612424848285016121aa565b91505092915050565b60006020828403121561243f57600080fd5b600061244d848285016121bf565b91505092915050565b6000806020838503121561246957600080fd5b600083013567ffffffffffffffff81111561248357600080fd5b61248f858286016121fe565b92509250509250929050565b6000602082840312156124ad57600080fd5b60006124bb84828501612248565b91505092915050565b6124cd81612c8f565b82525050565b6124dc81612ca1565b82525050565b60006124ed82612b91565b6124f78185612ba7565b9350612507818560208601612d12565b61251081612ede565b840191505092915050565b600061252682612b9c565b6125308185612bb8565b9350612540818560208601612d12565b61254981612ede565b840191505092915050565b600061255f82612b9c565b6125698185612bc9565b9350612579818560208601612d12565b80840191505092915050565b6000815461259281612d45565b61259c8186612bc9565b945060018216600081146125b757600181146125c8576125fb565b60ff198316865281860193506125fb565b6125d185612b7c565b60005b838110156125f3578154818901526001820191506020810190506125d4565b838801955050505b50505092915050565b6000612611602b83612bb8565b915061261c82612eef565b604082019050919050565b6000612634603283612bb8565b915061263f82612f3e565b604082019050919050565b6000612657602683612bb8565b915061266282612f8d565b604082019050919050565b600061267a602483612bb8565b915061268582612fdc565b604082019050919050565b600061269d601983612bb8565b91506126a88261302b565b602082019050919050565b60006126c0602c83612bb8565b91506126cb82613054565b604082019050919050565b60006126e3603883612bb8565b91506126ee826130a3565b604082019050919050565b6000612706602a83612bb8565b9150612711826130f2565b604082019050919050565b6000612729602983612bb8565b915061273482613141565b604082019050919050565b600061274c602c83612bb8565b915061275782613190565b604082019050919050565b600061276f602083612bb8565b915061277a826131df565b602082019050919050565b6000612792602983612bb8565b915061279d82613208565b604082019050919050565b60006127b5601f83612bb8565b91506127c082613257565b602082019050919050565b60006127d8602183612bb8565b91506127e382613280565b604082019050919050565b60006127fb603183612bb8565b9150612806826132cf565b604082019050919050565b600061281e602c83612bb8565b91506128298261331e565b604082019050919050565b61283d81612cf9565b82525050565b600061284f8285612585565b915061285b8284612554565b91508190509392505050565b600060208201905061287c60008301846124c4565b92915050565b600060808201905061289760008301876124c4565b6128a460208301866124c4565b6128b16040830185612834565b81810360608301526128c381846124e2565b905095945050505050565b60006020820190506128e360008301846124d3565b92915050565b60006020820190508181036000830152612903818461251b565b905092915050565b6000602082019050818103600083015261292481612604565b9050919050565b6000602082019050818103600083015261294481612627565b9050919050565b600060208201905081810360008301526129648161264a565b9050919050565b600060208201905081810360008301526129848161266d565b9050919050565b600060208201905081810360008301526129a481612690565b9050919050565b600060208201905081810360008301526129c4816126b3565b9050919050565b600060208201905081810360008301526129e4816126d6565b9050919050565b60006020820190508181036000830152612a04816126f9565b9050919050565b60006020820190508181036000830152612a248161271c565b9050919050565b60006020820190508181036000830152612a448161273f565b9050919050565b60006020820190508181036000830152612a6481612762565b9050919050565b60006020820190508181036000830152612a8481612785565b9050919050565b60006020820190508181036000830152612aa4816127a8565b9050919050565b60006020820190508181036000830152612ac4816127cb565b9050919050565b60006020820190508181036000830152612ae4816127ee565b9050919050565b60006020820190508181036000830152612b0481612811565b9050919050565b6000602082019050612b206000830184612834565b92915050565b6000612b30612b41565b9050612b3c8282612d77565b919050565b6000604051905090565b600067ffffffffffffffff821115612b6657612b65612eaf565b5b612b6f82612ede565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bdf82612cf9565b9150612bea83612cf9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c1f57612c1e612e22565b5b828201905092915050565b6000612c3582612cf9565b9150612c4083612cf9565b925082612c5057612c4f612e51565b5b828204905092915050565b6000612c6682612cf9565b9150612c7183612cf9565b925082821015612c8457612c83612e22565b5b828203905092915050565b6000612c9a82612cd9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d30578082015181840152602081019050612d15565b83811115612d3f576000848401525b50505050565b60006002820490506001821680612d5d57607f821691505b60208210811415612d7157612d70612e80565b5b50919050565b612d8082612ede565b810181811067ffffffffffffffff82111715612d9f57612d9e612eaf565b5b80604052505050565b6000612db382612cf9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612de657612de5612e22565b5b600182019050919050565b6000612dfc82612cf9565b9150612e0783612cf9565b925082612e1757612e16612e51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61337681612c8f565b811461338157600080fd5b50565b61338d81612ca1565b811461339857600080fd5b50565b6133a481612cad565b81146133af57600080fd5b50565b6133bb81612cf9565b81146133c657600080fd5b5056fea26469706673582212201e2891a86992a40f91335cfd09795d8e574cbb3291d2631db2cf8f6a8ffa3d3064736f6c63430008040033

Deployed Bytecode Sourcemap

46617:1201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39782:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26942:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28635:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28158:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40585:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29694:376;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40166:343;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47116:108;;;:::i;:::-;;30141:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40775:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47345:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26549:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26192:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9649:94;;;:::i;:::-;;8998:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47232:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27111:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29015:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30397:365;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47561:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47452:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9898:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39782:300;39929:4;39986:35;39971:50;;;:11;:50;;;;:103;;;;40038:36;40062:11;40038:23;:36::i;:::-;39971:103;39951:123;;39782:300;;;:::o;26942:100::-;26996:13;27029:5;27022:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26942:100;:::o;28635:308::-;28756:7;28803:16;28811:7;28803;:16::i;:::-;28781:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28911:15;:24;28927:7;28911:24;;;;;;;;;;;;;;;;;;;;;28904:31;;28635:308;;;:::o;28158:411::-;28239:13;28255:23;28270:7;28255:14;:23::i;:::-;28239:39;;28303:5;28297:11;;:2;:11;;;;28289:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28397:5;28381:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28406:37;28423:5;28430:12;:10;:12::i;:::-;28406:16;:37::i;:::-;28381:62;28359:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28540:21;28549:2;28553:7;28540:8;:21::i;:::-;28158:411;;;:::o;40585:113::-;40646:7;40673:10;:17;;;;40666:24;;40585:113;:::o;29694:376::-;29903:41;29922:12;:10;:12::i;:::-;29936:7;29903:18;:41::i;:::-;29881:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30034:28;30044:4;30050:2;30054:7;30034:9;:28::i;:::-;29694:376;;;:::o;40166:343::-;40308:7;40363:23;40380:5;40363:16;:23::i;:::-;40355:5;:31;40333:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40475:12;:19;40488:5;40475:19;;;;;;;;;;;;;;;:26;40495:5;40475:26;;;;;;;;;;;;40468:33;;40166:343;;;;:::o;47116:108::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47173:10:::1;47165:28;;:51;47194:21;47165:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47116:108::o:0;30141:185::-;30279:39;30296:4;30302:2;30306:7;30279:39;;;;;;;;;;;;:16;:39::i;:::-;30141:185;;;:::o;40775:320::-;40895:7;40950:30;:28;:30::i;:::-;40942:5;:38;40920:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41070:10;41081:5;41070:17;;;;;;;;;;;;;;;;;;;;;;;;41063:24;;40775:320;;;:::o;47345:99::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47433:3:::1;;47417:13;:19;;;;;;;:::i;:::-;;47345:99:::0;;:::o;26549:326::-;26666:7;26691:13;26707:7;:16;26715:7;26707:16;;;;;;;;;;;;;;;;;;;;;26691:32;;26773:1;26756:19;;:5;:19;;;;26734:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26862:5;26855:12;;;26549:326;;;:::o;26192:295::-;26309:7;26373:1;26356:19;;:5;:19;;;;26334:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26463:9;:16;26473:5;26463:16;;;;;;;;;;;;;;;;26456:23;;26192:295;;;:::o;9649:94::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9714:21:::1;9732:1;9714:9;:21::i;:::-;9649:94::o:0;8998:87::-;9044:7;9071:6;;;;;;;;;;;9064:13;;8998:87;:::o;47232:101::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47322:3:::1;;47307:12;:18;;;;;;;:::i;:::-;;47232:101:::0;;:::o;27111:104::-;27167:13;27200:7;27193:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27111:104;:::o;29015:327::-;29162:12;:10;:12::i;:::-;29150:24;;:8;:24;;;;29142:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29262:8;29217:18;:32;29236:12;:10;:12::i;:::-;29217:32;;;;;;;;;;;;;;;:42;29250:8;29217:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29315:8;29286:48;;29301:12;:10;:12::i;:::-;29286:48;;;29325:8;29286:48;;;;;;:::i;:::-;;;;;;;;29015:327;;:::o;30397:365::-;30586:41;30605:12;:10;:12::i;:::-;30619:7;30586:18;:41::i;:::-;30564:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30715:39;30729:4;30735:2;30739:7;30748:5;30715:13;:39::i;:::-;30397:365;;;;:::o;47561:254::-;47634:13;47668:16;47676:7;47668;:16::i;:::-;47660:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47772:13;47787:18;:7;:16;:18::i;:::-;47755:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47741:66;;47561:254;;;:::o;47452:97::-;47496:13;47529:12;47522:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47452:97;:::o;29413:214::-;29555:4;29584:18;:25;29603:5;29584:25;;;;;;;;;;;;;;;:35;29610:8;29584:35;;;;;;;;;;;;;;;;;;;;;;;;;29577:42;;29413:214;;;;:::o;9898:229::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10021:1:::1;10001:22;;:8;:22;;;;9979:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10100:19;10110:8;10100:9;:19::i;:::-;9898:229:::0;:::o;15193:387::-;15253:4;15461:12;15528:7;15516:20;15508:28;;15571:1;15564:4;:8;15557:15;;;15193:387;;;:::o;38727:126::-;;;;:::o;25773:355::-;25920:4;25977:25;25962:40;;;:11;:40;;;;:105;;;;26034:33;26019:48;;;:11;:48;;;;25962:105;:158;;;;26084:36;26108:11;26084:23;:36::i;:::-;25962:158;25942:178;;25773:355;;;:::o;32309:127::-;32374:4;32426:1;32398:30;;:7;:16;32406:7;32398:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32391:37;;32309:127;;;:::o;1971:98::-;2024:7;2051:10;2044:17;;1971:98;:::o;36432:174::-;36534:2;36507:15;:24;36523:7;36507:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36590:7;36586:2;36552:46;;36561:23;36576:7;36561:14;:23::i;:::-;36552:46;;;;;;;;;;;;36432:174;;:::o;32603:452::-;32732:4;32776:16;32784:7;32776;:16::i;:::-;32754:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32875:13;32891:23;32906:7;32891:14;:23::i;:::-;32875:39;;32944:5;32933:16;;:7;:16;;;:64;;;;32990:7;32966:31;;:20;32978:7;32966:11;:20::i;:::-;:31;;;32933:64;:113;;;;33014:32;33031:5;33038:7;33014:16;:32::i;:::-;32933:113;32925:122;;;32603:452;;;;:::o;35699:615::-;35872:4;35845:31;;:23;35860:7;35845:14;:23::i;:::-;:31;;;35823:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;35978:1;35964:16;;:2;:16;;;;35956:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36034:39;36055:4;36061:2;36065:7;36034:20;:39::i;:::-;36138:29;36155:1;36159:7;36138:8;:29::i;:::-;36199:1;36180:9;:15;36190:4;36180:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36228:1;36211:9;:13;36221:2;36211:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36259:2;36240:7;:16;36248:7;36240:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36298:7;36294:2;36279:27;;36288:4;36279:27;;;;;;;;;;;;35699:615;;;:::o;10135:173::-;10191:16;10210:6;;;;;;;;;;;10191:25;;10236:8;10227:6;;:17;;;;;;;;;;;;;;;;;;10291:8;10260:40;;10281:8;10260:40;;;;;;;;;;;;10135:173;;:::o;31644:352::-;31801:28;31811:4;31817:2;31821:7;31801:9;:28::i;:::-;31862:48;31885:4;31891:2;31895:7;31904:5;31862:22;:48::i;:::-;31840:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31644:352;;;;:::o;12640:723::-;12696:13;12926:1;12917:5;:10;12913:53;;;12944:10;;;;;;;;;;;;;;;;;;;;;12913:53;12976:12;12991:5;12976:20;;13007:14;13032:78;13047:1;13039:4;:9;13032:78;;13065:8;;;;;:::i;:::-;;;;13096:2;13088:10;;;;;:::i;:::-;;;13032:78;;;13120:19;13152:6;13142:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13120:39;;13170:154;13186:1;13177:5;:10;13170:154;;13214:1;13204:11;;;;;:::i;:::-;;;13281:2;13273:5;:10;;;;:::i;:::-;13260:2;:24;;;;:::i;:::-;13247:39;;13230:6;13237;13230:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;13310:2;13301:11;;;;;:::i;:::-;;;13170:154;;;13348:6;13334:21;;;;;12640:723;;;;:::o;12119:207::-;12249:4;12293:25;12278:40;;;:11;:40;;;;12271:47;;12119:207;;;:::o;41708:589::-;41852:45;41879:4;41885:2;41889:7;41852:26;:45::i;:::-;41930:1;41914:18;;:4;:18;;;41910:187;;;41949:40;41981:7;41949:31;:40::i;:::-;41910:187;;;42019:2;42011:10;;:4;:10;;;42007:90;;42038:47;42071:4;42077:7;42038:32;:47::i;:::-;42007:90;41910:187;42125:1;42111:16;;:2;:16;;;42107:183;;;42144:45;42181:7;42144:36;:45::i;:::-;42107:183;;;42217:4;42211:10;;:2;:10;;;42207:83;;42238:40;42266:2;42270:7;42238:27;:40::i;:::-;42207:83;42107:183;41708:589;;;:::o;37171:984::-;37326:4;37347:15;:2;:13;;;:15::i;:::-;37343:805;;;37416:2;37400:36;;;37459:12;:10;:12::i;:::-;37494:4;37521:7;37551:5;37400:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37379:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37779:1;37762:6;:13;:18;37758:320;;;37805:108;;;;;;;;;;:::i;:::-;;;;;;;;37758:320;38028:6;38022:13;38013:6;38009:2;38005:15;37998:38;37379:714;37649:45;;;37639:55;;;:6;:55;;;;37632:62;;;;;37343:805;38132:4;38125:11;;37171:984;;;;;;;:::o;43020:164::-;43124:10;:17;;;;43097:15;:24;43113:7;43097:24;;;;;;;;;;;:44;;;;43152:10;43168:7;43152:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43020:164;:::o;43811:1002::-;44091:22;44141:1;44116:22;44133:4;44116:16;:22::i;:::-;:26;;;;:::i;:::-;44091:51;;44153:18;44174:17;:26;44192:7;44174:26;;;;;;;;;;;;44153:47;;44321:14;44307:10;:28;44303:328;;44352:19;44374:12;:18;44387:4;44374:18;;;;;;;;;;;;;;;:34;44393:14;44374:34;;;;;;;;;;;;44352:56;;44458:11;44425:12;:18;44438:4;44425:18;;;;;;;;;;;;;;;:30;44444:10;44425:30;;;;;;;;;;;:44;;;;44575:10;44542:17;:30;44560:11;44542:30;;;;;;;;;;;:43;;;;44303:328;;44727:17;:26;44745:7;44727:26;;;;;;;;;;;44720:33;;;44771:12;:18;44784:4;44771:18;;;;;;;;;;;;;;;:34;44790:14;44771:34;;;;;;;;;;;44764:41;;;43811:1002;;;;:::o;45108:1079::-;45361:22;45406:1;45386:10;:17;;;;:21;;;;:::i;:::-;45361:46;;45418:18;45439:15;:24;45455:7;45439:24;;;;;;;;;;;;45418:45;;45790:19;45812:10;45823:14;45812:26;;;;;;;;;;;;;;;;;;;;;;;;45790:48;;45876:11;45851:10;45862;45851:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;45987:10;45956:15;:28;45972:11;45956:28;;;;;;;;;;;:41;;;;46128:15;:24;46144:7;46128:24;;;;;;;;;;;46121:31;;;46163:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45108:1079;;;;:::o;42598:221::-;42683:14;42700:20;42717:2;42700:16;:20::i;:::-;42683:37;;42758:7;42731:12;:16;42744:2;42731:16;;;;;;;;;;;;;;;:24;42748:6;42731:24;;;;;;;;;;;:34;;;;42805:6;42776:17;:26;42794:7;42776:26;;;;;;;;;;;:35;;;;42598:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:260::-;4669:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:52;4846:7;4837:6;4826:9;4822:22;4802:52;:::i;:::-;4792:62;;4748:116;4676:195;;;;:::o;4877:282::-;4946:6;4995:2;4983:9;4974:7;4970:23;4966:32;4963:2;;;5011:1;5008;5001:12;4963:2;5054:1;5079:63;5134:7;5125:6;5114:9;5110:22;5079:63;:::i;:::-;5069:73;;5025:127;4953:206;;;;:::o;5165:395::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5380:1;5369:9;5365:17;5352:31;5410:18;5402:6;5399:30;5396:2;;;5442:1;5439;5432:12;5396:2;5478:65;5535:7;5526:6;5515:9;5511:22;5478:65;:::i;:::-;5460:83;;;;5323:230;5251:309;;;;;:::o;5566:262::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:2;;;5690:1;5687;5680:12;5642:2;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5632:196;;;;:::o;5834:118::-;5921:24;5939:5;5921:24;:::i;:::-;5916:3;5909:37;5899:53;;:::o;5958:109::-;6039:21;6054:5;6039:21;:::i;:::-;6034:3;6027:34;6017:50;;:::o;6073:360::-;6159:3;6187:38;6219:5;6187:38;:::i;:::-;6241:70;6304:6;6299:3;6241:70;:::i;:::-;6234:77;;6320:52;6365:6;6360:3;6353:4;6346:5;6342:16;6320:52;:::i;:::-;6397:29;6419:6;6397:29;:::i;:::-;6392:3;6388:39;6381:46;;6163:270;;;;;:::o;6439:364::-;6527:3;6555:39;6588:5;6555:39;:::i;:::-;6610:71;6674:6;6669:3;6610:71;:::i;:::-;6603:78;;6690:52;6735:6;6730:3;6723:4;6716:5;6712:16;6690:52;:::i;:::-;6767:29;6789:6;6767:29;:::i;:::-;6762:3;6758:39;6751:46;;6531:272;;;;;:::o;6809:377::-;6915:3;6943:39;6976:5;6943:39;:::i;:::-;6998:89;7080:6;7075:3;6998:89;:::i;:::-;6991:96;;7096:52;7141:6;7136:3;7129:4;7122:5;7118:16;7096:52;:::i;:::-;7173:6;7168:3;7164:16;7157:23;;6919:267;;;;;:::o;7216:845::-;7319:3;7356:5;7350:12;7385:36;7411:9;7385:36;:::i;:::-;7437:89;7519:6;7514:3;7437:89;:::i;:::-;7430:96;;7557:1;7546:9;7542:17;7573:1;7568:137;;;;7719:1;7714:341;;;;7535:520;;7568:137;7652:4;7648:9;7637;7633:25;7628:3;7621:38;7688:6;7683:3;7679:16;7672:23;;7568:137;;7714:341;7781:38;7813:5;7781:38;:::i;:::-;7841:1;7855:154;7869:6;7866:1;7863:13;7855:154;;;7943:7;7937:14;7933:1;7928:3;7924:11;7917:35;7993:1;7984:7;7980:15;7969:26;;7891:4;7888:1;7884:12;7879:17;;7855:154;;;8038:6;8033:3;8029:16;8022:23;;7721:334;;7535:520;;7323:738;;;;;;:::o;8067:366::-;8209:3;8230:67;8294:2;8289:3;8230:67;:::i;:::-;8223:74;;8306:93;8395:3;8306:93;:::i;:::-;8424:2;8419:3;8415:12;8408:19;;8213:220;;;:::o;8439:366::-;8581:3;8602:67;8666:2;8661:3;8602:67;:::i;:::-;8595:74;;8678:93;8767:3;8678:93;:::i;:::-;8796:2;8791:3;8787:12;8780:19;;8585:220;;;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8957:220;;;:::o;9183:366::-;9325:3;9346:67;9410:2;9405:3;9346:67;:::i;:::-;9339:74;;9422:93;9511:3;9422:93;:::i;:::-;9540:2;9535:3;9531:12;9524:19;;9329:220;;;:::o;9555:366::-;9697:3;9718:67;9782:2;9777:3;9718:67;:::i;:::-;9711:74;;9794:93;9883:3;9794:93;:::i;:::-;9912:2;9907:3;9903:12;9896:19;;9701:220;;;:::o;9927:366::-;10069:3;10090:67;10154:2;10149:3;10090:67;:::i;:::-;10083:74;;10166:93;10255:3;10166:93;:::i;:::-;10284:2;10279:3;10275:12;10268:19;;10073:220;;;:::o;10299:366::-;10441:3;10462:67;10526:2;10521:3;10462:67;:::i;:::-;10455:74;;10538:93;10627:3;10538:93;:::i;:::-;10656:2;10651:3;10647:12;10640:19;;10445:220;;;:::o;10671:366::-;10813:3;10834:67;10898:2;10893:3;10834:67;:::i;:::-;10827:74;;10910:93;10999:3;10910:93;:::i;:::-;11028:2;11023:3;11019:12;11012:19;;10817:220;;;:::o;11043:366::-;11185:3;11206:67;11270:2;11265:3;11206:67;:::i;:::-;11199:74;;11282:93;11371:3;11282:93;:::i;:::-;11400:2;11395:3;11391:12;11384:19;;11189:220;;;:::o;11415:366::-;11557:3;11578:67;11642:2;11637:3;11578:67;:::i;:::-;11571:74;;11654:93;11743:3;11654:93;:::i;:::-;11772:2;11767:3;11763:12;11756:19;;11561:220;;;:::o;11787:366::-;11929:3;11950:67;12014:2;12009:3;11950:67;:::i;:::-;11943:74;;12026:93;12115:3;12026:93;:::i;:::-;12144:2;12139:3;12135:12;12128:19;;11933:220;;;:::o;12159:366::-;12301:3;12322:67;12386:2;12381:3;12322:67;:::i;:::-;12315:74;;12398:93;12487:3;12398:93;:::i;:::-;12516:2;12511:3;12507:12;12500:19;;12305:220;;;:::o;12531:366::-;12673:3;12694:67;12758:2;12753:3;12694:67;:::i;:::-;12687:74;;12770:93;12859:3;12770:93;:::i;:::-;12888:2;12883:3;12879:12;12872:19;;12677:220;;;:::o;12903:366::-;13045:3;13066:67;13130:2;13125:3;13066:67;:::i;:::-;13059:74;;13142:93;13231:3;13142:93;:::i;:::-;13260:2;13255:3;13251:12;13244:19;;13049:220;;;:::o;13275:366::-;13417:3;13438:67;13502:2;13497:3;13438:67;:::i;:::-;13431:74;;13514:93;13603:3;13514:93;:::i;:::-;13632:2;13627:3;13623:12;13616:19;;13421:220;;;:::o;13647:366::-;13789:3;13810:67;13874:2;13869:3;13810:67;:::i;:::-;13803:74;;13886:93;13975:3;13886:93;:::i;:::-;14004:2;13999:3;13995:12;13988:19;;13793:220;;;:::o;14019:118::-;14106:24;14124:5;14106:24;:::i;:::-;14101:3;14094:37;14084:53;;:::o;14143:429::-;14320:3;14342:92;14430:3;14421:6;14342:92;:::i;:::-;14335:99;;14451:95;14542:3;14533:6;14451:95;:::i;:::-;14444:102;;14563:3;14556:10;;14324:248;;;;;:::o;14578:222::-;14671:4;14709:2;14698:9;14694:18;14686:26;;14722:71;14790:1;14779:9;14775:17;14766:6;14722:71;:::i;:::-;14676:124;;;;:::o;14806:640::-;15001:4;15039:3;15028:9;15024:19;15016:27;;15053:71;15121:1;15110:9;15106:17;15097:6;15053:71;:::i;:::-;15134:72;15202:2;15191:9;15187:18;15178:6;15134:72;:::i;:::-;15216;15284:2;15273:9;15269:18;15260:6;15216:72;:::i;:::-;15335:9;15329:4;15325:20;15320:2;15309:9;15305:18;15298:48;15363:76;15434:4;15425:6;15363:76;:::i;:::-;15355:84;;15006:440;;;;;;;:::o;15452:210::-;15539:4;15577:2;15566:9;15562:18;15554:26;;15590:65;15652:1;15641:9;15637:17;15628:6;15590:65;:::i;:::-;15544:118;;;;:::o;15668:313::-;15781:4;15819:2;15808:9;15804:18;15796:26;;15868:9;15862:4;15858:20;15854:1;15843:9;15839:17;15832:47;15896:78;15969:4;15960:6;15896:78;:::i;:::-;15888:86;;15786:195;;;;:::o;15987:419::-;16153:4;16191:2;16180:9;16176:18;16168:26;;16240:9;16234:4;16230:20;16226:1;16215:9;16211:17;16204:47;16268:131;16394:4;16268:131;:::i;:::-;16260:139;;16158:248;;;:::o;16412:419::-;16578:4;16616:2;16605:9;16601:18;16593:26;;16665:9;16659:4;16655:20;16651:1;16640:9;16636:17;16629:47;16693:131;16819:4;16693:131;:::i;:::-;16685:139;;16583:248;;;:::o;16837:419::-;17003:4;17041:2;17030:9;17026:18;17018:26;;17090:9;17084:4;17080:20;17076:1;17065:9;17061:17;17054:47;17118:131;17244:4;17118:131;:::i;:::-;17110:139;;17008:248;;;:::o;17262:419::-;17428:4;17466:2;17455:9;17451:18;17443:26;;17515:9;17509:4;17505:20;17501:1;17490:9;17486:17;17479:47;17543:131;17669:4;17543:131;:::i;:::-;17535:139;;17433:248;;;:::o;17687:419::-;17853:4;17891:2;17880:9;17876:18;17868:26;;17940:9;17934:4;17930:20;17926:1;17915:9;17911:17;17904:47;17968:131;18094:4;17968:131;:::i;:::-;17960:139;;17858:248;;;:::o;18112:419::-;18278:4;18316:2;18305:9;18301:18;18293:26;;18365:9;18359:4;18355:20;18351:1;18340:9;18336:17;18329:47;18393:131;18519:4;18393:131;:::i;:::-;18385:139;;18283:248;;;:::o;18537:419::-;18703:4;18741:2;18730:9;18726:18;18718:26;;18790:9;18784:4;18780:20;18776:1;18765:9;18761:17;18754:47;18818:131;18944:4;18818:131;:::i;:::-;18810:139;;18708:248;;;:::o;18962:419::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19215:9;19209:4;19205:20;19201:1;19190:9;19186:17;19179:47;19243:131;19369:4;19243:131;:::i;:::-;19235:139;;19133:248;;;:::o;19387:419::-;19553:4;19591:2;19580:9;19576:18;19568:26;;19640:9;19634:4;19630:20;19626:1;19615:9;19611:17;19604:47;19668:131;19794:4;19668:131;:::i;:::-;19660:139;;19558:248;;;:::o;19812:419::-;19978:4;20016:2;20005:9;20001:18;19993:26;;20065:9;20059:4;20055:20;20051:1;20040:9;20036:17;20029:47;20093:131;20219:4;20093:131;:::i;:::-;20085:139;;19983:248;;;:::o;20237:419::-;20403:4;20441:2;20430:9;20426:18;20418:26;;20490:9;20484:4;20480:20;20476:1;20465:9;20461:17;20454:47;20518:131;20644:4;20518:131;:::i;:::-;20510:139;;20408:248;;;:::o;20662:419::-;20828:4;20866:2;20855:9;20851:18;20843:26;;20915:9;20909:4;20905:20;20901:1;20890:9;20886:17;20879:47;20943:131;21069:4;20943:131;:::i;:::-;20935:139;;20833:248;;;:::o;21087:419::-;21253:4;21291:2;21280:9;21276:18;21268:26;;21340:9;21334:4;21330:20;21326:1;21315:9;21311:17;21304:47;21368:131;21494:4;21368:131;:::i;:::-;21360:139;;21258:248;;;:::o;21512:419::-;21678:4;21716:2;21705:9;21701:18;21693:26;;21765:9;21759:4;21755:20;21751:1;21740:9;21736:17;21729:47;21793:131;21919:4;21793:131;:::i;:::-;21785:139;;21683:248;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;22108:248;;;:::o;22362:419::-;22528:4;22566:2;22555:9;22551:18;22543:26;;22615:9;22609:4;22605:20;22601:1;22590:9;22586:17;22579:47;22643:131;22769:4;22643:131;:::i;:::-;22635:139;;22533:248;;;:::o;22787:222::-;22880:4;22918:2;22907:9;22903:18;22895:26;;22931:71;22999:1;22988:9;22984:17;22975:6;22931:71;:::i;:::-;22885:124;;;;:::o;23015:129::-;23049:6;23076:20;;:::i;:::-;23066:30;;23105:33;23133:4;23125:6;23105:33;:::i;:::-;23056:88;;;:::o;23150:75::-;23183:6;23216:2;23210:9;23200:19;;23190:35;:::o;23231:307::-;23292:4;23382:18;23374:6;23371:30;23368:2;;;23404:18;;:::i;:::-;23368:2;23442:29;23464:6;23442:29;:::i;:::-;23434:37;;23526:4;23520;23516:15;23508:23;;23297:241;;;:::o;23544:141::-;23593:4;23616:3;23608:11;;23639:3;23636:1;23629:14;23673:4;23670:1;23660:18;23652:26;;23598:87;;;:::o;23691:98::-;23742:6;23776:5;23770:12;23760:22;;23749:40;;;:::o;23795:99::-;23847:6;23881:5;23875:12;23865:22;;23854:40;;;:::o;23900:168::-;23983:11;24017:6;24012:3;24005:19;24057:4;24052:3;24048:14;24033:29;;23995:73;;;;:::o;24074:169::-;24158:11;24192:6;24187:3;24180:19;24232:4;24227:3;24223:14;24208:29;;24170:73;;;;:::o;24249:148::-;24351:11;24388:3;24373:18;;24363:34;;;;:::o;24403:305::-;24443:3;24462:20;24480:1;24462:20;:::i;:::-;24457:25;;24496:20;24514:1;24496:20;:::i;:::-;24491:25;;24650:1;24582:66;24578:74;24575:1;24572:81;24569:2;;;24656:18;;:::i;:::-;24569:2;24700:1;24697;24693:9;24686:16;;24447:261;;;;:::o;24714:185::-;24754:1;24771:20;24789:1;24771:20;:::i;:::-;24766:25;;24805:20;24823:1;24805:20;:::i;:::-;24800:25;;24844:1;24834:2;;24849:18;;:::i;:::-;24834:2;24891:1;24888;24884:9;24879:14;;24756:143;;;;:::o;24905:191::-;24945:4;24965:20;24983:1;24965:20;:::i;:::-;24960:25;;24999:20;25017:1;24999:20;:::i;:::-;24994:25;;25038:1;25035;25032:8;25029:2;;;25043:18;;:::i;:::-;25029:2;25088:1;25085;25081:9;25073:17;;24950:146;;;;:::o;25102:96::-;25139:7;25168:24;25186:5;25168:24;:::i;:::-;25157:35;;25147:51;;;:::o;25204:90::-;25238:7;25281:5;25274:13;25267:21;25256:32;;25246:48;;;:::o;25300:149::-;25336:7;25376:66;25369:5;25365:78;25354:89;;25344:105;;;:::o;25455:126::-;25492:7;25532:42;25525:5;25521:54;25510:65;;25500:81;;;:::o;25587:77::-;25624:7;25653:5;25642:16;;25632:32;;;:::o;25670:154::-;25754:6;25749:3;25744;25731:30;25816:1;25807:6;25802:3;25798:16;25791:27;25721:103;;;:::o;25830:307::-;25898:1;25908:113;25922:6;25919:1;25916:13;25908:113;;;26007:1;26002:3;25998:11;25992:18;25988:1;25983:3;25979:11;25972:39;25944:2;25941:1;25937:10;25932:15;;25908:113;;;26039:6;26036:1;26033:13;26030:2;;;26119:1;26110:6;26105:3;26101:16;26094:27;26030:2;25879:258;;;;:::o;26143:320::-;26187:6;26224:1;26218:4;26214:12;26204:22;;26271:1;26265:4;26261:12;26292:18;26282:2;;26348:4;26340:6;26336:17;26326:27;;26282:2;26410;26402:6;26399:14;26379:18;26376:38;26373:2;;;26429:18;;:::i;:::-;26373:2;26194:269;;;;:::o;26469:281::-;26552:27;26574:4;26552:27;:::i;:::-;26544:6;26540:40;26682:6;26670:10;26667:22;26646:18;26634:10;26631:34;26628:62;26625:2;;;26693:18;;:::i;:::-;26625:2;26733:10;26729:2;26722:22;26512:238;;;:::o;26756:233::-;26795:3;26818:24;26836:5;26818:24;:::i;:::-;26809:33;;26864:66;26857:5;26854:77;26851:2;;;26934:18;;:::i;:::-;26851:2;26981:1;26974:5;26970:13;26963:20;;26799:190;;;:::o;26995:176::-;27027:1;27044:20;27062:1;27044:20;:::i;:::-;27039:25;;27078:20;27096:1;27078:20;:::i;:::-;27073:25;;27117:1;27107:2;;27122:18;;:::i;:::-;27107:2;27163:1;27160;27156:9;27151:14;;27029:142;;;;:::o;27177:180::-;27225:77;27222:1;27215:88;27322:4;27319:1;27312:15;27346:4;27343:1;27336:15;27363:180;27411:77;27408:1;27401:88;27508:4;27505:1;27498:15;27532:4;27529:1;27522:15;27549:180;27597:77;27594:1;27587:88;27694:4;27691:1;27684:15;27718:4;27715:1;27708:15;27735:180;27783:77;27780:1;27773:88;27880:4;27877:1;27870:15;27904:4;27901:1;27894:15;27921:102;27962:6;28013:2;28009:7;28004:2;27997:5;27993:14;27989:28;27979:38;;27969:54;;;:::o;28029:230::-;28169:34;28165:1;28157:6;28153:14;28146:58;28238:13;28233:2;28225:6;28221:15;28214:38;28135:124;:::o;28265:237::-;28405:34;28401:1;28393:6;28389:14;28382:58;28474:20;28469:2;28461:6;28457:15;28450:45;28371:131;:::o;28508:225::-;28648:34;28644:1;28636:6;28632:14;28625:58;28717:8;28712:2;28704:6;28700:15;28693:33;28614:119;:::o;28739:223::-;28879:34;28875:1;28867:6;28863:14;28856:58;28948:6;28943:2;28935:6;28931:15;28924:31;28845:117;:::o;28968:175::-;29108:27;29104:1;29096:6;29092:14;29085:51;29074:69;:::o;29149:231::-;29289:34;29285:1;29277:6;29273:14;29266:58;29358:14;29353:2;29345:6;29341:15;29334:39;29255:125;:::o;29386:243::-;29526:34;29522:1;29514:6;29510:14;29503:58;29595:26;29590:2;29582:6;29578:15;29571:51;29492:137;:::o;29635:229::-;29775:34;29771:1;29763:6;29759:14;29752:58;29844:12;29839:2;29831:6;29827:15;29820:37;29741:123;:::o;29870:228::-;30010:34;30006:1;29998:6;29994:14;29987:58;30079:11;30074:2;30066:6;30062:15;30055:36;29976:122;:::o;30104:231::-;30244:34;30240:1;30232:6;30228:14;30221:58;30313:14;30308:2;30300:6;30296:15;30289:39;30210:125;:::o;30341:182::-;30481:34;30477:1;30469:6;30465:14;30458:58;30447:76;:::o;30529:228::-;30669:34;30665:1;30657:6;30653:14;30646:58;30738:11;30733:2;30725:6;30721:15;30714:36;30635:122;:::o;30763:181::-;30903:33;30899:1;30891:6;30887:14;30880:57;30869:75;:::o;30950:220::-;31090:34;31086:1;31078:6;31074:14;31067:58;31159:3;31154:2;31146:6;31142:15;31135:28;31056:114;:::o;31176:236::-;31316:34;31312:1;31304:6;31300:14;31293:58;31385:19;31380:2;31372:6;31368:15;31361:44;31282:130;:::o;31418:231::-;31558:34;31554:1;31546:6;31542:14;31535:58;31627:14;31622:2;31614:6;31610:15;31603:39;31524:125;:::o;31655:122::-;31728:24;31746:5;31728:24;:::i;:::-;31721:5;31718:35;31708:2;;31767:1;31764;31757:12;31708:2;31698:79;:::o;31783:116::-;31853:21;31868:5;31853:21;:::i;:::-;31846:5;31843:32;31833:2;;31889:1;31886;31879:12;31833:2;31823:76;:::o;31905:120::-;31977:23;31994:5;31977:23;:::i;:::-;31970:5;31967:34;31957:2;;32015:1;32012;32005:12;31957:2;31947:78;:::o;32031:122::-;32104:24;32122:5;32104:24;:::i;:::-;32097:5;32094:35;32084:2;;32143:1;32140;32133:12;32084:2;32074:79;:::o

Swarm Source

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