ETH Price: $2,943.45 (-4.05%)
Gas: 2 Gwei

Token

BeepNFT (BEEP)
 

Overview

Max Total Supply

3,915 BEEP

Holders

785

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
11x11.eth
Balance
5 BEEP
0x9b7feb7510c2162be71991798319fc89eea7a1cb
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:
BeepNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1500 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 13: BeepNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./ERC721.sol";
import "./Ownable.sol";
import "./ERC721Enumerable.sol";

/**
 * @title BeepNFT contract
 */
contract BeepNFT is ERC721, ERC721Enumerable, Ownable {

    using Strings for uint256;

    uint256 public constant MAX_TOKENS = 6969;

    string private _baseTokenURI;
    bool public saleIsActive;

    constructor(string memory baseURI) ERC721("BeepNFT", "BEEP")  {
        saleIsActive = false;
        setBaseURI(baseURI);
    }

    function mint(uint256 num) public payable {
        uint256 supply = totalSupply();
        require(saleIsActive, "Sale is not active");
        require(num > 0, "Minting 0");
        require(num <= 9, "Max of 9 is allowed");
        require(supply + num <= MAX_TOKENS, "Passing max supply");
        require(msg.value >= 0, "Ether sent must be >= 0");

        for(uint256 i; i < num; i++){
            _safeMint(msg.sender, supply + i);
        }
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

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

    /*
    * @dev Reserve 10, owner only
    */
    function reserveTokens() public onlyOwner {
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < 10; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    /*
    * @dev Reserve 1, owner only
    */
    function reserveToken() public onlyOwner {
        uint256 supply = totalSupply();
        _safeMint(msg.sender, supply);
    }

    /*
    * @dev Needed below function to resolve conflicting fns in ERC721 and ERC721Enumerable
    */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /*
    * @dev Needed below function to resolve conflicting fns in ERC721 and ERC721Enumerable
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

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

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 3 of 13: 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 4 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

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 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.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 extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

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 9 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 tokenId);

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

File 10 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 11 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 12 of 13: 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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

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":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60806040523480156200001157600080fd5b506040516200274938038062002749833981016040819052620000349162000242565b60408051808201825260078152661099595c13919560ca1b6020808301918252835180850190945260048452630424545560e41b9084015281519192916200007f916000916200019c565b508051620000959060019060208401906200019c565b505050620000b2620000ac620000ce60201b60201c565b620000d2565b600c805460ff19169055620000c78162000124565b506200036b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019890600b9060208401906200019c565b5050565b828054620001aa9062000318565b90600052602060002090601f016020900481019282620001ce576000855562000219565b82601f10620001e957805160ff191683800117855562000219565b8280016001018555821562000219579182015b8281111562000219578251825591602001919060010190620001fc565b50620002279291506200022b565b5090565b5b808211156200022757600081556001016200022c565b6000602080838503121562000255578182fd5b82516001600160401b03808211156200026c578384fd5b818501915085601f83011262000280578384fd5b81518181111562000295576200029562000355565b604051601f8201601f19908116603f01168101908382118183101715620002c057620002c062000355565b816040528281528886848701011115620002d8578687fd5b8693505b82841015620002fb5784840186015181850187015292850192620002dc565b828411156200030c57868684830101525b98975050505050505050565b600181811c908216806200032d57607f821691505b602082108114156200034f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123ce806200037b6000396000f3fe6080604052600436106101ac5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063eb8d244411610064578063eb8d2444146104a4578063f2fde38b146104be578063f4325d67146104de578063f47c84c5146104f357600080fd5b8063b88d4fde1461041b578063c87b56dd1461043b578063e985e9c51461045b57600080fd5b80638da5cb5b116100c65780638da5cb5b146103b557806395d89b41146103d3578063a0712d68146103e8578063a22cb465146103fb57600080fd5b80636352211e1461036057806370a0823114610380578063715018a6146103a057600080fd5b806327ac36c4116101595780633ccfd60b116101335780633ccfd60b146102eb57806342842e0e146103005780634f6ccce71461032057806355f804b31461034057600080fd5b806327ac36c4146102a15780632f745c59146102b657806334918dfd146102d657600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd1461026257806323b872dd1461028157600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004612127565b610509565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb61051a565b6040516101dd9190612254565b34801561021457600080fd5b506102286102233660046121a5565b6105ac565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b3660046120fe565b610657565b005b34801561026e57600080fd5b506008545b6040519081526020016101dd565b34801561028d57600080fd5b5061026061029c366004612010565b610789565b3480156102ad57600080fd5b50610260610810565b3480156102c257600080fd5b506102736102d13660046120fe565b6108ac565b3480156102e257600080fd5b50610260610954565b3480156102f757600080fd5b506102606109c2565b34801561030c57600080fd5b5061026061031b366004612010565b610a4b565b34801561032c57600080fd5b5061027361033b3660046121a5565b610a66565b34801561034c57600080fd5b5061026061035b36600461215f565b610b18565b34801561036c57600080fd5b5061022861037b3660046121a5565b610b85565b34801561038c57600080fd5b5061027361039b366004611fc4565b610c10565b3480156103ac57600080fd5b50610260610caa565b3480156103c157600080fd5b50600a546001600160a01b0316610228565b3480156103df57600080fd5b506101fb610d10565b6102606103f63660046121a5565b610d1f565b34801561040757600080fd5b506102606104163660046120c4565b610ea6565b34801561042757600080fd5b5061026061043636600461204b565b610f6b565b34801561044757600080fd5b506101fb6104563660046121a5565b610ff9565b34801561046757600080fd5b506101d1610476366004611fde565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104b057600080fd5b50600c546101d19060ff1681565b3480156104ca57600080fd5b506102606104d9366004611fc4565b6110e2565b3480156104ea57600080fd5b506102606111c4565b3480156104ff57600080fd5b50610273611b3981565b600061051482611235565b92915050565b606060008054610529906122d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610555906122d6565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661063b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066282610b85565b9050806001600160a01b0316836001600160a01b031614156106ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610632565b336001600160a01b038216148061070857506107088133610476565b61077a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610632565b6107848383611273565b505050565b61079333826112ee565b6108055760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610632565b6107848383836113f6565b600a546001600160a01b0316331461086a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b600061087560085490565b905060005b600a8110156108a857610896336108918385612267565b6115db565b806108a081612311565b91505061087a565b5050565b60006108b783610c10565b821061092b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610632565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b600c805460ff19811660ff90911615179055565b600a546001600160a01b03163314610a1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b6040514790339082156108fc029083906000818181858888f193505050501580156108a8573d6000803e3d6000fd5b61078483838360405180602001604052806000815250610f6b565b6000610a7160085490565b8210610ae55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610632565b60088281548110610b0657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610b725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b80516108a890600b906020840190611e99565b6000818152600260205260408120546001600160a01b0316806105145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610632565b60006001600160a01b038216610c8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610632565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b610d0e60006115f5565b565b606060018054610529906122d6565b6000610d2a60085490565b600c5490915060ff16610d7f5760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610632565b60008211610dcf5760405162461bcd60e51b815260206004820152600960248201527f4d696e74696e67203000000000000000000000000000000000000000000000006044820152606401610632565b6009821115610e205760405162461bcd60e51b815260206004820152601360248201527f4d6178206f66203920697320616c6c6f776564000000000000000000000000006044820152606401610632565b611b39610e2d8383612267565b1115610e7b5760405162461bcd60e51b815260206004820152601260248201527f50617373696e67206d617820737570706c7900000000000000000000000000006044820152606401610632565b60005b8281101561078457610e94336108918385612267565b80610e9e81612311565b915050610e7e565b6001600160a01b038216331415610eff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610632565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f7533836112ee565b610fe75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610632565b610ff384848484611654565b50505050565b6000818152600260205260409020546060906001600160a01b03166110865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610632565b60006110906116dd565b905060008151116110b057604051806020016040528060008152506110db565b806110ba846116ec565b6040516020016110cb9291906121e9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461113c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b6001600160a01b0381166111b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610632565b6111c1816115f5565b50565b600a546001600160a01b0316331461121e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b600061122960085490565b90506111c133826115db565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061051457506105148261183a565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906112b582610b85565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610632565b600061138383610b85565b9050806001600160a01b0316846001600160a01b031614806113be5750836001600160a01b03166113b3846105ac565b6001600160a01b0316145b806113ee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140982610b85565b6001600160a01b0316146114855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610632565b6001600160a01b0382166115005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610632565b61150b8383836118d5565b611516600082611273565b6001600160a01b038316600090815260036020526040812080546001929061153f908490612293565b90915550506001600160a01b038216600090815260036020526040812080546001929061156d908490612267565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108a88282604051806020016040528060008152506118e0565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61165f8484846113f6565b61166b84848484611969565b610ff35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610632565b6060600b8054610529906122d6565b60608161172c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611756578061174081612311565b915061174f9050600a8361227f565b9150611730565b60008167ffffffffffffffff81111561177f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117a9576020820181803683370190505b5090505b84156113ee576117be600183612293565b91506117cb600a8661232c565b6117d6906030612267565b60f81b8183815181106117f957634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611833600a8661227f565b94506117ad565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061189d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061051457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610514565b610784838383611acc565b6118ea8383611b84565b6118f76000848484611969565b6107845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610632565b60006001600160a01b0384163b15611ac157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119ad903390899088908890600401612218565b602060405180830381600087803b1580156119c757600080fd5b505af19250505080156119f7575060408051601f3d908101601f191682019092526119f491810190612143565b60015b611aa7573d808015611a25576040519150601f19603f3d011682016040523d82523d6000602084013e611a2a565b606091505b508051611a9f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610632565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ee565b506001949350505050565b6001600160a01b038316611b2757611b2281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b4a565b816001600160a01b0316836001600160a01b031614611b4a57611b4a8382611cdf565b6001600160a01b038216611b615761078481611d7c565b826001600160a01b0316826001600160a01b031614610784576107848282611e55565b6001600160a01b038216611bda5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610632565b6000818152600260205260409020546001600160a01b031615611c3f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610632565b611c4b600083836118d5565b6001600160a01b0382166000908152600360205260408120805460019290611c74908490612267565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611cec84610c10565b611cf69190612293565b600083815260076020526040902054909150808214611d49576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8e90600190612293565b60008381526009602052604081205460088054939450909284908110611dc457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611df357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e6083610c10565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ea5906122d6565b90600052602060002090601f016020900481019282611ec75760008555611f0d565b82601f10611ee057805160ff1916838001178555611f0d565b82800160010185558215611f0d579182015b82811115611f0d578251825591602001919060010190611ef2565b50611f19929150611f1d565b5090565b5b80821115611f195760008155600101611f1e565b600067ffffffffffffffff80841115611f4d57611f4d61236c565b604051601f8501601f19908116603f01168101908282118183101715611f7557611f7561236c565b81604052809350858152868686011115611f8e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fbf57600080fd5b919050565b600060208284031215611fd5578081fd5b6110db82611fa8565b60008060408385031215611ff0578081fd5b611ff983611fa8565b915061200760208401611fa8565b90509250929050565b600080600060608486031215612024578081fd5b61202d84611fa8565b925061203b60208501611fa8565b9150604084013590509250925092565b60008060008060808587031215612060578081fd5b61206985611fa8565b935061207760208601611fa8565b925060408501359150606085013567ffffffffffffffff811115612099578182fd5b8501601f810187136120a9578182fd5b6120b887823560208401611f32565b91505092959194509250565b600080604083850312156120d6578182fd5b6120df83611fa8565b9150602083013580151581146120f3578182fd5b809150509250929050565b60008060408385031215612110578182fd5b61211983611fa8565b946020939093013593505050565b600060208284031215612138578081fd5b81356110db81612382565b600060208284031215612154578081fd5b81516110db81612382565b600060208284031215612170578081fd5b813567ffffffffffffffff811115612186578182fd5b8201601f81018413612196578182fd5b6113ee84823560208401611f32565b6000602082840312156121b6578081fd5b5035919050565b600081518084526121d58160208601602086016122aa565b601f01601f19169290920160200192915050565b600083516121fb8184602088016122aa565b83519083019061220f8183602088016122aa565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261224a60808301846121bd565b9695505050505050565b6020815260006110db60208301846121bd565b6000821982111561227a5761227a612340565b500190565b60008261228e5761228e612356565b500490565b6000828210156122a5576122a5612340565b500390565b60005b838110156122c55781810151838201526020016122ad565b83811115610ff35750506000910152565b600181811c908216806122ea57607f821691505b6020821081141561230b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232557612325612340565b5060010190565b60008261233b5761233b612356565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111c157600080fdfea264697066735822122074aa7bd3b110aec62830dfb6fc9b35547adee17183338a60c36ce336a03d48a264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d645741765433784b36544e574e685234674674786e6333555474455445614136527664617358336a45594b342f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ac5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063eb8d244411610064578063eb8d2444146104a4578063f2fde38b146104be578063f4325d67146104de578063f47c84c5146104f357600080fd5b8063b88d4fde1461041b578063c87b56dd1461043b578063e985e9c51461045b57600080fd5b80638da5cb5b116100c65780638da5cb5b146103b557806395d89b41146103d3578063a0712d68146103e8578063a22cb465146103fb57600080fd5b80636352211e1461036057806370a0823114610380578063715018a6146103a057600080fd5b806327ac36c4116101595780633ccfd60b116101335780633ccfd60b146102eb57806342842e0e146103005780634f6ccce71461032057806355f804b31461034057600080fd5b806327ac36c4146102a15780632f745c59146102b657806334918dfd146102d657600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd1461026257806323b872dd1461028157600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004612127565b610509565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb61051a565b6040516101dd9190612254565b34801561021457600080fd5b506102286102233660046121a5565b6105ac565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b3660046120fe565b610657565b005b34801561026e57600080fd5b506008545b6040519081526020016101dd565b34801561028d57600080fd5b5061026061029c366004612010565b610789565b3480156102ad57600080fd5b50610260610810565b3480156102c257600080fd5b506102736102d13660046120fe565b6108ac565b3480156102e257600080fd5b50610260610954565b3480156102f757600080fd5b506102606109c2565b34801561030c57600080fd5b5061026061031b366004612010565b610a4b565b34801561032c57600080fd5b5061027361033b3660046121a5565b610a66565b34801561034c57600080fd5b5061026061035b36600461215f565b610b18565b34801561036c57600080fd5b5061022861037b3660046121a5565b610b85565b34801561038c57600080fd5b5061027361039b366004611fc4565b610c10565b3480156103ac57600080fd5b50610260610caa565b3480156103c157600080fd5b50600a546001600160a01b0316610228565b3480156103df57600080fd5b506101fb610d10565b6102606103f63660046121a5565b610d1f565b34801561040757600080fd5b506102606104163660046120c4565b610ea6565b34801561042757600080fd5b5061026061043636600461204b565b610f6b565b34801561044757600080fd5b506101fb6104563660046121a5565b610ff9565b34801561046757600080fd5b506101d1610476366004611fde565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104b057600080fd5b50600c546101d19060ff1681565b3480156104ca57600080fd5b506102606104d9366004611fc4565b6110e2565b3480156104ea57600080fd5b506102606111c4565b3480156104ff57600080fd5b50610273611b3981565b600061051482611235565b92915050565b606060008054610529906122d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610555906122d6565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661063b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066282610b85565b9050806001600160a01b0316836001600160a01b031614156106ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610632565b336001600160a01b038216148061070857506107088133610476565b61077a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610632565b6107848383611273565b505050565b61079333826112ee565b6108055760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610632565b6107848383836113f6565b600a546001600160a01b0316331461086a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b600061087560085490565b905060005b600a8110156108a857610896336108918385612267565b6115db565b806108a081612311565b91505061087a565b5050565b60006108b783610c10565b821061092b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610632565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b600c805460ff19811660ff90911615179055565b600a546001600160a01b03163314610a1c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b6040514790339082156108fc029083906000818181858888f193505050501580156108a8573d6000803e3d6000fd5b61078483838360405180602001604052806000815250610f6b565b6000610a7160085490565b8210610ae55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610632565b60088281548110610b0657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610b725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b80516108a890600b906020840190611e99565b6000818152600260205260408120546001600160a01b0316806105145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610632565b60006001600160a01b038216610c8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610632565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b610d0e60006115f5565b565b606060018054610529906122d6565b6000610d2a60085490565b600c5490915060ff16610d7f5760405162461bcd60e51b815260206004820152601260248201527f53616c65206973206e6f742061637469766500000000000000000000000000006044820152606401610632565b60008211610dcf5760405162461bcd60e51b815260206004820152600960248201527f4d696e74696e67203000000000000000000000000000000000000000000000006044820152606401610632565b6009821115610e205760405162461bcd60e51b815260206004820152601360248201527f4d6178206f66203920697320616c6c6f776564000000000000000000000000006044820152606401610632565b611b39610e2d8383612267565b1115610e7b5760405162461bcd60e51b815260206004820152601260248201527f50617373696e67206d617820737570706c7900000000000000000000000000006044820152606401610632565b60005b8281101561078457610e94336108918385612267565b80610e9e81612311565b915050610e7e565b6001600160a01b038216331415610eff5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610632565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f7533836112ee565b610fe75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610632565b610ff384848484611654565b50505050565b6000818152600260205260409020546060906001600160a01b03166110865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610632565b60006110906116dd565b905060008151116110b057604051806020016040528060008152506110db565b806110ba846116ec565b6040516020016110cb9291906121e9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461113c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b6001600160a01b0381166111b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610632565b6111c1816115f5565b50565b600a546001600160a01b0316331461121e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610632565b600061122960085490565b90506111c133826115db565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061051457506105148261183a565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906112b582610b85565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610632565b600061138383610b85565b9050806001600160a01b0316846001600160a01b031614806113be5750836001600160a01b03166113b3846105ac565b6001600160a01b0316145b806113ee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661140982610b85565b6001600160a01b0316146114855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610632565b6001600160a01b0382166115005760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610632565b61150b8383836118d5565b611516600082611273565b6001600160a01b038316600090815260036020526040812080546001929061153f908490612293565b90915550506001600160a01b038216600090815260036020526040812080546001929061156d908490612267565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108a88282604051806020016040528060008152506118e0565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61165f8484846113f6565b61166b84848484611969565b610ff35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610632565b6060600b8054610529906122d6565b60608161172c57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611756578061174081612311565b915061174f9050600a8361227f565b9150611730565b60008167ffffffffffffffff81111561177f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117a9576020820181803683370190505b5090505b84156113ee576117be600183612293565b91506117cb600a8661232c565b6117d6906030612267565b60f81b8183815181106117f957634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611833600a8661227f565b94506117ad565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061189d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061051457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610514565b610784838383611acc565b6118ea8383611b84565b6118f76000848484611969565b6107845760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610632565b60006001600160a01b0384163b15611ac157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119ad903390899088908890600401612218565b602060405180830381600087803b1580156119c757600080fd5b505af19250505080156119f7575060408051601f3d908101601f191682019092526119f491810190612143565b60015b611aa7573d808015611a25576040519150601f19603f3d011682016040523d82523d6000602084013e611a2a565b606091505b508051611a9f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610632565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113ee565b506001949350505050565b6001600160a01b038316611b2757611b2281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b4a565b816001600160a01b0316836001600160a01b031614611b4a57611b4a8382611cdf565b6001600160a01b038216611b615761078481611d7c565b826001600160a01b0316826001600160a01b031614610784576107848282611e55565b6001600160a01b038216611bda5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610632565b6000818152600260205260409020546001600160a01b031615611c3f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610632565b611c4b600083836118d5565b6001600160a01b0382166000908152600360205260408120805460019290611c74908490612267565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611cec84610c10565b611cf69190612293565b600083815260076020526040902054909150808214611d49576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8e90600190612293565b60008381526009602052604081205460088054939450909284908110611dc457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611df357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e6083610c10565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ea5906122d6565b90600052602060002090601f016020900481019282611ec75760008555611f0d565b82601f10611ee057805160ff1916838001178555611f0d565b82800160010185558215611f0d579182015b82811115611f0d578251825591602001919060010190611ef2565b50611f19929150611f1d565b5090565b5b80821115611f195760008155600101611f1e565b600067ffffffffffffffff80841115611f4d57611f4d61236c565b604051601f8501601f19908116603f01168101908282118183101715611f7557611f7561236c565b81604052809350858152868686011115611f8e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fbf57600080fd5b919050565b600060208284031215611fd5578081fd5b6110db82611fa8565b60008060408385031215611ff0578081fd5b611ff983611fa8565b915061200760208401611fa8565b90509250929050565b600080600060608486031215612024578081fd5b61202d84611fa8565b925061203b60208501611fa8565b9150604084013590509250925092565b60008060008060808587031215612060578081fd5b61206985611fa8565b935061207760208601611fa8565b925060408501359150606085013567ffffffffffffffff811115612099578182fd5b8501601f810187136120a9578182fd5b6120b887823560208401611f32565b91505092959194509250565b600080604083850312156120d6578182fd5b6120df83611fa8565b9150602083013580151581146120f3578182fd5b809150509250929050565b60008060408385031215612110578182fd5b61211983611fa8565b946020939093013593505050565b600060208284031215612138578081fd5b81356110db81612382565b600060208284031215612154578081fd5b81516110db81612382565b600060208284031215612170578081fd5b813567ffffffffffffffff811115612186578182fd5b8201601f81018413612196578182fd5b6113ee84823560208401611f32565b6000602082840312156121b6578081fd5b5035919050565b600081518084526121d58160208601602086016122aa565b601f01601f19169290920160200192915050565b600083516121fb8184602088016122aa565b83519083019061220f8183602088016122aa565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261224a60808301846121bd565b9695505050505050565b6020815260006110db60208301846121bd565b6000821982111561227a5761227a612340565b500190565b60008261228e5761228e612356565b500490565b6000828210156122a5576122a5612340565b500390565b60005b838110156122c55781810151838201526020016122ad565b83811115610ff35750506000910152565b600181811c908216806122ea57607f821691505b6020821081141561230b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232557612325612340565b5060010190565b60008261233b5761233b612356565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111c157600080fdfea264697066735822122074aa7bd3b110aec62830dfb6fc9b35547adee17183338a60c36ce336a03d48a264736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d645741765433784b36544e574e685234674674786e6333555474455445614136527664617358336a45594b342f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmdWAvT3xK6TNWNhR4gFtxnc3UTtETEaA6RvdasX3jEYK4/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d645741765433784b36544e574e685234674674786e6333
Arg [3] : 555474455445614136527664617358336a45594b342f00000000000000000000


Deployed Bytecode Sourcemap

173:2257:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2027:177;;;;;;;;;;-1:-1:-1;2027:177:1;;;;;:::i;:::-;;:::i;:::-;;;5865:14:13;;5858:22;5840:41;;5828:2;5813:18;2027:177:1;;;;;;;;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5117:55:13;;;5099:74;;5087:2;5072:18;3860:217:4;5054:125:13;3398:401:4;;;;;;;;;;-1:-1:-1;3398:401:4;;;;;:::i;:::-;;:::i;:::-;;1534:111:5;;;;;;;;;;-1:-1:-1;1621:10:5;:17;1534:111;;;15200:25:13;;;15188:2;15173:18;1534:111:5;15155:76:13;4724:330:4;;;;;;;;;;-1:-1:-1;4724:330:4;;;;;:::i;:::-;;:::i;1257:189:1:-;;;;;;;;;;;;;:::i;1210:253:5:-;;;;;;;;;;-1:-1:-1;1210:253:5;;;;;:::i;:::-;;:::i;973:87:1:-;;;;;;;;;;;;;:::i;1066:137::-;;;;;;;;;;;;;:::i;5120:179:4:-;;;;;;;;;;-1:-1:-1;5120:179:4;;;;;:::i;:::-;;:::i;1717:230:5:-;;;;;;;;;;-1:-1:-1;1717:230:5;;;;;:::i;:::-;;:::i;2328:100:1:-;;;;;;;;;;-1:-1:-1;2328:100:1;;;;;:::i;:::-;;:::i;2052:235:4:-;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;1790:205::-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:11:-;;;;;;;;;;;;;:::i;966:85::-;;;;;;;;;;-1:-1:-1;1038:6:11;;-1:-1:-1;;;;;1038:6:11;966:85;;2511:102:4;;;;;;;;;;;;;:::i;513:454:1:-;;;;;;:::i;:::-;;:::i;4144:290:4:-;;;;;;;;;;-1:-1:-1;4144:290:4;;;;;:::i;:::-;;:::i;5365:320::-;;;;;;;;;;-1:-1:-1;5365:320:4;;;;;:::i;:::-;;:::i;2679:329::-;;;;;;;;;;-1:-1:-1;2679:329:4;;;;;:::i;:::-;;:::i;4500:162::-;;;;;;;;;;-1:-1:-1;4500:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;348:24:1;;;;;;;;;;-1:-1:-1;348:24:1;;;;;;;;1839:189:11;;;;;;;;;;-1:-1:-1;1839:189:11;;;;;:::i;:::-;;:::i;1499:127:1:-;;;;;;;;;;;;;:::i;266:41::-;;;;;;;;;;;;303:4;266:41;;2027:177;2138:4;2161:36;2185:11;2161:23;:36::i;:::-;2154:43;2027:177;-1:-1:-1;;2027:177:1:o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;3955:73;;;;-1:-1:-1;;;3955:73:4;;12076:2:13;3955:73:4;;;12058:21:13;12115:2;12095:18;;;12088:30;12154:34;12134:18;;;12127:62;12225:14;12205:18;;;12198:42;12257:19;;3955:73:4;;;;;;;;;-1:-1:-1;4046:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:4;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:4;:2;-1:-1:-1;;;;;3535:11:4;;;3527:57;;;;-1:-1:-1;;;3527:57:4;;13676:2:13;3527:57:4;;;13658:21:13;13715:2;13695:18;;;13688:30;13754:34;13734:18;;;13727:62;13825:3;13805:18;;;13798:31;13846:19;;3527:57:4;13648:223:13;3527:57:4;665:10:2;-1:-1:-1;;;;;3616:21:4;;;;:62;;-1:-1:-1;3641:37:4;3658:5;665:10:2;4500:162:4;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:4;;9432:2:13;3595:165:4;;;9414:21:13;9471:2;9451:18;;;9444:30;9510:34;9490:18;;;9483:62;9581:26;9561:18;;;9554:54;9625:19;;3595:165:4;9404:246:13;3595:165:4;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;4724:330::-;4913:41;665:10:2;4946:7:4;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:4;;14078:2:13;4905:103:4;;;14060:21:13;14117:2;14097:18;;;14090:30;14156:34;14136:18;;;14129:62;14227:19;14207:18;;;14200:47;14264:19;;4905:103:4;14050:239:13;4905:103:4;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1257:189:1:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;12489:2:13;1170:68:11;;;12471:21:13;;;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12619:18;;1170:68:11;12461:182:13;1170:68:11;1309:14:1::1;1326:13;1621:10:5::0;:17;;1534:111;1326:13:1::1;1309:30;;1354:9;1349:91;1373:2;1369:1;:6;1349:91;;;1396:33;1406:10;1418;1427:1:::0;1418:6;:10:::1;:::i;:::-;1396:9;:33::i;:::-;1377:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1349:91;;;;1248:1:11;1257:189:1:o:0;1210:253:5:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:5;;6318:2:13;1326:87:5;;;6300:21:13;6357:2;6337:18;;;6330:30;6396:34;6376:18;;;6369:62;6467:13;6447:18;;;6440:41;6498:19;;1326:87:5;6290:233:13;1326:87:5;-1:-1:-1;;;;;;1430:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;973:87:1:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;12489:2:13;1170:68:11;;;12471:21:13;;;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12619:18;;1170:68:11;12461:182:13;1170:68:11;1041:12:1::1;::::0;;-1:-1:-1;;1025:28:1;::::1;1041:12;::::0;;::::1;1040:13;1025:28;::::0;;973:87::o;1066:137::-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;12489:2:13;1170:68:11;;;12471:21:13;;;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12619:18;;1170:68:11;12461:182:13;1170:68:11;1159:37:1::1;::::0;1128:21:::1;::::0;1167:10:::1;::::0;1159:37;::::1;;;::::0;1128:21;;1113:12:::1;1159:37:::0;1113:12;1159:37;1128:21;1167:10;1159:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;5120:179:4::0;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1717:230:5:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:5;;14496:2:13;1811:95:5;;;14478:21:13;14535:2;14515:18;;;14508:30;14574:34;14554:18;;;14547:62;14645:14;14625:18;;;14618:42;14677:19;;1811:95:5;14468:234:13;1811:95:5;1923:10;1934:5;1923:17;;;;;;-1:-1:-1;;;1923:17:5;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;2328:100:1:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;12489:2:13;1170:68:11;;;12471:21:13;;;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12619:18;;1170:68:11;12461:182:13;1170:68:11;2398:23:1;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;2052:235:4:-:0;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;10268:2:13;2185:73:4;;;10250:21:13;10307:2;10287:18;;;10280:30;10346:34;10326:18;;;10319:62;10417:11;10397:18;;;10390:39;10446:19;;2185:73:4;10240:231:13;1790:205:4;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;9857:2:13;1881:74:4;;;9839:21:13;9896:2;9876:18;;;9869:30;9935:34;9915:18;;;9908:62;10006:12;9986:18;;;9979:40;10036:19;;1881:74:4;9829:232:13;1881:74:4;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;12489:2:13;1170:68:11;;;12471:21:13;;;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12619:18;;1170:68:11;12461:182:13;1170:68:11;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;513:454:1:-;565:14;582:13;1621:10:5;:17;;1534:111;582:13:1;613:12;;565:30;;-1:-1:-1;613:12:1;;605:43;;;;-1:-1:-1;;;605:43:1;;8672:2:13;605:43:1;;;8654:21:13;8711:2;8691:18;;;8684:30;8750:20;8730:18;;;8723:48;8788:18;;605:43:1;8644:168:13;605:43:1;672:1;666:3;:7;658:29;;;;-1:-1:-1;;;658:29:1;;10678:2:13;658:29:1;;;10660:21:13;10717:1;10697:18;;;10690:29;10755:11;10735:18;;;10728:39;10784:18;;658:29:1;10650:158:13;658:29:1;712:1;705:3;:8;;697:40;;;;-1:-1:-1;;;697:40:1;;11015:2:13;697:40:1;;;10997:21:13;11054:2;11034:18;;;11027:30;11093:21;11073:18;;;11066:49;11132:18;;697:40:1;10987:169:13;697:40:1;303:4;755:12;764:3;755:6;:12;:::i;:::-;:26;;747:57;;;;-1:-1:-1;;;747:57:1;;14909:2:13;747:57:1;;;14891:21:13;14948:2;14928:18;;;14921:30;14987:20;14967:18;;;14960:48;15025:18;;747:57:1;14881:168:13;747:57:1;879:9;875:86;894:3;890:1;:7;875:86;;;917:33;927:10;939;948:1;939:6;:10;:::i;917:33::-;899:3;;;;:::i;:::-;;;;875:86;;4144:290:4;-1:-1:-1;;;;;4246:24:4;;665:10:2;4246:24:4;;4238:62;;;;-1:-1:-1;;;4238:62:4;;8318:2:13;4238:62:4;;;8300:21:13;8357:2;8337:18;;;8330:30;8396:27;8376:18;;;8369:55;8441:18;;4238:62:4;8290:175:13;4238:62:4;665:10:2;4311:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:4;;;;;;;;;;4379:48;;5840:41:13;;;4311:42:4;;665:10:2;4379:48:4;;5813:18:13;4379:48:4;;;;;;;4144:290;;:::o;5365:320::-;5534:41;665:10:2;5567:7:4;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:4;;14078:2:13;5526:103:4;;;14060:21:13;14117:2;14097:18;;;14090:30;14156:34;14136:18;;;14129:62;14227:19;14207:18;;;14200:47;14264:19;;5526:103:4;14050:239:13;5526:103:4;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;7222:4;7245:16;;;:7;:16;;;;;;2752:13;;-1:-1:-1;;;;;7245:16:4;2777:76;;;;-1:-1:-1;;;2777:76:4;;13260:2:13;2777:76:4;;;13242:21:13;13299:2;13279:18;;;13272:30;13338:34;13318:18;;;13311:62;13409:17;13389:18;;;13382:45;13444:19;;2777:76:4;13232:237:13;2777:76:4;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:4:o;1839:189:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;12489:2:13;1170:68:11;;;12471:21:13;;;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12619:18;;1170:68:11;12461:182:13;1170:68:11;-1:-1:-1;;;;;1927:22:11;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:11;;7149:2:13;1919:73:11::1;::::0;::::1;7131:21:13::0;7188:2;7168:18;;;7161:30;7227:34;7207:18;;;7200:62;7298:8;7278:18;;;7271:36;7324:19;;1919:73:11::1;7121:228:13::0;1919:73:11::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;1499:127:1:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;12489:2:13;1170:68:11;;;12471:21:13;;;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12619:18;;1170:68:11;12461:182:13;1170:68:11;1550:14:1::1;1567:13;1621:10:5::0;:17;;1534:111;1567:13:1::1;1550:30;;1590:29;1600:10;1612:6;1590:9;:29::i;909:222:5:-:0;1011:4;-1:-1:-1;;;;;;1034:50:5;;1049:35;1034:50;;:90;;;1088:36;1112:11;1088:23;:36::i;11008:171:4:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11082:29:4;-1:-1:-1;;;;;11082:29:4;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:4;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;7549:73;;;;-1:-1:-1;;;7549:73:4;;9019:2:13;7549:73:4;;;9001:21:13;9058:2;9038:18;;;9031:30;9097:34;9077:18;;;9070:62;9168:14;9148:18;;;9141:42;9200:19;;7549:73:4;8991:234:13;7549:73:4;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:4;:7;-1:-1:-1;;;;;7689:16:4;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:4;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:4;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;7681:96;7440:344;-1:-1:-1;;;;7440:344:4:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:4;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:4;;10456:85;;;;-1:-1:-1;;;10456:85:4;;12850:2:13;10456:85:4;;;12832:21:13;12889:2;12869:18;;;12862:30;12928:34;12908:18;;;12901:62;12999:11;12979:18;;;12972:39;13028:19;;10456:85:4;12822:231:13;10456:85:4;-1:-1:-1;;;;;10559:16:4;;10551:65;;;;-1:-1:-1;;;10551:65:4;;7913:2:13;10551:65:4;;;7895:21:13;7952:2;7932:18;;;7925:30;7991:34;7971:18;;;7964:62;8062:6;8042:18;;;8035:34;8086:19;;10551:65:4;7885:226:13;10551:65:4;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:4;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:4;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;10826:21:4;-1:-1:-1;;;;;10826:21:4;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;2034:169:11:-;2108:6;;;-1:-1:-1;;;;;2124:17:11;;;-1:-1:-1;;2124:17:11;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;6547:307:4:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:4;;6730:2:13;6736:111:4;;;6712:21:13;6769:2;6749:18;;;6742:30;6808:34;6788:18;;;6781:62;6879:20;6859:18;;;6852:48;6917:19;;6736:111:4;6702:240:13;2210:112:1;2270:13;2302;2295:20;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:12;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;1431:300:4;1533:4;-1:-1:-1;;;;;;1568:40:4;;1583:25;1568:40;;:104;;-1:-1:-1;;;;;;;1624:48:4;;1639:33;1624:48;1568:104;:156;;;-1:-1:-1;886:25:3;-1:-1:-1;;;;;;871:40:3;;;1688:36:4;763:155:3;1737:179:1;1864:45;1891:4;1897:2;1901:7;1864:26;:45::i;8443:311:4:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:4;;6730:2:13;8596:151:4;;;6712:21:13;6769:2;6749:18;;;6742:30;6808:34;6788:18;;;6781:62;6879:20;6859:18;;;6852:48;6917:19;;8596:151:4;6702:240:13;11732:782:4;11882:4;-1:-1:-1;;;;;11902:13:4;;1034:20:0;1080:8;11898:610:4;;11937:72;;-1:-1:-1;;;11937:72:4;;-1:-1:-1;;;;;11937:36:4;;;;;:72;;665:10:2;;11988:4:4;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:4;;;;;;;;-1:-1:-1;;11937:72:4;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12180:13:4;;12176:266;;12222:60;;-1:-1:-1;;;12222:60:4;;6730:2:13;12222:60:4;;;6712:21:13;6769:2;6749:18;;;6742:30;6808:34;6788:18;;;6781:62;6879:20;6859:18;;;6852:48;6917:19;;12222:60:4;6702:240:13;12176:266:4;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;-1:-1:-1;;;;;;12059:55:4;-1:-1:-1;;;12059:55:4;;-1:-1:-1;12052:62:4;;11898:610;-1:-1:-1;12493:4:4;11732:782;;;;;;:::o;2543:572:5:-;-1:-1:-1;;;;;2742:18:5;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:5;:4;-1:-1:-1;;;;;2837:10:5;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:5;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:5;:2;-1:-1:-1;;;;;3032:10:5;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;9076:372:4:-;-1:-1:-1;;;;;9155:16:4;;9147:61;;;;-1:-1:-1;;;9147:61:4;;11715:2:13;9147:61:4;;;11697:21:13;;;11734:18;;;11727:30;11793:34;11773:18;;;11766:62;11845:18;;9147:61:4;11687:182:13;9147:61:4;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;:30;9218:58;;;;-1:-1:-1;;;9218:58:4;;7556:2:13;9218:58:4;;;7538:21:13;7595:2;7575:18;;;7568:30;7634;7614:18;;;7607:58;7682:18;;9218:58:4;7528:178:13;9218:58:4;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:4;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9371:21:4;-1:-1:-1;;;;;9371:21:4;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;4599:970:5:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:5;;;5069:323;;-1:-1:-1;;;;;5139:18:5;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:5;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:5;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:5;;6106:46;;6551:26;;;;-1:-1:-1;;;6551:26:5;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;-1:-1:-1;;;6588:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;-1:-1:-1;;;6895:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:13;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:196::-;910:6;963:2;951:9;942:7;938:23;934:32;931:2;;;984:6;976;969:22;931:2;1012:29;1031:9;1012:29;:::i;1052:270::-;1120:6;1128;1181:2;1169:9;1160:7;1156:23;1152:32;1149:2;;;1202:6;1194;1187:22;1149:2;1230:29;1249:9;1230:29;:::i;:::-;1220:39;;1278:38;1312:2;1301:9;1297:18;1278:38;:::i;:::-;1268:48;;1139:183;;;;;:::o;1327:338::-;1404:6;1412;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1494:6;1486;1479:22;1441:2;1522:29;1541:9;1522:29;:::i;:::-;1512:39;;1570:38;1604:2;1593:9;1589:18;1570:38;:::i;:::-;1560:48;;1655:2;1644:9;1640:18;1627:32;1617:42;;1431:234;;;;;:::o;1670:696::-;1765:6;1773;1781;1789;1842:3;1830:9;1821:7;1817:23;1813:33;1810:2;;;1864:6;1856;1849:22;1810:2;1892:29;1911:9;1892:29;:::i;:::-;1882:39;;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;2107:18;2099:6;2096:30;2093:2;;;2144:6;2136;2129:22;2093:2;2172:22;;2225:4;2217:13;;2213:27;-1:-1:-1;2203:2:13;;2259:6;2251;2244:22;2203:2;2287:73;2352:7;2347:2;2334:16;2329:2;2325;2321:11;2287:73;:::i;:::-;2277:83;;;1800:566;;;;;;;:::o;2371:367::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:2;;;2518:6;2510;2503:22;2465:2;2546:29;2565:9;2546:29;:::i;:::-;2536:39;;2625:2;2614:9;2610:18;2597:32;2672:5;2665:13;2658:21;2651:5;2648:32;2638:2;;2699:6;2691;2684:22;2638:2;2727:5;2717:15;;;2455:283;;;;;:::o;2743:264::-;2811:6;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:2;;;2893:6;2885;2878:22;2840:2;2921:29;2940:9;2921:29;:::i;:::-;2911:39;2997:2;2982:18;;;;2969:32;;-1:-1:-1;;;2830:177:13:o;3012:255::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:2;;;3144:6;3136;3129:22;3091:2;3188:9;3175:23;3207:30;3231:5;3207:30;:::i;3272:259::-;3341:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:2;;;3415:6;3407;3400:22;3362:2;3452:9;3446:16;3471:30;3495:5;3471:30;:::i;3536:480::-;3605:6;3658:2;3646:9;3637:7;3633:23;3629:32;3626:2;;;3679:6;3671;3664:22;3626:2;3724:9;3711:23;3757:18;3749:6;3746:30;3743:2;;;3794:6;3786;3779:22;3743:2;3822:22;;3875:4;3867:13;;3863:27;-1:-1:-1;3853:2:13;;3909:6;3901;3894:22;3853:2;3937:73;4002:7;3997:2;3984:16;3979:2;3975;3971:11;3937:73;:::i;4021:190::-;4080:6;4133:2;4121:9;4112:7;4108:23;4104:32;4101:2;;;4154:6;4146;4139:22;4101:2;-1:-1:-1;4182:23:13;;4091:120;-1:-1:-1;4091:120:13:o;4216:257::-;4257:3;4295:5;4289:12;4322:6;4317:3;4310:19;4338:63;4394:6;4387:4;4382:3;4378:14;4371:4;4364:5;4360:16;4338:63;:::i;:::-;4455:2;4434:15;-1:-1:-1;;4430:29:13;4421:39;;;;4462:4;4417:50;;4265:208;-1:-1:-1;;4265:208:13:o;4478:470::-;4657:3;4695:6;4689:13;4711:53;4757:6;4752:3;4745:4;4737:6;4733:17;4711:53;:::i;:::-;4827:13;;4786:16;;;;4849:57;4827:13;4786:16;4883:4;4871:17;;4849:57;:::i;:::-;4922:20;;4665:283;-1:-1:-1;;;;4665:283:13:o;5184:511::-;5378:4;-1:-1:-1;;;;;5488:2:13;5480:6;5476:15;5465:9;5458:34;5540:2;5532:6;5528:15;5523:2;5512:9;5508:18;5501:43;;5580:6;5575:2;5564:9;5560:18;5553:34;5623:3;5618:2;5607:9;5603:18;5596:31;5644:45;5684:3;5673:9;5669:19;5661:6;5644:45;:::i;:::-;5636:53;5387:308;-1:-1:-1;;;;;;5387:308:13:o;5892:219::-;6041:2;6030:9;6023:21;6004:4;6061:44;6101:2;6090:9;6086:18;6078:6;6061:44;:::i;15236:128::-;15276:3;15307:1;15303:6;15300:1;15297:13;15294:2;;;15313:18;;:::i;:::-;-1:-1:-1;15349:9:13;;15284:80::o;15369:120::-;15409:1;15435;15425:2;;15440:18;;:::i;:::-;-1:-1:-1;15474:9:13;;15415:74::o;15494:125::-;15534:4;15562:1;15559;15556:8;15553:2;;;15567:18;;:::i;:::-;-1:-1:-1;15604:9:13;;15543:76::o;15624:258::-;15696:1;15706:113;15720:6;15717:1;15714:13;15706:113;;;15796:11;;;15790:18;15777:11;;;15770:39;15742:2;15735:10;15706:113;;;15837:6;15834:1;15831:13;15828:2;;;-1:-1:-1;;15872:1:13;15854:16;;15847:27;15677:205::o;15887:437::-;15966:1;15962:12;;;;16009;;;16030:2;;16084:4;16076:6;16072:17;16062:27;;16030:2;16137;16129:6;16126:14;16106:18;16103:38;16100:2;;;-1:-1:-1;;;16171:1:13;16164:88;16275:4;16272:1;16265:15;16303:4;16300:1;16293:15;16100:2;;15942:382;;;:::o;16329:135::-;16368:3;-1:-1:-1;;16389:17:13;;16386:2;;;16409:18;;:::i;:::-;-1:-1:-1;16456:1:13;16445:13;;16376:88::o;16469:112::-;16501:1;16527;16517:2;;16532:18;;:::i;:::-;-1:-1:-1;16566:9:13;;16507:74::o;16586:184::-;-1:-1:-1;;;16635:1:13;16628:88;16735:4;16732:1;16725:15;16759:4;16756:1;16749:15;16775:184;-1:-1:-1;;;16824:1:13;16817:88;16924:4;16921:1;16914:15;16948:4;16945:1;16938:15;16964:184;-1:-1:-1;;;17013:1:13;17006:88;17113:4;17110:1;17103:15;17137:4;17134:1;17127:15;17153:177;-1:-1:-1;;;;;;17231:5:13;17227:78;17220:5;17217:89;17207:2;;17320:1;17317;17310:12

Swarm Source

ipfs://74aa7bd3b110aec62830dfb6fc9b35547adee17183338a60c36ce336a03d48a2
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.