ETH Price: $2,626.81 (+1.42%)

Token

MIRA Society (MIRA)
 

Overview

Max Total Supply

4,000 MIRA

Holders

376

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
net-runner.eth
Balance
1 MIRA
0x388641af62e4da890f5b4e40bf3c270d505f1572
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MIRA_Society

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 12: XrootDotDev.sol
pragma solidity 0.8.13;
// SPDX-License-Identifier: MIT
import "./ERC721A.sol";
import "./Ownable.sol";

contract MIRA_Society is ERC721A, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public publicCost = 0.025 ether;
    string public UnrevealedURI;
    bool public revealed = false;
    bool public paused = true;
    uint256 public maxPublic = 10;
    uint256 public maxSupply = 4000;

    constructor(string memory _initBaseURI, string memory _UnrevealedURI)
        ERC721A("MIRA Society", "MIRA")
    {
        setBaseURI(_initBaseURI);
        setUnrevealedUri(_UnrevealedURI);
    }

    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(!paused, "The contract is paused!");
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(supply + quantity <= maxSupply, "Max Supply Reached");

        if (msg.sender != owner()) {
            require(
                quantity <= maxPublic,
                "You're Not Allowed To Mint more than maxMint Amount"
            );
            require(msg.value >= publicCost * quantity, "Insufficient Funds");
        }
        _safeMint(msg.sender, quantity);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return UnrevealedURI;
        }

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

    function Set(uint256 _publicCost, uint256 _publicMax) public onlyOwner {
        publicCost = _publicCost;
        maxPublic = _publicMax;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setUnrevealedUri(string memory _UnrevealedUri) public onlyOwner {
        UnrevealedURI = _UnrevealedUri;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function withdraw() public onlyOwner {
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
    }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 12: Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

File 3 of 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(
                            address(0),
                            to,
                            updatedIndex,
                            _data
                        ),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 of 12: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 7 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 8 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 12: Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 11 of 12: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_UnrevealedURI","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":"uint256","name":"_publicCost","type":"uint256"},{"internalType":"uint256","name":"_publicMax","type":"uint256"}],"name":"Set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UnrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_UnrevealedUri","type":"string"}],"name":"setUnrevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916009919062000238565b506658d15e17628000600a908155600c805461ffff1916610100179055600d55610fa0600e553480156200005b57600080fd5b5060405162002705380380620027058339810160408190526200007e91620003ab565b604080518082018252600c81526b4d49524120536f636965747960a01b6020808301918252835180850190945260048452634d49524160e01b908401528151919291620000ce9160019162000238565b508051620000e490600290602084019062000238565b50505062000101620000fb6200011f60201b60201c565b62000123565b6200010c8262000175565b6200011781620001dd565b505062000451565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001c45760405162461bcd60e51b81526020600482018190526024820152600080516020620026e583398151915260448201526064015b60405180910390fd5b8051620001d990600890602084019062000238565b5050565b6007546001600160a01b03163314620002285760405162461bcd60e51b81526020600482018190526024820152600080516020620026e58339815191526044820152606401620001bb565b8051620001d990600b9060208401905b828054620002469062000415565b90600052602060002090601f0160209004810192826200026a5760008555620002b5565b82601f106200028557805160ff1916838001178555620002b5565b82800160010185558215620002b5579182015b82811115620002b557825182559160200191906001019062000298565b50620002c3929150620002c7565b5090565b5b80821115620002c35760008155600101620002c8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200030657600080fd5b81516001600160401b0380821115620003235762000323620002de565b604051601f8301601f19908116603f011681019082821181831017156200034e576200034e620002de565b816040528381526020925086838588010111156200036b57600080fd5b600091505b838210156200038f578582018301518183018401529082019062000370565b83821115620003a15760008385830101525b9695505050505050565b60008060408385031215620003bf57600080fd5b82516001600160401b0380821115620003d757600080fd5b620003e586838701620002f4565b93506020850151915080821115620003fc57600080fd5b506200040b85828601620002f4565b9150509250929050565b600181811c908216806200042a57607f821691505b6020821081036200044b57634e487b7160e01b600052602260045260246000fd5b50919050565b61228480620004616000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461058d578063da3ef23f146105a3578063e0a80853146105c3578063e985e9c5146105e3578063f2fde38b1461062c57600080fd5b8063a22cb46514610518578063b88d4fde14610538578063c668286214610558578063c87b56dd1461056d57600080fd5b80638693da20116100e75780638693da201461049c5780638da5cb5b146104b257806390fb5fb9146104d057806395d89b41146104f0578063a0712d681461050557600080fd5b80636c0360eb1461043c57806370a0823114610451578063715018a6146104715780637dc429751461048657600080fd5b80632f745c591161019b578063518302271161016a57806351830227146103a3578063545b620a146103bd57806355f804b3146103dd5780635c975abb146103fd5780636352211e1461041c57600080fd5b80632f745c591461032e5780633ccfd60b1461034e57806342842e0e146103635780634f6ccce71461038357600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad57806316c38b3c146102cf57806318160ddd146102ef57806323b872dd1461030e57600080fd5b806301ffc9a714610209578063059705231461023e57806306fdde0314610260578063081812fc14610275575b600080fd5b34801561021557600080fd5b50610229610224366004611c65565b61064c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611cda565b34801561026c57600080fd5b50610253610747565b34801561028157600080fd5b50610295610290366004611ced565b6107d9565b6040516001600160a01b039091168152602001610235565b3480156102b957600080fd5b506102cd6102c8366004611d22565b610869565b005b3480156102db57600080fd5b506102cd6102ea366004611d5c565b610980565b3480156102fb57600080fd5b506000545b604051908152602001610235565b34801561031a57600080fd5b506102cd610329366004611d77565b6109c4565b34801561033a57600080fd5b50610300610349366004611d22565b6109cf565b34801561035a57600080fd5b506102cd610b2a565b34801561036f57600080fd5b506102cd61037e366004611d77565b610bc8565b34801561038f57600080fd5b5061030061039e366004611ced565b610be3565b3480156103af57600080fd5b50600c546102299060ff1681565b3480156103c957600080fd5b506102cd6103d8366004611db3565b610c45565b3480156103e957600080fd5b506102cd6103f8366004611e61565b610c7a565b34801561040957600080fd5b50600c5461022990610100900460ff1681565b34801561042857600080fd5b50610295610437366004611ced565b610cbb565b34801561044857600080fd5b50610253610ccd565b34801561045d57600080fd5b5061030061046c366004611eaa565b610cda565b34801561047d57600080fd5b506102cd610d6b565b34801561049257600080fd5b50610300600d5481565b3480156104a857600080fd5b50610300600a5481565b3480156104be57600080fd5b506007546001600160a01b0316610295565b3480156104dc57600080fd5b506102cd6104eb366004611e61565b610da1565b3480156104fc57600080fd5b50610253610dde565b6102cd610513366004611ced565b610ded565b34801561052457600080fd5b506102cd610533366004611ec5565b610fce565b34801561054457600080fd5b506102cd610553366004611ef8565b611092565b34801561056457600080fd5b506102536110cb565b34801561057957600080fd5b50610253610588366004611ced565b6110d8565b34801561059957600080fd5b50610300600e5481565b3480156105af57600080fd5b506102cd6105be366004611e61565b611249565b3480156105cf57600080fd5b506102cd6105de366004611d5c565b611286565b3480156105ef57600080fd5b506102296105fe366004611f74565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063857600080fd5b506102cd610647366004611eaa565b6112c3565b60006001600160e01b031982166380ac58cd60e01b148061067d57506001600160e01b03198216635b5e139f60e01b145b8061069857506001600160e01b0319821663780e9d6360e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b600b80546106c690611f9e565b80601f01602080910402602001604051908101604052809291908181526020018280546106f290611f9e565b801561073f5780601f106107145761010080835404028352916020019161073f565b820191906000526020600020905b81548152906001019060200180831161072257829003601f168201915b505050505081565b60606001805461075690611f9e565b80601f016020809104026020016040519081016040528092919081815260200182805461078290611f9e565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e6826000541190565b61084d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061087482610cbb565b9050806001600160a01b0316836001600160a01b0316036108e25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610844565b336001600160a01b03821614806108fe57506108fe81336105fe565b6109705760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610844565b61097b83838361135b565b505050565b6007546001600160a01b031633146109aa5760405162461bcd60e51b815260040161084490611fd8565b600c80549115156101000261ff0019909216919091179055565b61097b8383836113b7565b60006109da83610cda565b8210610a335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610844565b600080549080805b83811015610aca576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a8e57805192505b876001600160a01b0316836001600160a01b031603610ac157868403610aba575093506106b392505050565b6001909301925b50600101610a3b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610844565b6007546001600160a01b03163314610b545760405162461bcd60e51b815260040161084490611fd8565b6000610b686007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bb2576040519150601f19603f3d011682016040523d82523d6000602084013e610bb7565b606091505b5050905080610bc557600080fd5b50565b61097b83838360405180602001604052806000815250611092565b600080548210610c415760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610844565b5090565b6007546001600160a01b03163314610c6f5760405162461bcd60e51b815260040161084490611fd8565b600a91909155600d55565b6007546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084490611fd8565b8051610cb7906008906020840190611bbf565b5050565b6000610cc68261169c565b5192915050565b600880546106c690611f9e565b60006001600160a01b038216610d465760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610844565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d955760405162461bcd60e51b815260040161084490611fd8565b610d9f6000611773565b565b6007546001600160a01b03163314610dcb5760405162461bcd60e51b815260040161084490611fd8565b8051610cb790600b906020840190611bbf565b60606002805461075690611f9e565b600054600c54610100900460ff1615610e485760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610844565b60008211610ea25760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610844565b600e54610eaf8383612023565b1115610ef25760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610844565b6007546001600160a01b03163314610fc457600d54821115610f725760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610844565b81600a54610f80919061203b565b341015610fc45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610844565b610cb733836117c5565b336001600160a01b038316036110265760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610844565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61109d8484846113b7565b6110a9848484846117df565b6110c55760405162461bcd60e51b81526004016108449061205a565b50505050565b600980546106c690611f9e565b60606110e5826000541190565b6111495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610844565b600c5460ff1615156000036111ea57600b805461116590611f9e565b80601f016020809104026020016040519081016040528092919081815260200182805461119190611f9e565b80156111de5780601f106111b3576101008083540402835291602001916111de565b820191906000526020600020905b8154815290600101906020018083116111c157829003601f168201915b50505050509050919050565b60006111f46118e1565b905060008151116112145760405180602001604052806000815250611242565b8061121e846118f0565b6009604051602001611232939291906120ad565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112735760405162461bcd60e51b815260040161084490611fd8565b8051610cb7906009906020840190611bbf565b6007546001600160a01b031633146112b05760405162461bcd60e51b815260040161084490611fd8565b600c805460ff1916911515919091179055565b6007546001600160a01b031633146112ed5760405162461bcd60e51b815260040161084490611fd8565b6001600160a01b0381166113525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b610bc581611773565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113c28261169c565b80519091506000906001600160a01b0316336001600160a01b031614806113f95750336113ee846107d9565b6001600160a01b0316145b8061140b5750815161140b90336105fe565b9050806114755760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610844565b846001600160a01b031682600001516001600160a01b0316146114e95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610844565b6001600160a01b03841661154d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610844565b61155d600084846000015161135b565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661165257611605816000541190565b15611652578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526116bb826000541190565b61171a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610844565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611769579392505050565b506000190161171c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb78282604051806020016040528060008152506119f1565b60006001600160a01b0384163b156118d557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611823903390899088908890600401612170565b6020604051808303816000875af192505050801561185e575060408051601f3d908101601f1916820190925261185b918101906121ad565b60015b6118bb573d80801561188c576040519150601f19603f3d011682016040523d82523d6000602084013e611891565b606091505b5080516000036118b35760405162461bcd60e51b81526004016108449061205a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118d9565b5060015b949350505050565b60606008805461075690611f9e565b6060816000036119175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611941578061192b816121ca565b915061193a9050600a836121f9565b915061191b565b60008167ffffffffffffffff81111561195c5761195c611dd5565b6040519080825280601f01601f191660200182016040528015611986576020820181803683370190505b5090505b84156118d95761199b60018361220d565b91506119a8600a86612224565b6119b3906030612023565b60f81b8183815181106119c8576119c8612238565b60200101906001600160f81b031916908160001a9053506119ea600a866121f9565b945061198a565b61097b83838360016000546001600160a01b038516611a5c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610844565b83600003611abd5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610844565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bb65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611baa57611b8e60008884886117df565b611baa5760405162461bcd60e51b81526004016108449061205a565b60019182019101611b3b565b50600055611695565b828054611bcb90611f9e565b90600052602060002090601f016020900481019282611bed5760008555611c33565b82601f10611c0657805160ff1916838001178555611c33565b82800160010185558215611c33579182015b82811115611c33578251825591602001919060010190611c18565b50610c419291505b80821115610c415760008155600101611c3b565b6001600160e01b031981168114610bc557600080fd5b600060208284031215611c7757600080fd5b813561124281611c4f565b60005b83811015611c9d578181015183820152602001611c85565b838111156110c55750506000910152565b60008151808452611cc6816020860160208601611c82565b601f01601f19169290920160200192915050565b6020815260006112426020830184611cae565b600060208284031215611cff57600080fd5b5035919050565b80356001600160a01b0381168114611d1d57600080fd5b919050565b60008060408385031215611d3557600080fd5b611d3e83611d06565b946020939093013593505050565b80358015158114611d1d57600080fd5b600060208284031215611d6e57600080fd5b61124282611d4c565b600080600060608486031215611d8c57600080fd5b611d9584611d06565b9250611da360208501611d06565b9150604084013590509250925092565b60008060408385031215611dc657600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e0657611e06611dd5565b604051601f8501601f19908116603f01168101908282118183101715611e2e57611e2e611dd5565b81604052809350858152868686011115611e4757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e7357600080fd5b813567ffffffffffffffff811115611e8a57600080fd5b8201601f81018413611e9b57600080fd5b6118d984823560208401611deb565b600060208284031215611ebc57600080fd5b61124282611d06565b60008060408385031215611ed857600080fd5b611ee183611d06565b9150611eef60208401611d4c565b90509250929050565b60008060008060808587031215611f0e57600080fd5b611f1785611d06565b9350611f2560208601611d06565b925060408501359150606085013567ffffffffffffffff811115611f4857600080fd5b8501601f81018713611f5957600080fd5b611f6887823560208401611deb565b91505092959194509250565b60008060408385031215611f8757600080fd5b611f9083611d06565b9150611eef60208401611d06565b600181811c90821680611fb257607f821691505b602082108103611fd257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120365761203661200d565b500190565b60008160001904831182151516156120555761205561200d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206120c08285838a01611c82565b8551918401916120d38184848a01611c82565b8554920191600090600181811c90808316806120f057607f831692505b858310810361210d57634e487b7160e01b85526022600452602485fd5b80801561212157600181146121325761215f565b60ff1985168852838801955061215f565b60008b81526020902060005b858110156121575781548a82015290840190880161213e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a390830184611cae565b9695505050505050565b6000602082840312156121bf57600080fd5b815161124281611c4f565b6000600182016121dc576121dc61200d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612208576122086121e3565b500490565b60008282101561221f5761221f61200d565b500390565b600082612233576122336121e3565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220292538fd66868d9121294ea5ec9a037e57418a681a46c15bfb90fdcd0d42885964736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000469706673000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d57616146516e6b65754765515a47377633474635575a3567446f69594c385078777057376d725237555a44652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461058d578063da3ef23f146105a3578063e0a80853146105c3578063e985e9c5146105e3578063f2fde38b1461062c57600080fd5b8063a22cb46514610518578063b88d4fde14610538578063c668286214610558578063c87b56dd1461056d57600080fd5b80638693da20116100e75780638693da201461049c5780638da5cb5b146104b257806390fb5fb9146104d057806395d89b41146104f0578063a0712d681461050557600080fd5b80636c0360eb1461043c57806370a0823114610451578063715018a6146104715780637dc429751461048657600080fd5b80632f745c591161019b578063518302271161016a57806351830227146103a3578063545b620a146103bd57806355f804b3146103dd5780635c975abb146103fd5780636352211e1461041c57600080fd5b80632f745c591461032e5780633ccfd60b1461034e57806342842e0e146103635780634f6ccce71461038357600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad57806316c38b3c146102cf57806318160ddd146102ef57806323b872dd1461030e57600080fd5b806301ffc9a714610209578063059705231461023e57806306fdde0314610260578063081812fc14610275575b600080fd5b34801561021557600080fd5b50610229610224366004611c65565b61064c565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611cda565b34801561026c57600080fd5b50610253610747565b34801561028157600080fd5b50610295610290366004611ced565b6107d9565b6040516001600160a01b039091168152602001610235565b3480156102b957600080fd5b506102cd6102c8366004611d22565b610869565b005b3480156102db57600080fd5b506102cd6102ea366004611d5c565b610980565b3480156102fb57600080fd5b506000545b604051908152602001610235565b34801561031a57600080fd5b506102cd610329366004611d77565b6109c4565b34801561033a57600080fd5b50610300610349366004611d22565b6109cf565b34801561035a57600080fd5b506102cd610b2a565b34801561036f57600080fd5b506102cd61037e366004611d77565b610bc8565b34801561038f57600080fd5b5061030061039e366004611ced565b610be3565b3480156103af57600080fd5b50600c546102299060ff1681565b3480156103c957600080fd5b506102cd6103d8366004611db3565b610c45565b3480156103e957600080fd5b506102cd6103f8366004611e61565b610c7a565b34801561040957600080fd5b50600c5461022990610100900460ff1681565b34801561042857600080fd5b50610295610437366004611ced565b610cbb565b34801561044857600080fd5b50610253610ccd565b34801561045d57600080fd5b5061030061046c366004611eaa565b610cda565b34801561047d57600080fd5b506102cd610d6b565b34801561049257600080fd5b50610300600d5481565b3480156104a857600080fd5b50610300600a5481565b3480156104be57600080fd5b506007546001600160a01b0316610295565b3480156104dc57600080fd5b506102cd6104eb366004611e61565b610da1565b3480156104fc57600080fd5b50610253610dde565b6102cd610513366004611ced565b610ded565b34801561052457600080fd5b506102cd610533366004611ec5565b610fce565b34801561054457600080fd5b506102cd610553366004611ef8565b611092565b34801561056457600080fd5b506102536110cb565b34801561057957600080fd5b50610253610588366004611ced565b6110d8565b34801561059957600080fd5b50610300600e5481565b3480156105af57600080fd5b506102cd6105be366004611e61565b611249565b3480156105cf57600080fd5b506102cd6105de366004611d5c565b611286565b3480156105ef57600080fd5b506102296105fe366004611f74565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063857600080fd5b506102cd610647366004611eaa565b6112c3565b60006001600160e01b031982166380ac58cd60e01b148061067d57506001600160e01b03198216635b5e139f60e01b145b8061069857506001600160e01b0319821663780e9d6360e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b600b80546106c690611f9e565b80601f01602080910402602001604051908101604052809291908181526020018280546106f290611f9e565b801561073f5780601f106107145761010080835404028352916020019161073f565b820191906000526020600020905b81548152906001019060200180831161072257829003601f168201915b505050505081565b60606001805461075690611f9e565b80601f016020809104026020016040519081016040528092919081815260200182805461078290611f9e565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e6826000541190565b61084d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061087482610cbb565b9050806001600160a01b0316836001600160a01b0316036108e25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610844565b336001600160a01b03821614806108fe57506108fe81336105fe565b6109705760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610844565b61097b83838361135b565b505050565b6007546001600160a01b031633146109aa5760405162461bcd60e51b815260040161084490611fd8565b600c80549115156101000261ff0019909216919091179055565b61097b8383836113b7565b60006109da83610cda565b8210610a335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610844565b600080549080805b83811015610aca576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a8e57805192505b876001600160a01b0316836001600160a01b031603610ac157868403610aba575093506106b392505050565b6001909301925b50600101610a3b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610844565b6007546001600160a01b03163314610b545760405162461bcd60e51b815260040161084490611fd8565b6000610b686007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bb2576040519150601f19603f3d011682016040523d82523d6000602084013e610bb7565b606091505b5050905080610bc557600080fd5b50565b61097b83838360405180602001604052806000815250611092565b600080548210610c415760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610844565b5090565b6007546001600160a01b03163314610c6f5760405162461bcd60e51b815260040161084490611fd8565b600a91909155600d55565b6007546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084490611fd8565b8051610cb7906008906020840190611bbf565b5050565b6000610cc68261169c565b5192915050565b600880546106c690611f9e565b60006001600160a01b038216610d465760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610844565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d955760405162461bcd60e51b815260040161084490611fd8565b610d9f6000611773565b565b6007546001600160a01b03163314610dcb5760405162461bcd60e51b815260040161084490611fd8565b8051610cb790600b906020840190611bbf565b60606002805461075690611f9e565b600054600c54610100900460ff1615610e485760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610844565b60008211610ea25760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610844565b600e54610eaf8383612023565b1115610ef25760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610844565b6007546001600160a01b03163314610fc457600d54821115610f725760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610844565b81600a54610f80919061203b565b341015610fc45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610844565b610cb733836117c5565b336001600160a01b038316036110265760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610844565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61109d8484846113b7565b6110a9848484846117df565b6110c55760405162461bcd60e51b81526004016108449061205a565b50505050565b600980546106c690611f9e565b60606110e5826000541190565b6111495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610844565b600c5460ff1615156000036111ea57600b805461116590611f9e565b80601f016020809104026020016040519081016040528092919081815260200182805461119190611f9e565b80156111de5780601f106111b3576101008083540402835291602001916111de565b820191906000526020600020905b8154815290600101906020018083116111c157829003601f168201915b50505050509050919050565b60006111f46118e1565b905060008151116112145760405180602001604052806000815250611242565b8061121e846118f0565b6009604051602001611232939291906120ad565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146112735760405162461bcd60e51b815260040161084490611fd8565b8051610cb7906009906020840190611bbf565b6007546001600160a01b031633146112b05760405162461bcd60e51b815260040161084490611fd8565b600c805460ff1916911515919091179055565b6007546001600160a01b031633146112ed5760405162461bcd60e51b815260040161084490611fd8565b6001600160a01b0381166113525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b610bc581611773565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113c28261169c565b80519091506000906001600160a01b0316336001600160a01b031614806113f95750336113ee846107d9565b6001600160a01b0316145b8061140b5750815161140b90336105fe565b9050806114755760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610844565b846001600160a01b031682600001516001600160a01b0316146114e95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610844565b6001600160a01b03841661154d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610844565b61155d600084846000015161135b565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661165257611605816000541190565b15611652578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526116bb826000541190565b61171a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610844565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611769579392505050565b506000190161171c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb78282604051806020016040528060008152506119f1565b60006001600160a01b0384163b156118d557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611823903390899088908890600401612170565b6020604051808303816000875af192505050801561185e575060408051601f3d908101601f1916820190925261185b918101906121ad565b60015b6118bb573d80801561188c576040519150601f19603f3d011682016040523d82523d6000602084013e611891565b606091505b5080516000036118b35760405162461bcd60e51b81526004016108449061205a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118d9565b5060015b949350505050565b60606008805461075690611f9e565b6060816000036119175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611941578061192b816121ca565b915061193a9050600a836121f9565b915061191b565b60008167ffffffffffffffff81111561195c5761195c611dd5565b6040519080825280601f01601f191660200182016040528015611986576020820181803683370190505b5090505b84156118d95761199b60018361220d565b91506119a8600a86612224565b6119b3906030612023565b60f81b8183815181106119c8576119c8612238565b60200101906001600160f81b031916908160001a9053506119ea600a866121f9565b945061198a565b61097b83838360016000546001600160a01b038516611a5c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610844565b83600003611abd5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610844565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bb65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611baa57611b8e60008884886117df565b611baa5760405162461bcd60e51b81526004016108449061205a565b60019182019101611b3b565b50600055611695565b828054611bcb90611f9e565b90600052602060002090601f016020900481019282611bed5760008555611c33565b82601f10611c0657805160ff1916838001178555611c33565b82800160010185558215611c33579182015b82811115611c33578251825591602001919060010190611c18565b50610c419291505b80821115610c415760008155600101611c3b565b6001600160e01b031981168114610bc557600080fd5b600060208284031215611c7757600080fd5b813561124281611c4f565b60005b83811015611c9d578181015183820152602001611c85565b838111156110c55750506000910152565b60008151808452611cc6816020860160208601611c82565b601f01601f19169290920160200192915050565b6020815260006112426020830184611cae565b600060208284031215611cff57600080fd5b5035919050565b80356001600160a01b0381168114611d1d57600080fd5b919050565b60008060408385031215611d3557600080fd5b611d3e83611d06565b946020939093013593505050565b80358015158114611d1d57600080fd5b600060208284031215611d6e57600080fd5b61124282611d4c565b600080600060608486031215611d8c57600080fd5b611d9584611d06565b9250611da360208501611d06565b9150604084013590509250925092565b60008060408385031215611dc657600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e0657611e06611dd5565b604051601f8501601f19908116603f01168101908282118183101715611e2e57611e2e611dd5565b81604052809350858152868686011115611e4757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e7357600080fd5b813567ffffffffffffffff811115611e8a57600080fd5b8201601f81018413611e9b57600080fd5b6118d984823560208401611deb565b600060208284031215611ebc57600080fd5b61124282611d06565b60008060408385031215611ed857600080fd5b611ee183611d06565b9150611eef60208401611d4c565b90509250929050565b60008060008060808587031215611f0e57600080fd5b611f1785611d06565b9350611f2560208601611d06565b925060408501359150606085013567ffffffffffffffff811115611f4857600080fd5b8501601f81018713611f5957600080fd5b611f6887823560208401611deb565b91505092959194509250565b60008060408385031215611f8757600080fd5b611f9083611d06565b9150611eef60208401611d06565b600181811c90821680611fb257607f821691505b602082108103611fd257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120365761203661200d565b500190565b60008160001904831182151516156120555761205561200d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206120c08285838a01611c82565b8551918401916120d38184848a01611c82565b8554920191600090600181811c90808316806120f057607f831692505b858310810361210d57634e487b7160e01b85526022600452602485fd5b80801561212157600181146121325761215f565b60ff1985168852838801955061215f565b60008b81526020902060005b858110156121575781548a82015290840190880161213e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a390830184611cae565b9695505050505050565b6000602082840312156121bf57600080fd5b815161124281611c4f565b6000600182016121dc576121dc61200d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612208576122086121e3565b500490565b60008282101561221f5761221f61200d565b500390565b600082612233576122336121e3565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220292538fd66868d9121294ea5ec9a037e57418a681a46c15bfb90fdcd0d42885964736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000469706673000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d57616146516e6b65754765515a47377633474635575a3567446f69594c385078777057376d725237555a44652f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs
Arg [1] : _UnrevealedURI (string): ipfs://QmWaaFQnkeuGeQZG7v3GF5WZ5gDoiYL8PxwpW7mrR7UZDe/hidden.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 6970667300000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [5] : 697066733a2f2f516d57616146516e6b65754765515a47377633474635575a35
Arg [6] : 67446f69594c385078777057376d725237555a44652f68696464656e2e6a736f
Arg [7] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

105:2866:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744:410:3;;;;;;;;;;-1:-1:-1;3744:410:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;3744:410:3;;;;;;;;299:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5720:98:3:-;;;;;;;;;;;;;:::i;7356:280::-;;;;;;;;;;-1:-1:-1;7356:280:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:12;;;1674:51;;1662:2;1647:18;7356:280:3;1528:203:12;6892:403:3;;;;;;;;;;-1:-1:-1;6892:403:3;;;;;:::i;:::-;;:::i;:::-;;2261:81:11;;;;;;;;;;-1:-1:-1;2261:81:11;;;;;:::i;:::-;;:::i;1974:98:3:-;;;;;;;;;;-1:-1:-1;2027:7:3;2053:12;1974:98;;;2669:25:12;;;2657:2;2642:18;1974:98:3;2523:177:12;8340:156:3;;;;;;;;;;-1:-1:-1;8340:156:3;;;;;:::i;:::-;;:::i;2657:1020::-;;;;;;;;;;-1:-1:-1;2657:1020:3;;;;;:::i;:::-;;:::i;2825:144:11:-;;;;;;;;;;;;;:::i;8562:171:3:-;;;;;;;;;;-1:-1:-1;8562:171:3;;;;;:::i;:::-;;:::i;2144:220::-;;;;;;;;;;-1:-1:-1;2144:220:3;;;;;:::i;:::-;;:::i;332:28:11:-;;;;;;;;;;-1:-1:-1;332:28:11;;;;;;;;2111:144;;;;;;;;;;-1:-1:-1;2111:144:11;;;;;:::i;:::-;;:::i;2565:102::-;;;;;;;;;;-1:-1:-1;2565:102:11;;;;;:::i;:::-;;:::i;366:25::-;;;;;;;;;;-1:-1:-1;366:25:11;;;;;;;;;;;5536:122:3;;;;;;;;;;-1:-1:-1;5536:122:3;;;;;:::i;:::-;;:::i;184:21:11:-;;;;;;;;;;;;;:::i;4213:252:3:-;;;;;;;;;;-1:-1:-1;4213:252:3;;;;;:::i;:::-;;:::i;1628:101:9:-;;;;;;;;;;;;;:::i;397:29:11:-;;;;;;;;;;;;;;;;254:39;;;;;;;;;;;;;;;;996:85:9;;;;;;;;;;-1:-1:-1;1068:6:9;;-1:-1:-1;;;;;1068:6:9;996:85;;2439:120:11;;;;;;;;;;-1:-1:-1;2439:120:11;;;;;:::i;:::-;;:::i;5882:102:3:-;;;;;;;;;;;;;:::i;673:601:11:-;;;;;;:::i;:::-;;:::i;7703:303:3:-;;;;;;;;;;-1:-1:-1;7703:303:3;;;;;:::i;:::-;;:::i;8799:344::-;;;;;;;;;;-1:-1:-1;8799:344:3;;;;;:::i;:::-;;:::i;211:37:11:-;;;;;;;;;;;;;:::i;1408:697::-;;;;;;;;;;-1:-1:-1;1408:697:11;;;;;:::i;:::-;;:::i;432:31::-;;;;;;;;;;;;;;;;2673:146;;;;;;;;;;-1:-1:-1;2673:146:11;;;;;:::i;:::-;;:::i;2348:85::-;;;;;;;;;;-1:-1:-1;2348:85:11;;;;;:::i;:::-;;:::i;8072:206:3:-;;;;;;;;;;-1:-1:-1;8072:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;8236:25:3;;;8209:4;8236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8072:206;1878:232:9;;;;;;;;;;-1:-1:-1;1878:232:9;;;;;:::i;:::-;;:::i;3744:410:3:-;3886:4;-1:-1:-1;;;;;;3925:40:3;;-1:-1:-1;;;3925:40:3;;:104;;-1:-1:-1;;;;;;;3981:48:3;;-1:-1:-1;;;3981:48:3;3925:104;:170;;;-1:-1:-1;;;;;;;4045:50:3;;-1:-1:-1;;;4045:50:3;3925:170;:222;;;-1:-1:-1;;;;;;;;;;981:40:2;;;4111:36:3;3906:241;3744:410;-1:-1:-1;;3744:410:3:o;299:27:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5720:98:3:-;5774:13;5806:5;5799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720:98;:::o;7356:280::-;7456:7;7500:16;7508:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;7500:16;7479:108;;;;-1:-1:-1;;;7479:108:3;;6490:2:12;7479:108:3;;;6472:21:12;6529:2;6509:18;;;6502:30;6568:34;6548:18;;;6541:62;-1:-1:-1;;;6619:18:12;;;6612:43;6672:19;;7479:108:3;;;;;;;;;-1:-1:-1;7605:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7605:24:3;;7356:280::o;6892:403::-;6964:13;6980:24;6996:7;6980:15;:24::i;:::-;6964:40;;7028:5;-1:-1:-1;;;;;7022:11:3;:2;-1:-1:-1;;;;;7022:11:3;;7014:58;;;;-1:-1:-1;;;7014:58:3;;6904:2:12;7014:58:3;;;6886:21:12;6943:2;6923:18;;;6916:30;6982:34;6962:18;;;6955:62;-1:-1:-1;;;7033:18:12;;;7026:32;7075:19;;7014:58:3;6702:398:12;7014:58:3;665:10:1;-1:-1:-1;;;;;7104:21:3;;;;:62;;-1:-1:-1;7129:37:3;7146:5;665:10:1;8072:206:3;:::i;7129:37::-;7083:166;;;;-1:-1:-1;;;7083:166:3;;7307:2:12;7083:166:3;;;7289:21:12;7346:2;7326:18;;;7319:30;7385:34;7365:18;;;7358:62;7456:27;7436:18;;;7429:55;7501:19;;7083:166:3;7105:421:12;7083:166:3;7260:28;7269:2;7273:7;7282:5;7260:8;:28::i;:::-;6954:341;6892:403;;:::o;2261:81:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2320:6:11::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;2320:15:11;;::::1;::::0;;;::::1;::::0;;2261:81::o;8340:156:3:-;8461:28;8471:4;8477:2;8481:7;8461:9;:28::i;2657:1020::-;2778:7;2817:16;2827:5;2817:9;:16::i;:::-;2809:5;:24;2801:71;;;;-1:-1:-1;;;2801:71:3;;8094:2:12;2801:71:3;;;8076:21:12;8133:2;8113:18;;;8106:30;8172:34;8152:18;;;8145:62;-1:-1:-1;;;8223:18:12;;;8216:32;8265:19;;2801:71:3;7892:398:12;2801:71:3;2882:22;2053:12;;;2882:22;;3139:455;3159:14;3155:1;:18;3139:455;;;3198:31;3232:14;;;:11;:14;;;;;;;;;3198:48;;;;;;;;;-1:-1:-1;;;;;3198:48:3;;;;;-1:-1:-1;;;3198:48:3;;;;;;;;;;;;3268:28;3264:109;;3340:14;;;-1:-1:-1;3264:109:3;3415:5;-1:-1:-1;;;;;3394:26:3;:17;-1:-1:-1;;;;;3394:26:3;;3390:190;;3463:5;3448:11;:20;3444:83;;-1:-1:-1;3503:1:3;-1:-1:-1;3496:8:3;;-1:-1:-1;;;3496:8:3;3444:83;3548:13;;;;;3390:190;-1:-1:-1;3175:3:3;;3139:455;;;-1:-1:-1;3614:56:3;;-1:-1:-1;;;3614:56:3;;8497:2:12;3614:56:3;;;8479:21:12;8536:2;8516:18;;;8509:30;8575:34;8555:18;;;8548:62;-1:-1:-1;;;8626:18:12;;;8619:44;8680:19;;3614:56:3;8295:410:12;2825:144:11;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2873:7:11::1;2894;1068:6:9::0;;-1:-1:-1;;;;;1068:6:9;;996:85;2894:7:11::1;-1:-1:-1::0;;;;;2886:21:11::1;2915;2886:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2872:69;;;2959:2;2951:11;;;::::0;::::1;;2862:107;2825:144::o:0;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;2144:220::-;2243:7;2053:12;;2274:5;:21;2266:69;;;;-1:-1:-1;;;2266:69:3;;9122:2:12;2266:69:3;;;9104:21:12;9161:2;9141:18;;;9134:30;9200:34;9180:18;;;9173:62;-1:-1:-1;;;9251:18:12;;;9244:33;9294:19;;2266:69:3;8920:399:12;2266:69:3;-1:-1:-1;2352:5:3;2144:220::o;2111:144:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2192:10:11::1;:24:::0;;;;2226:9:::1;:22:::0;2111:144::o;2565:102::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2639:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2565:102:::0;:::o;5536:122:3:-;5600:7;5626:20;5638:7;5626:11;:20::i;:::-;:25;;5536:122;-1:-1:-1;;5536:122:3:o;184:21:11:-;;;;;;;:::i;4213:252:3:-;4277:7;-1:-1:-1;;;;;4317:19:3;;4296:109;;;;-1:-1:-1;;;4296:109:3;;9526:2:12;4296:109:3;;;9508:21:12;9565:2;9545:18;;;9538:30;9604:34;9584:18;;;9577:62;-1:-1:-1;;;9655:18:12;;;9648:41;9706:19;;4296:109:3;9324:407:12;4296:109:3;-1:-1:-1;;;;;;4430:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4430:27:3;;4213:252::o;1628:101:9:-;1068:6;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;2439:120:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2522:30:11;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;5882:102:3:-:0;5938:13;5970:7;5963:14;;;;;:::i;673:601:11:-;732:14;2053:12:3;781:6:11;;;;;;;780:7;772:43;;;;-1:-1:-1;;;772:43:11;;9938:2:12;772:43:11;;;9920:21:12;9977:2;9957:18;;;9950:30;10016:25;9996:18;;;9989:53;10059:18;;772:43:11;9736:347:12;772:43:11;844:1;833:8;:12;825:58;;;;-1:-1:-1;;;825:58:11;;10290:2:12;825:58:11;;;10272:21:12;10329:2;10309:18;;;10302:30;10368:34;10348:18;;;10341:62;-1:-1:-1;;;10419:18:12;;;10412:31;10460:19;;825:58:11;10088:397:12;825:58:11;922:9;;901:17;910:8;901:6;:17;:::i;:::-;:30;;893:61;;;;-1:-1:-1;;;893:61:11;;10957:2:12;893:61:11;;;10939:21:12;10996:2;10976:18;;;10969:30;-1:-1:-1;;;11015:18:12;;;11008:48;11073:18;;893:61:11;10755:342:12;893:61:11;1068:6:9;;-1:-1:-1;;;;;1068:6:9;969:10:11;:21;965:262;;1043:9;;1031:8;:21;;1006:131;;;;-1:-1:-1;;;1006:131:11;;11304:2:12;1006:131:11;;;11286:21:12;11343:2;11323:18;;;11316:30;11382:34;11362:18;;;11355:62;-1:-1:-1;;;11433:18:12;;;11426:49;11492:19;;1006:131:11;11102:415:12;1006:131:11;1185:8;1172:10;;:21;;;;:::i;:::-;1159:9;:34;;1151:65;;;;-1:-1:-1;;;1151:65:11;;11897:2:12;1151:65:11;;;11879:21:12;11936:2;11916:18;;;11909:30;-1:-1:-1;;;11955:18:12;;;11948:48;12013:18;;1151:65:11;11695:342:12;1151:65:11;1236:31;1246:10;1258:8;1236:9;:31::i;7703:303:3:-;665:10:1;-1:-1:-1;;;;;7817:24:3;;;7809:63;;;;-1:-1:-1;;;7809:63:3;;12244:2:12;7809:63:3;;;12226:21:12;12283:2;12263:18;;;12256:30;12322:28;12302:18;;;12295:56;12368:18;;7809:63:3;12042:350:12;7809:63:3;665:10:1;7883:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7883:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7883:53:3;;;;;;;;;;7951:48;;540:41:12;;;7883:42:3;;665:10:1;7951:48:3;;513:18:12;7951:48:3;;;;;;;7703:303;;:::o;8799:344::-;8952:28;8962:4;8968:2;8972:7;8952:9;:28::i;:::-;9011:48;9034:4;9040:2;9044:7;9053:5;9011:22;:48::i;:::-;8990:146;;;;-1:-1:-1;;;8990:146:3;;;;;;;:::i;:::-;8799:344;;;;:::o;211:37:11:-;;;;;;;:::i;1408:697::-;1521:13;1571:16;1579:7;9446:4:3;9479:12;-1:-1:-1;9469:22:3;9389:109;1571:16:11;1550:110;;;;-1:-1:-1;;;1550:110:11;;13019:2:12;1550:110:11;;;13001:21:12;13058:2;13038:18;;;13031:30;13097:34;13077:18;;;13070:62;-1:-1:-1;;;13148:18:12;;;13141:45;13203:19;;1550:110:11;12817:411:12;1550:110:11;1675:8;;;;:17;;:8;:17;1671:68;;1715:13;1708:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408:697;;;:::o;1671:68::-;1749:28;1780:10;:8;:10::i;:::-;1749:41;;1850:1;1825:14;1819:28;:32;:279;;;;;;;;;;;;;;;;;1940:14;1980:18;:7;:16;:18::i;:::-;2024:13;1898:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1819:279;1800:298;1408:697;-1:-1:-1;;;1408:697:11:o;2673:146::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2779:33:11;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;2348:85::-:0;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2409:8:11::1;:17:::0;;-1:-1:-1;;2409:17:11::1;::::0;::::1;;::::0;;;::::1;::::0;;2348:85::o;1878:232:9:-;1068:6;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:9;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:9;;15093:2:12;1958:107:9::1;::::0;::::1;15075:21:12::0;15132:2;15112:18;;;15105:30;15171:34;15151:18;;;15144:62;-1:-1:-1;;;15222:18:12;;;15215:36;15268:19;;1958:107:9::1;14891:402:12::0;1958:107:9::1;2075:28;2094:8;2075:18;:28::i;14401:189:3:-:0;14511:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;14511:29:3;-1:-1:-1;;;;;14511:29:3;;;;;;;;;14555:28;;14511:24;;14555:28;;;;;;;14401:189;;;:::o;12239:2051::-;12349:35;12387:20;12399:7;12387:11;:20::i;:::-;12460:18;;12349:58;;-1:-1:-1;12418:22:3;;-1:-1:-1;;;;;12444:34:3;665:10:1;-1:-1:-1;;;;;12444:34:3;;:86;;;-1:-1:-1;665:10:1;12494:20:3;12506:7;12494:11;:20::i;:::-;-1:-1:-1;;;;;12494:36:3;;12444:86;:152;;;-1:-1:-1;12563:18:3;;12546:50;;665:10:1;8072:206:3;:::i;12546:50::-;12418:179;;12629:17;12608:114;;;;-1:-1:-1;;;12608:114:3;;15500:2:12;12608:114:3;;;15482:21:12;15539:2;15519:18;;;15512:30;15578:34;15558:18;;;15551:62;-1:-1:-1;;;15629:18:12;;;15622:48;15687:19;;12608:114:3;15298:414:12;12608:114:3;12776:4;-1:-1:-1;;;;;12754:26:3;:13;:18;;;-1:-1:-1;;;;;12754:26:3;;12733:111;;;;-1:-1:-1;;;12733:111:3;;15919:2:12;12733:111:3;;;15901:21:12;15958:2;15938:18;;;15931:30;15997:34;15977:18;;;15970:62;-1:-1:-1;;;16048:18:12;;;16041:36;16094:19;;12733:111:3;15717:402:12;12733:111:3;-1:-1:-1;;;;;12862:16:3;;12854:66;;;;-1:-1:-1;;;12854:66:3;;16326:2:12;12854:66:3;;;16308:21:12;16365:2;16345:18;;;16338:30;16404:34;16384:18;;;16377:62;-1:-1:-1;;;16455:18:12;;;16448:35;16500:19;;12854:66:3;16124:401:12;12854:66:3;13036:49;13053:1;13057:7;13066:13;:18;;;13036:8;:49::i;:::-;-1:-1:-1;;;;;13375:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;13375:31:3;;;-1:-1:-1;;;;;13375:31:3;;;-1:-1:-1;;13375:31:3;;;;;;;13420:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13420:29:3;;;;;;;;;;;;;13464:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;13508:61:3;;;;-1:-1:-1;;;13553:15:3;13508:61;;;;;;13839:11;;;13868:24;;;;;:29;13839:11;;13868:29;13864:315;;13935:20;13943:11;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;13935:20;13931:234;;;14011:18;;;13979:24;;;:11;:24;;;;;;;;:50;;14093:53;;;;14051:95;;-1:-1:-1;;;14051:95:3;-1:-1:-1;;;;;;14051:95:3;;;-1:-1:-1;;;;;13979:50:3;;;14051:95;;;;;;;13931:234;13351:838;14223:7;14219:2;-1:-1:-1;;;;;14204:27:3;14213:4;-1:-1:-1;;;;;14204:27:3;;;;;;;;;;;14241:42;12339:1951;;12239:2051;;;:::o;4927:552::-;-1:-1:-1;;;;;;;;;;;;;;;;;5057:16:3;5065:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;5057:16;5049:71;;;;-1:-1:-1;;;5049:71:3;;16732:2:12;5049:71:3;;;16714:21:12;16771:2;16751:18;;;16744:30;16810:34;16790:18;;;16783:62;-1:-1:-1;;;16861:18:12;;;16854:40;16911:19;;5049:71:3;16530:406:12;5049:71:3;5175:7;5155:240;5221:31;5255:17;;;:11;:17;;;;;;;;;5221:51;;;;;;;;;-1:-1:-1;;;;;5221:51:3;;;;;-1:-1:-1;;;5221:51:3;;;;;;;;;;;;5294:28;5290:91;;5353:9;4927:552;-1:-1:-1;;;4927:552:3:o;5290:91::-;-1:-1:-1;;;5195:6:3;5155:240;;2264:187:9;2356:6;;;-1:-1:-1;;;;;2372:17:9;;;-1:-1:-1;;;;;;2372:17:9;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;9504:102:3:-;9572:27;9582:2;9586:8;9572:27;;;;;;;;;;;;:9;:27::i;15143:955::-;15293:4;-1:-1:-1;;;;;15313:13:3;;1450:19:0;:23;15309:783:3;;15364:170;;-1:-1:-1;;;15364:170:3;;-1:-1:-1;;;;;15364:36:3;;;;;:170;;665:10:1;;15456:4:3;;15482:7;;15511:5;;15364:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15364:170:3;;;;;;;;-1:-1:-1;;15364:170:3;;;;;;;;;;;;:::i;:::-;;;15344:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15717:6;:13;15734:1;15717:18;15713:313;;15759:107;;-1:-1:-1;;;15759:107:3;;;;;;;:::i;15713:313::-;15978:6;15972:13;15963:6;15959:2;15955:15;15948:38;15344:696;-1:-1:-1;;;;;;15596:55:3;-1:-1:-1;;;15596:55:3;;-1:-1:-1;15589:62:3;;15309:783;-1:-1:-1;16077:4:3;15309:783;15143:955;;;;;;:::o;1296:106:11:-;1356:13;1388:7;1381:14;;;;;:::i;328:703:10:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;-1:-1:-1;;;627:10:10;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:10;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;9957:157:3;10075:32;10081:2;10085:8;10095:5;10102:4;10494:20;10517:12;-1:-1:-1;;;;;10547:16:3;;10539:62;;;;-1:-1:-1;;;10539:62:3;;19083:2:12;10539:62:3;;;19065:21:12;19122:2;19102:18;;;19095:30;19161:34;19141:18;;;19134:62;-1:-1:-1;;;19212:18:12;;;19205:31;19253:19;;10539:62:3;18881:397:12;10539:62:3;10619:8;10631:1;10619:13;10611:66;;;;-1:-1:-1;;;10611:66:3;;19485:2:12;10611:66:3;;;19467:21:12;19524:2;19504:18;;;19497:30;19563:34;19543:18;;;19536:62;-1:-1:-1;;;19614:18:12;;;19607:38;19662:19;;10611:66:3;19283:404:12;10611:66:3;-1:-1:-1;;;;;11021:16:3;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;11021:45:3;;-1:-1:-1;;;;;11021:45:3;;;;;;;;;;11080:50;;;;;;;;;;;;;;11145:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;11194:66:3;;;;-1:-1:-1;;;11244:15:3;11194:66;;;;;;;11145:25;;11325:543;11345:8;11341:1;:12;11325:543;;;11383:38;;11408:12;;-1:-1:-1;;;;;11383:38:3;;;11400:1;;11383:38;;11400:1;;11383:38;11443:4;11439:382;;;11504:197;11564:1;11596:2;11628:12;11670:5;11504:22;:197::i;:::-;11471:331;;;;-1:-1:-1;;;11471:331:3;;;;;;;:::i;:::-;11839:14;;;;;11355:3;11325:543;;;-1:-1:-1;11882:12:3;:27;11930:60;8799:344;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:12;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:12;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:12:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:12;;1343:180;-1:-1:-1;1343:180:12:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:12;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:12:o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:180;2394:6;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:26;2502:9;2486:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:248::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;-1:-1:-1;;3206:23:12;;;3276:2;3261:18;;;3248:32;;-1:-1:-1;3038:248:12:o;3291:127::-;3352:10;3347:3;3343:20;3340:1;3333:31;3383:4;3380:1;3373:15;3407:4;3404:1;3397:15;3423:632;3488:5;3518:18;3559:2;3551:6;3548:14;3545:40;;;3565:18;;:::i;:::-;3640:2;3634:9;3608:2;3694:15;;-1:-1:-1;;3690:24:12;;;3716:2;3686:33;3682:42;3670:55;;;3740:18;;;3760:22;;;3737:46;3734:72;;;3786:18;;:::i;:::-;3826:10;3822:2;3815:22;3855:6;3846:15;;3885:6;3877;3870:22;3925:3;3916:6;3911:3;3907:16;3904:25;3901:45;;;3942:1;3939;3932:12;3901:45;3992:6;3987:3;3980:4;3972:6;3968:17;3955:44;4047:1;4040:4;4031:6;4023;4019:19;4015:30;4008:41;;;;3423:632;;;;;:::o;4060:451::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:12;;4408:1;4405;4398:12;4357:55;4431:74;4497:7;4492:2;4479:16;4474:2;4470;4466:11;4431:74;:::i;4516:186::-;4575:6;4628:2;4616:9;4607:7;4603:23;4599:32;4596:52;;;4644:1;4641;4634:12;4596:52;4667:29;4686:9;4667:29;:::i;4707:254::-;4772:6;4780;4833:2;4821:9;4812:7;4808:23;4804:32;4801:52;;;4849:1;4846;4839:12;4801:52;4872:29;4891:9;4872:29;:::i;:::-;4862:39;;4920:35;4951:2;4940:9;4936:18;4920:35;:::i;:::-;4910:45;;4707:254;;;;;:::o;4966:667::-;5061:6;5069;5077;5085;5138:3;5126:9;5117:7;5113:23;5109:33;5106:53;;;5155:1;5152;5145:12;5106:53;5178:29;5197:9;5178:29;:::i;:::-;5168:39;;5226:38;5260:2;5249:9;5245:18;5226:38;:::i;:::-;5216:48;;5311:2;5300:9;5296:18;5283:32;5273:42;;5366:2;5355:9;5351:18;5338:32;5393:18;5385:6;5382:30;5379:50;;;5425:1;5422;5415:12;5379:50;5448:22;;5501:4;5493:13;;5489:27;-1:-1:-1;5479:55:12;;5530:1;5527;5520:12;5479:55;5553:74;5619:7;5614:2;5601:16;5596:2;5592;5588:11;5553:74;:::i;:::-;5543:84;;;4966:667;;;;;;;:::o;5638:260::-;5706:6;5714;5767:2;5755:9;5746:7;5742:23;5738:32;5735:52;;;5783:1;5780;5773:12;5735:52;5806:29;5825:9;5806:29;:::i;:::-;5796:39;;5854:38;5888:2;5877:9;5873:18;5854:38;:::i;5903:380::-;5982:1;5978:12;;;;6025;;;6046:61;;6100:4;6092:6;6088:17;6078:27;;6046:61;6153:2;6145:6;6142:14;6122:18;6119:38;6116:161;;6199:10;6194:3;6190:20;6187:1;6180:31;6234:4;6231:1;6224:15;6262:4;6259:1;6252:15;6116:161;;5903:380;;;:::o;7531:356::-;7733:2;7715:21;;;7752:18;;;7745:30;7811:34;7806:2;7791:18;;7784:62;7878:2;7863:18;;7531:356::o;10490:127::-;10551:10;10546:3;10542:20;10539:1;10532:31;10582:4;10579:1;10572:15;10606:4;10603:1;10596:15;10622:128;10662:3;10693:1;10689:6;10686:1;10683:13;10680:39;;;10699:18;;:::i;:::-;-1:-1:-1;10735:9:12;;10622:128::o;11522:168::-;11562:7;11628:1;11624;11620:6;11616:14;11613:1;11610:21;11605:1;11598:9;11591:17;11587:45;11584:71;;;11635:18;;:::i;:::-;-1:-1:-1;11675:9:12;;11522:168::o;12397:415::-;12599:2;12581:21;;;12638:2;12618:18;;;12611:30;12677:34;12672:2;12657:18;;12650:62;-1:-1:-1;;;12743:2:12;12728:18;;12721:49;12802:3;12787:19;;12397:415::o;13359:1527::-;13583:3;13621:6;13615:13;13647:4;13660:51;13704:6;13699:3;13694:2;13686:6;13682:15;13660:51;:::i;:::-;13774:13;;13733:16;;;;13796:55;13774:13;13733:16;13818:15;;;13796:55;:::i;:::-;13940:13;;13873:20;;;13913:1;;14000;14022:18;;;;14075;;;;14102:93;;14180:4;14170:8;14166:19;14154:31;;14102:93;14243:2;14233:8;14230:16;14210:18;14207:40;14204:167;;-1:-1:-1;;;14270:33:12;;14326:4;14323:1;14316:15;14356:4;14277:3;14344:17;14204:167;14387:18;14414:110;;;;14538:1;14533:328;;;;14380:481;;14414:110;-1:-1:-1;;14449:24:12;;14435:39;;14494:20;;;;-1:-1:-1;14414:110:12;;14533:328;13306:1;13299:14;;;13343:4;13330:18;;14628:1;14642:169;14656:8;14653:1;14650:15;14642:169;;;14738:14;;14723:13;;;14716:37;14781:16;;;;14673:10;;14642:169;;;14646:3;;14842:8;14835:5;14831:20;14824:27;;14380:481;-1:-1:-1;14877:3:12;;13359:1527;-1:-1:-1;;;;;;;;;;;13359:1527:12:o;17357:489::-;-1:-1:-1;;;;;17626:15:12;;;17608:34;;17678:15;;17673:2;17658:18;;17651:43;17725:2;17710:18;;17703:34;;;17773:3;17768:2;17753:18;;17746:31;;;17551:4;;17794:46;;17820:19;;17812:6;17794:46;:::i;:::-;17786:54;17357:489;-1:-1:-1;;;;;;17357:489:12:o;17851:249::-;17920:6;17973:2;17961:9;17952:7;17948:23;17944:32;17941:52;;;17989:1;17986;17979:12;17941:52;18021:9;18015:16;18040:30;18064:5;18040:30;:::i;18105:135::-;18144:3;18165:17;;;18162:43;;18185:18;;:::i;:::-;-1:-1:-1;18232:1:12;18221:13;;18105:135::o;18245:127::-;18306:10;18301:3;18297:20;18294:1;18287:31;18337:4;18334:1;18327:15;18361:4;18358:1;18351:15;18377:120;18417:1;18443;18433:35;;18448:18;;:::i;:::-;-1:-1:-1;18482:9:12;;18377:120::o;18502:125::-;18542:4;18570:1;18567;18564:8;18561:34;;;18575:18;;:::i;:::-;-1:-1:-1;18612:9:12;;18502:125::o;18632:112::-;18664:1;18690;18680:35;;18695:18;;:::i;:::-;-1:-1:-1;18729:9:12;;18632:112::o;18749:127::-;18810:10;18805:3;18801:20;18798:1;18791:31;18841:4;18838:1;18831:15;18865:4;18862:1;18855:15

Swarm Source

ipfs://292538fd66868d9121294ea5ec9a037e57418a681a46c15bfb90fdcd0d428859
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.