ETH Price: $3,318.65 (+2.28%)
 

Overview

Max Total Supply

512 4Bits

Holders

66

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cfircoo.eth
Balance
10 4Bits
0x8EB4Ce020b96Acc44eB5e9fff07908bC06317249
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:
FourBits

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 FourBits is ERC721A, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public publicCost = 0.002 ether;
    bool public paused = false;
    uint256 public maxPublic = 10;
    uint256 public maxAmount = 20;
    uint256 public maxSupply = 4646;
    uint256 public freeQuantity = 400;

    constructor() ERC721A("4Bits", "4Bits") {
        setBaseURI("ipfs://QmekZo5GMx9rKj9jdtosYdUut6zGTPYJgx8Gio2aGjvUqG/");
    }

    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(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"
        );

        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 setFreeQuantity(uint256 _freeQuantity) public onlyOwner {
        freeQuantity = _freeQuantity;
    }

    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":[{"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":[{"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":"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"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001cd565b5066071afd498d0000600a908155600b805460ff19169055600c556014600d55611226600e55610190600f553480156200006157600080fd5b50604080518082018252600580825264344269747360d81b602080840182815285518087019096529285528401528151919291620000a291600191620001cd565b508051620000b8906002906020840190620001cd565b505050620000d5620000cf620000ff60201b60201c565b62000103565b620000f9604051806060016040528060368152602001620025296036913962000155565b620002af565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c9906008906020840190620001cd565b5050565b828054620001db9062000273565b90600052602060002090601f016020900481019282620001ff57600085556200024a565b82601f106200021a57805160ff19168380011785556200024a565b828001600101855582156200024a579182015b828111156200024a5782518255916020019190600101906200022d565b50620002589291506200025c565b5090565b5b808211156200025857600081556001016200025d565b600181811c908216806200028857607f821691505b602082108103620002a957634e487b7160e01b600052602260045260246000fd5b50919050565b61226a80620002bf6000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd1461055a578063d5abeb011461057a578063da3ef23f14610590578063e985e9c5146105b0578063f2fde38b146105f957600080fd5b8063a0712d68146104f2578063a22cb46514610505578063b88d4fde14610525578063c66828621461054557600080fd5b80637dc42975116100dc5780637dc42975146104935780638693da20146104a95780638da5cb5b146104bf57806395d89b41146104dd57600080fd5b80636352211e146104295780636c0360eb1461044957806370a082311461045e578063715018a61461047e57600080fd5b806323b872dd116101905780634f6ccce71161015f5780634f6ccce7146103a357806355f804b3146103c35780635c975abb146103e35780635f48f393146103fd578063626c8f8e1461041357600080fd5b806323b872dd1461032e5780632f745c591461034e5780633ccfd60b1461036e57806342842e0e1461038357600080fd5b8063095ea7b3116101cc578063095ea7b3146102af5780630b21d525146102cf57806316c38b3c146102ef57806318160ddd1461030f57600080fd5b806301ffc9a7146101fe57806303b462a11461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c41565b610619565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611c5e565b610686565b005b34801561026157600080fd5b5061026a6106be565b60405161022a9190611ccf565b34801561028357600080fd5b50610297610292366004611c5e565b610750565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611cfe565b6107db565b3480156102db57600080fd5b506102536102ea366004611d28565b6108f2565b3480156102fb57600080fd5b5061025361030a366004611d64565b61092a565b34801561031b57600080fd5b506000545b60405190815260200161022a565b34801561033a57600080fd5b50610253610349366004611d7f565b610967565b34801561035a57600080fd5b50610320610369366004611cfe565b610972565b34801561037a57600080fd5b50610253610acd565b34801561038f57600080fd5b5061025361039e366004611d7f565b610b6b565b3480156103af57600080fd5b506103206103be366004611c5e565b610b86565b3480156103cf57600080fd5b506102536103de366004611e47565b610be8565b3480156103ef57600080fd5b50600b5461021e9060ff1681565b34801561040957600080fd5b50610320600d5481565b34801561041f57600080fd5b50610320600f5481565b34801561043557600080fd5b50610297610444366004611c5e565b610c29565b34801561045557600080fd5b5061026a610c3b565b34801561046a57600080fd5b50610320610479366004611e90565b610cc9565b34801561048a57600080fd5b50610253610d5a565b34801561049f57600080fd5b50610320600c5481565b3480156104b557600080fd5b50610320600a5481565b3480156104cb57600080fd5b506007546001600160a01b0316610297565b3480156104e957600080fd5b5061026a610d90565b610253610500366004611c5e565b610d9f565b34801561051157600080fd5b50610253610520366004611eab565b611088565b34801561053157600080fd5b50610253610540366004611ede565b61114c565b34801561055157600080fd5b5061026a611185565b34801561056657600080fd5b5061026a610575366004611c5e565b611192565b34801561058657600080fd5b50610320600e5481565b34801561059c57600080fd5b506102536105ab366004611e47565b611262565b3480156105bc57600080fd5b5061021e6105cb366004611f5a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060557600080fd5b50610253610614366004611e90565b61129f565b60006001600160e01b031982166380ac58cd60e01b148061064a57506001600160e01b03198216635b5e139f60e01b145b8061066557506001600160e01b0319821663780e9d6360e01b145b8061068057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106b95760405162461bcd60e51b81526004016106b090611f84565b60405180910390fd5b600f55565b6060600180546106cd90611fb9565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990611fb9565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075d826000541190565b6107bf5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106b0565b506000908152600560205260409020546001600160a01b031690565b60006107e682610c29565b9050806001600160a01b0316836001600160a01b0316036108545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106b0565b336001600160a01b0382161480610870575061087081336105cb565b6108e25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106b0565b6108ed838383611337565b505050565b6007546001600160a01b0316331461091c5760405162461bcd60e51b81526004016106b090611f84565b600a92909255600c55600d55565b6007546001600160a01b031633146109545760405162461bcd60e51b81526004016106b090611f84565b600b805460ff1916911515919091179055565b6108ed838383611393565b600061097d83610cc9565b82106109d65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106b0565b600080549080805b83811015610a6d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a3157805192505b876001600160a01b0316836001600160a01b031603610a6457868403610a5d5750935061068092505050565b6001909301925b506001016109de565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106b0565b6007546001600160a01b03163314610af75760405162461bcd60e51b81526004016106b090611f84565b6000610b0b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b55576040519150601f19603f3d011682016040523d82523d6000602084013e610b5a565b606091505b5050905080610b6857600080fd5b50565b6108ed8383836040518060200160405280600081525061114c565b600080548210610be45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106b0565b5090565b6007546001600160a01b03163314610c125760405162461bcd60e51b81526004016106b090611f84565b8051610c25906008906020840190611b9b565b5050565b6000610c3482611678565b5192915050565b60088054610c4890611fb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490611fb9565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106b0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d845760405162461bcd60e51b81526004016106b090611f84565b610d8e600061174f565b565b6060600280546106cd90611fb9565b600054600b5460ff1615610df55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106b0565b60008211610e4f5760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b60648201526084016106b0565b600e54610e5c8383612009565b1115610e9f5760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016106b0565b6007546001600160a01b0316331461107e57600d5482610ebe33610cc9565b610ec89190612009565b1115610f225760405162461bcd60e51b815260206004820152602360248201527f796f757265206e6f7420616c6c6f77656420746f20686f6c642074686174206d6044820152620eac6d60eb1b60648201526084016106b0565b600c54821115610f905760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b60648201526084016106b0565b600f54610f9d8383612009565b10158015610fad5750600f548110155b156110095781600a54610fc09190612021565b3410156110045760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016106b0565b61107e565b600f546110168383612009565b111561107e5760405162461bcd60e51b815260206004820152603160248201527f506c656173652074727920776974682061206c6f77657220616d6f756e7420746044820152706f2067657420697420666f72206672656560781b60648201526084016106b0565b610c2533836117a1565b336001600160a01b038316036110e05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106b0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611157848484611393565b611163848484846117bb565b61117f5760405162461bcd60e51b81526004016106b090612040565b50505050565b60098054610c4890611fb9565b606061119f826000541190565b6112035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b0565b600061120d6118bd565b9050600081511161122d576040518060200160405280600081525061125b565b80611237846118cc565b600960405160200161124b93929190612093565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461128c5760405162461bcd60e51b81526004016106b090611f84565b8051610c25906009906020840190611b9b565b6007546001600160a01b031633146112c95760405162461bcd60e51b81526004016106b090611f84565b6001600160a01b03811661132e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b0565b610b688161174f565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061139e82611678565b80519091506000906001600160a01b0316336001600160a01b031614806113d55750336113ca84610750565b6001600160a01b0316145b806113e7575081516113e790336105cb565b9050806114515760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106b0565b846001600160a01b031682600001516001600160a01b0316146114c55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106b0565b6001600160a01b0384166115295760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b0565b6115396000848460000151611337565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661162e576115e1816000541190565b1561162e578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611697826000541190565b6116f65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106b0565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611745579392505050565b50600019016116f8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c258282604051806020016040528060008152506119cd565b60006001600160a01b0384163b156118b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ff903390899088908890600401612156565b6020604051808303816000875af192505050801561183a575060408051601f3d908101601f1916820190925261183791810190612193565b60015b611897573d808015611868576040519150601f19603f3d011682016040523d82523d6000602084013e61186d565b606091505b50805160000361188f5760405162461bcd60e51b81526004016106b090612040565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b5565b5060015b949350505050565b6060600880546106cd90611fb9565b6060816000036118f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191d5780611907816121b0565b91506119169050600a836121df565b91506118f7565b60008167ffffffffffffffff81111561193857611938611dbb565b6040519080825280601f01601f191660200182016040528015611962576020820181803683370190505b5090505b84156118b5576119776001836121f3565b9150611984600a8661220a565b61198f906030612009565b60f81b8183815181106119a4576119a461221e565b60200101906001600160f81b031916908160001a9053506119c6600a866121df565b9450611966565b6108ed83838360016000546001600160a01b038516611a385760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106b0565b83600003611a995760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106b0565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b8657611b6a60008884886117bb565b611b865760405162461bcd60e51b81526004016106b090612040565b60019182019101611b17565b50600055611671565b828054611ba790611fb9565b90600052602060002090601f016020900481019282611bc95760008555611c0f565b82601f10611be257805160ff1916838001178555611c0f565b82800160010185558215611c0f579182015b82811115611c0f578251825591602001919060010190611bf4565b50610be49291505b80821115610be45760008155600101611c17565b6001600160e01b031981168114610b6857600080fd5b600060208284031215611c5357600080fd5b813561125b81611c2b565b600060208284031215611c7057600080fd5b5035919050565b60005b83811015611c92578181015183820152602001611c7a565b8381111561117f5750506000910152565b60008151808452611cbb816020860160208601611c77565b601f01601f19169290920160200192915050565b60208152600061125b6020830184611ca3565b80356001600160a01b0381168114611cf957600080fd5b919050565b60008060408385031215611d1157600080fd5b611d1a83611ce2565b946020939093013593505050565b600080600060608486031215611d3d57600080fd5b505081359360208301359350604090920135919050565b80358015158114611cf957600080fd5b600060208284031215611d7657600080fd5b61125b82611d54565b600080600060608486031215611d9457600080fd5b611d9d84611ce2565b9250611dab60208501611ce2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dec57611dec611dbb565b604051601f8501601f19908116603f01168101908282118183101715611e1457611e14611dbb565b81604052809350858152868686011115611e2d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e5957600080fd5b813567ffffffffffffffff811115611e7057600080fd5b8201601f81018413611e8157600080fd5b6118b584823560208401611dd1565b600060208284031215611ea257600080fd5b61125b82611ce2565b60008060408385031215611ebe57600080fd5b611ec783611ce2565b9150611ed560208401611d54565b90509250929050565b60008060008060808587031215611ef457600080fd5b611efd85611ce2565b9350611f0b60208601611ce2565b925060408501359150606085013567ffffffffffffffff811115611f2e57600080fd5b8501601f81018713611f3f57600080fd5b611f4e87823560208401611dd1565b91505092959194509250565b60008060408385031215611f6d57600080fd5b611f7683611ce2565b9150611ed560208401611ce2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611fcd57607f821691505b602082108103611fed57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561201c5761201c611ff3565b500190565b600081600019048311821515161561203b5761203b611ff3565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206120a68285838a01611c77565b8551918401916120b98184848a01611c77565b8554920191600090600181811c90808316806120d657607f831692505b85831081036120f357634e487b7160e01b85526022600452602485fd5b808015612107576001811461211857612145565b60ff19851688528388019550612145565b60008b81526020902060005b8581101561213d5781548a820152908401908801612124565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061218990830184611ca3565b9695505050505050565b6000602082840312156121a557600080fd5b815161125b81611c2b565b6000600182016121c2576121c2611ff3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826121ee576121ee6121c9565b500490565b60008282101561220557612205611ff3565b500390565b600082612219576122196121c9565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122091324912ecd19ce3629a3d8ceeeb3eed63be417f95aac136e9fc4626b87c690d64736f6c634300080e0033697066733a2f2f516d656b5a6f35474d7839724b6a396a64746f735964557574367a475450594a67783847696f3261476a765571472f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd1461055a578063d5abeb011461057a578063da3ef23f14610590578063e985e9c5146105b0578063f2fde38b146105f957600080fd5b8063a0712d68146104f2578063a22cb46514610505578063b88d4fde14610525578063c66828621461054557600080fd5b80637dc42975116100dc5780637dc42975146104935780638693da20146104a95780638da5cb5b146104bf57806395d89b41146104dd57600080fd5b80636352211e146104295780636c0360eb1461044957806370a082311461045e578063715018a61461047e57600080fd5b806323b872dd116101905780634f6ccce71161015f5780634f6ccce7146103a357806355f804b3146103c35780635c975abb146103e35780635f48f393146103fd578063626c8f8e1461041357600080fd5b806323b872dd1461032e5780632f745c591461034e5780633ccfd60b1461036e57806342842e0e1461038357600080fd5b8063095ea7b3116101cc578063095ea7b3146102af5780630b21d525146102cf57806316c38b3c146102ef57806318160ddd1461030f57600080fd5b806301ffc9a7146101fe57806303b462a11461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c41565b610619565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611c5e565b610686565b005b34801561026157600080fd5b5061026a6106be565b60405161022a9190611ccf565b34801561028357600080fd5b50610297610292366004611c5e565b610750565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611cfe565b6107db565b3480156102db57600080fd5b506102536102ea366004611d28565b6108f2565b3480156102fb57600080fd5b5061025361030a366004611d64565b61092a565b34801561031b57600080fd5b506000545b60405190815260200161022a565b34801561033a57600080fd5b50610253610349366004611d7f565b610967565b34801561035a57600080fd5b50610320610369366004611cfe565b610972565b34801561037a57600080fd5b50610253610acd565b34801561038f57600080fd5b5061025361039e366004611d7f565b610b6b565b3480156103af57600080fd5b506103206103be366004611c5e565b610b86565b3480156103cf57600080fd5b506102536103de366004611e47565b610be8565b3480156103ef57600080fd5b50600b5461021e9060ff1681565b34801561040957600080fd5b50610320600d5481565b34801561041f57600080fd5b50610320600f5481565b34801561043557600080fd5b50610297610444366004611c5e565b610c29565b34801561045557600080fd5b5061026a610c3b565b34801561046a57600080fd5b50610320610479366004611e90565b610cc9565b34801561048a57600080fd5b50610253610d5a565b34801561049f57600080fd5b50610320600c5481565b3480156104b557600080fd5b50610320600a5481565b3480156104cb57600080fd5b506007546001600160a01b0316610297565b3480156104e957600080fd5b5061026a610d90565b610253610500366004611c5e565b610d9f565b34801561051157600080fd5b50610253610520366004611eab565b611088565b34801561053157600080fd5b50610253610540366004611ede565b61114c565b34801561055157600080fd5b5061026a611185565b34801561056657600080fd5b5061026a610575366004611c5e565b611192565b34801561058657600080fd5b50610320600e5481565b34801561059c57600080fd5b506102536105ab366004611e47565b611262565b3480156105bc57600080fd5b5061021e6105cb366004611f5a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060557600080fd5b50610253610614366004611e90565b61129f565b60006001600160e01b031982166380ac58cd60e01b148061064a57506001600160e01b03198216635b5e139f60e01b145b8061066557506001600160e01b0319821663780e9d6360e01b145b8061068057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106b95760405162461bcd60e51b81526004016106b090611f84565b60405180910390fd5b600f55565b6060600180546106cd90611fb9565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990611fb9565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075d826000541190565b6107bf5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106b0565b506000908152600560205260409020546001600160a01b031690565b60006107e682610c29565b9050806001600160a01b0316836001600160a01b0316036108545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106b0565b336001600160a01b0382161480610870575061087081336105cb565b6108e25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106b0565b6108ed838383611337565b505050565b6007546001600160a01b0316331461091c5760405162461bcd60e51b81526004016106b090611f84565b600a92909255600c55600d55565b6007546001600160a01b031633146109545760405162461bcd60e51b81526004016106b090611f84565b600b805460ff1916911515919091179055565b6108ed838383611393565b600061097d83610cc9565b82106109d65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106b0565b600080549080805b83811015610a6d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a3157805192505b876001600160a01b0316836001600160a01b031603610a6457868403610a5d5750935061068092505050565b6001909301925b506001016109de565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106b0565b6007546001600160a01b03163314610af75760405162461bcd60e51b81526004016106b090611f84565b6000610b0b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b55576040519150601f19603f3d011682016040523d82523d6000602084013e610b5a565b606091505b5050905080610b6857600080fd5b50565b6108ed8383836040518060200160405280600081525061114c565b600080548210610be45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106b0565b5090565b6007546001600160a01b03163314610c125760405162461bcd60e51b81526004016106b090611f84565b8051610c25906008906020840190611b9b565b5050565b6000610c3482611678565b5192915050565b60088054610c4890611fb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490611fb9565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106b0565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d845760405162461bcd60e51b81526004016106b090611f84565b610d8e600061174f565b565b6060600280546106cd90611fb9565b600054600b5460ff1615610df55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106b0565b60008211610e4f5760405162461bcd60e51b815260206004820152602160248201527f5175616e74697479204d75737420426520486967686572205468616e205a65726044820152606f60f81b60648201526084016106b0565b600e54610e5c8383612009565b1115610e9f5760405162461bcd60e51b815260206004820152601260248201527113585e0814dd5c1c1b1e4814995858da195960721b60448201526064016106b0565b6007546001600160a01b0316331461107e57600d5482610ebe33610cc9565b610ec89190612009565b1115610f225760405162461bcd60e51b815260206004820152602360248201527f796f757265206e6f7420616c6c6f77656420746f20686f6c642074686174206d6044820152620eac6d60eb1b60648201526084016106b0565b600c54821115610f905760405162461bcd60e51b815260206004820152603360248201527f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f7265206044820152721d1a185b881b585e135a5b9d08105b5bdd5b9d606a1b60648201526084016106b0565b600f54610f9d8383612009565b10158015610fad5750600f548110155b156110095781600a54610fc09190612021565b3410156110045760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b60448201526064016106b0565b61107e565b600f546110168383612009565b111561107e5760405162461bcd60e51b815260206004820152603160248201527f506c656173652074727920776974682061206c6f77657220616d6f756e7420746044820152706f2067657420697420666f72206672656560781b60648201526084016106b0565b610c2533836117a1565b336001600160a01b038316036110e05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106b0565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611157848484611393565b611163848484846117bb565b61117f5760405162461bcd60e51b81526004016106b090612040565b50505050565b60098054610c4890611fb9565b606061119f826000541190565b6112035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b0565b600061120d6118bd565b9050600081511161122d576040518060200160405280600081525061125b565b80611237846118cc565b600960405160200161124b93929190612093565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461128c5760405162461bcd60e51b81526004016106b090611f84565b8051610c25906009906020840190611b9b565b6007546001600160a01b031633146112c95760405162461bcd60e51b81526004016106b090611f84565b6001600160a01b03811661132e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b0565b610b688161174f565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061139e82611678565b80519091506000906001600160a01b0316336001600160a01b031614806113d55750336113ca84610750565b6001600160a01b0316145b806113e7575081516113e790336105cb565b9050806114515760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106b0565b846001600160a01b031682600001516001600160a01b0316146114c55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106b0565b6001600160a01b0384166115295760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106b0565b6115396000848460000151611337565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661162e576115e1816000541190565b1561162e578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611697826000541190565b6116f65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106b0565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611745579392505050565b50600019016116f8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c258282604051806020016040528060008152506119cd565b60006001600160a01b0384163b156118b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ff903390899088908890600401612156565b6020604051808303816000875af192505050801561183a575060408051601f3d908101601f1916820190925261183791810190612193565b60015b611897573d808015611868576040519150601f19603f3d011682016040523d82523d6000602084013e61186d565b606091505b50805160000361188f5760405162461bcd60e51b81526004016106b090612040565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b5565b5060015b949350505050565b6060600880546106cd90611fb9565b6060816000036118f35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191d5780611907816121b0565b91506119169050600a836121df565b91506118f7565b60008167ffffffffffffffff81111561193857611938611dbb565b6040519080825280601f01601f191660200182016040528015611962576020820181803683370190505b5090505b84156118b5576119776001836121f3565b9150611984600a8661220a565b61198f906030612009565b60f81b8183815181106119a4576119a461221e565b60200101906001600160f81b031916908160001a9053506119c6600a866121df565b9450611966565b6108ed83838360016000546001600160a01b038516611a385760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106b0565b83600003611a995760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106b0565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b8657611b6a60008884886117bb565b611b865760405162461bcd60e51b81526004016106b090612040565b60019182019101611b17565b50600055611671565b828054611ba790611fb9565b90600052602060002090601f016020900481019282611bc95760008555611c0f565b82601f10611be257805160ff1916838001178555611c0f565b82800160010185558215611c0f579182015b82811115611c0f578251825591602001919060010190611bf4565b50610be49291505b80821115610be45760008155600101611c17565b6001600160e01b031981168114610b6857600080fd5b600060208284031215611c5357600080fd5b813561125b81611c2b565b600060208284031215611c7057600080fd5b5035919050565b60005b83811015611c92578181015183820152602001611c7a565b8381111561117f5750506000910152565b60008151808452611cbb816020860160208601611c77565b601f01601f19169290920160200192915050565b60208152600061125b6020830184611ca3565b80356001600160a01b0381168114611cf957600080fd5b919050565b60008060408385031215611d1157600080fd5b611d1a83611ce2565b946020939093013593505050565b600080600060608486031215611d3d57600080fd5b505081359360208301359350604090920135919050565b80358015158114611cf957600080fd5b600060208284031215611d7657600080fd5b61125b82611d54565b600080600060608486031215611d9457600080fd5b611d9d84611ce2565b9250611dab60208501611ce2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dec57611dec611dbb565b604051601f8501601f19908116603f01168101908282118183101715611e1457611e14611dbb565b81604052809350858152868686011115611e2d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e5957600080fd5b813567ffffffffffffffff811115611e7057600080fd5b8201601f81018413611e8157600080fd5b6118b584823560208401611dd1565b600060208284031215611ea257600080fd5b61125b82611ce2565b60008060408385031215611ebe57600080fd5b611ec783611ce2565b9150611ed560208401611d54565b90509250929050565b60008060008060808587031215611ef457600080fd5b611efd85611ce2565b9350611f0b60208601611ce2565b925060408501359150606085013567ffffffffffffffff811115611f2e57600080fd5b8501601f81018713611f3f57600080fd5b611f4e87823560208401611dd1565b91505092959194509250565b60008060408385031215611f6d57600080fd5b611f7683611ce2565b9150611ed560208401611ce2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611fcd57607f821691505b602082108103611fed57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561201c5761201c611ff3565b500190565b600081600019048311821515161561203b5761203b611ff3565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206120a68285838a01611c77565b8551918401916120b98184848a01611c77565b8554920191600090600181811c90808316806120d657607f831692505b85831081036120f357634e487b7160e01b85526022600452602485fd5b808015612107576001811461211857612145565b60ff19851688528388019550612145565b60008b81526020902060005b8581101561213d5781548a820152908401908801612124565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061218990830184611ca3565b9695505050505050565b6000602082840312156121a557600080fd5b815161125b81611c2b565b6000600182016121c2576121c2611ff3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826121ee576121ee6121c9565b500490565b60008282101561220557612205611ff3565b500390565b600082612219576122196121c9565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122091324912ecd19ce3629a3d8ceeeb3eed63be417f95aac136e9fc4626b87c690d64736f6c634300080e0033

