ETH Price: $2,502.03 (+0.69%)

Token

NeoDeers (NEODEERS)
 

Overview

Max Total Supply

350 NEODEERS

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 NEODEERS
0x000000033b2cf96bbd075b768a578de3605941a2
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:
NeoDeers

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

contract NeoDeers is ERC721A, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public publicCost = 0.003 ether;
    bool public paused = false;
    uint256 public maxPublic = 10;
    uint256 public maxAmount = 10;
    uint256 public maxSupply = 3000;
    string public UnrevealedURI;
    bool public revealed = false;
    uint256 public freeQuantity = 300;
    uint256 public startTime = 1654185600;

    constructor() ERC721A("NeoDeers", "NEODEERS") {
        setBaseURI("ipfs://QmbAqLZxkmPP6kg1Wp2yiDNSBtmZ3zEeWsmbvnFEot3pfc/");
        setUnrevealedUri("ipfs://QmUdQTNBSBSsthDKk4MKXNrLJCCryo4RE4coPrXJX1c8h4/");
    }

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

        if (msg.sender != owner()) {
            require(block.timestamp >= startTime , "Mint didn't start yet");
            require(balanceOf(msg.sender) + quantity <= maxAmount , "youre not allowed to hold that much");
            require(
                quantity <= maxPublic,
                "You're Not Allowed To Mint more than maxMint Amount"
            );
            if(supply + quantity >= freeQuantity && supply >= freeQuantity){
                require(msg.value >= publicCost * quantity, "Insufficient Funds");
            }else{
                require(supply + quantity <= freeQuantity , "Please try with a lower amount to get it for free");
            }
        }
        _safeMint(msg.sender, quantity);
    }

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

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

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

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

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

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

    function setStartTime(uint256 _startTime) public onlyOwner {
        startTime = _startTime;
    }

    function setFreeQuantity(uint256 _freeQuantity) public onlyOwner {
        freeQuantity = _freeQuantity;
    }

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

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

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_publicCost","type":"uint256"},{"internalType":"uint256","name":"_publicMax","type":"uint256"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"}],"name":"Set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UnrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQuantity","type":"uint256"}],"name":"setFreeQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_UnrevealedUri","type":"string"}],"name":"setUnrevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600991906200026d565b50660aa87bee538000600a908155600b805460ff19908116909155600c829055600d91909155610bb8600e5560108054909116905561012c601155636298de806012553480156200007857600080fd5b50604051806040016040528060088152602001674e656f446565727360c01b815250604051806040016040528060088152602001674e454f444545525360c01b8152508160019080519060200190620000d39291906200026d565b508051620000e99060029060208401906200026d565b50505062000106620001006200015460201b60201c565b62000158565b6200012a6040518060600160405280603681526020016200288760369139620001aa565b6200014e604051806060016040528060368152602001620028516036913962000212565b6200034f565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001f95760405162461bcd60e51b81526020600482018190526024820152600080516020620028bd83398151915260448201526064015b60405180910390fd5b80516200020e9060089060208401906200026d565b5050565b6007546001600160a01b031633146200025d5760405162461bcd60e51b81526020600482018190526024820152600080516020620028bd8339815191526044820152606401620001f0565b80516200020e90600f9060208401905b8280546200027b9062000313565b90600052602060002090601f0160209004810192826200029f5760008555620002ea565b82601f10620002ba57805160ff1916838001178555620002ea565b82800160010185558215620002ea579182015b82811115620002ea578251825591602001919060010190620002cd565b50620002f8929150620002fc565b5090565b5b80821115620002f85760008155600101620002fd565b600181811c908216806200032857607f821691505b6020821081036200034957634e487b7160e01b600052602260045260246000fd5b50919050565b6124f2806200035f6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a0712d68116100ab578063d5abeb011161006f578063d5abeb0114610641578063da3ef23f14610657578063e0a8085314610677578063e985e9c514610697578063f2fde38b146106e057600080fd5b8063a0712d68146105b9578063a22cb465146105cc578063b88d4fde146105ec578063c66828621461060c578063c87b56dd1461062157600080fd5b80637dc42975116100f25780637dc429751461053a5780638693da20146105505780638da5cb5b1461056657806390fb5fb91461058457806395d89b41146105a457600080fd5b80636352211e146104ba5780636c0360eb146104da57806370a08231146104ef578063715018a61461050f57806378e979251461052457600080fd5b80632f745c59116101bc5780635183022711610180578063518302271461043a57806355f804b3146104545780635c975abb146104745780635f48f3931461048e578063626c8f8e146104a457600080fd5b80632f745c59146103a55780633ccfd60b146103c55780633e0a322d146103da57806342842e0e146103fa5780634f6ccce71461041a57600080fd5b8063095ea7b311610203578063095ea7b3146103065780630b21d5251461032657806316c38b3c1461034657806318160ddd1461036657806323b872dd1461038557600080fd5b806301ffc9a71461024057806303b462a114610275578063059705231461029757806306fdde03146102b9578063081812fc146102ce575b600080fd5b34801561024c57600080fd5b5061026061025b366004611ec9565b610700565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004611ee6565b61076d565b005b3480156102a357600080fd5b506102ac6107a5565b60405161026c9190611f57565b3480156102c557600080fd5b506102ac610833565b3480156102da57600080fd5b506102ee6102e9366004611ee6565b6108c5565b6040516001600160a01b03909116815260200161026c565b34801561031257600080fd5b50610295610321366004611f86565b610950565b34801561033257600080fd5b50610295610341366004611fb0565b610a67565b34801561035257600080fd5b50610295610361366004611fec565b610a9f565b34801561037257600080fd5b506000545b60405190815260200161026c565b34801561039157600080fd5b506102956103a0366004612007565b610adc565b3480156103b157600080fd5b506103776103c0366004611f86565b610ae7565b3480156103d157600080fd5b50610295610c42565b3480156103e657600080fd5b506102956103f5366004611ee6565b610ce0565b34801561040657600080fd5b50610295610415366004612007565b610d0f565b34801561042657600080fd5b50610377610435366004611ee6565b610d2a565b34801561044657600080fd5b506010546102609060ff1681565b34801561046057600080fd5b5061029561046f3660046120cf565b610d8c565b34801561048057600080fd5b50600b546102609060ff1681565b34801561049a57600080fd5b50610377600d5481565b3480156104b057600080fd5b5061037760115481565b3480156104c657600080fd5b506102ee6104d5366004611ee6565b610dcd565b3480156104e657600080fd5b506102ac610ddf565b3480156104fb57600080fd5b5061037761050a366004612118565b610dec565b34801561051b57600080fd5b50610295610e7d565b34801561053057600080fd5b5061037760125481565b34801561054657600080fd5b50610377600c5481565b34801561055c57600080fd5b50610377600a5481565b34801561057257600080fd5b506007546001600160a01b03166102ee565b34801561059057600080fd5b5061029561059f3660046120cf565b610eb3565b3480156105b057600080fd5b506102ac610ef0565b6102956105c7366004611ee6565b610eff565b3480156105d857600080fd5b506102956105e7366004612133565b611232565b3480156105f857600080fd5b50610295610607366004612166565b6112f6565b34801561061857600080fd5b506102ac61132f565b34801561062d57600080fd5b506102ac61063c366004611ee6565b61133c565b34801561064d57600080fd5b50610377600e5481565b34801561066357600080fd5b506102956106723660046120cf565b6114ad565b34801561068357600080fd5b50610295610692366004611fec565b6114ea565b3480156106a357600080fd5b506102606106b23660046121e2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506102956106fb366004612118565b611527565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506001600160e01b0319821663780e9d6360e01b145b8061076757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107a05760405162461bcd60e51b81526004016107979061220c565b60405180910390fd5b601155565b600f80546107b290612241565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612241565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b505050505081565b60606001805461084290612241565b80601f016020809104026020016040519081016040528092919081815260200182805461086e90612241565b80156108bb5780601f10610890576101008083540402835291602001916108bb565b820191906000526020600020905b81548152906001019060200180831161089e57829003601f168201915b5050505050905090565b60006108d2826000541190565b6109345760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610797565b506000908152600560205260409020546001600160a01b031690565b600061095b82610dcd565b9050806001600160a01b0316836001600160a01b0316036109c95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610797565b336001600160a01b03821614806109e557506109e581336106b2565b610a575760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610797565b610a628383836115bf565b505050565b6007546001600160a01b03163314610a915760405162461bcd60e51b81526004016107979061220c565b600a92909255600c55600d55565b6007546001600160a01b03163314610ac95760405162461bcd60e51b81526004016107979061220c565b600b805460ff1916911515919091179055565b610a6283838361161b565b6000610af283610dec565b8210610b4b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610797565b600080549080805b83811015610be2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ba657805192505b876001600160a01b0316836001600160a01b031603610bd957868403610bd25750935061076792505050565b6001909301925b50600101610b53565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610797565b6007546001600160a01b03163314610c6c5760405162461bcd60e51b81526004016107979061220c565b6000610c806007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cca576040519150601f19603f3d011682016040523d82523d6000602084013e610ccf565b606091505b5050905080610cdd57600080fd5b50565b6007546001600160a01b03163314610d0a5760405162461bcd60e51b81526004016107979061220c565b601255565b610a62838383604051806020016040528060008152506112f6565b600080548210610d885760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610797565b5090565b6007546001600160a01b03163314610db65760405162461bcd60e51b81526004016107979061220c565b8051610dc9906008906020840190611e23565b5050565b6000610dd882611900565b5192915050565b600880546107b290612241565b60006001600160a01b038216610e585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610797565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ea75760405162461bcd60e51b81526004016107979061220c565b610eb160006119d7565b565b6007546001600160a01b03163314610edd5760405162461bcd60e51b81526004016107979061220c565b8051610dc990600f906020840190611e23565b60606002805461084290612241565b600054600b5460ff1615610f555760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610797565b60008211610faf5760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610797565b600e54610fbc8383612291565b1115610fff5760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610797565b6007546001600160a01b031633146112285760125442101561105b5760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08191a591b89dd081cdd185c9d081e595d605a1b6044820152606401610797565b600d548261106833610dec565b6110729190612291565b11156110cc5760405162461bcd60e51b815260206004820152602360248201527f796f757265206e6f7420616c6c6f77656420746f20686f6c642074686174206d6044820152620eac6d60eb1b6064820152608401610797565b600c5482111561113a5760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610797565b6011546111478383612291565b1015801561115757506011548110155b156111b35781600a5461116a91906122a9565b3410156111ae5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610797565b611228565b6011546111c08383612291565b11156112285760405162461bcd60e51b815260206004820152603160248201527f506c656173652074727920776974682061206c6f77657220616d6f756e7420746044820152706f2067657420697420666f72206672656560781b6064820152608401610797565b610dc93383611a29565b336001600160a01b0383160361128a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610797565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61130184848461161b565b61130d84848484611a43565b6113295760405162461bcd60e51b8152600401610797906122c8565b50505050565b600980546107b290612241565b6060611349826000541190565b6113ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610797565b60105460ff16151560000361144e57600f80546113c990612241565b80601f01602080910402602001604051908101604052809291908181526020018280546113f590612241565b80156114425780601f1061141757610100808354040283529160200191611442565b820191906000526020600020905b81548152906001019060200180831161142557829003601f168201915b50505050509050919050565b6000611458611b45565b9050600081511161147857604051806020016040528060008152506114a6565b8061148284611b54565b60096040516020016114969392919061231b565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114d75760405162461bcd60e51b81526004016107979061220c565b8051610dc9906009906020840190611e23565b6007546001600160a01b031633146115145760405162461bcd60e51b81526004016107979061220c565b6010805460ff1916911515919091179055565b6007546001600160a01b031633146115515760405162461bcd60e51b81526004016107979061220c565b6001600160a01b0381166115b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610797565b610cdd816119d7565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162682611900565b80519091506000906001600160a01b0316336001600160a01b0316148061165d575033611652846108c5565b6001600160a01b0316145b8061166f5750815161166f90336106b2565b9050806116d95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610797565b846001600160a01b031682600001516001600160a01b03161461174d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610797565b6001600160a01b0384166117b15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610797565b6117c160008484600001516115bf565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118b657611869816000541190565b156118b6578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261191f826000541190565b61197e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610797565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119cd579392505050565b5060001901611980565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dc9828260405180602001604052806000815250611c55565b60006001600160a01b0384163b15611b3957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a879033908990889088906004016123de565b6020604051808303816000875af1925050508015611ac2575060408051601f3d908101601f19168201909252611abf9181019061241b565b60015b611b1f573d808015611af0576040519150601f19603f3d011682016040523d82523d6000602084013e611af5565b606091505b508051600003611b175760405162461bcd60e51b8152600401610797906122c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b3d565b5060015b949350505050565b60606008805461084290612241565b606081600003611b7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba55780611b8f81612438565b9150611b9e9050600a83612467565b9150611b7f565b60008167ffffffffffffffff811115611bc057611bc0612043565b6040519080825280601f01601f191660200182016040528015611bea576020820181803683370190505b5090505b8415611b3d57611bff60018361247b565b9150611c0c600a86612492565b611c17906030612291565b60f81b818381518110611c2c57611c2c6124a6565b60200101906001600160f81b031916908160001a905350611c4e600a86612467565b9450611bee565b610a6283838360016000546001600160a01b038516611cc05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610797565b83600003611d215760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610797565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e1a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e0e57611df26000888488611a43565b611e0e5760405162461bcd60e51b8152600401610797906122c8565b60019182019101611d9f565b506000556118f9565b828054611e2f90612241565b90600052602060002090601f016020900481019282611e515760008555611e97565b82601f10611e6a57805160ff1916838001178555611e97565b82800160010185558215611e97579182015b82811115611e97578251825591602001919060010190611e7c565b50610d889291505b80821115610d885760008155600101611e9f565b6001600160e01b031981168114610cdd57600080fd5b600060208284031215611edb57600080fd5b81356114a681611eb3565b600060208284031215611ef857600080fd5b5035919050565b60005b83811015611f1a578181015183820152602001611f02565b838111156113295750506000910152565b60008151808452611f43816020860160208601611eff565b601f01601f19169290920160200192915050565b6020815260006114a66020830184611f2b565b80356001600160a01b0381168114611f8157600080fd5b919050565b60008060408385031215611f9957600080fd5b611fa283611f6a565b946020939093013593505050565b600080600060608486031215611fc557600080fd5b505081359360208301359350604090920135919050565b80358015158114611f8157600080fd5b600060208284031215611ffe57600080fd5b6114a682611fdc565b60008060006060848603121561201c57600080fd5b61202584611f6a565b925061203360208501611f6a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561207457612074612043565b604051601f8501601f19908116603f0116810190828211818310171561209c5761209c612043565b816040528093508581528686860111156120b557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120e157600080fd5b813567ffffffffffffffff8111156120f857600080fd5b8201601f8101841361210957600080fd5b611b3d84823560208401612059565b60006020828403121561212a57600080fd5b6114a682611f6a565b6000806040838503121561214657600080fd5b61214f83611f6a565b915061215d60208401611fdc565b90509250929050565b6000806000806080858703121561217c57600080fd5b61218585611f6a565b935061219360208601611f6a565b925060408501359150606085013567ffffffffffffffff8111156121b657600080fd5b8501601f810187136121c757600080fd5b6121d687823560208401612059565b91505092959194509250565b600080604083850312156121f557600080fd5b6121fe83611f6a565b915061215d60208401611f6a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061225557607f821691505b60208210810361227557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122a4576122a461227b565b500190565b60008160001904831182151516156122c3576122c361227b565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061232e8285838a01611eff565b8551918401916123418184848a01611eff565b8554920191600090600181811c908083168061235e57607f831692505b858310810361237b57634e487b7160e01b85526022600452602485fd5b80801561238f57600181146123a0576123cd565b60ff198516885283880195506123cd565b60008b81526020902060005b858110156123c55781548a8201529084019088016123ac565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241190830184611f2b565b9695505050505050565b60006020828403121561242d57600080fd5b81516114a681611eb3565b60006001820161244a5761244a61227b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261247657612476612451565b500490565b60008282101561248d5761248d61227b565b500390565b6000826124a1576124a1612451565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209099af5afc783ed64945e7d9289112747dfde941fd704bd070012ae906b51f0964736f6c634300080e0033697066733a2f2f516d556451544e42534253737468444b6b344d4b584e724c4a434372796f34524534636f5072584a5831633868342f697066733a2f2f516d6241714c5a786b6d5050366b67315770327969444e5342746d5a337a456557736d62766e46456f74337066632f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a0712d68116100ab578063d5abeb011161006f578063d5abeb0114610641578063da3ef23f14610657578063e0a8085314610677578063e985e9c514610697578063f2fde38b146106e057600080fd5b8063a0712d68146105b9578063a22cb465146105cc578063b88d4fde146105ec578063c66828621461060c578063c87b56dd1461062157600080fd5b80637dc42975116100f25780637dc429751461053a5780638693da20146105505780638da5cb5b1461056657806390fb5fb91461058457806395d89b41146105a457600080fd5b80636352211e146104ba5780636c0360eb146104da57806370a08231146104ef578063715018a61461050f57806378e979251461052457600080fd5b80632f745c59116101bc5780635183022711610180578063518302271461043a57806355f804b3146104545780635c975abb146104745780635f48f3931461048e578063626c8f8e146104a457600080fd5b80632f745c59146103a55780633ccfd60b146103c55780633e0a322d146103da57806342842e0e146103fa5780634f6ccce71461041a57600080fd5b8063095ea7b311610203578063095ea7b3146103065780630b21d5251461032657806316c38b3c1461034657806318160ddd1461036657806323b872dd1461038557600080fd5b806301ffc9a71461024057806303b462a114610275578063059705231461029757806306fdde03146102b9578063081812fc146102ce575b600080fd5b34801561024c57600080fd5b5061026061025b366004611ec9565b610700565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004611ee6565b61076d565b005b3480156102a357600080fd5b506102ac6107a5565b60405161026c9190611f57565b3480156102c557600080fd5b506102ac610833565b3480156102da57600080fd5b506102ee6102e9366004611ee6565b6108c5565b6040516001600160a01b03909116815260200161026c565b34801561031257600080fd5b50610295610321366004611f86565b610950565b34801561033257600080fd5b50610295610341366004611fb0565b610a67565b34801561035257600080fd5b50610295610361366004611fec565b610a9f565b34801561037257600080fd5b506000545b60405190815260200161026c565b34801561039157600080fd5b506102956103a0366004612007565b610adc565b3480156103b157600080fd5b506103776103c0366004611f86565b610ae7565b3480156103d157600080fd5b50610295610c42565b3480156103e657600080fd5b506102956103f5366004611ee6565b610ce0565b34801561040657600080fd5b50610295610415366004612007565b610d0f565b34801561042657600080fd5b50610377610435366004611ee6565b610d2a565b34801561044657600080fd5b506010546102609060ff1681565b34801561046057600080fd5b5061029561046f3660046120cf565b610d8c565b34801561048057600080fd5b50600b546102609060ff1681565b34801561049a57600080fd5b50610377600d5481565b3480156104b057600080fd5b5061037760115481565b3480156104c657600080fd5b506102ee6104d5366004611ee6565b610dcd565b3480156104e657600080fd5b506102ac610ddf565b3480156104fb57600080fd5b5061037761050a366004612118565b610dec565b34801561051b57600080fd5b50610295610e7d565b34801561053057600080fd5b5061037760125481565b34801561054657600080fd5b50610377600c5481565b34801561055c57600080fd5b50610377600a5481565b34801561057257600080fd5b506007546001600160a01b03166102ee565b34801561059057600080fd5b5061029561059f3660046120cf565b610eb3565b3480156105b057600080fd5b506102ac610ef0565b6102956105c7366004611ee6565b610eff565b3480156105d857600080fd5b506102956105e7366004612133565b611232565b3480156105f857600080fd5b50610295610607366004612166565b6112f6565b34801561061857600080fd5b506102ac61132f565b34801561062d57600080fd5b506102ac61063c366004611ee6565b61133c565b34801561064d57600080fd5b50610377600e5481565b34801561066357600080fd5b506102956106723660046120cf565b6114ad565b34801561068357600080fd5b50610295610692366004611fec565b6114ea565b3480156106a357600080fd5b506102606106b23660046121e2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506102956106fb366004612118565b611527565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506001600160e01b0319821663780e9d6360e01b145b8061076757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107a05760405162461bcd60e51b81526004016107979061220c565b60405180910390fd5b601155565b600f80546107b290612241565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612241565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b505050505081565b60606001805461084290612241565b80601f016020809104026020016040519081016040528092919081815260200182805461086e90612241565b80156108bb5780601f10610890576101008083540402835291602001916108bb565b820191906000526020600020905b81548152906001019060200180831161089e57829003601f168201915b5050505050905090565b60006108d2826000541190565b6109345760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610797565b506000908152600560205260409020546001600160a01b031690565b600061095b82610dcd565b9050806001600160a01b0316836001600160a01b0316036109c95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610797565b336001600160a01b03821614806109e557506109e581336106b2565b610a575760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610797565b610a628383836115bf565b505050565b6007546001600160a01b03163314610a915760405162461bcd60e51b81526004016107979061220c565b600a92909255600c55600d55565b6007546001600160a01b03163314610ac95760405162461bcd60e51b81526004016107979061220c565b600b805460ff1916911515919091179055565b610a6283838361161b565b6000610af283610dec565b8210610b4b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610797565b600080549080805b83811015610be2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ba657805192505b876001600160a01b0316836001600160a01b031603610bd957868403610bd25750935061076792505050565b6001909301925b50600101610b53565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610797565b6007546001600160a01b03163314610c6c5760405162461bcd60e51b81526004016107979061220c565b6000610c806007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cca576040519150601f19603f3d011682016040523d82523d6000602084013e610ccf565b606091505b5050905080610cdd57600080fd5b50565b6007546001600160a01b03163314610d0a5760405162461bcd60e51b81526004016107979061220c565b601255565b610a62838383604051806020016040528060008152506112f6565b600080548210610d885760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610797565b5090565b6007546001600160a01b03163314610db65760405162461bcd60e51b81526004016107979061220c565b8051610dc9906008906020840190611e23565b5050565b6000610dd882611900565b5192915050565b600880546107b290612241565b60006001600160a01b038216610e585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610797565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ea75760405162461bcd60e51b81526004016107979061220c565b610eb160006119d7565b565b6007546001600160a01b03163314610edd5760405162461bcd60e51b81526004016107979061220c565b8051610dc990600f906020840190611e23565b60606002805461084290612241565b600054600b5460ff1615610f555760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610797565b60008211610faf5760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b6064820152608401610797565b600e54610fbc8383612291565b1115610fff5760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b6044820152606401610797565b6007546001600160a01b031633146112285760125442101561105b5760405162461bcd60e51b8152602060048201526015602482015274135a5b9d08191a591b89dd081cdd185c9d081e595d605a1b6044820152606401610797565b600d548261106833610dec565b6110729190612291565b11156110cc5760405162461bcd60e51b815260206004820152602360248201527f796f757265206e6f7420616c6c6f77656420746f20686f6c642074686174206d6044820152620eac6d60eb1b6064820152608401610797565b600c5482111561113a5760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b6064820152608401610797565b6011546111478383612291565b1015801561115757506011548110155b156111b35781600a5461116a91906122a9565b3410156111ae5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610797565b611228565b6011546111c08383612291565b11156112285760405162461bcd60e51b815260206004820152603160248201527f506c656173652074727920776974682061206c6f77657220616d6f756e7420746044820152706f2067657420697420666f72206672656560781b6064820152608401610797565b610dc93383611a29565b336001600160a01b0383160361128a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610797565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61130184848461161b565b61130d84848484611a43565b6113295760405162461bcd60e51b8152600401610797906122c8565b50505050565b600980546107b290612241565b6060611349826000541190565b6113ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610797565b60105460ff16151560000361144e57600f80546113c990612241565b80601f01602080910402602001604051908101604052809291908181526020018280546113f590612241565b80156114425780601f1061141757610100808354040283529160200191611442565b820191906000526020600020905b81548152906001019060200180831161142557829003601f168201915b50505050509050919050565b6000611458611b45565b9050600081511161147857604051806020016040528060008152506114a6565b8061148284611b54565b60096040516020016114969392919061231b565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114d75760405162461bcd60e51b81526004016107979061220c565b8051610dc9906009906020840190611e23565b6007546001600160a01b031633146115145760405162461bcd60e51b81526004016107979061220c565b6010805460ff1916911515919091179055565b6007546001600160a01b031633146115515760405162461bcd60e51b81526004016107979061220c565b6001600160a01b0381166115b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610797565b610cdd816119d7565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162682611900565b80519091506000906001600160a01b0316336001600160a01b0316148061165d575033611652846108c5565b6001600160a01b0316145b8061166f5750815161166f90336106b2565b9050806116d95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610797565b846001600160a01b031682600001516001600160a01b03161461174d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610797565b6001600160a01b0384166117b15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610797565b6117c160008484600001516115bf565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118b657611869816000541190565b156118b6578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261191f826000541190565b61197e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610797565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119cd579392505050565b5060001901611980565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dc9828260405180602001604052806000815250611c55565b60006001600160a01b0384163b15611b3957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a879033908990889088906004016123de565b6020604051808303816000875af1925050508015611ac2575060408051601f3d908101601f19168201909252611abf9181019061241b565b60015b611b1f573d808015611af0576040519150601f19603f3d011682016040523d82523d6000602084013e611af5565b606091505b508051600003611b175760405162461bcd60e51b8152600401610797906122c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b3d565b5060015b949350505050565b60606008805461084290612241565b606081600003611b7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba55780611b8f81612438565b9150611b9e9050600a83612467565b9150611b7f565b60008167ffffffffffffffff811115611bc057611bc0612043565b6040519080825280601f01601f191660200182016040528015611bea576020820181803683370190505b5090505b8415611b3d57611bff60018361247b565b9150611c0c600a86612492565b611c17906030612291565b60f81b818381518110611c2c57611c2c6124a6565b60200101906001600160f81b031916908160001a905350611c4e600a86612467565b9450611bee565b610a6283838360016000546001600160a01b038516611cc05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610797565b83600003611d215760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610797565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611e1a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611e0e57611df26000888488611a43565b611e0e5760405162461bcd60e51b8152600401610797906122c8565b60019182019101611d9f565b506000556118f9565b828054611e2f90612241565b90600052602060002090601f016020900481019282611e515760008555611e97565b82601f10611e6a57805160ff1916838001178555611e97565b82800160010185558215611e97579182015b82811115611e97578251825591602001919060010190611e7c565b50610d889291505b80821115610d885760008155600101611e9f565b6001600160e01b031981168114610cdd57600080fd5b600060208284031215611edb57600080fd5b81356114a681611eb3565b600060208284031215611ef857600080fd5b5035919050565b60005b83811015611f1a578181015183820152602001611f02565b838111156113295750506000910152565b60008151808452611f43816020860160208601611eff565b601f01601f19169290920160200192915050565b6020815260006114a66020830184611f2b565b80356001600160a01b0381168114611f8157600080fd5b919050565b60008060408385031215611f9957600080fd5b611fa283611f6a565b946020939093013593505050565b600080600060608486031215611fc557600080fd5b505081359360208301359350604090920135919050565b80358015158114611f8157600080fd5b600060208284031215611ffe57600080fd5b6114a682611fdc565b60008060006060848603121561201c57600080fd5b61202584611f6a565b925061203360208501611f6a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561207457612074612043565b604051601f8501601f19908116603f0116810190828211818310171561209c5761209c612043565b816040528093508581528686860111156120b557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120e157600080fd5b813567ffffffffffffffff8111156120f857600080fd5b8201601f8101841361210957600080fd5b611b3d84823560208401612059565b60006020828403121561212a57600080fd5b6114a682611f6a565b6000806040838503121561214657600080fd5b61214f83611f6a565b915061215d60208401611fdc565b90509250929050565b6000806000806080858703121561217c57600080fd5b61218585611f6a565b935061219360208601611f6a565b925060408501359150606085013567ffffffffffffffff8111156121b657600080fd5b8501601f810187136121c757600080fd5b6121d687823560208401612059565b91505092959194509250565b600080604083850312156121f557600080fd5b6121fe83611f6a565b915061215d60208401611f6a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061225557607f821691505b60208210810361227557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122a4576122a461227b565b500190565b60008160001904831182151516156122c3576122c361227b565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061232e8285838a01611eff565b8551918401916123418184848a01611eff565b8554920191600090600181811c908083168061235e57607f831692505b858310810361237b57634e487b7160e01b85526022600452602485fd5b80801561238f57600181146123a0576123cd565b60ff198516885283880195506123cd565b60008b81526020902060005b858110156123c55781548a8201529084019088016123ac565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241190830184611f2b565b9695505050505050565b60006020828403121561242d57600080fd5b81516114a681611eb3565b60006001820161244a5761244a61227b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261247657612476612451565b500490565b60008282101561248d5761248d61227b565b500390565b6000826124a1576124a1612451565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209099af5afc783ed64945e7d9289112747dfde941fd704bd070012ae906b51f0964736f6c634300080e0033

