ETH Price: $3,114.65 (+1.51%)
Gas: 7 Gwei

Bored Mummy Baby Waking Up (BMBWU)
 

Overview

TokenID

1081

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bored Mummy Baby Waking Up (BMBWU) Collections.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredMummyBabyWakingUp

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-27
*/

// Sources flattened with hardhat v2.5.0 https://hardhat.org

// File contracts/utils/introspection/IERC165.sol

// SPDX-License-Identifier: MIT

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 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 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 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 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File 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 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}. 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 {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}


// File contracts/token/ERC721/extensions/ERC721URIStorage.sol



pragma solidity ^0.8.0;

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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


// File contracts/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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File contracts/BMWU/bmbwu.sol



pragma solidity ^0.8.0;



contract BoredMummyBabyWakingUp is ERC721URIStorage, Ownable{

    uint256 public totalBabies;
    string public baseURI;

    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }

    function totalSupply() public view virtual returns (uint256) {
        return totalBabies;
    }

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

    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(_tokenId, _tokenURI);
    }

    function batchWakeUp(address[] calldata _addresses) external onlyOwner {
        for(uint256 i=0; i < _addresses.length; i++) {
             _mint(_addresses[i], 1 + totalBabies++);
        }
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"batchWakeUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBabies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040523480156200001157600080fd5b5060405162001e7238038062001e72833981016040819052620000349162000246565b8251839083906200004d906000906020850190620000e9565b50805162000063906001906020840190620000e9565b505050600062000078620000e560201b60201c565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508051620000db906009906020840190620000e9565b505050506200032a565b3390565b828054620000f790620002d7565b90600052602060002090601f0160209004810192826200011b576000855562000166565b82601f106200013657805160ff191683800117855562000166565b8280016001018555821562000166579182015b828111156200016657825182559160200191906001019062000149565b506200017492915062000178565b5090565b5b8082111562000174576000815560010162000179565b600082601f830112620001a157600080fd5b81516001600160401b0380821115620001be57620001be62000314565b604051601f8301601f19908116603f01168101908282118183101715620001e957620001e962000314565b816040528381526020925086838588010111156200020657600080fd5b600091505b838210156200022a57858201830151818301840152908201906200020b565b838211156200023c5760008385830101525b9695505050505050565b6000806000606084860312156200025c57600080fd5b83516001600160401b03808211156200027457600080fd5b62000282878388016200018f565b945060208601519150808211156200029957600080fd5b620002a7878388016200018f565b93506040860151915080821115620002be57600080fd5b50620002cd868287016200018f565b9150509250925092565b600181811c90821680620002ec57607f821691505b602082108114156200030e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b38806200033a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610284578063c87b56dd14610297578063e985e9c5146102aa578063f2fde38b146102e6578063f500842b146102f9578063fa18d8fb1461030c57600080fd5b806370a082311461023d578063715018a6146102505780638da5cb5b1461025857806395d89b4114610269578063a22cb4651461027157600080fd5b806318160ddd1161010a57806318160ddd146101d757806323b872dd146101e957806342842e0e146101fc57806355f804b31461020f5780636352211e146102225780636c0360eb1461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af578063162094c4146101c4575b600080fd5b61015a610155366004611766565b610315565b60405190151581526020015b60405180910390f35b610177610367565b60405161016691906118cd565b6101976101923660046117d5565b6103f9565b6040516001600160a01b039091168152602001610166565b6101c26101bd3660046116c7565b610486565b005b6101c26101d23660046117ee565b61059c565b6008545b604051908152602001610166565b6101c26101f73660046115d3565b6105d4565b6101c261020a3660046115d3565b610605565b6101c261021d3660046117a0565b610620565b6101976102303660046117d5565b61065d565b6101776106d4565b6101db61024b366004611585565b610762565b6101c26107e9565b6007546001600160a01b0316610197565b61017761085d565b6101c261027f36600461168b565b61086c565b6101c261029236600461160f565b610931565b6101776102a53660046117d5565b610969565b61015a6102b83660046115a0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c26102f4366004611585565b610ad3565b6101c26103073660046116f1565b610bbe565b6101db60085481565b60006001600160e01b031982166380ac58cd60e01b148061034657506001600160e01b03198216635b5e139f60e01b145b8061036157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461037690611a27565b80601f01602080910402602001604051908101604052809291908181526020018280546103a290611a27565b80156103ef5780601f106103c4576101008083540402835291602001916103ef565b820191906000526020600020905b8154815290600101906020018083116103d257829003601f168201915b5050505050905090565b600061040482610c53565b61046a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104918261065d565b9050806001600160a01b0316836001600160a01b031614156104ff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610461565b336001600160a01b038216148061051b575061051b81336102b8565b61058d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610461565b6105978383610c70565b505050565b6007546001600160a01b031633146105c65760405162461bcd60e51b815260040161046190611932565b6105d08282610cde565b5050565b6105de3382610d69565b6105fa5760405162461bcd60e51b815260040161046190611967565b610597838383610e4f565b61059783838360405180602001604052806000815250610931565b6007546001600160a01b0316331461064a5760405162461bcd60e51b815260040161046190611932565b80516105d090600990602084019061143a565b6000818152600260205260408120546001600160a01b0316806103615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610461565b600980546106e190611a27565b80601f016020809104026020016040519081016040528092919081815260200182805461070d90611a27565b801561075a5780601f1061072f5761010080835404028352916020019161075a565b820191906000526020600020905b81548152906001019060200180831161073d57829003601f168201915b505050505081565b60006001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610461565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146108135760405162461bcd60e51b815260040161046190611932565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b60606001805461037690611a27565b6001600160a01b0382163314156108c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610461565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61093b3383610d69565b6109575760405162461bcd60e51b815260040161046190611967565b61096384848484610fef565b50505050565b606061097482610c53565b6109da5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610461565b600082815260066020526040812080546109f390611a27565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90611a27565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b505050505090506000610a7d611022565b9050805160001415610a90575092915050565b815115610ac2578082604051602001610aaa929190611861565b60405160208183030381529060405292505050919050565b610acb84611031565b949350505050565b6007546001600160a01b03163314610afd5760405162461bcd60e51b815260040161046190611932565b6001600160a01b038116610b625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610be85760405162461bcd60e51b815260040161046190611932565b60005b8181101561059757610c41838383818110610c0857610c08611abd565b9050602002016020810190610c1d9190611585565b60088054906000610c2d83611a62565b90915550610c3c9060016119b8565b6110fc565b80610c4b81611a62565b915050610beb565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ca58261065d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ce782610c53565b610d4a5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610461565b600082815260066020908152604090912082516105979284019061143a565b6000610d7482610c53565b610dd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610461565b6000610de08361065d565b9050806001600160a01b0316846001600160a01b03161480610e1b5750836001600160a01b0316610e10846103f9565b6001600160a01b0316145b80610acb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610acb565b826001600160a01b0316610e628261065d565b6001600160a01b031614610eca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610461565b6001600160a01b038216610f2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b610f37600082610c70565b6001600160a01b0383166000908152600360205260408120805460019290610f609084906119e4565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f8e9084906119b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ffa848484610e4f565b6110068484848461122f565b6109635760405162461bcd60e51b8152600401610461906118e0565b60606009805461037690611a27565b606061103c82610c53565b6110a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610461565b60006110aa611022565b905060008151116110ca57604051806020016040528060008152506110f5565b806110d48461133c565b6040516020016110e5929190611861565b6040516020818303038152906040525b9392505050565b6001600160a01b0382166111525760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610461565b61115b81610c53565b156111a85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610461565b6001600160a01b03821660009081526003602052604081208054600192906111d19084906119b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561133157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611273903390899088908890600401611890565b602060405180830381600087803b15801561128d57600080fd5b505af19250505080156112bd575060408051601f3d908101601f191682019092526112ba91810190611783565b60015b611317573d8080156112eb576040519150601f19603f3d011682016040523d82523d6000602084013e6112f0565b606091505b50805161130f5760405162461bcd60e51b8152600401610461906118e0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610acb565b506001949350505050565b6060816113605750506040805180820190915260018152600360fc1b602082015290565b8160005b811561138a578061137481611a62565b91506113839050600a836119d0565b9150611364565b60008167ffffffffffffffff8111156113a5576113a5611ad3565b6040519080825280601f01601f1916602001820160405280156113cf576020820181803683370190505b5090505b8415610acb576113e46001836119e4565b91506113f1600a86611a7d565b6113fc9060306119b8565b60f81b81838151811061141157611411611abd565b60200101906001600160f81b031916908160001a905350611433600a866119d0565b94506113d3565b82805461144690611a27565b90600052602060002090601f01602090048101928261146857600085556114ae565b82601f1061148157805160ff19168380011785556114ae565b828001600101855582156114ae579182015b828111156114ae578251825591602001919060010190611493565b506114ba9291506114be565b5090565b5b808211156114ba57600081556001016114bf565b600067ffffffffffffffff808411156114ee576114ee611ad3565b604051601f8501601f19908116603f0116810190828211818310171561151657611516611ad3565b8160405280935085815286868601111561152f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461156057600080fd5b919050565b600082601f83011261157657600080fd5b6110f5838335602085016114d3565b60006020828403121561159757600080fd5b6110f582611549565b600080604083850312156115b357600080fd5b6115bc83611549565b91506115ca60208401611549565b90509250929050565b6000806000606084860312156115e857600080fd5b6115f184611549565b92506115ff60208501611549565b9150604084013590509250925092565b6000806000806080858703121561162557600080fd5b61162e85611549565b935061163c60208601611549565b925060408501359150606085013567ffffffffffffffff81111561165f57600080fd5b8501601f8101871361167057600080fd5b61167f878235602084016114d3565b91505092959194509250565b6000806040838503121561169e57600080fd5b6116a783611549565b9150602083013580151581146116bc57600080fd5b809150509250929050565b600080604083850312156116da57600080fd5b6116e383611549565b946020939093013593505050565b6000806020838503121561170457600080fd5b823567ffffffffffffffff8082111561171c57600080fd5b818501915085601f83011261173057600080fd5b81358181111561173f57600080fd5b8660208260051b850101111561175457600080fd5b60209290920196919550909350505050565b60006020828403121561177857600080fd5b81356110f581611ae9565b60006020828403121561179557600080fd5b81516110f581611ae9565b6000602082840312156117b257600080fd5b813567ffffffffffffffff8111156117c957600080fd5b610acb84828501611565565b6000602082840312156117e757600080fd5b5035919050565b6000806040838503121561180157600080fd5b82359150602083013567ffffffffffffffff81111561181f57600080fd5b61182b85828601611565565b9150509250929050565b6000815180845261184d8160208601602086016119fb565b601f01601f19169290920160200192915050565b600083516118738184602088016119fb565b8351908301906118878183602088016119fb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118c390830184611835565b9695505050505050565b6020815260006110f56020830184611835565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156119cb576119cb611a91565b500190565b6000826119df576119df611aa7565b500490565b6000828210156119f6576119f6611a91565b500390565b60005b83811015611a165781810151838201526020016119fe565b838111156109635750506000910152565b600181811c90821680611a3b57607f821691505b60208210811415611a5c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7657611a76611a91565b5060010190565b600082611a8c57611a8c611aa7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aff57600080fd5b5056fea2646970667358221220bb4036d7ee03d37abce43358360a1ada9765f9ba83c310fdc34db6abfec3616d64736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001a426f726564204d756d6d7920426162792057616b696e672055700000000000000000000000000000000000000000000000000000000000000000000000000005424d425755000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f7777772e626f7265646d756d6d7977616b696e6775702e636f6d2f6170692f6e66742f6d756d6d792f000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610284578063c87b56dd14610297578063e985e9c5146102aa578063f2fde38b146102e6578063f500842b146102f9578063fa18d8fb1461030c57600080fd5b806370a082311461023d578063715018a6146102505780638da5cb5b1461025857806395d89b4114610269578063a22cb4651461027157600080fd5b806318160ddd1161010a57806318160ddd146101d757806323b872dd146101e957806342842e0e146101fc57806355f804b31461020f5780636352211e146102225780636c0360eb1461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af578063162094c4146101c4575b600080fd5b61015a610155366004611766565b610315565b60405190151581526020015b60405180910390f35b610177610367565b60405161016691906118cd565b6101976101923660046117d5565b6103f9565b6040516001600160a01b039091168152602001610166565b6101c26101bd3660046116c7565b610486565b005b6101c26101d23660046117ee565b61059c565b6008545b604051908152602001610166565b6101c26101f73660046115d3565b6105d4565b6101c261020a3660046115d3565b610605565b6101c261021d3660046117a0565b610620565b6101976102303660046117d5565b61065d565b6101776106d4565b6101db61024b366004611585565b610762565b6101c26107e9565b6007546001600160a01b0316610197565b61017761085d565b6101c261027f36600461168b565b61086c565b6101c261029236600461160f565b610931565b6101776102a53660046117d5565b610969565b61015a6102b83660046115a0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c26102f4366004611585565b610ad3565b6101c26103073660046116f1565b610bbe565b6101db60085481565b60006001600160e01b031982166380ac58cd60e01b148061034657506001600160e01b03198216635b5e139f60e01b145b8061036157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461037690611a27565b80601f01602080910402602001604051908101604052809291908181526020018280546103a290611a27565b80156103ef5780601f106103c4576101008083540402835291602001916103ef565b820191906000526020600020905b8154815290600101906020018083116103d257829003601f168201915b5050505050905090565b600061040482610c53565b61046a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104918261065d565b9050806001600160a01b0316836001600160a01b031614156104ff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610461565b336001600160a01b038216148061051b575061051b81336102b8565b61058d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610461565b6105978383610c70565b505050565b6007546001600160a01b031633146105c65760405162461bcd60e51b815260040161046190611932565b6105d08282610cde565b5050565b6105de3382610d69565b6105fa5760405162461bcd60e51b815260040161046190611967565b610597838383610e4f565b61059783838360405180602001604052806000815250610931565b6007546001600160a01b0316331461064a5760405162461bcd60e51b815260040161046190611932565b80516105d090600990602084019061143a565b6000818152600260205260408120546001600160a01b0316806103615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610461565b600980546106e190611a27565b80601f016020809104026020016040519081016040528092919081815260200182805461070d90611a27565b801561075a5780601f1061072f5761010080835404028352916020019161075a565b820191906000526020600020905b81548152906001019060200180831161073d57829003601f168201915b505050505081565b60006001600160a01b0382166107cd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610461565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146108135760405162461bcd60e51b815260040161046190611932565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b60606001805461037690611a27565b6001600160a01b0382163314156108c55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610461565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61093b3383610d69565b6109575760405162461bcd60e51b815260040161046190611967565b61096384848484610fef565b50505050565b606061097482610c53565b6109da5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610461565b600082815260066020526040812080546109f390611a27565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90611a27565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b505050505090506000610a7d611022565b9050805160001415610a90575092915050565b815115610ac2578082604051602001610aaa929190611861565b60405160208183030381529060405292505050919050565b610acb84611031565b949350505050565b6007546001600160a01b03163314610afd5760405162461bcd60e51b815260040161046190611932565b6001600160a01b038116610b625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610be85760405162461bcd60e51b815260040161046190611932565b60005b8181101561059757610c41838383818110610c0857610c08611abd565b9050602002016020810190610c1d9190611585565b60088054906000610c2d83611a62565b90915550610c3c9060016119b8565b6110fc565b80610c4b81611a62565b915050610beb565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ca58261065d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ce782610c53565b610d4a5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610461565b600082815260066020908152604090912082516105979284019061143a565b6000610d7482610c53565b610dd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610461565b6000610de08361065d565b9050806001600160a01b0316846001600160a01b03161480610e1b5750836001600160a01b0316610e10846103f9565b6001600160a01b0316145b80610acb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610acb565b826001600160a01b0316610e628261065d565b6001600160a01b031614610eca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610461565b6001600160a01b038216610f2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b610f37600082610c70565b6001600160a01b0383166000908152600360205260408120805460019290610f609084906119e4565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f8e9084906119b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ffa848484610e4f565b6110068484848461122f565b6109635760405162461bcd60e51b8152600401610461906118e0565b60606009805461037690611a27565b606061103c82610c53565b6110a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610461565b60006110aa611022565b905060008151116110ca57604051806020016040528060008152506110f5565b806110d48461133c565b6040516020016110e5929190611861565b6040516020818303038152906040525b9392505050565b6001600160a01b0382166111525760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610461565b61115b81610c53565b156111a85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610461565b6001600160a01b03821660009081526003602052604081208054600192906111d19084906119b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561133157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611273903390899088908890600401611890565b602060405180830381600087803b15801561128d57600080fd5b505af19250505080156112bd575060408051601f3d908101601f191682019092526112ba91810190611783565b60015b611317573d8080156112eb576040519150601f19603f3d011682016040523d82523d6000602084013e6112f0565b606091505b50805161130f5760405162461bcd60e51b8152600401610461906118e0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610acb565b506001949350505050565b6060816113605750506040805180820190915260018152600360fc1b602082015290565b8160005b811561138a578061137481611a62565b91506113839050600a836119d0565b9150611364565b60008167ffffffffffffffff8111156113a5576113a5611ad3565b6040519080825280601f01601f1916602001820160405280156113cf576020820181803683370190505b5090505b8415610acb576113e46001836119e4565b91506113f1600a86611a7d565b6113fc9060306119b8565b60f81b81838151811061141157611411611abd565b60200101906001600160f81b031916908160001a905350611433600a866119d0565b94506113d3565b82805461144690611a27565b90600052602060002090601f01602090048101928261146857600085556114ae565b82601f1061148157805160ff19168380011785556114ae565b828001600101855582156114ae579182015b828111156114ae578251825591602001919060010190611493565b506114ba9291506114be565b5090565b5b808211156114ba57600081556001016114bf565b600067ffffffffffffffff808411156114ee576114ee611ad3565b604051601f8501601f19908116603f0116810190828211818310171561151657611516611ad3565b8160405280935085815286868601111561152f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461156057600080fd5b919050565b600082601f83011261157657600080fd5b6110f5838335602085016114d3565b60006020828403121561159757600080fd5b6110f582611549565b600080604083850312156115b357600080fd5b6115bc83611549565b91506115ca60208401611549565b90509250929050565b6000806000606084860312156115e857600080fd5b6115f184611549565b92506115ff60208501611549565b9150604084013590509250925092565b6000806000806080858703121561162557600080fd5b61162e85611549565b935061163c60208601611549565b925060408501359150606085013567ffffffffffffffff81111561165f57600080fd5b8501601f8101871361167057600080fd5b61167f878235602084016114d3565b91505092959194509250565b6000806040838503121561169e57600080fd5b6116a783611549565b9150602083013580151581146116bc57600080fd5b809150509250929050565b600080604083850312156116da57600080fd5b6116e383611549565b946020939093013593505050565b6000806020838503121561170457600080fd5b823567ffffffffffffffff8082111561171c57600080fd5b818501915085601f83011261173057600080fd5b81358181111561173f57600080fd5b8660208260051b850101111561175457600080fd5b60209290920196919550909350505050565b60006020828403121561177857600080fd5b81356110f581611ae9565b60006020828403121561179557600080fd5b81516110f581611ae9565b6000602082840312156117b257600080fd5b813567ffffffffffffffff8111156117c957600080fd5b610acb84828501611565565b6000602082840312156117e757600080fd5b5035919050565b6000806040838503121561180157600080fd5b82359150602083013567ffffffffffffffff81111561181f57600080fd5b61182b85828601611565565b9150509250929050565b6000815180845261184d8160208601602086016119fb565b601f01601f19169290920160200192915050565b600083516118738184602088016119fb565b8351908301906118878183602088016119fb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118c390830184611835565b9695505050505050565b6020815260006110f56020830184611835565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156119cb576119cb611a91565b500190565b6000826119df576119df611aa7565b500490565b6000828210156119f6576119f6611a91565b500390565b60005b83811015611a165781810151838201526020016119fe565b838111156109635750506000910152565b600181811c90821680611a3b57607f821691505b60208210811415611a5c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7657611a76611a91565b5060010190565b600082611a8c57611a8c611aa7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aff57600080fd5b5056fea2646970667358221220bb4036d7ee03d37abce43358360a1ada9765f9ba83c310fdc34db6abfec3616d64736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001a426f726564204d756d6d7920426162792057616b696e672055700000000000000000000000000000000000000000000000000000000000000000000000000005424d425755000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f7777772e626f7265646d756d6d7977616b696e6775702e636f6d2f6170692f6e66742f6d756d6d792f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Bored Mummy Baby Waking Up
Arg [1] : symbol_ (string): BMBWU
Arg [2] : baseURI_ (string): https://www.boredmummywakingup.com/api/nft/mummy/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [4] : 426f726564204d756d6d7920426162792057616b696e67205570000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 424d425755000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [8] : 68747470733a2f2f7777772e626f7265646d756d6d7977616b696e6775702e63
Arg [9] : 6f6d2f6170692f6e66742f6d756d6d792f000000000000000000000000000000


Deployed Bytecode Sourcemap

36607:956:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20534:292;;;;;;:::i;:::-;;:::i;:::-;;;6759:14:1;;6752:22;6734:41;;6722:2;6707:18;20534:292:0;;;;;;;;21466:100;;;:::i;:::-;;;;;;;:::i;22926:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6057:32:1;;;6039:51;;6027:2;6012:18;22926:221:0;5994:102:1;22463:397:0;;;;;;:::i;:::-;;:::i;:::-;;37212:133;;;;;;:::i;:::-;;:::i;36887:98::-;36966:11;;36887:98;;;14371:25:1;;;14359:2;14344:18;36887:98:0;14326:76:1;23816:305:0;;;;;;:::i;:::-;;:::i;24192:151::-;;;;;;:::i;:::-;;:::i;37108:96::-;;;;;;:::i;:::-;;:::i;21160:239::-;;;;;;:::i;:::-;;:::i;36709:21::-;;;:::i;20890:208::-;;;;;;:::i;:::-;;:::i;35980:148::-;;;:::i;35329:87::-;35402:6;;-1:-1:-1;;;;;35402:6:0;35329:87;;21635:104;;;:::i;23219:295::-;;;;;;:::i;:::-;;:::i;24414:285::-;;;;;;:::i;:::-;;:::i;32754:679::-;;;;;;:::i;:::-;;:::i;23585:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23706:25:0;;;23682:4;23706:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23585:164;36283:244;;;;;;:::i;:::-;;:::i;37353:201::-;;;;;;:::i;:::-;;:::i;36676:26::-;;;;;;20534:292;20636:4;-1:-1:-1;;;;;;20660:40:0;;-1:-1:-1;;;20660:40:0;;:105;;-1:-1:-1;;;;;;;20717:48:0;;-1:-1:-1;;;20717:48:0;20660:105;:158;;;-1:-1:-1;;;;;;;;;;19156:40:0;;;20782:36;20653:165;20534:292;-1:-1:-1;;20534:292:0:o;21466:100::-;21520:13;21553:5;21546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21466:100;:::o;22926:221::-;23002:7;23030:16;23038:7;23030;:16::i;:::-;23022:73;;;;-1:-1:-1;;;23022:73:0;;12007:2:1;23022:73:0;;;11989:21:1;12046:2;12026:18;;;12019:30;12085:34;12065:18;;;12058:62;-1:-1:-1;;;12136:18:1;;;12129:42;12188:19;;23022:73:0;;;;;;;;;-1:-1:-1;23115:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23115:24:0;;22926:221::o;22463:397::-;22544:13;22560:23;22575:7;22560:14;:23::i;:::-;22544:39;;22608:5;-1:-1:-1;;;;;22602:11:0;:2;-1:-1:-1;;;;;22602:11:0;;;22594:57;;;;-1:-1:-1;;;22594:57:0;;13607:2:1;22594:57:0;;;13589:21:1;13646:2;13626:18;;;13619:30;13685:34;13665:18;;;13658:62;-1:-1:-1;;;13736:18:1;;;13729:31;13777:19;;22594:57:0;13579:223:1;22594:57:0;15945:10;-1:-1:-1;;;;;22672:21:0;;;;:62;;-1:-1:-1;22697:37:0;22714:5;15945:10;23585:164;:::i;22697:37::-;22664:154;;;;-1:-1:-1;;;22664:154:0;;9567:2:1;22664:154:0;;;9549:21:1;9606:2;9586:18;;;9579:30;9645:34;9625:18;;;9618:62;9716:26;9696:18;;;9689:54;9760:19;;22664:154:0;9539:246:1;22664:154:0;22831:21;22840:2;22844:7;22831:8;:21::i;:::-;22533:327;22463:397;;:::o;37212:133::-;35402:6;;-1:-1:-1;;;;;35402:6:0;15945:10;35549:23;35541:68;;;;-1:-1:-1;;;35541:68:0;;;;;;;:::i;:::-;37304:33:::1;37317:8;37327:9;37304:12;:33::i;:::-;37212:133:::0;;:::o;23816:305::-;23977:41;15945:10;24010:7;23977:18;:41::i;:::-;23969:103;;;;-1:-1:-1;;;23969:103:0;;;;;;;:::i;:::-;24085:28;24095:4;24101:2;24105:7;24085:9;:28::i;24192:151::-;24296:39;24313:4;24319:2;24323:7;24296:39;;;;;;;;;;;;:16;:39::i;37108:96::-;35402:6;;-1:-1:-1;;;;;35402:6:0;15945:10;35549:23;35541:68;;;;-1:-1:-1;;;35541:68:0;;;;;;;:::i;:::-;37179:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;21160:239::-:0;21232:7;21268:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21268:16:0;21303:19;21295:73;;;;-1:-1:-1;;;21295:73:0;;10403:2:1;21295:73:0;;;10385:21:1;10442:2;10422:18;;;10415:30;10481:34;10461:18;;;10454:62;-1:-1:-1;;;10532:18:1;;;10525:39;10581:19;;21295:73:0;10375:231:1;36709:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20890:208::-;20962:7;-1:-1:-1;;;;;20990:19:0;;20982:74;;;;-1:-1:-1;;;20982:74:0;;9992:2:1;20982:74:0;;;9974:21:1;10031:2;10011:18;;;10004:30;10070:34;10050:18;;;10043:62;-1:-1:-1;;;10121:18:1;;;10114:40;10171:19;;20982:74:0;9964:232:1;20982:74:0;-1:-1:-1;;;;;;21074:16:0;;;;;:9;:16;;;;;;;20890:208::o;35980:148::-;35402:6;;-1:-1:-1;;;;;35402:6:0;15945:10;35549:23;35541:68;;;;-1:-1:-1;;;35541:68:0;;;;;;;:::i;:::-;36071:6:::1;::::0;36050:40:::1;::::0;36087:1:::1;::::0;-1:-1:-1;;;;;36071:6:0::1;::::0;36050:40:::1;::::0;36087:1;;36050:40:::1;36101:6;:19:::0;;-1:-1:-1;;;;;;36101:19:0::1;::::0;;35980:148::o;21635:104::-;21691:13;21724:7;21717:14;;;;;:::i;23219:295::-;-1:-1:-1;;;;;23322:24:0;;15945:10;23322:24;;23314:62;;;;-1:-1:-1;;;23314:62:0;;8800:2:1;23314:62:0;;;8782:21:1;8839:2;8819:18;;;8812:30;8878:27;8858:18;;;8851:55;8923:18;;23314:62:0;8772:175:1;23314:62:0;15945:10;23389:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23389:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23389:53:0;;;;;;;;;;23458:48;;6734:41:1;;;23389:42:0;;15945:10;23458:48;;6707:18:1;23458:48:0;;;;;;;23219:295;;:::o;24414:285::-;24546:41;15945:10;24579:7;24546:18;:41::i;:::-;24538:103;;;;-1:-1:-1;;;24538:103:0;;;;;;;:::i;:::-;24652:39;24666:4;24672:2;24676:7;24685:5;24652:13;:39::i;:::-;24414:285;;;;:::o;32754:679::-;32827:13;32861:16;32869:7;32861;:16::i;:::-;32853:78;;;;-1:-1:-1;;;32853:78:0;;11589:2:1;32853:78:0;;;11571:21:1;11628:2;11608:18;;;11601:30;11667:34;11647:18;;;11640:62;-1:-1:-1;;;11718:18:1;;;11711:47;11775:19;;32853:78:0;11561:239:1;32853:78:0;32944:23;32970:19;;;:10;:19;;;;;32944:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000:18;33021:10;:8;:10::i;:::-;33000:31;;33113:4;33107:18;33129:1;33107:23;33103:72;;;-1:-1:-1;33154:9:0;32754:679;-1:-1:-1;;32754:679:0:o;33103:72::-;33279:23;;:27;33275:108;;33354:4;33360:9;33337:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33323:48;;;;32754:679;;;:::o;33275:108::-;33402:23;33417:7;33402:14;:23::i;:::-;33395:30;32754:679;-1:-1:-1;;;;32754:679:0:o;36283:244::-;35402:6;;-1:-1:-1;;;;;35402:6:0;15945:10;35549:23;35541:68;;;;-1:-1:-1;;;35541:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36372:22:0;::::1;36364:73;;;::::0;-1:-1:-1;;;36364:73:0;;7631:2:1;36364:73:0::1;::::0;::::1;7613:21:1::0;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:36;7806:19;;36364:73:0::1;7603:228:1::0;36364:73:0::1;36474:6;::::0;36453:38:::1;::::0;-1:-1:-1;;;;;36453:38:0;;::::1;::::0;36474:6:::1;::::0;36453:38:::1;::::0;36474:6:::1;::::0;36453:38:::1;36502:6;:17:::0;;-1:-1:-1;;;;;;36502:17:0::1;-1:-1:-1::0;;;;;36502:17:0;;;::::1;::::0;;;::::1;::::0;;36283:244::o;37353:201::-;35402:6;;-1:-1:-1;;;;;35402:6:0;15945:10;35549:23;35541:68;;;;-1:-1:-1;;;35541:68:0;;;;;;;:::i;:::-;37439:9:::1;37435:112;37452:21:::0;;::::1;37435:112;;;37496:39;37502:10;;37513:1;37502:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;37521:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;37517:17:0::1;::::0;:1:::1;:17;:::i;:::-;37496:5;:39::i;:::-;37475:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37435:112;;26166:127:::0;26231:4;26255:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26255:16:0;:30;;;26166:127::o;30043:174::-;30118:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30118:29:0;-1:-1:-1;;;;;30118:29:0;;;;;;;;:24;;30172:23;30118:24;30172:14;:23::i;:::-;-1:-1:-1;;;;;30163:46:0;;;;;;;;;;;30043:174;;:::o;33589:217::-;33689:16;33697:7;33689;:16::i;:::-;33681:75;;;;-1:-1:-1;;;33681:75:0;;10813:2:1;33681:75:0;;;10795:21:1;10852:2;10832:18;;;10825:30;10891:34;10871:18;;;10864:62;-1:-1:-1;;;10942:18:1;;;10935:44;10996:19;;33681:75:0;10785:236:1;33681:75:0;33767:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;26460:348::-;26553:4;26578:16;26586:7;26578;:16::i;:::-;26570:73;;;;-1:-1:-1;;;26570:73:0;;9154:2:1;26570:73:0;;;9136:21:1;9193:2;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;-1:-1:-1;;;9283:18:1;;;9276:42;9335:19;;26570:73:0;9126:234:1;26570:73:0;26654:13;26670:23;26685:7;26670:14;:23::i;:::-;26654:39;;26723:5;-1:-1:-1;;;;;26712:16:0;:7;-1:-1:-1;;;;;26712:16:0;;:51;;;;26756:7;-1:-1:-1;;;;;26732:31:0;:20;26744:7;26732:11;:20::i;:::-;-1:-1:-1;;;;;26732:31:0;;26712:51;:87;;;-1:-1:-1;;;;;;23706:25:0;;;23682:4;23706:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26767:32;23585:164;29381:544;29506:4;-1:-1:-1;;;;;29479:31:0;:23;29494:7;29479:14;:23::i;:::-;-1:-1:-1;;;;;29479:31:0;;29471:85;;;;-1:-1:-1;;;29471:85:0;;12781:2:1;29471:85:0;;;12763:21:1;12820:2;12800:18;;;12793:30;12859:34;12839:18;;;12832:62;-1:-1:-1;;;12910:18:1;;;12903:39;12959:19;;29471:85:0;12753:231:1;29471:85:0;-1:-1:-1;;;;;29575:16:0;;29567:65;;;;-1:-1:-1;;;29567:65:0;;8395:2:1;29567:65:0;;;8377:21:1;8434:2;8414:18;;;8407:30;8473:34;8453:18;;;8446:62;-1:-1:-1;;;8524:18:1;;;8517:34;8568:19;;29567:65:0;8367:226:1;29567:65:0;29749:29;29766:1;29770:7;29749:8;:29::i;:::-;-1:-1:-1;;;;;29791:15:0;;;;;;:9;:15;;;;;:20;;29810:1;;29791:15;:20;;29810:1;;29791:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29822:13:0;;;;;;:9;:13;;;;;:18;;29839:1;;29822:13;:18;;29839:1;;29822:18;:::i;:::-;;;;-1:-1:-1;;29851:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29851:21:0;-1:-1:-1;;;;;29851:21:0;;;;;;;;;29890:27;;29851:16;;29890:27;;;;;;;29381:544;;;:::o;25581:272::-;25695:28;25705:4;25711:2;25715:7;25695:9;:28::i;:::-;25742:48;25765:4;25771:2;25775:7;25784:5;25742:22;:48::i;:::-;25734:111;;;;-1:-1:-1;;;25734:111:0;;;;;;;:::i;36993:107::-;37053:13;37085:7;37078:14;;;;;:::i;21810:360::-;21883:13;21917:16;21925:7;21917;:16::i;:::-;21909:76;;;;-1:-1:-1;;;21909:76:0;;13191:2:1;21909:76:0;;;13173:21:1;13230:2;13210:18;;;13203:30;13269:34;13249:18;;;13242:62;-1:-1:-1;;;13320:18:1;;;13313:45;13375:19;;21909:76:0;13163:237:1;21909:76:0;21998:21;22022:10;:8;:10::i;:::-;21998:34;;22074:1;22056:7;22050:21;:25;:112;;;;;;;;;;;;;;;;;22115:7;22124:18;:7;:16;:18::i;:::-;22098:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22050:112;22043:119;21810:360;-1:-1:-1;;;21810:360:0:o;28073:382::-;-1:-1:-1;;;;;28153:16:0;;28145:61;;;;-1:-1:-1;;;28145:61:0;;11228:2:1;28145:61:0;;;11210:21:1;;;11247:18;;;11240:30;11306:34;11286:18;;;11279:62;11358:18;;28145:61:0;11200:182:1;28145:61:0;28226:16;28234:7;28226;:16::i;:::-;28225:17;28217:58;;;;-1:-1:-1;;;28217:58:0;;8038:2:1;28217:58:0;;;8020:21:1;8077:2;8057:18;;;8050:30;8116;8096:18;;;8089:58;8164:18;;28217:58:0;8010:178:1;28217:58:0;-1:-1:-1;;;;;28346:13:0;;;;;;:9;:13;;;;;:18;;28363:1;;28346:13;:18;;28363:1;;28346:18;:::i;:::-;;;;-1:-1:-1;;28375:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28375:21:0;-1:-1:-1;;;;;28375:21:0;;;;;;;;28414:33;;28375:16;;;28414:33;;28375:16;;28414:33;28073:382;;:::o;30782:843::-;30903:4;-1:-1:-1;;;;;30929:13:0;;8362:20;8401:8;30925:693;;30965:72;;-1:-1:-1;;;30965:72:0;;-1:-1:-1;;;;;30965:36:0;;;;;:72;;15945:10;;31016:4;;31022:7;;31031:5;;30965:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30965:72:0;;;;;;;;-1:-1:-1;;30965:72:0;;;;;;;;;;;;:::i;:::-;;;30961:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31211:13:0;;31207:341;;31254:60;;-1:-1:-1;;;31254:60:0;;;;;;;:::i;31207:341::-;31498:6;31492:13;31483:6;31479:2;31475:15;31468:38;30961:602;-1:-1:-1;;;;;;31088:55:0;-1:-1:-1;;;31088:55:0;;-1:-1:-1;31081:62:0;;30925:693;-1:-1:-1;31602:4:0;30782:843;;;;;;:::o;16507:723::-;16563:13;16784:10;16780:53;;-1:-1:-1;;16811:10:0;;;;;;;;;;;;-1:-1:-1;;;16811:10:0;;;;;16507:723::o;16780:53::-;16858:5;16843:12;16899:78;16906:9;;16899:78;;16932:8;;;;:::i;:::-;;-1:-1:-1;16955:10:0;;-1:-1:-1;16963:2:0;16955:10;;:::i;:::-;;;16899:78;;;16987:19;17019:6;17009:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17009:17:0;;16987:39;;17037:154;17044:10;;17037:154;;17071:11;17081:1;17071:11;;:::i;:::-;;-1:-1:-1;17140:10:0;17148:2;17140:5;:10;:::i;:::-;17127:24;;:2;:24;:::i;:::-;17114:39;;17097:6;17104;17097:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17097:56:0;;;;;;;;-1:-1:-1;17168:11:0;17177:2;17168:11;;:::i;:::-;;;17037:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:2;;942:1;939;932:12;891:2;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:2;;;1182:1;1179;1172:12;1134:2;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:2;;;1390:1;1387;1380:12;1342:2;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1332:173;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:2;;;1672:1;1669;1662:12;1624:2;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1614:224;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:2;;;2032:1;2029;2022:12;1983:2;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:2;;;2302:1;2299;2292:12;2256:2;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:2:1;;2407:1;2404;2397:12;2356:2;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1973:536;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:2;;;2656:1;2653;2646:12;2608:2;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:2;;2827:1;2824;2817:12;2771:2;2850:5;2840:15;;;2598:263;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:2;;;3011:1;3008;3001:12;2963:2;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2953:167:1:o;3125:615::-;3211:6;3219;3272:2;3260:9;3251:7;3247:23;3243:32;3240:2;;;3288:1;3285;3278:12;3240:2;3328:9;3315:23;3357:18;3398:2;3390:6;3387:14;3384:2;;;3414:1;3411;3404:12;3384:2;3452:6;3441:9;3437:22;3427:32;;3497:7;3490:4;3486:2;3482:13;3478:27;3468:2;;3519:1;3516;3509:12;3468:2;3559;3546:16;3585:2;3577:6;3574:14;3571:2;;;3601:1;3598;3591:12;3571:2;3654:7;3649:2;3639:6;3636:1;3632:14;3628:2;3624:23;3620:32;3617:45;3614:2;;;3675:1;3672;3665:12;3614:2;3706;3698:11;;;;;3728:6;;-1:-1:-1;3230:510:1;;-1:-1:-1;;;;3230:510:1:o;3745:245::-;3803:6;3856:2;3844:9;3835:7;3831:23;3827:32;3824:2;;;3872:1;3869;3862:12;3824:2;3911:9;3898:23;3930:30;3954:5;3930:30;:::i;3995:249::-;4064:6;4117:2;4105:9;4096:7;4092:23;4088:32;4085:2;;;4133:1;4130;4123:12;4085:2;4165:9;4159:16;4184:30;4208:5;4184:30;:::i;4249:322::-;4318:6;4371:2;4359:9;4350:7;4346:23;4342:32;4339:2;;;4387:1;4384;4377:12;4339:2;4427:9;4414:23;4460:18;4452:6;4449:30;4446:2;;;4492:1;4489;4482:12;4446:2;4515:50;4557:7;4548:6;4537:9;4533:22;4515:50;:::i;4576:180::-;4635:6;4688:2;4676:9;4667:7;4663:23;4659:32;4656:2;;;4704:1;4701;4694:12;4656:2;-1:-1:-1;4727:23:1;;4646:110;-1:-1:-1;4646:110:1:o;4761:390::-;4839:6;4847;4900:2;4888:9;4879:7;4875:23;4871:32;4868:2;;;4916:1;4913;4906:12;4868:2;4952:9;4939:23;4929:33;;5013:2;5002:9;4998:18;4985:32;5040:18;5032:6;5029:30;5026:2;;;5072:1;5069;5062:12;5026:2;5095:50;5137:7;5128:6;5117:9;5113:22;5095:50;:::i;:::-;5085:60;;;4858:293;;;;;:::o;5156:257::-;5197:3;5235:5;5229:12;5262:6;5257:3;5250:19;5278:63;5334:6;5327:4;5322:3;5318:14;5311:4;5304:5;5300:16;5278:63;:::i;:::-;5395:2;5374:15;-1:-1:-1;;5370:29:1;5361:39;;;;5402:4;5357:50;;5205:208;-1:-1:-1;;5205:208:1:o;5418:470::-;5597:3;5635:6;5629:13;5651:53;5697:6;5692:3;5685:4;5677:6;5673:17;5651:53;:::i;:::-;5767:13;;5726:16;;;;5789:57;5767:13;5726:16;5823:4;5811:17;;5789:57;:::i;:::-;5862:20;;5605:283;-1:-1:-1;;;;5605:283:1:o;6101:488::-;-1:-1:-1;;;;;6370:15:1;;;6352:34;;6422:15;;6417:2;6402:18;;6395:43;6469:2;6454:18;;6447:34;;;6517:3;6512:2;6497:18;;6490:31;;;6295:4;;6538:45;;6563:19;;6555:6;6538:45;:::i;:::-;6530:53;6304:285;-1:-1:-1;;;;;;6304:285:1:o;6786:219::-;6935:2;6924:9;6917:21;6898:4;6955:44;6995:2;6984:9;6980:18;6972:6;6955:44;:::i;7010:414::-;7212:2;7194:21;;;7251:2;7231:18;;;7224:30;7290:34;7285:2;7270:18;;7263:62;-1:-1:-1;;;7356:2:1;7341:18;;7334:48;7414:3;7399:19;;7184:240::o;12218:356::-;12420:2;12402:21;;;12439:18;;;12432:30;12498:34;12493:2;12478:18;;12471:62;12565:2;12550:18;;12392:182::o;13807:413::-;14009:2;13991:21;;;14048:2;14028:18;;;14021:30;14087:34;14082:2;14067:18;;14060:62;-1:-1:-1;;;14153:2:1;14138:18;;14131:47;14210:3;14195:19;;13981:239::o;14407:128::-;14447:3;14478:1;14474:6;14471:1;14468:13;14465:2;;;14484:18;;:::i;:::-;-1:-1:-1;14520:9:1;;14455:80::o;14540:120::-;14580:1;14606;14596:2;;14611:18;;:::i;:::-;-1:-1:-1;14645:9:1;;14586:74::o;14665:125::-;14705:4;14733:1;14730;14727:8;14724:2;;;14738:18;;:::i;:::-;-1:-1:-1;14775:9:1;;14714:76::o;14795:258::-;14867:1;14877:113;14891:6;14888:1;14885:13;14877:113;;;14967:11;;;14961:18;14948:11;;;14941:39;14913:2;14906:10;14877:113;;;15008:6;15005:1;15002:13;14999:2;;;-1:-1:-1;;15043:1:1;15025:16;;15018:27;14848:205::o;15058:380::-;15137:1;15133:12;;;;15180;;;15201:2;;15255:4;15247:6;15243:17;15233:27;;15201:2;15308;15300:6;15297:14;15277:18;15274:38;15271:2;;;15354:10;15349:3;15345:20;15342:1;15335:31;15389:4;15386:1;15379:15;15417:4;15414:1;15407:15;15271:2;;15113:325;;;:::o;15443:135::-;15482:3;-1:-1:-1;;15503:17:1;;15500:2;;;15523:18;;:::i;:::-;-1:-1:-1;15570:1:1;15559:13;;15490:88::o;15583:112::-;15615:1;15641;15631:2;;15646:18;;:::i;:::-;-1:-1:-1;15680:9:1;;15621:74::o;15700:127::-;15761:10;15756:3;15752:20;15749:1;15742:31;15792:4;15789:1;15782:15;15816:4;15813:1;15806:15;15832:127;15893:10;15888:3;15884:20;15881:1;15874:31;15924:4;15921:1;15914:15;15948:4;15945:1;15938:15;15964:127;16025:10;16020:3;16016:20;16013:1;16006:31;16056:4;16053:1;16046:15;16080:4;16077:1;16070:15;16096:127;16157:10;16152:3;16148:20;16145:1;16138:31;16188:4;16185:1;16178:15;16212:4;16209:1;16202:15;16228:131;-1:-1:-1;;;;;;16302:32:1;;16292:43;;16282:2;;16349:1;16346;16339:12;16282:2;16272:87;:::o

Swarm Source

ipfs://bb4036d7ee03d37abce43358360a1ada9765f9ba83c310fdc34db6abfec3616d
Loading...
Loading
Loading...
Loading
[ 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.