Deployed Bytecode Sourcemap

105:3008: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;;;;;;;;2591:110:11;;;;;;;;;;-1:-1:-1;2591:110:11;;;;;:::i;:::-;;:::i;:::-;;5720:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::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;2301:197:11:-;;;;;;;;;;-1:-1:-1;2301:197:11;;;;;:::i;:::-;;:::i;2504:81::-;;;;;;;;;;-1:-1:-1;2504: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;2967:144:11:-;;;;;;;;;;;;;:::i;8562:171:3:-;;;;;;;;;;-1:-1:-1;8562:171:3;;;;;:::i;:::-;;:::i;2144:220::-;;;;;;;;;;-1:-1:-1;2144:220:3;;;;;:::i;:::-;;:::i;2707:102:11:-;;;;;;;;;;-1:-1:-1;2707:102:11;;;;;:::i;:::-;;:::i;295:26::-;;;;;;;;;;-1:-1:-1;295:26:11;;;;;;;;362:29;;;;;;;;;;;;;;;;434: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;327:29:11:-;;;;;;;;;;;;;;;;250:39;;;;;;;;;;;;;;;;996:85:9;;;;;;;;;;-1:-1:-1;1068:6:9;;-1:-1:-1;;;;;1068:6:9;996:85;;5882:102:3;;;;;;;;;;;;;:::i;605:937: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;1676:619::-;;;;;;;;;;-1:-1:-1;1676:619:11;;;;;:::i;:::-;;:::i;397:31::-;;;;;;;;;;;;;;;;2815:146;;;;;;;;;;-1:-1:-1;2815:146: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;2591: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;:::-;;;;;;;;;2666:12:11::1;:28:::0;2591:110::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;2301: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;:::-;2403:10:11::1;:24:::0;;;;2437:9:::1;:22:::0;2469:9:::1;:22:::0;2301:197::o;2504: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;:::-;2563:6:11::1;:15:::0;;-1:-1:-1;;2563:15:11::1;::::0;::::1;;::::0;;;::::1;::::0;;2504: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;2967: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;:::-;3015:7:11::1;3036;1068:6:9::0;;-1:-1:-1;;;;;1068:6:9;;996:85;3036:7:11::1;-1:-1:-1::0;;;;;3028:21:11::1;3057;3028:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3014:69;;;3101:2;3093:11;;;::::0;::::1;;3004:107;2967:144::o:0;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;2144:220::-;2243:7;2053:12;;2274:5;:21;2266:69;;;;-1:-1:-1;;;2266:69:3;;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;2707: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;:::-;2781:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2707: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;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;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;5882:102:3:-;5938:13;5970:7;5963:14;;;;;:::i;605:937:11:-;664:14;2053:12:3;713:6:11;;;;712:7;704:43;;;;-1:-1:-1;;;704:43:11;;10006:2:12;704:43:11;;;9988:21:12;10045:2;10025:18;;;10018:30;10084:25;10064:18;;;10057:53;10127:18;;704:43:11;9804:347:12;704:43:11;776:1;765:8;:12;757:58;;;;-1:-1:-1;;;757:58:11;;10358:2:12;757: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;;757:58:11;10156:397:12;757:58:11;854:9;;833:17;842:8;833:6;:17;:::i;:::-;:30;;825:61;;;;-1:-1:-1;;;825:61:11;;11025:2:12;825:61:11;;;11007:21:12;11064:2;11044:18;;;11037:30;-1:-1:-1;;;11083:18:12;;;11076:48;11141:18;;825:61:11;10823:342:12;825:61:11;1068:6:9;;-1:-1:-1;;;;;1068:6:9;901:10:11;:21;897:598;;982:9;;970:8;946:21;956:10;946:9;:21::i;:::-;:32;;;;:::i;:::-;:45;;938:94;;;;-1:-1:-1;;;938:94:11;;11372:2:12;938:94:11;;;11354:21:12;11411:2;11391:18;;;11384:30;11450:34;11430:18;;;11423:62;-1:-1:-1;;;11501:18:12;;;11494:33;11544:19;;938:94:11;11170:399:12;938:94:11;1083:9;;1071:8;:21;;1046:131;;;;-1:-1:-1;;;1046:131:11;;11776:2:12;1046:131:11;;;11758:21:12;11815:2;11795:18;;;11788:30;11854:34;11834:18;;;11827:62;-1:-1:-1;;;11905:18:12;;;11898:49;11964:19;;1046:131:11;11574:415:12;1046:131:11;1215:12;;1194:17;1203:8;1194:6;:17;:::i;:::-;:33;;:59;;;;;1241:12;;1231:6;:22;;1194:59;1191:294;;;1306:8;1293:10;;:21;;;;:::i;:::-;1280:9;:34;;1272:65;;;;-1:-1:-1;;;1272:65:11;;12369:2:12;1272:65:11;;;12351:21:12;12408:2;12388:18;;;12381:30;-1:-1:-1;;;12427:18:12;;;12420:48;12485:18;;1272:65:11;12167:342:12;1272:65:11;1191:294;;;1403:12;;1382:17;1391:8;1382:6;:17;:::i;:::-;:33;;1374:96;;;;-1:-1:-1;;;1374:96:11;;12716:2:12;1374:96:11;;;12698:21:12;12755:2;12735:18;;;12728:30;12794:34;12774:18;;;12767:62;-1:-1:-1;;;12845:18:12;;;12838:47;12902:19;;1374:96:11;12514:413:12;1374:96:11;1504:31;1514:10;1526:8;1504:9;:31::i;7703:303:3:-;665:10:1;-1:-1:-1;;;;;7817:24:3;;;7809:63;;;;-1:-1:-1;;;7809:63:3;;13134:2:12;7809:63:3;;;13116:21:12;13173:2;13153:18;;;13146:30;13212:28;13192:18;;;13185:56;13258:18;;7809:63:3;12932: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;1676:619::-;1789:13;1839:16;1847:7;9446:4:3;9479:12;-1:-1:-1;9469:22:3;9389:109;1839:16:11;1818:110;;;;-1:-1:-1;;;1818:110:11;;13909:2:12;1818:110:11;;;13891:21:12;13948:2;13928:18;;;13921:30;13987:34;13967:18;;;13960:62;-1:-1:-1;;;14038:18:12;;;14031:45;14093:19;;1818:110:11;13707:411:12;1818:110:11;1939:28;1970:10;:8;:10::i;:::-;1939:41;;2040:1;2015:14;2009:28;:32;:279;;;;;;;;;;;;;;;;;2130:14;2170:18;:7;:16;:18::i;:::-;2214:13;2088:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2009:279;1990:298;1676:619;-1:-1:-1;;;1676:619:11:o;2815: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;:::-;2921:33:11;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;1878:232:9:-:0;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;;15983:2:12;1958:107:9::1;::::0;::::1;15965:21:12::0;16022:2;16002:18;;;15995:30;16061:34;16041:18;;;16034:62;-1:-1:-1;;;16112:18:12;;;16105:36;16158:19;;1958:107:9::1;15781: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;;16390:2:12;12608:114:3;;;16372:21:12;16429:2;16409:18;;;16402:30;16468:34;16448:18;;;16441:62;-1:-1:-1;;;16519:18:12;;;16512:48;16577:19;;12608:114:3;16188: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;;16809:2:12;12733:111:3;;;16791:21:12;16848:2;16828:18;;;16821:30;16887:34;16867:18;;;16860:62;-1:-1:-1;;;16938:18:12;;;16931:36;16984:19;;12733:111:3;16607:402:12;12733:111:3;-1:-1:-1;;;;;12862:16:3;;12854:66;;;;-1:-1:-1;;;12854:66:3;;17216:2:12;12854:66:3;;;17198:21:12;17255:2;17235:18;;;17228:30;17294:34;17274:18;;;17267:62;-1:-1:-1;;;17345:18:12;;;17338:35;17390:19;;12854:66:3;17014: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;;17622:2:12;5049:71:3;;;17604:21:12;17661:2;17641:18;;;17634:30;17700:34;17680:18;;;17673:62;-1:-1:-1;;;17751:18:12;;;17744:40;17801:19;;5049:71:3;17420: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;1564:106:11:-;1624:13;1656:7;1649: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;;19973:2:12;10539:62:3;;;19955:21:12;20012:2;19992:18;;;19985:30;20051:34;20031:18;;;20024:62;-1:-1:-1;;;20102:18:12;;;20095:31;20143:19;;10539:62:3;19771:397:12;10539:62:3;10619:8;10631:1;10619:13;10611:66;;;;-1:-1:-1;;;10611:66:3;;20375:2:12;10611:66:3;;;20357:21:12;20414:2;20394:18;;;20387:30;20453:34;20433:18;;;20426:62;-1:-1:-1;;;20504:18:12;;;20497:38;20552:19;;10611:66:3;20173: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;11994:168::-;12034:7;12100:1;12096;12092:6;12088:14;12085:1;12082:21;12077:1;12070:9;12063:17;12059:45;12056:71;;;12107:18;;:::i;:::-;-1:-1:-1;12147:9:12;;11994:168::o;13287:415::-;13489:2;13471:21;;;13528:2;13508:18;;;13501:30;13567:34;13562:2;13547:18;;13540:62;-1:-1:-1;;;13633:2:12;13618:18;;13611:49;13692:3;13677:19;;13287:415::o;14249:1527::-;14473:3;14511:6;14505:13;14537:4;14550:51;14594:6;14589:3;14584:2;14576:6;14572:15;14550:51;:::i;:::-;14664:13;;14623:16;;;;14686:55;14664:13;14623:16;14708:15;;;14686:55;:::i;:::-;14830:13;;14763:20;;;14803:1;;14890;14912:18;;;;14965;;;;14992:93;;15070:4;15060:8;15056:19;15044:31;;14992:93;15133:2;15123:8;15120:16;15100:18;15097:40;15094:167;;-1:-1:-1;;;15160:33:12;;15216:4;15213:1;15206:15;15246:4;15167:3;15234:17;15094:167;15277:18;15304:110;;;;15428:1;15423:328;;;;15270:481;;15304:110;-1:-1:-1;;15339:24:12;;15325:39;;15384:20;;;;-1:-1:-1;15304:110:12;;15423:328;14196:1;14189:14;;;14233:4;14220:18;;15518:1;15532:169;15546:8;15543:1;15540:15;15532:169;;;15628:14;;15613:13;;;15606:37;15671:16;;;;15563:10;;15532:169;;;15536:3;;15732:8;15725:5;15721:20;15714:27;;15270:481;-1:-1:-1;15767:3:12;;14249:1527;-1:-1:-1;;;;;;;;;;;14249:1527:12:o;18247:489::-;-1:-1:-1;;;;;18516:15:12;;;18498:34;;18568:15;;18563:2;18548:18;;18541:43;18615:2;18600:18;;18593:34;;;18663:3;18658:2;18643:18;;18636:31;;;18441:4;;18684:46;;18710:19;;18702:6;18684:46;:::i;:::-;18676:54;18247:489;-1:-1:-1;;;;;;18247:489:12:o;18741:249::-;18810:6;18863:2;18851:9;18842:7;18838:23;18834:32;18831:52;;;18879:1;18876;18869:12;18831:52;18911:9;18905:16;18930:30;18954:5;18930:30;:::i;18995:135::-;19034:3;19055:17;;;19052:43;;19075:18;;:::i;:::-;-1:-1:-1;19122:1:12;19111:13;;18995:135::o;19135:127::-;19196:10;19191:3;19187:20;19184:1;19177:31;19227:4;19224:1;19217:15;19251:4;19248:1;19241:15;19267:120;19307:1;19333;19323:35;;19338:18;;:::i;:::-;-1:-1:-1;19372:9:12;;19267:120::o;19392:125::-;19432:4;19460:1;19457;19454:8;19451:34;;;19465:18;;:::i;:::-;-1:-1:-1;19502:9:12;;19392:125::o;19522:112::-;19554:1;19580;19570:35;;19585:18;;:::i;:::-;-1:-1:-1;19619:9:12;;19522:112::o;19639:127::-;19700:10;19695:3;19691:20;19688:1;19681:31;19731:4;19728:1;19721:15;19755:4;19752:1;19745:15

Swarm Source

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