Deployed Bytecode Sourcemap

105:3684:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744:410:3;;;;;;;;;;-1:-1:-1;3744:410:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;3744:410:3;;;;;;;;3050:110:11;;;;;;;;;;-1:-1:-1;3050:110:11;;;;;:::i;:::-;;:::i;:::-;;434:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5720:98:3:-;;;;;;;;;;;;;:::i;7356:280::-;;;;;;;;;;-1:-1:-1;7356:280:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:12;;;1674:51;;1662:2;1647:18;7356:280:3;1528:203:12;6892:403:3;;;;;;;;;;-1:-1:-1;6892:403:3;;;;;:::i;:::-;;:::i;2656:197:11:-;;;;;;;;;;-1:-1:-1;2656:197:11;;;;;:::i;:::-;;:::i;2859:81::-;;;;;;;;;;-1:-1:-1;2859:81:11;;;;;:::i;:::-;;:::i;1974:98:3:-;;;;;;;;;;-1:-1:-1;2027:7:3;2053:12;1974:98;;;2990:25:12;;;2978:2;2963:18;1974:98:3;2844:177:12;8340:156:3;;;;;;;;;;-1:-1:-1;8340:156:3;;;;;:::i;:::-;;:::i;2657:1020::-;;;;;;;;;;-1:-1:-1;2657:1020:3;;;;;:::i;:::-;;:::i;3643:144:11:-;;;;;;;;;;;;;:::i;2946:98::-;;;;;;;;;;-1:-1:-1;2946:98:11;;;;;:::i;:::-;;:::i;8562:171:3:-;;;;;;;;;;-1:-1:-1;8562:171:3;;;;;:::i;:::-;;:::i;2144:220::-;;;;;;;;;;-1:-1:-1;2144:220:3;;;;;:::i;:::-;;:::i;467:28:11:-;;;;;;;;;;-1:-1:-1;467:28:11;;;;;;;;3383:102;;;;;;;;;;-1:-1:-1;3383:102:11;;;;;:::i;:::-;;:::i;295:26::-;;;;;;;;;;-1:-1:-1;295:26:11;;;;;;;;362:29;;;;;;;;;;;;;;;;501:33;;;;;;;;;;;;;;;;5536:122:3;;;;;;;;;;-1:-1:-1;5536:122:3;;;;;:::i;:::-;;:::i;180:21:11:-;;;;;;;;;;;;;:::i;4213:252:3:-;;;;;;;;;;-1:-1:-1;4213:252:3;;;;;:::i;:::-;;:::i;1628:101:9:-;;;;;;;;;;;;;:::i;540:37:11:-;;;;;;;;;;;;;;;;327:29;;;;;;;;;;;;;;;;250:39;;;;;;;;;;;;;;;;996:85:9;;;;;;;;;;-1:-1:-1;1068:6:9;;-1:-1:-1;;;;;1068:6:9;996:85;;3257:120:11;;;;;;;;;;-1:-1:-1;3257:120:11;;;;;:::i;:::-;;:::i;5882:102:3:-;;;;;;;;;;;;;:::i;805:1014:11:-;;;;;;:::i;:::-;;:::i;7703:303:3:-;;;;;;;;;;-1:-1:-1;7703:303:3;;;;;:::i;:::-;;:::i;8799:344::-;;;;;;;;;;-1:-1:-1;8799:344:3;;;;;:::i;:::-;;:::i;207:37:11:-;;;;;;;;;;;;;:::i;1953:697::-;;;;;;;;;;-1:-1:-1;1953:697:11;;;;;:::i;:::-;;:::i;397:31::-;;;;;;;;;;;;;;;;3491:146;;;;;;;;;;-1:-1:-1;3491:146:11;;;;;:::i;:::-;;:::i;3166:85::-;;;;;;;;;;-1:-1:-1;3166:85:11;;;;;:::i;:::-;;:::i;8072:206:3:-;;;;;;;;;;-1:-1:-1;8072:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;8236:25:3;;;8209:4;8236:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8072:206;1878:232:9;;;;;;;;;;-1:-1:-1;1878:232:9;;;;;:::i;:::-;;:::i;3744:410:3:-;3886:4;-1:-1:-1;;;;;;3925:40:3;;-1:-1:-1;;;3925:40:3;;:104;;-1:-1:-1;;;;;;;3981:48:3;;-1:-1:-1;;;3981:48:3;3925:104;:170;;;-1:-1:-1;;;;;;;4045:50:3;;-1:-1:-1;;;4045:50:3;3925:170;:222;;;-1:-1:-1;;;;;;;;;;981:40:2;;;4111:36:3;3906:241;3744:410;-1:-1:-1;;3744:410:3:o;3050:110:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;;;;;;;;;3125:12:11::1;:28:::0;3050:110::o;434:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5720:98:3:-;5774:13;5806:5;5799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720:98;:::o;7356:280::-;7456:7;7500:16;7508:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;7500:16;7479:108;;;;-1:-1:-1;;;7479:108:3;;6919:2:12;7479:108:3;;;6901:21:12;6958:2;6938:18;;;6931:30;6997:34;6977:18;;;6970:62;-1:-1:-1;;;7048:18:12;;;7041:43;7101:19;;7479:108:3;6717:409:12;7479:108:3;-1:-1:-1;7605:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7605:24:3;;7356:280::o;6892:403::-;6964:13;6980:24;6996:7;6980:15;:24::i;:::-;6964:40;;7028:5;-1:-1:-1;;;;;7022:11:3;:2;-1:-1:-1;;;;;7022:11:3;;7014:58;;;;-1:-1:-1;;;7014:58:3;;7333:2:12;7014:58:3;;;7315:21:12;7372:2;7352:18;;;7345:30;7411:34;7391:18;;;7384:62;-1:-1:-1;;;7462:18:12;;;7455:32;7504:19;;7014:58:3;7131:398:12;7014:58:3;665:10:1;-1:-1:-1;;;;;7104:21:3;;;;:62;;-1:-1:-1;7129:37:3;7146:5;665:10:1;8072:206:3;:::i;7129:37::-;7083:166;;;;-1:-1:-1;;;7083:166:3;;7736:2:12;7083:166:3;;;7718:21:12;7775:2;7755:18;;;7748:30;7814:34;7794:18;;;7787:62;7885:27;7865:18;;;7858:55;7930:19;;7083:166:3;7534:421:12;7083:166:3;7260:28;7269:2;7273:7;7282:5;7260:8;:28::i;:::-;6954:341;6892:403;;:::o;2656:197:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2758:10:11::1;:24:::0;;;;2792:9:::1;:22:::0;2824:9:::1;:22:::0;2656:197::o;2859:81::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;2918:6:11::1;:15:::0;;-1:-1:-1;;2918:15:11::1;::::0;::::1;;::::0;;;::::1;::::0;;2859:81::o;8340:156:3:-;8461:28;8471:4;8477:2;8481:7;8461:9;:28::i;2657:1020::-;2778:7;2817:16;2827:5;2817:9;:16::i;:::-;2809:5;:24;2801:71;;;;-1:-1:-1;;;2801:71:3;;8162:2:12;2801:71:3;;;8144:21:12;8201:2;8181:18;;;8174:30;8240:34;8220:18;;;8213:62;-1:-1:-1;;;8291:18:12;;;8284:32;8333:19;;2801:71:3;7960:398:12;2801:71:3;2882:22;2053:12;;;2882:22;;3139:455;3159:14;3155:1;:18;3139:455;;;3198:31;3232:14;;;:11;:14;;;;;;;;;3198:48;;;;;;;;;-1:-1:-1;;;;;3198:48:3;;;;;-1:-1:-1;;;3198:48:3;;;;;;;;;;;;3268:28;3264:109;;3340:14;;;-1:-1:-1;3264:109:3;3415:5;-1:-1:-1;;;;;3394:26:3;:17;-1:-1:-1;;;;;3394:26:3;;3390:190;;3463:5;3448:11;:20;3444:83;;-1:-1:-1;3503:1:3;-1:-1:-1;3496:8:3;;-1:-1:-1;;;3496:8:3;3444:83;3548:13;;;;;3390:190;-1:-1:-1;3175:3:3;;3139:455;;;-1:-1:-1;3614:56:3;;-1:-1:-1;;;3614:56:3;;8565:2:12;3614:56:3;;;8547:21:12;8604:2;8584:18;;;8577:30;8643:34;8623:18;;;8616:62;-1:-1:-1;;;8694:18:12;;;8687:44;8748:19;;3614:56:3;8363:410:12;3643:144:11;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3691:7:11::1;3712;1068:6:9::0;;-1:-1:-1;;;;;1068:6:9;;996:85;3712:7:11::1;-1:-1:-1::0;;;;;3704:21:11::1;3733;3704:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3690:69;;;3777:2;3769:11;;;::::0;::::1;;3680:107;3643:144::o:0;2946:98::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3015:9:11::1;:22:::0;2946:98::o;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;2144:220::-;2243:7;2053:12;;2274:5;:21;2266:69;;;;-1:-1:-1;;;2266:69:3;;9190:2:12;2266:69:3;;;9172:21:12;9229:2;9209:18;;;9202:30;9268:34;9248:18;;;9241:62;-1:-1:-1;;;9319:18:12;;;9312:33;9362:19;;2266:69:3;8988:399:12;2266:69:3;-1:-1:-1;2352:5:3;2144:220::o;3383:102:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3457:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3383:102:::0;:::o;5536:122:3:-;5600:7;5626:20;5638:7;5626:11;:20::i;:::-;:25;;5536:122;-1:-1:-1;;5536:122:3:o;180:21:11:-;;;;;;;:::i;4213:252:3:-;4277:7;-1:-1:-1;;;;;4317:19:3;;4296:109;;;;-1:-1:-1;;;4296:109:3;;9594:2:12;4296:109:3;;;9576:21:12;9633:2;9613:18;;;9606:30;9672:34;9652:18;;;9645:62;-1:-1:-1;;;9723:18:12;;;9716:41;9774:19;;4296:109:3;9392:407:12;4296:109:3;-1:-1:-1;;;;;;4430:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4430:27:3;;4213:252::o;1628:101:9:-;1068:6;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;1692:30:::1;1719:1;1692:18;:30::i;:::-;1628:101::o:0;3257:120:11:-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3340:30:11;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;5882:102:3:-:0;5938:13;5970:7;5963:14;;;;;:::i;805:1014:11:-;864:14;2053:12:3;913:6:11;;;;912:7;904:43;;;;-1:-1:-1;;;904:43:11;;10006:2:12;904:43:11;;;9988:21:12;10045:2;10025:18;;;10018:30;10084:25;10064:18;;;10057:53;10127:18;;904:43:11;9804:347:12;904:43:11;976:1;965:8;:12;957:58;;;;-1:-1:-1;;;957:58:11;;10358:2:12;957:58:11;;;10340:21:12;10397:2;10377:18;;;10370:30;10436:34;10416:18;;;10409:62;-1:-1:-1;;;10487:18:12;;;10480:31;10528:19;;957:58:11;10156:397:12;957:58:11;1054:9;;1033:17;1042:8;1033:6;:17;:::i;:::-;:30;;1025:61;;;;-1:-1:-1;;;1025:61:11;;11025:2:12;1025:61:11;;;11007:21:12;11064:2;11044:18;;;11037:30;-1:-1:-1;;;11083:18:12;;;11076:48;11141:18;;1025:61:11;10823:342:12;1025:61:11;1068:6:9;;-1:-1:-1;;;;;1068:6:9;1101:10:11;:21;1097:675;;1165:9;;1146:15;:28;;1138:63;;;;-1:-1:-1;;;1138:63:11;;11372:2:12;1138:63:11;;;11354:21:12;11411:2;11391:18;;;11384:30;-1:-1:-1;;;11430:18:12;;;11423:51;11491:18;;1138:63:11;11170:345:12;1138:63:11;1259:9;;1247:8;1223:21;1233:10;1223:9;:21::i;:::-;:32;;;;:::i;:::-;:45;;1215:94;;;;-1:-1:-1;;;1215:94:11;;11722:2:12;1215:94:11;;;11704:21:12;11761:2;11741:18;;;11734:30;11800:34;11780:18;;;11773:62;-1:-1:-1;;;11851:18:12;;;11844:33;11894:19;;1215:94:11;11520:399:12;1215:94:11;1360:9;;1348:8;:21;;1323:131;;;;-1:-1:-1;;;1323:131:11;;12126:2:12;1323:131:11;;;12108:21:12;12165:2;12145:18;;;12138:30;12204:34;12184:18;;;12177:62;-1:-1:-1;;;12255:18:12;;;12248:49;12314:19;;1323:131:11;11924:415:12;1323:131:11;1492:12;;1471:17;1480:8;1471:6;:17;:::i;:::-;:33;;:59;;;;;1518:12;;1508:6;:22;;1471:59;1468:294;;;1583:8;1570:10;;:21;;;;:::i;:::-;1557:9;:34;;1549:65;;;;-1:-1:-1;;;1549:65:11;;12719:2:12;1549:65:11;;;12701:21:12;12758:2;12738:18;;;12731:30;-1:-1:-1;;;12777:18:12;;;12770:48;12835:18;;1549:65:11;12517:342:12;1549:65:11;1468:294;;;1680:12;;1659:17;1668:8;1659:6;:17;:::i;:::-;:33;;1651:96;;;;-1:-1:-1;;;1651:96:11;;13066:2:12;1651:96:11;;;13048:21:12;13105:2;13085:18;;;13078:30;13144:34;13124:18;;;13117:62;-1:-1:-1;;;13195:18:12;;;13188:47;13252:19;;1651:96:11;12864:413:12;1651:96:11;1781:31;1791:10;1803:8;1781:9;:31::i;7703:303:3:-;665:10:1;-1:-1:-1;;;;;7817:24:3;;;7809:63;;;;-1:-1:-1;;;7809:63:3;;13484:2:12;7809:63:3;;;13466:21:12;13523:2;13503:18;;;13496:30;13562:28;13542:18;;;13535:56;13608:18;;7809:63:3;13282:350:12;7809:63:3;665:10:1;7883:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7883:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7883:53:3;;;;;;;;;;7951:48;;540:41:12;;;7883:42:3;;665:10:1;7951:48:3;;513:18:12;7951:48:3;;;;;;;7703:303;;:::o;8799:344::-;8952:28;8962:4;8968:2;8972:7;8952:9;:28::i;:::-;9011:48;9034:4;9040:2;9044:7;9053:5;9011:22;:48::i;:::-;8990:146;;;;-1:-1:-1;;;8990:146:3;;;;;;;:::i;:::-;8799:344;;;;:::o;207:37:11:-;;;;;;;:::i;1953:697::-;2066:13;2116:16;2124:7;9446:4:3;9479:12;-1:-1:-1;9469:22:3;9389:109;2116:16:11;2095:110;;;;-1:-1:-1;;;2095:110:11;;14259:2:12;2095:110:11;;;14241:21:12;14298:2;14278:18;;;14271:30;14337:34;14317:18;;;14310:62;-1:-1:-1;;;14388:18:12;;;14381:45;14443:19;;2095:110:11;14057:411:12;2095:110:11;2220:8;;;;:17;;:8;:17;2216:68;;2260:13;2253:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953:697;;;:::o;2216:68::-;2294:28;2325:10;:8;:10::i;:::-;2294:41;;2395:1;2370:14;2364:28;:32;:279;;;;;;;;;;;;;;;;;2485:14;2525:18;:7;:16;:18::i;:::-;2569:13;2443:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2364:279;2345:298;1953:697;-1:-1:-1;;;1953:697:11:o;3491:146::-;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3597:33:11;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;3166:85::-:0;1068:6:9;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;3227:8:11::1;:17:::0;;-1:-1:-1;;3227:17:11::1;::::0;::::1;;::::0;;;::::1;::::0;;3166:85::o;1878:232:9:-;1068:6;;-1:-1:-1;;;;;1068:6:9;665:10:1;1208:23:9;1200:68;;;;-1:-1:-1;;;1200:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1979:22:9;::::1;1958:107;;;::::0;-1:-1:-1;;;1958:107:9;;16333:2:12;1958:107:9::1;::::0;::::1;16315:21:12::0;16372:2;16352:18;;;16345:30;16411:34;16391:18;;;16384:62;-1:-1:-1;;;16462:18:12;;;16455:36;16508:19;;1958:107:9::1;16131:402:12::0;1958:107:9::1;2075:28;2094:8;2075:18;:28::i;14401:189:3:-:0;14511:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;14511:29:3;-1:-1:-1;;;;;14511:29:3;;;;;;;;;14555:28;;14511:24;;14555:28;;;;;;;14401:189;;;:::o;12239:2051::-;12349:35;12387:20;12399:7;12387:11;:20::i;:::-;12460:18;;12349:58;;-1:-1:-1;12418:22:3;;-1:-1:-1;;;;;12444:34:3;665:10:1;-1:-1:-1;;;;;12444:34:3;;:86;;;-1:-1:-1;665:10:1;12494:20:3;12506:7;12494:11;:20::i;:::-;-1:-1:-1;;;;;12494:36:3;;12444:86;:152;;;-1:-1:-1;12563:18:3;;12546:50;;665:10:1;8072:206:3;:::i;12546:50::-;12418:179;;12629:17;12608:114;;;;-1:-1:-1;;;12608:114:3;;16740:2:12;12608:114:3;;;16722:21:12;16779:2;16759:18;;;16752:30;16818:34;16798:18;;;16791:62;-1:-1:-1;;;16869:18:12;;;16862:48;16927:19;;12608:114:3;16538:414:12;12608:114:3;12776:4;-1:-1:-1;;;;;12754:26:3;:13;:18;;;-1:-1:-1;;;;;12754:26:3;;12733:111;;;;-1:-1:-1;;;12733:111:3;;17159:2:12;12733:111:3;;;17141:21:12;17198:2;17178:18;;;17171:30;17237:34;17217:18;;;17210:62;-1:-1:-1;;;17288:18:12;;;17281:36;17334:19;;12733:111:3;16957:402:12;12733:111:3;-1:-1:-1;;;;;12862:16:3;;12854:66;;;;-1:-1:-1;;;12854:66:3;;17566:2:12;12854:66:3;;;17548:21:12;17605:2;17585:18;;;17578:30;17644:34;17624:18;;;17617:62;-1:-1:-1;;;17695:18:12;;;17688:35;17740:19;;12854:66:3;17364:401:12;12854:66:3;13036:49;13053:1;13057:7;13066:13;:18;;;13036:8;:49::i;:::-;-1:-1:-1;;;;;13375:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;13375:31:3;;;-1:-1:-1;;;;;13375:31:3;;;-1:-1:-1;;13375:31:3;;;;;;;13420:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13420:29:3;;;;;;;;;;;;;13464:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;13508:61:3;;;;-1:-1:-1;;;13553:15:3;13508:61;;;;;;13839:11;;;13868:24;;;;;:29;13839:11;;13868:29;13864:315;;13935:20;13943:11;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;13935:20;13931:234;;;14011:18;;;13979:24;;;:11;:24;;;;;;;;:50;;14093:53;;;;14051:95;;-1:-1:-1;;;14051:95:3;-1:-1:-1;;;;;;14051:95:3;;;-1:-1:-1;;;;;13979:50:3;;;14051:95;;;;;;;13931:234;13351:838;14223:7;14219:2;-1:-1:-1;;;;;14204:27:3;14213:4;-1:-1:-1;;;;;14204:27:3;;;;;;;;;;;14241:42;12339:1951;;12239:2051;;;:::o;4927:552::-;-1:-1:-1;;;;;;;;;;;;;;;;;5057:16:3;5065:7;9446:4;9479:12;-1:-1:-1;9469:22:3;9389:109;5057:16;5049:71;;;;-1:-1:-1;;;5049:71:3;;17972:2:12;5049:71:3;;;17954:21:12;18011:2;17991:18;;;17984:30;18050:34;18030:18;;;18023:62;-1:-1:-1;;;18101:18:12;;;18094:40;18151:19;;5049:71:3;17770:406:12;5049:71:3;5175:7;5155:240;5221:31;5255:17;;;:11;:17;;;;;;;;;5221:51;;;;;;;;;-1:-1:-1;;;;;5221:51:3;;;;;-1:-1:-1;;;5221:51:3;;;;;;;;;;;;5294:28;5290:91;;5353:9;4927:552;-1:-1:-1;;;4927:552:3:o;5290:91::-;-1:-1:-1;;;5195:6:3;5155:240;;2264:187:9;2356:6;;;-1:-1:-1;;;;;2372:17:9;;;-1:-1:-1;;;;;;2372:17:9;;;;;;;2404:40;;2356:6;;;2372:17;2356:6;;2404:40;;2337:16;;2404:40;2327:124;2264:187;:::o;9504:102:3:-;9572:27;9582:2;9586:8;9572:27;;;;;;;;;;;;:9;:27::i;15143:955::-;15293:4;-1:-1:-1;;;;;15313:13:3;;1450:19:0;:23;15309:783:3;;15364:170;;-1:-1:-1;;;15364:170:3;;-1:-1:-1;;;;;15364:36:3;;;;;:170;;665:10:1;;15456:4:3;;15482:7;;15511:5;;15364:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15364:170:3;;;;;;;;-1:-1:-1;;15364:170:3;;;;;;;;;;;;:::i;:::-;;;15344:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15717:6;:13;15734:1;15717:18;15713:313;;15759:107;;-1:-1:-1;;;15759:107:3;;;;;;;:::i;15713:313::-;15978:6;15972:13;15963:6;15959:2;15955:15;15948:38;15344:696;-1:-1:-1;;;;;;15596:55:3;-1:-1:-1;;;15596:55:3;;-1:-1:-1;15589:62:3;;15309:783;-1:-1:-1;16077:4:3;15309:783;15143:955;;;;;;:::o;1841:106:11:-;1901:13;1933:7;1926:14;;;;;:::i;328:703:10:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;-1:-1:-1;;;627:10:10;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:10;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;9957:157:3;10075:32;10081:2;10085:8;10095:5;10102:4;10494:20;10517:12;-1:-1:-1;;;;;10547:16:3;;10539:62;;;;-1:-1:-1;;;10539:62:3;;20323:2:12;10539:62:3;;;20305:21:12;20362:2;20342:18;;;20335:30;20401:34;20381:18;;;20374:62;-1:-1:-1;;;20452:18:12;;;20445:31;20493:19;;10539:62:3;20121:397:12;10539:62:3;10619:8;10631:1;10619:13;10611:66;;;;-1:-1:-1;;;10611:66:3;;20725:2:12;10611:66:3;;;20707:21:12;20764:2;20744:18;;;20737:30;20803:34;20783:18;;;20776:62;-1:-1:-1;;;20854:18:12;;;20847:38;20902:19;;10611:66:3;20523:404:12;10611:66:3;-1:-1:-1;;;;;11021:16:3;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;11021:45:3;;-1:-1:-1;;;;;11021:45:3;;;;;;;;;;11080:50;;;;;;;;;;;;;;11145:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;11194:66:3;;;;-1:-1:-1;;;11244:15:3;11194:66;;;;;;;11145:25;;11325:543;11345:8;11341:1;:12;11325:543;;;11383:38;;11408:12;;-1:-1:-1;;;;;11383:38:3;;;11400:1;;11383:38;;11400:1;;11383:38;11443:4;11439:382;;;11504:197;11564:1;11596:2;11628:12;11670:5;11504:22;:197::i;:::-;11471:331;;;;-1:-1:-1;;;11471:331:3;;;;;;;:::i;:::-;11839:14;;;;;11355:3;11325:543;;;-1:-1:-1;11882:12:3;:27;11930:60;8799:344;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:12;;592:180;-1:-1:-1;592:180:12:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:12;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:12;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:12:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:12;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:12:o;2173:316::-;2250:6;2258;2266;2319:2;2307:9;2298:7;2294:23;2290:32;2287:52;;;2335:1;2332;2325:12;2287:52;-1:-1:-1;;2358:23:12;;;2428:2;2413:18;;2400:32;;-1:-1:-1;2479:2:12;2464:18;;;2451:32;;2173:316;-1:-1:-1;2173:316:12:o;2494:160::-;2559:20;;2615:13;;2608:21;2598:32;;2588:60;;2644:1;2641;2634:12;2659:180;2715:6;2768:2;2756:9;2747:7;2743:23;2739:32;2736:52;;;2784:1;2781;2774:12;2736:52;2807:26;2823:9;2807:26;:::i;3026:328::-;3103:6;3111;3119;3172:2;3160:9;3151:7;3147:23;3143:32;3140:52;;;3188:1;3185;3178:12;3140:52;3211:29;3230:9;3211:29;:::i;:::-;3201:39;;3259:38;3293:2;3282:9;3278:18;3259:38;:::i;:::-;3249:48;;3344:2;3333:9;3329:18;3316:32;3306:42;;3026:328;;;;;:::o;3359:127::-;3420:10;3415:3;3411:20;3408:1;3401:31;3451:4;3448:1;3441:15;3475:4;3472:1;3465:15;3491:632;3556:5;3586:18;3627:2;3619:6;3616:14;3613:40;;;3633:18;;:::i;:::-;3708:2;3702:9;3676:2;3762:15;;-1:-1:-1;;3758:24:12;;;3784:2;3754:33;3750:42;3738:55;;;3808:18;;;3828:22;;;3805:46;3802:72;;;3854:18;;:::i;:::-;3894:10;3890:2;3883:22;3923:6;3914:15;;3953:6;3945;3938:22;3993:3;3984:6;3979:3;3975:16;3972:25;3969:45;;;4010:1;4007;4000:12;3969:45;4060:6;4055:3;4048:4;4040:6;4036:17;4023:44;4115:1;4108:4;4099:6;4091;4087:19;4083:30;4076:41;;;;3491:632;;;;;:::o;4128:451::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;4306:9;4293:23;4339:18;4331:6;4328:30;4325:50;;;4371:1;4368;4361:12;4325:50;4394:22;;4447:4;4439:13;;4435:27;-1:-1:-1;4425:55:12;;4476:1;4473;4466:12;4425:55;4499:74;4565:7;4560:2;4547:16;4542:2;4538;4534:11;4499:74;:::i;4584:186::-;4643:6;4696:2;4684:9;4675:7;4671:23;4667:32;4664:52;;;4712:1;4709;4702:12;4664:52;4735:29;4754:9;4735:29;:::i;4775:254::-;4840:6;4848;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;4940:29;4959:9;4940:29;:::i;:::-;4930:39;;4988:35;5019:2;5008:9;5004:18;4988:35;:::i;:::-;4978:45;;4775:254;;;;;:::o;5034:667::-;5129:6;5137;5145;5153;5206:3;5194:9;5185:7;5181:23;5177:33;5174:53;;;5223:1;5220;5213:12;5174:53;5246:29;5265:9;5246:29;:::i;:::-;5236:39;;5294:38;5328:2;5317:9;5313:18;5294:38;:::i;:::-;5284:48;;5379:2;5368:9;5364:18;5351:32;5341:42;;5434:2;5423:9;5419:18;5406:32;5461:18;5453:6;5450:30;5447:50;;;5493:1;5490;5483:12;5447:50;5516:22;;5569:4;5561:13;;5557:27;-1:-1:-1;5547:55:12;;5598:1;5595;5588:12;5547:55;5621:74;5687:7;5682:2;5669:16;5664:2;5660;5656:11;5621:74;:::i;:::-;5611:84;;;5034:667;;;;;;;:::o;5706:260::-;5774:6;5782;5835:2;5823:9;5814:7;5810:23;5806:32;5803:52;;;5851:1;5848;5841:12;5803:52;5874:29;5893:9;5874:29;:::i;:::-;5864:39;;5922:38;5956:2;5945:9;5941:18;5922:38;:::i;5971:356::-;6173:2;6155:21;;;6192:18;;;6185:30;6251:34;6246:2;6231:18;;6224:62;6318:2;6303:18;;5971:356::o;6332:380::-;6411:1;6407:12;;;;6454;;;6475:61;;6529:4;6521:6;6517:17;6507:27;;6475:61;6582:2;6574:6;6571:14;6551:18;6548:38;6545:161;;6628:10;6623:3;6619:20;6616:1;6609:31;6663:4;6660:1;6653:15;6691:4;6688:1;6681:15;6545:161;;6332:380;;;:::o;10558:127::-;10619:10;10614:3;10610:20;10607:1;10600:31;10650:4;10647:1;10640:15;10674:4;10671:1;10664:15;10690:128;10730:3;10761:1;10757:6;10754:1;10751:13;10748:39;;;10767:18;;:::i;:::-;-1:-1:-1;10803:9:12;;10690:128::o;12344:168::-;12384:7;12450:1;12446;12442:6;12438:14;12435:1;12432:21;12427:1;12420:9;12413:17;12409:45;12406:71;;;12457:18;;:::i;:::-;-1:-1:-1;12497:9:12;;12344:168::o;13637:415::-;13839:2;13821:21;;;13878:2;13858:18;;;13851:30;13917:34;13912:2;13897:18;;13890:62;-1:-1:-1;;;13983:2:12;13968:18;;13961:49;14042:3;14027:19;;13637:415::o;14599:1527::-;14823:3;14861:6;14855:13;14887:4;14900:51;14944:6;14939:3;14934:2;14926:6;14922:15;14900:51;:::i;:::-;15014:13;;14973:16;;;;15036:55;15014:13;14973:16;15058:15;;;15036:55;:::i;:::-;15180:13;;15113:20;;;15153:1;;15240;15262:18;;;;15315;;;;15342:93;;15420:4;15410:8;15406:19;15394:31;;15342:93;15483:2;15473:8;15470:16;15450:18;15447:40;15444:167;;-1:-1:-1;;;15510:33:12;;15566:4;15563:1;15556:15;15596:4;15517:3;15584:17;15444:167;15627:18;15654:110;;;;15778:1;15773:328;;;;15620:481;;15654:110;-1:-1:-1;;15689:24:12;;15675:39;;15734:20;;;;-1:-1:-1;15654:110:12;;15773:328;14546:1;14539:14;;;14583:4;14570:18;;15868:1;15882:169;15896:8;15893:1;15890:15;15882:169;;;15978:14;;15963:13;;;15956:37;16021:16;;;;15913:10;;15882:169;;;15886:3;;16082:8;16075:5;16071:20;16064:27;;15620:481;-1:-1:-1;16117:3:12;;14599:1527;-1:-1:-1;;;;;;;;;;;14599:1527:12:o;18597:489::-;-1:-1:-1;;;;;18866:15:12;;;18848:34;;18918:15;;18913:2;18898:18;;18891:43;18965:2;18950:18;;18943:34;;;19013:3;19008:2;18993:18;;18986:31;;;18791:4;;19034:46;;19060:19;;19052:6;19034:46;:::i;:::-;19026:54;18597:489;-1:-1:-1;;;;;;18597:489:12:o;19091:249::-;19160:6;19213:2;19201:9;19192:7;19188:23;19184:32;19181:52;;;19229:1;19226;19219:12;19181:52;19261:9;19255:16;19280:30;19304:5;19280:30;:::i;19345:135::-;19384:3;19405:17;;;19402:43;;19425:18;;:::i;:::-;-1:-1:-1;19472:1:12;19461:13;;19345:135::o;19485:127::-;19546:10;19541:3;19537:20;19534:1;19527:31;19577:4;19574:1;19567:15;19601:4;19598:1;19591:15;19617:120;19657:1;19683;19673:35;;19688:18;;:::i;:::-;-1:-1:-1;19722:9:12;;19617:120::o;19742:125::-;19782:4;19810:1;19807;19804:8;19801:34;;;19815:18;;:::i;:::-;-1:-1:-1;19852:9:12;;19742:125::o;19872:112::-;19904:1;19930;19920:35;;19935:18;;:::i;:::-;-1:-1:-1;19969:9:12;;19872:112::o;19989:127::-;20050:10;20045:3;20041:20;20038:1;20031:31;20081:4;20078:1;20071:15;20105:4;20102:1;20095:15

Swarm Source

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