ETH Price: $3,111.58 (+1.41%)
Gas: 7 Gwei

Token

Bandits In The Metaverse (BITM)
 

Overview

Max Total Supply

3,200 BITM

Holders

1,085

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BITM
0xe632c58b8a3ffc068c6c4777f3ce63eb31f2cb92
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:
Bandits

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

import "./ERC721Burnable.sol";
import "./SafeMath.sol";
import "./IERC721.sol";

/**
 * @title Bandits Contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract Bandits is ERC721Burnable {
    using SafeMath for uint256;
    uint16 private mintedCount;

    bool public privateSale;
    bool public publicSale;

    string public baseTokenURI;
    uint16 public MAX_SUPPLY;
    uint16 public RESEVE_AMOUNT;

    uint16 public maxByMint;
    uint256 public mintPrice;

    address private admin;

    mapping(address => bool) public mintedWL;

    string public constant CONTRACT_NAME = "Bandits Contract";
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );
    bytes32 public constant MINT_TYPEHASH =
        keccak256("Mint(address user,uint256 num)");

    constructor(address _admin) ERC721("Bandits In The Metaverse", "BITM") {
        MAX_SUPPLY = 3333;
        RESEVE_AMOUNT = 133;
        mintPrice = 0.025 ether;
        maxByMint = 3;
        admin = _admin;
        uint16 tokenId = totalSupply();
        _safeMint(msg.sender, tokenId);
        mintedCount = mintedCount + 1;
    }

    function setPrivateSaleStatus(bool status) external onlyOwner {
        privateSale = status;
    }

    function setPublicSaleStatus(bool status) external onlyOwner {
        publicSale = status;
    }

    function setMintPrice(uint256 newMintPrice) external onlyOwner {
        mintPrice = newMintPrice;
    }

    function setCount(uint16 _max_supply, uint16 _maxByMint)
        external
        onlyOwner
    {
        MAX_SUPPLY = _max_supply;
        maxByMint = _maxByMint;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        baseTokenURI = baseURI;
    }

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

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    function totalSupply() public view virtual returns (uint16) {
        return mintedCount;
    }

    function getTokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(owner);
        uint256 supply = totalSupply();

        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 resultIndex = 0;
            uint256 tokenId;

            for (tokenId = 0; tokenId < supply; tokenId++) {
                if (_owners[tokenId] == owner) {
                    result[resultIndex] = tokenId;
                    resultIndex++;
                    if (resultIndex >= tokenCount) {
                        break;
                    }
                }
            }
            return result;
        }
    }

    function mintByUser(uint8 _numberOfTokens) external payable {
        require(publicSale, "Public Sale is not active");
        require(tx.origin == msg.sender, "Only EOA");
        require(
            totalSupply() + _numberOfTokens <= MAX_SUPPLY - RESEVE_AMOUNT,
            "Max Limit To Presale"
        );
        require(_numberOfTokens <= maxByMint, "Exceeds Amount");
        require(mintPrice * _numberOfTokens <= msg.value, "Low Price To Mint");

        for (uint8 i = 0; i < _numberOfTokens; i += 1) {
            uint16 tokenId = uint16(totalSupply() + i);
            _safeMint(msg.sender, tokenId);
        }
        mintedCount = mintedCount + _numberOfTokens;
    }

    function mintByUserPrivate(
        uint8 _numberOfTokens,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external payable {
        require(privateSale, "Private Sale is not active");
        require(!mintedWL[msg.sender], "You minted aleady");
        require(tx.origin == msg.sender, "Only EOA");
        require(
            totalSupply() + _numberOfTokens <= MAX_SUPPLY - RESEVE_AMOUNT,
            "Max Limit To Presale"
        );
        require(_numberOfTokens <= maxByMint, "Exceeds Amount");
        require(mintPrice * _numberOfTokens <= msg.value, "Low Price To Mint");

        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(CONTRACT_NAME)),
                getChainId(),
                address(this)
            )
        );
        bytes32 structHash = keccak256(
            abi.encode(MINT_TYPEHASH, msg.sender, _numberOfTokens)
        );
        bytes32 digest = keccak256(
            abi.encodePacked("\x19\x01", domainSeparator, structHash)
        );
        address signatory = ecrecover(digest, v, r, s);
        require(signatory == admin, "Invalid signatory");

        for (uint8 i = 0; i < _numberOfTokens; i += 1) {
            _safeMint(msg.sender, mintedCount + i);
        }

        mintedCount = mintedCount + _numberOfTokens;
        mintedWL[msg.sender] = true;
    }

    function reserveNft(address account, uint8 _numberOfTokens)
        external
        onlyOwner
    {
        require(
            totalSupply() + _numberOfTokens <= MAX_SUPPLY,
            "Max Limit To Presale"
        );

        for (uint8 i = 0; i < _numberOfTokens; i += 1) {
            uint16 tokenId = uint16(totalSupply() + i);
            _safeMint(account, tokenId);
        }
        mintedCount = mintedCount + _numberOfTokens;
    }

    function withdrawAll() external onlyOwner {
        uint256 totalBalance = address(this).balance;
        payable(msg.sender).transfer(totalBalance);
    }

    function getChainId() internal view returns (uint256) {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        return chainId;
    }
}

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

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

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

File 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
    // CUSTOM: Visible for child contract so it's possible to emulate methods of ERC721's enumerable extension
    mapping(uint256 => address) internal _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
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Ownable, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _msgSender() == owner() ||
                _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

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: 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 10 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 11 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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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":"address","name":"_admin","type":"address"}],"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":"CONTRACT_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESEVE_AMOUNT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxByMint","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_numberOfTokens","type":"uint8"}],"name":"mintByUser","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_numberOfTokens","type":"uint8"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mintByUserPrivate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint8","name":"_numberOfTokens","type":"uint8"}],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_max_supply","type":"uint16"},{"internalType":"uint16","name":"_maxByMint","type":"uint16"}],"name":"setCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPrivateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003124380380620031248339810160408190526200003491620005a5565b6040518060400160405280601881526020017f42616e6469747320496e20546865204d65746176657273650000000000000000815250604051806040016040528060048152602001634249544d60e01b815250600062000099620001a260201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000f8906001906020850190620004ff565b5080516200010e906002906020840190620004ff565b5050600980546658d15e17628000600a5565ffffffffffff1916640300850d0517905550600b80546001600160a01b0319166001600160a01b03831617905560006200015d60075461ffff1690565b90506200016f3361ffff8316620001a6565b600754620001839061ffff1660016200067e565b6007805461ffff191661ffff9290921691909117905550620007159050565b3390565b620001c8828260405180602001604052806000815250620001cc60201b60201c565b5050565b620001d8838362000248565b620001e7600084848462000390565b620002435760405162461bcd60e51b815260206004820152603260248201526000805160206200310483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620002a05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200023a565b6000818152600360205260409020546001600160a01b031615620003075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200023a565b6001600160a01b038216600090815260046020526040812080546001929062000332908490620006a7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003b1846001600160a01b0316620004f960201b6200197c1760201c565b15620004ed57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003eb90339089908890889060040162000603565b602060405180830381600087803b1580156200040657600080fd5b505af192505050801562000439575060408051601f3d908101601f191682019092526200043691810190620005d7565b60015b620004d2573d8080156200046a576040519150601f19603f3d011682016040523d82523d6000602084013e6200046f565b606091505b508051620004ca5760405162461bcd60e51b815260206004820152603260248201526000805160206200310483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200023a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004f1565b5060015b949350505050565b3b151590565b8280546200050d90620006c2565b90600052602060002090601f0160209004810192826200053157600085556200057c565b82601f106200054c57805160ff19168380011785556200057c565b828001600101855582156200057c579182015b828111156200057c5782518255916020019190600101906200055f565b506200058a9291506200058e565b5090565b5b808211156200058a57600081556001016200058f565b600060208284031215620005b857600080fd5b81516001600160a01b0381168114620005d057600080fd5b9392505050565b600060208284031215620005ea57600080fd5b81516001600160e01b031981168114620005d057600080fd5b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006525785810182015185820160a00152810162000634565b828111156200066557600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600061ffff8083168185168083038211156200069e576200069e620006ff565b01949350505050565b60008219821115620006bd57620006bd620006ff565b500190565b600181811c90821680620006d757607f821691505b60208210811415620006f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6129df80620007256000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c5146106d6578063f2fde38b1461071f578063f4a0a5281461073f578063f76fc35e1461075f578063ff260b591461079357600080fd5b8063c87b56dd1461064d578063cc4b99d61461066d578063d347c09c1461068d578063d547cfb7146106a0578063da89dce3146106b557600080fd5b80639d944cd9116100f25780639d944cd9146105ad578063a22cb465146105cd578063b423fe67146105ed578063b88d4fde1461060d578063ba1f879f1461062d57600080fd5b806370a0823114610530578063715018a614610550578063853828b6146105655780638da5cb5b1461057a57806395d89b411461059857600080fd5b806333bc1c5c116101bc57806357e7a6aa1161018057806357e7a6aa1461047e5780635de6dc5514610491578063614d08f8146104be5780636352211e146104fa5780636817c76c1461051a57600080fd5b806333bc1c5c146103dd57806342842e0e146103fe57806342966c681461041e5780634f558e791461043e57806355f804b31461045e57600080fd5b806318160ddd1161020357806318160ddd1461032757806320606b701461034057806323b872dd14610382578063287b038b146103a257806332cb6b0c146103c257600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf578063138a4e01146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046124c6565b6107c3565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610815565b60405161026c91906126c5565b3480156102a357600080fd5b506102b76102b2366004612573565b6108a7565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612457565b610941565b005b3480156102fd57600080fd5b5060095461031490640100000000900461ffff1681565b60405161ffff909116815260200161026c565b34801561033357600080fd5b5060075461ffff16610314565b34801561034c57600080fd5b506103747f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60405190815260200161026c565b34801561038e57600080fd5b506102ef61039d366004612375565b610a57565b3480156103ae57600080fd5b506102ef6103bd3660046124ab565b610a89565b3480156103ce57600080fd5b506009546103149061ffff1681565b3480156103e957600080fd5b50600754610260906301000000900460ff1681565b34801561040a57600080fd5b506102ef610419366004612375565b610acf565b34801561042a57600080fd5b506102ef610439366004612573565b610aea565b34801561044a57600080fd5b50610260610459366004612573565b610b78565b34801561046a57600080fd5b506102ef610479366004612500565b610b97565b6102ef61048c36600461258c565b610bd8565b34801561049d57600080fd5b506104b16104ac366004612327565b610deb565b60405161026c9190612681565b3480156104ca57600080fd5b5061028a6040518060400160405280601081526020016f10985b991a5d1cc810dbdb9d1c9858dd60821b81525081565b34801561050657600080fd5b506102b7610515366004612573565b610ef4565b34801561052657600080fd5b50610374600a5481565b34801561053c57600080fd5b5061037461054b366004612327565b610f6b565b34801561055c57600080fd5b506102ef610ff2565b34801561057157600080fd5b506102ef611066565b34801561058657600080fd5b506000546001600160a01b03166102b7565b3480156105a457600080fd5b5061028a6110bf565b3480156105b957600080fd5b506102ef6105c8366004612549565b6110ce565b3480156105d957600080fd5b506102ef6105e836600461242d565b611124565b3480156105f957600080fd5b506102ef6106083660046124ab565b61112f565b34801561061957600080fd5b506102ef6106283660046123b1565b611177565b34801561063957600080fd5b506007546102609062010000900460ff1681565b34801561065957600080fd5b5061028a610668366004612573565b6111af565b34801561067957600080fd5b506102ef610688366004612481565b61128a565b6102ef61069b3660046125a7565b611379565b3480156106ac57600080fd5b5061028a6117d5565b3480156106c157600080fd5b506009546103149062010000900461ffff1681565b3480156106e257600080fd5b506102606106f1366004612342565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072b57600080fd5b506102ef61073a366004612327565b611863565b34801561074b57600080fd5b506102ef61075a366004612573565b61194d565b34801561076b57600080fd5b506103747f79800d7a879f6d3ff90ed42057b41065ab94943f7417273b44f9e3044f19617181565b34801561079f57600080fd5b506102606107ae366004612327565b600c6020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107f457506001600160e01b03198216635b5e139f60e01b145b8061080f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610824906128d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610850906128d1565b801561089d5780601f106108725761010080835404028352916020019161089d565b820191906000526020600020905b81548152906001019060200180831161088057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094c82610ef4565b9050806001600160a01b0316836001600160a01b031614156109ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161091c565b336001600160a01b03821614806109d657506109d681336106f1565b610a485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161091c565b610a528383611982565b505050565b610a62335b826119f0565b610a7e5760405162461bcd60e51b815260040161091c9061275f565b610a52838383611ae7565b6000546001600160a01b03163314610ab35760405162461bcd60e51b815260040161091c9061272a565b60078054911515620100000262ff000019909216919091179055565b610a5283838360405180602001604052806000815250611177565b6000546001600160a01b0316331480610b075750610b0733610a5c565b610b6c5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161091c565b610b7581611c83565b50565b6000818152600360205260408120546001600160a01b0316151561080f565b6000546001600160a01b03163314610bc15760405162461bcd60e51b815260040161091c9061272a565b8051610bd49060089060208401906121c9565b5050565b6007546301000000900460ff16610c315760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f742061637469766500000000000000604482015260640161091c565b323314610c6b5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b604482015260640161091c565b600954610c849061ffff6201000082048116911661286b565b61ffff168160ff16610c9960075461ffff1690565b610ca391906127de565b61ffff161115610cc55760405162461bcd60e51b815260040161091c906127b0565b600954640100000000900461ffff1660ff82161115610d175760405162461bcd60e51b815260206004820152600e60248201526d115e18d959591cc8105b5bdd5b9d60921b604482015260640161091c565b348160ff16600a54610d29919061284c565b1115610d6b5760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b604482015260640161091c565b60005b8160ff168160ff161015610dbc5760008160ff16610d8f60075461ffff1690565b610d9991906127de565b9050610da9338261ffff16611d1e565b50610db5600182612813565b9050610d6e565b50600754610dd29060ff83169061ffff166127de565b6007805461ffff191661ffff9290921691909117905550565b60606000610df883610f6b565b90506000610e0960075461ffff1690565b61ffff16905081610e2b57505060408051600081526020810190915292915050565b60008267ffffffffffffffff811115610e4657610e4661297d565b604051908082528060200260200182016040528015610e6f578160200160208202803683370190505b5090506000805b83811015610ee9576000818152600360205260409020546001600160a01b0388811691161415610ed75780838381518110610eb357610eb3612967565b602090810291909101015281610ec88161290c565b925050848210610ed757610ee9565b80610ee18161290c565b915050610e76565b509095945050505050565b6000818152600360205260408120546001600160a01b03168061080f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161091c565b60006001600160a01b038216610fd65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161091c565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461101c5760405162461bcd60e51b815260040161091c9061272a565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146110905760405162461bcd60e51b815260040161091c9061272a565b6040514790339082156108fc029083906000818181858888f19350505050158015610bd4573d6000803e3d6000fd5b606060028054610824906128d1565b6000546001600160a01b031633146110f85760405162461bcd60e51b815260040161091c9061272a565b6009805461ffff9283166401000000000265ffff0000ffff199091169290931691909117919091179055565b610bd4338383611d38565b6000546001600160a01b031633146111595760405162461bcd60e51b815260040161091c9061272a565b6007805491151563010000000263ff00000019909216919091179055565b61118133836119f0565b61119d5760405162461bcd60e51b815260040161091c9061275f565b6111a984848484611e07565b50505050565b6000818152600360205260409020546060906001600160a01b031661122e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091c565b6000611238611e3a565b905060008151116112585760405180602001604052806000815250611283565b8061126284611e49565b604051602001611273929190612615565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112b45760405162461bcd60e51b815260040161091c9061272a565b60095461ffff1660ff82166112cc60075461ffff1690565b6112d691906127de565b61ffff1611156112f85760405162461bcd60e51b815260040161091c906127b0565b60005b8160ff168160ff1610156113495760008160ff1661131c60075461ffff1690565b61132691906127de565b9050611336848261ffff16611d1e565b50611342600182612813565b90506112fb565b5060075461135f9060ff83169061ffff166127de565b6007805461ffff191661ffff929092169190911790555050565b60075462010000900460ff166113d15760405162461bcd60e51b815260206004820152601a60248201527f507269766174652053616c65206973206e6f7420616374697665000000000000604482015260640161091c565b336000908152600c602052604090205460ff16156114255760405162461bcd60e51b8152602060048201526011602482015270596f75206d696e74656420616c6561647960781b604482015260640161091c565b32331461145f5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b604482015260640161091c565b6009546114789061ffff6201000082048116911661286b565b61ffff168460ff1661148d60075461ffff1690565b61149791906127de565b61ffff1611156114b95760405162461bcd60e51b815260040161091c906127b0565b600954640100000000900461ffff1660ff8516111561150b5760405162461bcd60e51b815260206004820152600e60248201526d115e18d959591cc8105b5bdd5b9d60921b604482015260640161091c565b348460ff16600a5461151d919061284c565b111561155f5760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b604482015260640161091c565b604080518082018252601081526f10985b991a5d1cc810dbdb9d1c9858dd60821b60209182015281517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866818301527ff25d48dafea927dd275caba6eb2737a49673cf82973b59acd513048506145bb681840152466060820152306080808301919091528351808303909101815260a0820184528051908301207f79800d7a879f6d3ff90ed42057b41065ab94943f7417273b44f9e3044f19617160c08301523360e083015260ff8816610100808401919091528451808403909101815261012083019094528351939092019290922061190160f01b6101408401526101428301829052610162830181905290916000906101820160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156116de573d6000803e3d6000fd5b5050604051601f190151600b549092506001600160a01b03808416911614905061173e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e61746f727960781b604482015260640161091c565b60005b8860ff168160ff1610156117855760075461177390339061176a9060ff85169061ffff166127de565b61ffff16611d1e565b61177e600182612813565b9050611741565b5060075461179b9060ff8a169061ffff166127de565b6007805461ffff191661ffff929092169190911790555050336000908152600c60205260409020805460ff19166001179055505050505050565b600880546117e2906128d1565b80601f016020809104026020016040519081016040528092919081815260200182805461180e906128d1565b801561185b5780601f106118305761010080835404028352916020019161185b565b820191906000526020600020905b81548152906001019060200180831161183e57829003601f168201915b505050505081565b6000546001600160a01b0316331461188d5760405162461bcd60e51b815260040161091c9061272a565b6001600160a01b0381166118f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146119775760405162461bcd60e51b815260040161091c9061272a565b600a55565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b782610ef4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611a695760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161091c565b6000611a7483610ef4565b9050806001600160a01b0316846001600160a01b03161480611aaf5750836001600160a01b0316611aa4846108a7565b6001600160a01b0316145b80611adf57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611afa82610ef4565b6001600160a01b031614611b5e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161091c565b6001600160a01b038216611bc05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161091c565b611bcb600082611982565b6001600160a01b0383166000908152600460205260408120805460019290611bf490849061288e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611c229084906127fb565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c8e82610ef4565b9050611c9b600083611982565b6001600160a01b0381166000908152600460205260408120805460019290611cc490849061288e565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610bd4828260405180602001604052806000815250611f47565b816001600160a01b0316836001600160a01b03161415611d9a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161091c565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e12848484611ae7565b611e1e84848484611f7a565b6111a95760405162461bcd60e51b815260040161091c906126d8565b606060088054610824906128d1565b606081611e6d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e975780611e818161290c565b9150611e909050600a83612838565b9150611e71565b60008167ffffffffffffffff811115611eb257611eb261297d565b6040519080825280601f01601f191660200182016040528015611edc576020820181803683370190505b5090505b8415611adf57611ef160018361288e565b9150611efe600a86612927565b611f099060306127fb565b60f81b818381518110611f1e57611f1e612967565b60200101906001600160f81b031916908160001a905350611f40600a86612838565b9450611ee0565b611f518383612087565b611f5e6000848484611f7a565b610a525760405162461bcd60e51b815260040161091c906126d8565b60006001600160a01b0384163b1561207c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbe903390899088908890600401612644565b602060405180830381600087803b158015611fd857600080fd5b505af1925050508015612008575060408051601f3d908101601f19168201909252612005918101906124e3565b60015b612062573d808015612036576040519150601f19603f3d011682016040523d82523d6000602084013e61203b565b606091505b50805161205a5760405162461bcd60e51b815260040161091c906126d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611adf565b506001949350505050565b6001600160a01b0382166120dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161091c565b6000818152600360205260409020546001600160a01b0316156121425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091c565b6001600160a01b038216600090815260046020526040812080546001929061216b9084906127fb565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121d5906128d1565b90600052602060002090601f0160209004810192826121f7576000855561223d565b82601f1061221057805160ff191683800117855561223d565b8280016001018555821561223d579182015b8281111561223d578251825591602001919060010190612222565b5061224992915061224d565b5090565b5b80821115612249576000815560010161224e565b600067ffffffffffffffff8084111561227d5761227d61297d565b604051601f8501601f19908116603f011681019082821181831017156122a5576122a561297d565b816040528093508581528686860111156122be57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122ef57600080fd5b919050565b803580151581146122ef57600080fd5b803561ffff811681146122ef57600080fd5b803560ff811681146122ef57600080fd5b60006020828403121561233957600080fd5b611283826122d8565b6000806040838503121561235557600080fd5b61235e836122d8565b915061236c602084016122d8565b90509250929050565b60008060006060848603121561238a57600080fd5b612393846122d8565b92506123a1602085016122d8565b9150604084013590509250925092565b600080600080608085870312156123c757600080fd5b6123d0856122d8565b93506123de602086016122d8565b925060408501359150606085013567ffffffffffffffff81111561240157600080fd5b8501601f8101871361241257600080fd5b61242187823560208401612262565b91505092959194509250565b6000806040838503121561244057600080fd5b612449836122d8565b915061236c602084016122f4565b6000806040838503121561246a57600080fd5b612473836122d8565b946020939093013593505050565b6000806040838503121561249457600080fd5b61249d836122d8565b915061236c60208401612316565b6000602082840312156124bd57600080fd5b611283826122f4565b6000602082840312156124d857600080fd5b813561128381612993565b6000602082840312156124f557600080fd5b815161128381612993565b60006020828403121561251257600080fd5b813567ffffffffffffffff81111561252957600080fd5b8201601f8101841361253a57600080fd5b611adf84823560208401612262565b6000806040838503121561255c57600080fd5b61256583612304565b915061236c60208401612304565b60006020828403121561258557600080fd5b5035919050565b60006020828403121561259e57600080fd5b61128382612316565b600080600080608085870312156125bd57600080fd5b6125c685612316565b93506125d460208601612316565b93969395505050506040820135916060013590565b600081518084526126018160208601602086016128a5565b601f01601f19169290920160200192915050565b600083516126278184602088016128a5565b83519083019061263b8183602088016128a5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612677908301846125e9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126b95783518352928401929184019160010161269d565b50909695505050505050565b60208152600061128360208301846125e9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152734d6178204c696d697420546f2050726573616c6560601b604082015260600190565b600061ffff80831681851680830382111561263b5761263b61293b565b6000821982111561280e5761280e61293b565b500190565b600060ff821660ff84168060ff038211156128305761283061293b565b019392505050565b60008261284757612847612951565b500490565b60008160001904831182151516156128665761286661293b565b500290565b600061ffff838116908316818110156128865761288661293b565b039392505050565b6000828210156128a0576128a061293b565b500390565b60005b838110156128c05781810151838201526020016128a8565b838111156111a95750506000910152565b600181811c908216806128e557607f821691505b6020821081141561290657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129205761292061293b565b5060010190565b60008261293657612936612951565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7557600080fdfea2646970667358221220d38c3982311fe2cb987224bbeb9336ba30d7234375b7ed91db4f5ece74df542664736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000449d685a27161c70e8994967152ba0af3bfc2b00

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c5146106d6578063f2fde38b1461071f578063f4a0a5281461073f578063f76fc35e1461075f578063ff260b591461079357600080fd5b8063c87b56dd1461064d578063cc4b99d61461066d578063d347c09c1461068d578063d547cfb7146106a0578063da89dce3146106b557600080fd5b80639d944cd9116100f25780639d944cd9146105ad578063a22cb465146105cd578063b423fe67146105ed578063b88d4fde1461060d578063ba1f879f1461062d57600080fd5b806370a0823114610530578063715018a614610550578063853828b6146105655780638da5cb5b1461057a57806395d89b411461059857600080fd5b806333bc1c5c116101bc57806357e7a6aa1161018057806357e7a6aa1461047e5780635de6dc5514610491578063614d08f8146104be5780636352211e146104fa5780636817c76c1461051a57600080fd5b806333bc1c5c146103dd57806342842e0e146103fe57806342966c681461041e5780634f558e791461043e57806355f804b31461045e57600080fd5b806318160ddd1161020357806318160ddd1461032757806320606b701461034057806323b872dd14610382578063287b038b146103a257806332cb6b0c146103c257600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf578063138a4e01146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046124c6565b6107c3565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610815565b60405161026c91906126c5565b3480156102a357600080fd5b506102b76102b2366004612573565b6108a7565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612457565b610941565b005b3480156102fd57600080fd5b5060095461031490640100000000900461ffff1681565b60405161ffff909116815260200161026c565b34801561033357600080fd5b5060075461ffff16610314565b34801561034c57600080fd5b506103747f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60405190815260200161026c565b34801561038e57600080fd5b506102ef61039d366004612375565b610a57565b3480156103ae57600080fd5b506102ef6103bd3660046124ab565b610a89565b3480156103ce57600080fd5b506009546103149061ffff1681565b3480156103e957600080fd5b50600754610260906301000000900460ff1681565b34801561040a57600080fd5b506102ef610419366004612375565b610acf565b34801561042a57600080fd5b506102ef610439366004612573565b610aea565b34801561044a57600080fd5b50610260610459366004612573565b610b78565b34801561046a57600080fd5b506102ef610479366004612500565b610b97565b6102ef61048c36600461258c565b610bd8565b34801561049d57600080fd5b506104b16104ac366004612327565b610deb565b60405161026c9190612681565b3480156104ca57600080fd5b5061028a6040518060400160405280601081526020016f10985b991a5d1cc810dbdb9d1c9858dd60821b81525081565b34801561050657600080fd5b506102b7610515366004612573565b610ef4565b34801561052657600080fd5b50610374600a5481565b34801561053c57600080fd5b5061037461054b366004612327565b610f6b565b34801561055c57600080fd5b506102ef610ff2565b34801561057157600080fd5b506102ef611066565b34801561058657600080fd5b506000546001600160a01b03166102b7565b3480156105a457600080fd5b5061028a6110bf565b3480156105b957600080fd5b506102ef6105c8366004612549565b6110ce565b3480156105d957600080fd5b506102ef6105e836600461242d565b611124565b3480156105f957600080fd5b506102ef6106083660046124ab565b61112f565b34801561061957600080fd5b506102ef6106283660046123b1565b611177565b34801561063957600080fd5b506007546102609062010000900460ff1681565b34801561065957600080fd5b5061028a610668366004612573565b6111af565b34801561067957600080fd5b506102ef610688366004612481565b61128a565b6102ef61069b3660046125a7565b611379565b3480156106ac57600080fd5b5061028a6117d5565b3480156106c157600080fd5b506009546103149062010000900461ffff1681565b3480156106e257600080fd5b506102606106f1366004612342565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072b57600080fd5b506102ef61073a366004612327565b611863565b34801561074b57600080fd5b506102ef61075a366004612573565b61194d565b34801561076b57600080fd5b506103747f79800d7a879f6d3ff90ed42057b41065ab94943f7417273b44f9e3044f19617181565b34801561079f57600080fd5b506102606107ae366004612327565b600c6020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107f457506001600160e01b03198216635b5e139f60e01b145b8061080f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610824906128d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610850906128d1565b801561089d5780601f106108725761010080835404028352916020019161089d565b820191906000526020600020905b81548152906001019060200180831161088057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094c82610ef4565b9050806001600160a01b0316836001600160a01b031614156109ba5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161091c565b336001600160a01b03821614806109d657506109d681336106f1565b610a485760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161091c565b610a528383611982565b505050565b610a62335b826119f0565b610a7e5760405162461bcd60e51b815260040161091c9061275f565b610a52838383611ae7565b6000546001600160a01b03163314610ab35760405162461bcd60e51b815260040161091c9061272a565b60078054911515620100000262ff000019909216919091179055565b610a5283838360405180602001604052806000815250611177565b6000546001600160a01b0316331480610b075750610b0733610a5c565b610b6c5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161091c565b610b7581611c83565b50565b6000818152600360205260408120546001600160a01b0316151561080f565b6000546001600160a01b03163314610bc15760405162461bcd60e51b815260040161091c9061272a565b8051610bd49060089060208401906121c9565b5050565b6007546301000000900460ff16610c315760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f742061637469766500000000000000604482015260640161091c565b323314610c6b5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b604482015260640161091c565b600954610c849061ffff6201000082048116911661286b565b61ffff168160ff16610c9960075461ffff1690565b610ca391906127de565b61ffff161115610cc55760405162461bcd60e51b815260040161091c906127b0565b600954640100000000900461ffff1660ff82161115610d175760405162461bcd60e51b815260206004820152600e60248201526d115e18d959591cc8105b5bdd5b9d60921b604482015260640161091c565b348160ff16600a54610d29919061284c565b1115610d6b5760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b604482015260640161091c565b60005b8160ff168160ff161015610dbc5760008160ff16610d8f60075461ffff1690565b610d9991906127de565b9050610da9338261ffff16611d1e565b50610db5600182612813565b9050610d6e565b50600754610dd29060ff83169061ffff166127de565b6007805461ffff191661ffff9290921691909117905550565b60606000610df883610f6b565b90506000610e0960075461ffff1690565b61ffff16905081610e2b57505060408051600081526020810190915292915050565b60008267ffffffffffffffff811115610e4657610e4661297d565b604051908082528060200260200182016040528015610e6f578160200160208202803683370190505b5090506000805b83811015610ee9576000818152600360205260409020546001600160a01b0388811691161415610ed75780838381518110610eb357610eb3612967565b602090810291909101015281610ec88161290c565b925050848210610ed757610ee9565b80610ee18161290c565b915050610e76565b509095945050505050565b6000818152600360205260408120546001600160a01b03168061080f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161091c565b60006001600160a01b038216610fd65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161091c565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461101c5760405162461bcd60e51b815260040161091c9061272a565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146110905760405162461bcd60e51b815260040161091c9061272a565b6040514790339082156108fc029083906000818181858888f19350505050158015610bd4573d6000803e3d6000fd5b606060028054610824906128d1565b6000546001600160a01b031633146110f85760405162461bcd60e51b815260040161091c9061272a565b6009805461ffff9283166401000000000265ffff0000ffff199091169290931691909117919091179055565b610bd4338383611d38565b6000546001600160a01b031633146111595760405162461bcd60e51b815260040161091c9061272a565b6007805491151563010000000263ff00000019909216919091179055565b61118133836119f0565b61119d5760405162461bcd60e51b815260040161091c9061275f565b6111a984848484611e07565b50505050565b6000818152600360205260409020546060906001600160a01b031661122e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091c565b6000611238611e3a565b905060008151116112585760405180602001604052806000815250611283565b8061126284611e49565b604051602001611273929190612615565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112b45760405162461bcd60e51b815260040161091c9061272a565b60095461ffff1660ff82166112cc60075461ffff1690565b6112d691906127de565b61ffff1611156112f85760405162461bcd60e51b815260040161091c906127b0565b60005b8160ff168160ff1610156113495760008160ff1661131c60075461ffff1690565b61132691906127de565b9050611336848261ffff16611d1e565b50611342600182612813565b90506112fb565b5060075461135f9060ff83169061ffff166127de565b6007805461ffff191661ffff929092169190911790555050565b60075462010000900460ff166113d15760405162461bcd60e51b815260206004820152601a60248201527f507269766174652053616c65206973206e6f7420616374697665000000000000604482015260640161091c565b336000908152600c602052604090205460ff16156114255760405162461bcd60e51b8152602060048201526011602482015270596f75206d696e74656420616c6561647960781b604482015260640161091c565b32331461145f5760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920454f4160c01b604482015260640161091c565b6009546114789061ffff6201000082048116911661286b565b61ffff168460ff1661148d60075461ffff1690565b61149791906127de565b61ffff1611156114b95760405162461bcd60e51b815260040161091c906127b0565b600954640100000000900461ffff1660ff8516111561150b5760405162461bcd60e51b815260206004820152600e60248201526d115e18d959591cc8105b5bdd5b9d60921b604482015260640161091c565b348460ff16600a5461151d919061284c565b111561155f5760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b604482015260640161091c565b604080518082018252601081526f10985b991a5d1cc810dbdb9d1c9858dd60821b60209182015281517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866818301527ff25d48dafea927dd275caba6eb2737a49673cf82973b59acd513048506145bb681840152466060820152306080808301919091528351808303909101815260a0820184528051908301207f79800d7a879f6d3ff90ed42057b41065ab94943f7417273b44f9e3044f19617160c08301523360e083015260ff8816610100808401919091528451808403909101815261012083019094528351939092019290922061190160f01b6101408401526101428301829052610162830181905290916000906101820160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156116de573d6000803e3d6000fd5b5050604051601f190151600b549092506001600160a01b03808416911614905061173e5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e61746f727960781b604482015260640161091c565b60005b8860ff168160ff1610156117855760075461177390339061176a9060ff85169061ffff166127de565b61ffff16611d1e565b61177e600182612813565b9050611741565b5060075461179b9060ff8a169061ffff166127de565b6007805461ffff191661ffff929092169190911790555050336000908152600c60205260409020805460ff19166001179055505050505050565b600880546117e2906128d1565b80601f016020809104026020016040519081016040528092919081815260200182805461180e906128d1565b801561185b5780601f106118305761010080835404028352916020019161185b565b820191906000526020600020905b81548152906001019060200180831161183e57829003601f168201915b505050505081565b6000546001600160a01b0316331461188d5760405162461bcd60e51b815260040161091c9061272a565b6001600160a01b0381166118f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146119775760405162461bcd60e51b815260040161091c9061272a565b600a55565b3b151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b782610ef4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611a695760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161091c565b6000611a7483610ef4565b9050806001600160a01b0316846001600160a01b03161480611aaf5750836001600160a01b0316611aa4846108a7565b6001600160a01b0316145b80611adf57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611afa82610ef4565b6001600160a01b031614611b5e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161091c565b6001600160a01b038216611bc05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161091c565b611bcb600082611982565b6001600160a01b0383166000908152600460205260408120805460019290611bf490849061288e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611c229084906127fb565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611c8e82610ef4565b9050611c9b600083611982565b6001600160a01b0381166000908152600460205260408120805460019290611cc490849061288e565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610bd4828260405180602001604052806000815250611f47565b816001600160a01b0316836001600160a01b03161415611d9a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161091c565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e12848484611ae7565b611e1e84848484611f7a565b6111a95760405162461bcd60e51b815260040161091c906126d8565b606060088054610824906128d1565b606081611e6d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e975780611e818161290c565b9150611e909050600a83612838565b9150611e71565b60008167ffffffffffffffff811115611eb257611eb261297d565b6040519080825280601f01601f191660200182016040528015611edc576020820181803683370190505b5090505b8415611adf57611ef160018361288e565b9150611efe600a86612927565b611f099060306127fb565b60f81b818381518110611f1e57611f1e612967565b60200101906001600160f81b031916908160001a905350611f40600a86612838565b9450611ee0565b611f518383612087565b611f5e6000848484611f7a565b610a525760405162461bcd60e51b815260040161091c906126d8565b60006001600160a01b0384163b1561207c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbe903390899088908890600401612644565b602060405180830381600087803b158015611fd857600080fd5b505af1925050508015612008575060408051601f3d908101601f19168201909252612005918101906124e3565b60015b612062573d808015612036576040519150601f19603f3d011682016040523d82523d6000602084013e61203b565b606091505b50805161205a5760405162461bcd60e51b815260040161091c906126d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611adf565b506001949350505050565b6001600160a01b0382166120dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161091c565b6000818152600360205260409020546001600160a01b0316156121425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091c565b6001600160a01b038216600090815260046020526040812080546001929061216b9084906127fb565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121d5906128d1565b90600052602060002090601f0160209004810192826121f7576000855561223d565b82601f1061221057805160ff191683800117855561223d565b8280016001018555821561223d579182015b8281111561223d578251825591602001919060010190612222565b5061224992915061224d565b5090565b5b80821115612249576000815560010161224e565b600067ffffffffffffffff8084111561227d5761227d61297d565b604051601f8501601f19908116603f011681019082821181831017156122a5576122a561297d565b816040528093508581528686860111156122be57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122ef57600080fd5b919050565b803580151581146122ef57600080fd5b803561ffff811681146122ef57600080fd5b803560ff811681146122ef57600080fd5b60006020828403121561233957600080fd5b611283826122d8565b6000806040838503121561235557600080fd5b61235e836122d8565b915061236c602084016122d8565b90509250929050565b60008060006060848603121561238a57600080fd5b612393846122d8565b92506123a1602085016122d8565b9150604084013590509250925092565b600080600080608085870312156123c757600080fd5b6123d0856122d8565b93506123de602086016122d8565b925060408501359150606085013567ffffffffffffffff81111561240157600080fd5b8501601f8101871361241257600080fd5b61242187823560208401612262565b91505092959194509250565b6000806040838503121561244057600080fd5b612449836122d8565b915061236c602084016122f4565b6000806040838503121561246a57600080fd5b612473836122d8565b946020939093013593505050565b6000806040838503121561249457600080fd5b61249d836122d8565b915061236c60208401612316565b6000602082840312156124bd57600080fd5b611283826122f4565b6000602082840312156124d857600080fd5b813561128381612993565b6000602082840312156124f557600080fd5b815161128381612993565b60006020828403121561251257600080fd5b813567ffffffffffffffff81111561252957600080fd5b8201601f8101841361253a57600080fd5b611adf84823560208401612262565b6000806040838503121561255c57600080fd5b61256583612304565b915061236c60208401612304565b60006020828403121561258557600080fd5b5035919050565b60006020828403121561259e57600080fd5b61128382612316565b600080600080608085870312156125bd57600080fd5b6125c685612316565b93506125d460208601612316565b93969395505050506040820135916060013590565b600081518084526126018160208601602086016128a5565b601f01601f19169290920160200192915050565b600083516126278184602088016128a5565b83519083019061263b8183602088016128a5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612677908301846125e9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126b95783518352928401929184019160010161269d565b50909695505050505050565b60208152600061128360208301846125e9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152734d6178204c696d697420546f2050726573616c6560601b604082015260600190565b600061ffff80831681851680830382111561263b5761263b61293b565b6000821982111561280e5761280e61293b565b500190565b600060ff821660ff84168060ff038211156128305761283061293b565b019392505050565b60008261284757612847612951565b500490565b60008160001904831182151516156128665761286661293b565b500290565b600061ffff838116908316818110156128865761288661293b565b039392505050565b6000828210156128a0576128a061293b565b500390565b60005b838110156128c05781810151838201526020016128a8565b838111156111a95750506000910152565b600181811c908216806128e557607f821691505b6020821081141561290657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129205761292061293b565b5060010190565b60008261293657612936612951565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7557600080fdfea2646970667358221220d38c3982311fe2cb987224bbeb9336ba30d7234375b7ed91db4f5ece74df542664736f6c63430008070033

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

000000000000000000000000449d685a27161c70e8994967152ba0af3bfc2b00

-----Decoded View---------------
Arg [0] : _admin (address): 0x449d685a27161c70E8994967152ba0Af3bfc2B00

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000449d685a27161c70e8994967152ba0af3bfc2b00


Deployed Bytecode Sourcemap

246:5656:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1543:344:4;;;;;;;;;;-1:-1:-1;1543:344:4;;;;;:::i;:::-;;:::i;:::-;;;8365:14:13;;8358:22;8340:41;;8328:2;8313:18;1543:344:4;;;;;;;;2661:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4294:295::-;;;;;;;;;;-1:-1:-1;4294:295:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7026:32:13;;;7008:51;;6996:2;6981:18;4294:295:4;6862:203:13;3832:401:4;;;;;;;;;;-1:-1:-1;3832:401:4;;;;;:::i;:::-;;:::i;:::-;;506:23:1;;;;;;;;;;-1:-1:-1;506:23:1;;;;;;;;;;;;;;19724:6:13;19712:19;;;19694:38;;19682:2;19667:18;506:23:1;19550:188:13;2124:95:1;;;;;;;;;;-1:-1:-1;2201:11:1;;;;2124:95;;704:152;;;;;;;;;;;;754:102;704:152;;;;;8538:25:13;;;8526:2;8511:18;704:152:1;8392:177:13;5171:364:4;;;;;;;;;;-1:-1:-1;5171:364:4;;;;;:::i;:::-;;:::i;1299:99:1:-;;;;;;;;;;-1:-1:-1;1299:99:1;;;;;:::i;:::-;;:::i;442:24::-;;;;;;;;;;-1:-1:-1;442:24:1;;;;;;;;381:22;;;;;;;;;;-1:-1:-1;381:22:1;;;;;;;;;;;5601:179:4;;;;;;;;;;-1:-1:-1;5601:179:4;;;;;:::i;:::-;;:::i;437:318:5:-;;;;;;;;;;-1:-1:-1;437:318:5;;;;;:::i;:::-;;:::i;2016:102:1:-;;;;;;;;;;-1:-1:-1;2016:102:1;;;;;:::i;:::-;;:::i;1792:101::-;;;;;;;;;;-1:-1:-1;1792:101:1;;;;;:::i;:::-;;:::i;3022:683::-;;;;;;:::i;:::-;;:::i;2225:791::-;;;;;;;;;;-1:-1:-1;2225:791:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;641:57::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;641:57:1;;;;;2286:313:4;;;;;;;;;;-1:-1:-1;2286:313:4;;;;;:::i;:::-;;:::i;535:24:1:-;;;;;;;;;;;;;;;;1946:283:4;;;;;;;;;;-1:-1:-1;1946:283:4;;;;;:::i;:::-;;:::i;1715:145:10:-;;;;;;;;;;;;;:::i;5567:155:1:-;;;;;;;;;;;;;:::i;1083:85:10:-;;;;;;;;;;-1:-1:-1;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;1083:85;;2823:102:4;;;;;;;;;;;;;:::i;1617:169:1:-;;;;;;;;;;-1:-1:-1;1617:169:1;;;;;:::i;:::-;;:::i;4656:181:4:-;;;;;;;;;;-1:-1:-1;4656:181:4;;;;;:::i;:::-;;:::i;1404:97:1:-;;;;;;;;;;-1:-1:-1;1404:97:1;;;;;:::i;:::-;;:::i;5846:354:4:-;;;;;;;;;;-1:-1:-1;5846:354:4;;;;;:::i;:::-;;:::i;352:23:1:-;;;;;;;;;;-1:-1:-1;352:23:1;;;;;;;;;;;2991:451:4;;;;;;;;;;-1:-1:-1;2991:451:4;;;;;:::i;:::-;;:::i;5115:446:1:-;;;;;;;;;;-1:-1:-1;5115:446:1;;;;;:::i;:::-;;:::i;3711:1398::-;;;;;;:::i;:::-;;:::i;410:26::-;;;;;;;;;;;;;:::i;472:27::-;;;;;;;;;;-1:-1:-1;472:27:1;;;;;;;;;;;4903:206:4;;;;;;;;;;-1:-1:-1;4903:206:4;;;;;:::i;:::-;-1:-1:-1;;;;;5067:25:4;;;5040:4;5067:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4903:206;2009:274:10;;;;;;;;;;-1:-1:-1;2009:274:10;;;;;:::i;:::-;;:::i;1507:104:1:-;;;;;;;;;;-1:-1:-1;1507:104:1;;;;;:::i;:::-;;:::i;862:91::-;;;;;;;;;;;;910:43;862:91;;594:40;;;;;;;;;;-1:-1:-1;594:40:1;;;;;:::i;:::-;;;;;;;;;;;;;;;;1543:344:4;1685:4;-1:-1:-1;;;;;;1724:40:4;;-1:-1:-1;;;1724:40:4;;:104;;-1:-1:-1;;;;;;;1780:48:4;;-1:-1:-1;;;1780:48:4;1724:104;:156;;;-1:-1:-1;;;;;;;;;;915:40:3;;;1844:36:4;1705:175;1543:344;-1:-1:-1;;1543:344:4:o;2661:98::-;2715:13;2747:5;2740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2661:98;:::o;4294:295::-;4410:7;7794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:4;4433:107;;;;-1:-1:-1;;;4433:107:4;;16976:2:13;4433:107:4;;;16958:21:13;17015:2;16995:18;;;16988:30;17054:34;17034:18;;;17027:62;-1:-1:-1;;;17105:18:13;;;17098:42;17157:19;;4433:107:4;;;;;;;;;-1:-1:-1;4558:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4558:24:4;;4294:295::o;3832:401::-;3912:13;3928:23;3943:7;3928:14;:23::i;:::-;3912:39;;3975:5;-1:-1:-1;;;;;3969:11:4;:2;-1:-1:-1;;;;;3969:11:4;;;3961:57;;;;-1:-1:-1;;;3961:57:4;;18166:2:13;3961:57:4;;;18148:21:13;18205:2;18185:18;;;18178:30;18244:34;18224:18;;;18217:62;-1:-1:-1;;;18295:18:13;;;18288:31;18336:19;;3961:57:4;17964:397:13;3961:57:4;666:10:2;-1:-1:-1;;;;;4050:21:4;;;;:62;;-1:-1:-1;4075:37:4;4092:5;666:10:2;4903:206:4;:::i;4075:37::-;4029:165;;;;-1:-1:-1;;;4029:165:4;;15369:2:13;4029:165:4;;;15351:21:13;15408:2;15388:18;;;15381:30;15447:34;15427:18;;;15420:62;15518:26;15498:18;;;15491:54;15562:19;;4029:165:4;15167:420:13;4029:165:4;4205:21;4214:2;4218:7;4205:8;:21::i;:::-;3902:331;3832:401;;:::o;5171:364::-;5373:41;666:10:2;5392:12:4;5406:7;5373:18;:41::i;:::-;5352:137;;;;-1:-1:-1;;;5352:137:4;;;;;;;:::i;:::-;5500:28;5510:4;5516:2;5520:7;5500:9;:28::i;1299:99:1:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;1371:11:1::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;1371:20:1;;::::1;::::0;;;::::1;::::0;;1299:99::o;5601:179:4:-;5734:39;5751:4;5757:2;5761:7;5734:39;;;;;;;;;;;;:16;:39::i;437:318:5:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;566:23:5;;:84;;-1:-1:-1;609:41:5;666:10:2;628:12:5;587:96:2;609:41:5;545:179;;;;-1:-1:-1;;;545:179:5;;19335:2:13;545:179:5;;;19317:21:13;19374:2;19354:18;;;19347:30;19413:34;19393:18;;;19386:62;-1:-1:-1;;;19464:18:13;;;19457:46;19520:19;;545:179:5;19133:412:13;545:179:5;734:14;740:7;734:5;:14::i;:::-;437:318;:::o;2016:102:1:-;2071:4;7794:16:4;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:4;:30;;2094:17:1;7706:125:4;1792:101:1;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;1864:22:1;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1792:101:::0;:::o;3022:683::-;3100:10;;;;;;;3092:48;;;;-1:-1:-1;;;3092:48:1;;12815:2:13;3092:48:1;;;12797:21:13;12854:2;12834:18;;;12827:30;12893:27;12873:18;;;12866:55;12938:18;;3092:48:1;12613:349:13;3092:48:1;3158:9;3171:10;3158:23;3150:44;;;;-1:-1:-1;;;3150:44:1;;13169:2:13;3150:44:1;;;13151:21:13;13208:1;13188:18;;;13181:29;-1:-1:-1;;;13226:18:13;;;13219:38;13274:18;;3150:44:1;12967:331:13;3150:44:1;3273:13;;3260:26;;3273:13;;;;;;;3260:10;:26;:::i;:::-;3225:61;;3241:15;3225:31;;:13;2201:11;;;;;2124:95;3225:13;:31;;;;:::i;:::-;:61;;;;3204:128;;;;-1:-1:-1;;;3204:128:1;;;;;;;:::i;:::-;3369:9;;;;;;;3350:28;;;;;3342:55;;;;-1:-1:-1;;;3342:55:1;;10182:2:13;3342:55:1;;;10164:21:13;10221:2;10201:18;;;10194:30;-1:-1:-1;;;10240:18:13;;;10233:44;10294:18;;3342:55:1;9980:338:13;3342:55:1;3446:9;3427:15;3415:27;;:9;;:27;;;;:::i;:::-;:40;;3407:70;;;;-1:-1:-1;;;3407:70:1;;13505:2:13;3407:70:1;;;13487:21:13;13544:2;13524:18;;;13517:30;-1:-1:-1;;;13563:18:13;;;13556:47;13620:18;;3407:70:1;13303:341:13;3407:70:1;3493:7;3488:158;3510:15;3506:19;;:1;:19;;;3488:158;;;3549:14;3589:1;3573:17;;:13;2201:11;;;;;2124:95;3573:13;:17;;;;:::i;:::-;3549:42;;3605:30;3615:10;3627:7;3605:30;;:9;:30::i;:::-;-1:-1:-1;3527:6:1;3532:1;3527:6;;:::i;:::-;;;3488:158;;;-1:-1:-1;3669:11:1;;:29;;;;;;:11;;:29;:::i;:::-;3655:11;:43;;-1:-1:-1;;3655:43:1;;;;;;;;;;;;-1:-1:-1;3022:683:1:o;2225:791::-;2311:16;2343:18;2364:16;2374:5;2364:9;:16::i;:::-;2343:37;;2390:14;2407:13;2201:11;;;;;2124:95;2407:13;2390:30;;;-1:-1:-1;2435:15:1;2431:579;;-1:-1:-1;;2473:16:1;;;2487:1;2473:16;;;;;;;;;2466:23;-1:-1:-1;;2225:791:1:o;2431:579::-;2520:23;2560:10;2546:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2546:25:1;;2520:51;;2585:19;2622:15;2652:321;2680:6;2670:7;:16;2652:321;;;2721:16;;;;:7;:16;;;;;;-1:-1:-1;;;;;2721:25:1;;;:16;;:25;2717:242;;;2792:7;2770:6;2777:11;2770:19;;;;;;;;:::i;:::-;;;;;;;;;;:29;2821:13;;;;:::i;:::-;;;;2875:10;2860:11;:25;2856:85;;2913:5;;2856:85;2688:9;;;;:::i;:::-;;;;2652:321;;;-1:-1:-1;2993:6:1;;2225:791;-1:-1:-1;;;;;2225:791:1:o;2286:313:4:-;2398:7;2437:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2437:16:4;2484:19;2463:107;;;;-1:-1:-1;;;2463:107:4;;16205:2:13;2463:107:4;;;16187:21:13;16244:2;16224:18;;;16217:30;16283:34;16263:18;;;16256:62;-1:-1:-1;;;16334:18:13;;;16327:39;16383:19;;2463:107:4;16003:405:13;1946:283:4;2058:7;-1:-1:-1;;;;;2102:19:4;;2081:108;;;;-1:-1:-1;;;2081:108:4;;15794:2:13;2081:108:4;;;15776:21:13;15833:2;15813:18;;;15806:30;15872:34;15852:18;;;15845:62;-1:-1:-1;;;15923:18:13;;;15916:40;15973:19;;2081:108:4;15592:406:13;2081:108:4;-1:-1:-1;;;;;;2206:16:4;;;;;:9;:16;;;;;;;1946:283::o;1715:145:10:-;1129:7;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;1821:1:::1;1805:6:::0;;1784:40:::1;::::0;-1:-1:-1;;;;;1805:6:10;;::::1;::::0;1784:40:::1;::::0;1821:1;;1784:40:::1;1851:1;1834:19:::0;;-1:-1:-1;;;;;;1834:19:10::1;::::0;;1715:145::o;5567:155:1:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;5673:42:1::1;::::0;5642:21:::1;::::0;5681:10:::1;::::0;5673:42;::::1;;;::::0;5642:21;;5619:20:::1;5673:42:::0;5619:20;5673:42;5642:21;5681:10;5673:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;2823:102:4::0;2879:13;2911:7;2904:14;;;;;:::i;1617:169:1:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;1723:10:1::1;:24:::0;;::::1;1757:22:::0;;::::1;::::0;::::1;-1:-1:-1::0;;1757:22:1;;;1723:24;;;::::1;1757:22:::0;;;;;;;::::1;::::0;;1617:169::o;4656:181:4:-;4778:52;666:10:2;4811:8:4;4821;4778:18;:52::i;1404:97:1:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;1475:10:1::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;1475:19:1;;::::1;::::0;;;::::1;::::0;;1404:97::o;5846:354:4:-;6028:41;666:10:2;6061:7:4;6028:18;:41::i;:::-;6007:137;;;;-1:-1:-1;;;6007:137:4;;;;;;;:::i;:::-;6154:39;6168:4;6174:2;6178:7;6187:5;6154:13;:39::i;:::-;5846:354;;;;:::o;2991:451::-;7771:4;7794:16;;;:7;:16;;;;;;3104:13;;-1:-1:-1;;;;;7794:16:4;3133:110;;;;-1:-1:-1;;;3133:110:4;;17750:2:13;3133:110:4;;;17732:21:13;17789:2;17769:18;;;17762:30;17828:34;17808:18;;;17801:62;-1:-1:-1;;;17879:18:13;;;17872:45;17934:19;;3133:110:4;17548:411:13;3133:110:4;3254:21;3278:10;:8;:10::i;:::-;3254:34;;3341:1;3323:7;3317:21;:25;:118;;;;;;;;;;;;;;;;;3385:7;3394:18;:7;:16;:18::i;:::-;3368:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3317:118;3298:137;2991:451;-1:-1:-1;;;2991:451:4:o;5115:446:1:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;5280:10:1::1;::::0;::::1;;5245:31;::::0;::::1;:13;2201:11:::0;;;;;2124:95;5245:13:::1;:31;;;;:::i;:::-;:45;;;;5224:112;;;;-1:-1:-1::0;;;5224:112:1::1;;;;;;;:::i;:::-;5352:7;5347:155;5369:15;5365:19;;:1;:19;;;5347:155;;;5408:14;5448:1;5432:17;;:13;2201:11:::0;;;;;2124:95;5432:13:::1;:17;;;;:::i;:::-;5408:42;;5464:27;5474:7;5483;5464:27;;:9;:27::i;:::-;-1:-1:-1::0;5386:6:1::1;5391:1;5386:6:::0;::::1;:::i;:::-;;;5347:155;;;-1:-1:-1::0;5525:11:1::1;::::0;:29:::1;::::0;::::1;::::0;::::1;::::0;:11:::1;;:29;:::i;:::-;5511:11;:43:::0;;-1:-1:-1;;5511:43:1::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;5115:446:1:o;3711:1398::-;3865:11;;;;;;;3857:50;;;;-1:-1:-1;;;3857:50:1;;12460:2:13;3857:50:1;;;12442:21:13;12499:2;12479:18;;;12472:30;12538:28;12518:18;;;12511:56;12584:18;;3857:50:1;12258:350:13;3857:50:1;3935:10;3926:20;;;;:8;:20;;;;;;;;3925:21;3917:51;;;;-1:-1:-1;;;3917:51:1;;10525:2:13;3917:51:1;;;10507:21:13;10564:2;10544:18;;;10537:30;-1:-1:-1;;;10583:18:13;;;10576:47;10640:18;;3917:51:1;10323:341:13;3917:51:1;3986:9;3999:10;3986:23;3978:44;;;;-1:-1:-1;;;3978:44:1;;13169:2:13;3978:44:1;;;13151:21:13;13208:1;13188:18;;;13181:29;-1:-1:-1;;;13226:18:13;;;13219:38;13274:18;;3978:44:1;12967:331:13;3978:44:1;4101:13;;4088:26;;4101:13;;;;;;;4088:10;:26;:::i;:::-;4053:61;;4069:15;4053:31;;:13;2201:11;;;;;2124:95;4053:13;:31;;;;:::i;:::-;:61;;;;4032:128;;;;-1:-1:-1;;;4032:128:1;;;;;;;:::i;:::-;4197:9;;;;;;;4178:28;;;;;4170:55;;;;-1:-1:-1;;;4170:55:1;;10182:2:13;4170:55:1;;;10164:21:13;10221:2;10201:18;;;10194:30;-1:-1:-1;;;10240:18:13;;;10233:44;10294:18;;4170:55:1;9980:338:13;4170:55:1;4274:9;4255:15;4243:27;;:9;;:27;;;;:::i;:::-;:40;;4235:70;;;;-1:-1:-1;;;4235:70:1;;13505:2:13;4235:70:1;;;13487:21:13;13544:2;13524:18;;;13517:30;-1:-1:-1;;;13563:18:13;;;13556:47;13620:18;;4235:70:1;13303:341:13;4235:70:1;4442:13;;;;;;;;;;;-1:-1:-1;;;4442:13:1;;;;;4365:167;;754:102;4365:167;;;9162:25:13;4426:31:1;9203:18:13;;;9196:34;5851:9:1;9246:18:13;;;9239:34;4513:4:1;9289:18:13;;;;9282:60;;;;4365:167:1;;;;;;;;;;9134:19:13;;;4365:167:1;;4342:200;;;;;;910:43;4596:54;;;8772:25:13;4622:10:1;8813:18:13;;;8806:60;8914:4;8902:17;;8882:18;;;;8875:45;;;;4596:54:1;;;;;;;;;;8745:18:13;;;4596:54:1;;;4573:87;;;;;;;;;;-1:-1:-1;;;4710:57:1;;;6723:27:13;6766:11;;;6759:27;;;6802:12;;;6795:28;;;4342:200:1;;-1:-1:-1;;6839:12:13;;4710:57:1;;;-1:-1:-1;;4710:57:1;;;;;;;;;4687:90;;4710:57;4687:90;;;;4787:17;4807:26;;;;;;;;;9580:25:13;;;9653:4;9641:17;;9621:18;;;9614:45;;;;9675:18;;;9668:34;;;9718:18;;;9711:34;;;4687:90:1;;-1:-1:-1;4787:17:1;4807:26;;9552:19:13;;4807:26:1;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4807:26:1;;-1:-1:-1;;4807:26:1;;4864:5;;4807:26;;-1:-1:-1;;;;;;4851:18:1;;;4864:5;;4851:18;;-1:-1:-1;4843:48:1;;;;-1:-1:-1;;;4843:48:1;;15023:2:13;4843:48:1;;;15005:21:13;15062:2;15042:18;;;15035:30;-1:-1:-1;;;15081:18:13;;;15074:47;15138:18;;4843:48:1;14821:341:13;4843:48:1;4907:7;4902:110;4924:15;4920:19;;:1;:19;;;4902:110;;;4985:11;;4963:38;;4973:10;;4985:15;;;;;;:11;;:15;:::i;:::-;4963:38;;:9;:38::i;:::-;4941:6;4946:1;4941:6;;:::i;:::-;;;4902:110;;;-1:-1:-1;5036:11:1;;:29;;;;;;:11;;:29;:::i;:::-;5022:11;:43;;-1:-1:-1;;5022:43:1;;;;;;;;;;;;-1:-1:-1;;5084:10:1;-1:-1:-1;5075:20:1;;;:8;:20;;;;;:27;;-1:-1:-1;;5075:27:1;-1:-1:-1;5075:27:1;;;-1:-1:-1;;;;;;3711:1398:1:o;410:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2009:274:10:-;1129:7;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2110:22:10;::::1;2089:107;;;::::0;-1:-1:-1;;;2089:107:10;;11290:2:13;2089:107:10::1;::::0;::::1;11272:21:13::0;11329:2;11309:18;;;11302:30;11368:34;11348:18;;;11341:62;-1:-1:-1;;;11419:18:13;;;11412:36;11465:19;;2089:107:10::1;11088:402:13::0;2089:107:10::1;2232:6;::::0;;2211:38:::1;::::0;-1:-1:-1;;;;;2211:38:10;;::::1;::::0;2232:6;::::1;::::0;2211:38:::1;::::0;::::1;2259:6;:17:::0;;-1:-1:-1;;;;;;2259:17:10::1;-1:-1:-1::0;;;;;2259:17:10;;;::::1;::::0;;;::::1;::::0;;2009:274::o;1507:104:1:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:2;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;1580:9:1::1;:24:::0;1507:104::o;718:377:0:-;1034:20;1080:8;;;718:377::o;11843:171:4:-;11917:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11917:29:4;-1:-1:-1;;;;;11917:29:4;;;;;;;;:24;;11970:23;11917:24;11970:14;:23::i;:::-;-1:-1:-1;;;;;11961:46:4;;;;;;;;;;;11843:171;;:::o;7989:438::-;8114:4;7794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:4;8134:107;;;;-1:-1:-1;;;8134:107:4;;14610:2:13;8134:107:4;;;14592:21:13;14649:2;14629:18;;;14622:30;14688:34;14668:18;;;14661:62;-1:-1:-1;;;14739:18:13;;;14732:42;14791:19;;8134:107:4;14408:408:13;8134:107:4;8251:13;8267:23;8282:7;8267:14;:23::i;:::-;8251:39;;8319:5;-1:-1:-1;;;;;8308:16:4;:7;-1:-1:-1;;;;;8308:16:4;;:63;;;;8364:7;-1:-1:-1;;;;;8340:31:4;:20;8352:7;8340:11;:20::i;:::-;-1:-1:-1;;;;;8340:31:4;;8308:63;:111;;;-1:-1:-1;;;;;;5067:25:4;;;5040:4;5067:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8387:32;8300:120;7989:438;-1:-1:-1;;;;7989:438:4:o;11093:639::-;11260:4;-1:-1:-1;;;;;11233:31:4;:23;11248:7;11233:14;:23::i;:::-;-1:-1:-1;;;;;11233:31:4;;11212:115;;;;-1:-1:-1;;;11212:115:4;;11697:2:13;11212:115:4;;;11679:21:13;11736:2;11716:18;;;11709:30;11775:34;11755:18;;;11748:62;-1:-1:-1;;;11826:18:13;;;11819:35;11871:19;;11212:115:4;11495:401:13;11212:115:4;-1:-1:-1;;;;;11345:16:4;;11337:65;;;;-1:-1:-1;;;11337:65:4;;13851:2:13;11337:65:4;;;13833:21:13;13890:2;13870:18;;;13863:30;13929:34;13909:18;;;13902:62;-1:-1:-1;;;13980:18:13;;;13973:34;14024:19;;11337:65:4;13649:400:13;11337:65:4;11514:29;11531:1;11535:7;11514:8;:29::i;:::-;-1:-1:-1;;;;;11554:15:4;;;;;;:9;:15;;;;;:20;;11573:1;;11554:15;:20;;11573:1;;11554:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11584:13:4;;;;;;:9;:13;;;;;:18;;11601:1;;11584:13;:18;;11601:1;;11584:18;:::i;:::-;;;;-1:-1:-1;;11612:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11612:21:4;-1:-1:-1;;;;;11612:21:4;;;;;;;;;11649:27;;11612:16;;11649:27;;;;;;;3902:331;3832:401;;:::o;10363:406::-;10422:13;10438:23;10453:7;10438:14;:23::i;:::-;10422:39;;10558:29;10575:1;10579:7;10558:8;:29::i;:::-;-1:-1:-1;;;;;10598:16:4;;;;;;:9;:16;;;;;:21;;10618:1;;10598:16;:21;;10618:1;;10598:21;:::i;:::-;;;;-1:-1:-1;;10636:16:4;;;;:7;:16;;;;;;10629:23;;-1:-1:-1;;;;;;10629:23:4;;;10668:36;10644:7;;10636:16;-1:-1:-1;;;;;10668:36:4;;;;;10636:16;;10668:36;1864:22:1::1;1792:101:::0;:::o;8757:108:4:-;8832:26;8842:2;8846:7;8832:26;;;;;;;;;;;;:9;:26::i;12149:307::-;12299:8;-1:-1:-1;;;;;12290:17:4;:5;-1:-1:-1;;;;;12290:17:4;;;12282:55;;;;-1:-1:-1;;;12282:55:4;;14256:2:13;12282:55:4;;;14238:21:13;14295:2;14275:18;;;14268:30;14334:27;14314:18;;;14307:55;14379:18;;12282:55:4;14054:349:13;12282:55:4;-1:-1:-1;;;;;12347:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12347:46:4;;;;;;;;;;12408:41;;8340::13;;;12408::4;;8313:18:13;12408:41:4;;;;;;;12149:307;;;:::o;7062:341::-;7213:28;7223:4;7229:2;7233:7;7213:9;:28::i;:::-;7272:48;7295:4;7301:2;7305:7;7314:5;7272:22;:48::i;:::-;7251:145;;;;-1:-1:-1;;;7251:145:4;;;;;;;:::i;1899:111:1:-;1959:13;1991:12;1984:19;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;-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;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-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;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;9086:311:4;9211:18;9217:2;9221:7;9211:5;:18::i;:::-;9260:54;9291:1;9295:2;9299:7;9308:5;9260:22;:54::i;:::-;9239:151;;;;-1:-1:-1;;;9239:151:4;;;;;;;:::i;13009:950::-;13159:4;-1:-1:-1;;;;;13179:13:4;;1034:20:0;1080:8;13175:778:4;;13230:170;;-1:-1:-1;;;13230:170:4;;-1:-1:-1;;;;;13230:36:4;;;;;:170;;666:10:2;;13322:4:4;;13348:7;;13377:5;;13230:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13230:170:4;;;;;;;;-1:-1:-1;;13230:170:4;;;;;;;;;;;;:::i;:::-;;;13210:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13579:13:4;;13575:312;;13621:106;;-1:-1:-1;;;13621:106:4;;;;;;;:::i;13575:312::-;13839:6;13833:13;13824:6;13820:2;13816:15;13809:38;13210:691;-1:-1:-1;;;;;;13462:51:4;-1:-1:-1;;;13462:51:4;;-1:-1:-1;13455:58:4;;13175:778;-1:-1:-1;13938:4:4;13009:950;;;;;;:::o;9719:427::-;-1:-1:-1;;;;;9798:16:4;;9790:61;;;;-1:-1:-1;;;9790:61:4;;16615:2:13;9790:61:4;;;16597:21:13;;;16634:18;;;16627:30;16693:34;16673:18;;;16666:62;16745:18;;9790:61:4;16413:356:13;9790:61:4;7771:4;7794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:4;:30;9861:58;;;;-1:-1:-1;;;9861:58:4;;12103:2:13;9861:58:4;;;12085:21:13;12142:2;12122:18;;;12115:30;12181;12161:18;;;12154:58;12229:18;;9861:58:4;11901:352:13;9861:58:4;-1:-1:-1;;;;;9986:13:4;;;;;;:9;:13;;;;;:18;;10003:1;;9986:13;:18;;10003:1;;9986:18;:::i;:::-;;;;-1:-1:-1;;10014:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10014:21:4;-1:-1:-1;;;;;10014:21:4;;;;;;;;10051:33;;10014:16;;;10051:33;;10014:16;;10051:33;1864:22:1::1;1792:101:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:159;1060:20;;1120:6;1109:18;;1099:29;;1089:57;;1142:1;1139;1132:12;1157:156;1223:20;;1283:4;1272:16;;1262:27;;1252:55;;1303:1;1300;1293:12;1318:186;1377:6;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;1509:260::-;1577:6;1585;1638:2;1626:9;1617:7;1613:23;1609:32;1606:52;;;1654:1;1651;1644:12;1606:52;1677:29;1696:9;1677:29;:::i;:::-;1667:39;;1725:38;1759:2;1748:9;1744:18;1725:38;:::i;:::-;1715:48;;1509:260;;;;;:::o;1774:328::-;1851:6;1859;1867;1920:2;1908:9;1899:7;1895:23;1891:32;1888:52;;;1936:1;1933;1926:12;1888:52;1959:29;1978:9;1959:29;:::i;:::-;1949:39;;2007:38;2041:2;2030:9;2026:18;2007:38;:::i;:::-;1997:48;;2092:2;2081:9;2077:18;2064:32;2054:42;;1774:328;;;;;:::o;2107:666::-;2202:6;2210;2218;2226;2279:3;2267:9;2258:7;2254:23;2250:33;2247:53;;;2296:1;2293;2286:12;2247:53;2319:29;2338:9;2319:29;:::i;:::-;2309:39;;2367:38;2401:2;2390:9;2386:18;2367:38;:::i;:::-;2357:48;;2452:2;2441:9;2437:18;2424:32;2414:42;;2507:2;2496:9;2492:18;2479:32;2534:18;2526:6;2523:30;2520:50;;;2566:1;2563;2556:12;2520:50;2589:22;;2642:4;2634:13;;2630:27;-1:-1:-1;2620:55:13;;2671:1;2668;2661:12;2620:55;2694:73;2759:7;2754:2;2741:16;2736:2;2732;2728:11;2694:73;:::i;:::-;2684:83;;;2107:666;;;;;;;:::o;2778:254::-;2843:6;2851;2904:2;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2943:29;2962:9;2943:29;:::i;:::-;2933:39;;2991:35;3022:2;3011:9;3007:18;2991:35;:::i;3037:254::-;3105:6;3113;3166:2;3154:9;3145:7;3141:23;3137:32;3134:52;;;3182:1;3179;3172:12;3134:52;3205:29;3224:9;3205:29;:::i;:::-;3195:39;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;3037:254:13:o;3296:256::-;3362:6;3370;3423:2;3411:9;3402:7;3398:23;3394:32;3391:52;;;3439:1;3436;3429:12;3391:52;3462:29;3481:9;3462:29;:::i;:::-;3452:39;;3510:36;3542:2;3531:9;3527:18;3510:36;:::i;3557:180::-;3613:6;3666:2;3654:9;3645:7;3641:23;3637:32;3634:52;;;3682:1;3679;3672:12;3634:52;3705:26;3721:9;3705:26;:::i;3742:245::-;3800:6;3853:2;3841:9;3832:7;3828:23;3824:32;3821:52;;;3869:1;3866;3859:12;3821:52;3908:9;3895:23;3927:30;3951:5;3927:30;:::i;3992:249::-;4061:6;4114:2;4102:9;4093:7;4089:23;4085:32;4082:52;;;4130:1;4127;4120:12;4082:52;4162:9;4156:16;4181:30;4205:5;4181:30;:::i;4246:450::-;4315:6;4368:2;4356:9;4347:7;4343:23;4339:32;4336:52;;;4384:1;4381;4374:12;4336:52;4424:9;4411:23;4457:18;4449:6;4446:30;4443:50;;;4489:1;4486;4479:12;4443:50;4512:22;;4565:4;4557:13;;4553:27;-1:-1:-1;4543:55:13;;4594:1;4591;4584:12;4543:55;4617:73;4682:7;4677:2;4664:16;4659:2;4655;4651:11;4617:73;:::i;4701:256::-;4767:6;4775;4828:2;4816:9;4807:7;4803:23;4799:32;4796:52;;;4844:1;4841;4834:12;4796:52;4867:28;4885:9;4867:28;:::i;:::-;4857:38;;4914:37;4947:2;4936:9;4932:18;4914:37;:::i;4962:180::-;5021:6;5074:2;5062:9;5053:7;5049:23;5045:32;5042:52;;;5090:1;5087;5080:12;5042:52;-1:-1:-1;5113:23:13;;4962:180;-1:-1:-1;4962:180:13:o;5147:182::-;5204:6;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:27;5313:9;5296:27;:::i;5334:389::-;5416:6;5424;5432;5440;5493:3;5481:9;5472:7;5468:23;5464:33;5461:53;;;5510:1;5507;5500:12;5461:53;5533:27;5550:9;5533:27;:::i;:::-;5523:37;;5579:36;5611:2;5600:9;5596:18;5579:36;:::i;:::-;5334:389;;5569:46;;-1:-1:-1;;;;5662:2:13;5647:18;;5634:32;;5713:2;5698:18;5685:32;;5334:389::o;5728:257::-;5769:3;5807:5;5801:12;5834:6;5829:3;5822:19;5850:63;5906:6;5899:4;5894:3;5890:14;5883:4;5876:5;5872:16;5850:63;:::i;:::-;5967:2;5946:15;-1:-1:-1;;5942:29:13;5933:39;;;;5974:4;5929:50;;5728:257;-1:-1:-1;;5728:257:13:o;5990:470::-;6169:3;6207:6;6201:13;6223:53;6269:6;6264:3;6257:4;6249:6;6245:17;6223:53;:::i;:::-;6339:13;;6298:16;;;;6361:57;6339:13;6298:16;6395:4;6383:17;;6361:57;:::i;:::-;6434:20;;5990:470;-1:-1:-1;;;;5990:470:13:o;7070:488::-;-1:-1:-1;;;;;7339:15:13;;;7321:34;;7391:15;;7386:2;7371:18;;7364:43;7438:2;7423:18;;7416:34;;;7486:3;7481:2;7466:18;;7459:31;;;7264:4;;7507:45;;7532:19;;7524:6;7507:45;:::i;:::-;7499:53;7070:488;-1:-1:-1;;;;;;7070:488:13:o;7563:632::-;7734:2;7786:21;;;7856:13;;7759:18;;;7878:22;;;7705:4;;7734:2;7957:15;;;;7931:2;7916:18;;;7705:4;8000:169;8014:6;8011:1;8008:13;8000:169;;;8075:13;;8063:26;;8144:15;;;;8109:12;;;;8036:1;8029:9;8000:169;;;-1:-1:-1;8186:3:13;;7563:632;-1:-1:-1;;;;;;7563:632:13:o;9756:219::-;9905:2;9894:9;9887:21;9868:4;9925:44;9965:2;9954:9;9950:18;9942:6;9925:44;:::i;10669:414::-;10871:2;10853:21;;;10910:2;10890:18;;;10883:30;10949:34;10944:2;10929:18;;10922:62;-1:-1:-1;;;11015:2:13;11000:18;;10993:48;11073:3;11058:19;;10669:414::o;17187:356::-;17389:2;17371:21;;;17408:18;;;17401:30;17467:34;17462:2;17447:18;;17440:62;17534:2;17519:18;;17187:356::o;18366:413::-;18568:2;18550:21;;;18607:2;18587:18;;;18580:30;18646:34;18641:2;18626:18;;18619:62;-1:-1:-1;;;18712:2:13;18697:18;;18690:47;18769:3;18754:19;;18366:413::o;18784:344::-;18986:2;18968:21;;;19025:2;19005:18;;;18998:30;-1:-1:-1;;;19059:2:13;19044:18;;19037:50;19119:2;19104:18;;18784:344::o;19925:224::-;19964:3;19992:6;20025:2;20022:1;20018:10;20055:2;20052:1;20048:10;20086:3;20082:2;20078:12;20073:3;20070:21;20067:47;;;20094:18;;:::i;20154:128::-;20194:3;20225:1;20221:6;20218:1;20215:13;20212:39;;;20231:18;;:::i;:::-;-1:-1:-1;20267:9:13;;20154:128::o;20287:204::-;20325:3;20361:4;20358:1;20354:12;20393:4;20390:1;20386:12;20428:3;20422:4;20418:14;20413:3;20410:23;20407:49;;;20436:18;;:::i;:::-;20472:13;;20287:204;-1:-1:-1;;;20287:204:13:o;20496:120::-;20536:1;20562;20552:35;;20567:18;;:::i;:::-;-1:-1:-1;20601:9:13;;20496:120::o;20621:168::-;20661:7;20727:1;20723;20719:6;20715:14;20712:1;20709:21;20704:1;20697:9;20690:17;20686:45;20683:71;;;20734:18;;:::i;:::-;-1:-1:-1;20774:9:13;;20621:168::o;20794:217::-;20833:4;20862:6;20918:10;;;;20888;;20940:12;;;20937:38;;;20955:18;;:::i;:::-;20992:13;;20794:217;-1:-1:-1;;;20794:217:13:o;21016:125::-;21056:4;21084:1;21081;21078:8;21075:34;;;21089:18;;:::i;:::-;-1:-1:-1;21126:9:13;;21016:125::o;21146:258::-;21218:1;21228:113;21242:6;21239:1;21236:13;21228:113;;;21318:11;;;21312:18;21299:11;;;21292:39;21264:2;21257:10;21228:113;;;21359:6;21356:1;21353:13;21350:48;;;-1:-1:-1;;21394:1:13;21376:16;;21369:27;21146:258::o;21409:380::-;21488:1;21484:12;;;;21531;;;21552:61;;21606:4;21598:6;21594:17;21584:27;;21552:61;21659:2;21651:6;21648:14;21628:18;21625:38;21622:161;;;21705:10;21700:3;21696:20;21693:1;21686:31;21740:4;21737:1;21730:15;21768:4;21765:1;21758:15;21622:161;;21409:380;;;:::o;21794:135::-;21833:3;-1:-1:-1;;21854:17:13;;21851:43;;;21874:18;;:::i;:::-;-1:-1:-1;21921:1:13;21910:13;;21794:135::o;21934:112::-;21966:1;21992;21982:35;;21997:18;;:::i;:::-;-1:-1:-1;22031:9:13;;21934:112::o;22051:127::-;22112:10;22107:3;22103:20;22100:1;22093:31;22143:4;22140:1;22133:15;22167:4;22164:1;22157:15;22183:127;22244:10;22239:3;22235:20;22232:1;22225:31;22275:4;22272:1;22265:15;22299:4;22296:1;22289:15;22315:127;22376:10;22371:3;22367:20;22364:1;22357:31;22407:4;22404:1;22397:15;22431:4;22428:1;22421:15;22447:127;22508:10;22503:3;22499:20;22496:1;22489:31;22539:4;22536:1;22529:15;22563:4;22560:1;22553:15;22579:131;-1:-1:-1;;;;;;22653:32:13;;22643:43;;22633:71;;22700:1;22697;22690:12

Swarm Source

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