ETH Price: $2,279.03 (-5.84%)
Gas: 1.49 Gwei

Token

Baby FTC (BFTC)
 

Overview

Max Total Supply

2,075 BFTC

Holders

197

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 BFTC
0x9c4d487c0283a828a0be782d8ef8ad51bdc3ebab
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:
babyftc

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 14: babyftc.sol
// SPDX-License-Identifier: MIT
/*


   __        __          _______________
  / /  ___ _/ /  __ __  / __/_  __/ ___/
 / _ \/ _ `/ _ \/ // / / _/  / / / /__  
/_.__/\_,_/_.__/\_, / /_/   /_/  \___/  
               /___/                    


*/                                    
                             

pragma solidity >=0.7.0 <0.9.0;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

contract babyftc is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public MAX_MINTS_PER_TX = 10;
    uint256 public price = 0.003 ether;
    uint256 public freealllowance = 10;

    uint256 public MAX_SUPPLY = 3000;
    uint256 public FREE_SUPPLY = 2000;

    uint256 public FREE_MINTED = 0;

    mapping (address => uint) addressToMintCount;

    bool public publicSaleStarted = false;
    bool public revealed = false;


    string public notRevealedUri = "https://babyftc.mypinata.cloud/ipfs/QmQsnuXSHoBvHyRs2zAcqZiAuNZFyU4pD6r66wD11YvmDU/hidden.json";

    // /baseURI will be changed before reveal
    string public baseURI = "";



    constructor() ERC721A("Baby FTC", "BFTC") {
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
        revealed = true;
    }

    function setnotRevealedUri(string memory _newnotRevealedURI) external onlyOwner {
        notRevealedUri = _newnotRevealedURI;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice * (1 ether);
    }

    function setAllowance(uint256 _newallowance) external onlyOwner {
        freealllowance = _newallowance;
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    MAX_SUPPLY = _newMaxSupply;
	}

    function setfreeSupply(uint256 _newfreeSupply) public onlyOwner {
	    FREE_SUPPLY = _newfreeSupply;
	}

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

    /// TokenURI Function

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  /// Reveal Function
  function reveal() public onlyOwner {
      revealed = !revealed;
  }

    /// Normal Mint Functions
    function mint(uint256 tokens) external payable {
        require(publicSaleStarted, "Public sale has not started");
        require(tokens <= MAX_MINTS_PER_TX, "Cannot purchase this many tokens in a transaction");
        require(totalSupply() + tokens <= (MAX_SUPPLY), "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");
        require(price * tokens <= msg.value, "ETH amount is incorrect");
        _safeMint(_msgSender(), tokens);
    }


    /// Free Mint Functions
    function freemint(uint256 amountfree) external payable {
        require(publicSaleStarted, "Public sale has not started");
        require(FREE_MINTED + amountfree <= (FREE_SUPPLY), "Minting would exceed free supply");
        require(addressToMintCount[msg.sender] + amountfree <= freealllowance, "Exceeds allowance");
        _safeMint(_msgSender(), amountfree);
        addressToMintCount[msg.sender] += amountfree;
        FREE_MINTED += amountfree;
    }

    function howManyFreeMinted(address account) public view returns (uint256) {
        return addressToMintCount[account];
    }

    /// Owner only mint function
    function ownerMint(address to, uint256 tokens) external onlyOwner {
        require(totalSupply() + tokens <= MAX_SUPPLY, "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");
        FREE_MINTED += tokens;
        _safeMint(to, tokens);
    }

    /// Withdraw function
    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _withdraw(_msgSender(), address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 3 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 14: 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 5 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 6 of 14: 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 7 of 14: 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 Resturns 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 8 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 9 of 14: 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 10 of 14: 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 11 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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 12 of 14: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 14: 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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freealllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountfree","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","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":"account","type":"address"}],"name":"howManyFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newallowance","type":"uint256"}],"name":"setAllowance","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreeSupply","type":"uint256"}],"name":"setfreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newnotRevealedURI","type":"string"}],"name":"setnotRevealedUri","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":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600955660aa87bee538000600a55600a600b55610bb8600c556107d0600d556000600e556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506040518060800160405280605e815260200162004635605e913960119080519060200190620000919291906200027b565b506040518060200160405280600081525060129080519060200190620000b99291906200027b565b50348015620000c757600080fd5b506040518060400160405280600881526020017f42616279204654430000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424654430000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014c9291906200027b565b508060039080519060200190620001659291906200027b565b5062000176620001a460201b60201c565b60008190555050506200019e62000192620001ad60201b60201c565b620001b560201b60201c565b62000390565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000289906200032b565b90600052602060002090601f016020900481019282620002ad5760008555620002f9565b82601f10620002c857805160ff1916838001178555620002f9565b82800160010185558215620002f9579182015b82811115620002f8578251825591602001919060010190620002db565b5b5090506200030891906200030c565b5090565b5b80821115620003275760008160009055506001016200030d565b5090565b600060028204905060018216806200034457607f821691505b602082108114156200035b576200035a62000361565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61429580620003a06000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a035b1fe116100ab578063b88d4fde1161006f578063b88d4fde146107f7578063c6a91b4214610820578063c87b56dd1461084b578063e985e9c514610888578063f2fde38b146108c55761023b565b8063a035b1fe14610745578063a0712d6814610770578063a22cb4651461078c578063a2e91477146107b5578063a475b5dd146107e05761023b565b8063853828b6116100f2578063853828b6146106845780638da5cb5b1461069b57806391b7f5ed146106c657806395d89b41146106ef5780639858cf191461071a5761023b565b80636352211e1461059d5780636c0360eb146105da57806370a0823114610605578063715018a61461064257806384c76ea7146106595761023b565b806323b872dd116101bc57806342842e0e1161018057806342842e0e146104cc578063484b973c146104f5578063518302271461051e57806355f804b3146105495780635e1a2636146105725761023b565b806323b872dd146103fb5780632f8145751461042457806332cb6b0c1461043b5780633ba93f261461046657806341f6d8b11461048f5761023b565b8063095ea7b311610203578063095ea7b3146103395780630fbe4fe21461036257806318160ddd1461037e5780631a86854f146103a9578063228025e8146103d25761023b565b80630188541d1461024057806301ffc9a71461026957806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613539565b6108ee565b005b34801561027557600080fd5b50610290600480360381019061028b91906134df565b610984565b60405161029d9190613914565b60405180910390f35b3480156102b257600080fd5b506102bb610a66565b6040516102c8919061392f565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613582565b610af8565b60405161030591906138ad565b60405180910390f35b34801561031a57600080fd5b50610323610b74565b604051610330919061392f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061349f565b610c02565b005b61037c60048036038101906103779190613582565b610d0d565b005b34801561038a57600080fd5b50610393610ec0565b6040516103a09190613ad1565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613582565b610ed7565b005b3480156103de57600080fd5b506103f960048036038101906103f49190613582565b610f5d565b005b34801561040757600080fd5b50610422600480360381019061041d9190613389565b610fe3565b005b34801561043057600080fd5b50610439610ff3565b005b34801561044757600080fd5b5061045061109b565b60405161045d9190613ad1565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613582565b6110a1565b005b34801561049b57600080fd5b506104b660048036038101906104b1919061331c565b611127565b6040516104c39190613ad1565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613389565b611170565b005b34801561050157600080fd5b5061051c6004803603810190610517919061349f565b611190565b005b34801561052a57600080fd5b506105336112cd565b6040516105409190613914565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190613539565b6112e0565b005b34801561057e57600080fd5b50610587611391565b6040516105949190613ad1565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613582565b611397565b6040516105d191906138ad565b60405180910390f35b3480156105e657600080fd5b506105ef6113ad565b6040516105fc919061392f565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061331c565b61143b565b6040516106399190613ad1565b60405180910390f35b34801561064e57600080fd5b5061065761150b565b005b34801561066557600080fd5b5061066e611593565b60405161067b9190613ad1565b60405180910390f35b34801561069057600080fd5b50610699611599565b005b3480156106a757600080fd5b506106b0611671565b6040516106bd91906138ad565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190613582565b61169b565b005b3480156106fb57600080fd5b50610704611734565b604051610711919061392f565b60405180910390f35b34801561072657600080fd5b5061072f6117c6565b60405161073c9190613ad1565b60405180910390f35b34801561075157600080fd5b5061075a6117cc565b6040516107679190613ad1565b60405180910390f35b61078a60048036038101906107859190613582565b6117d2565b005b34801561079857600080fd5b506107b360048036038101906107ae919061345f565b611964565b005b3480156107c157600080fd5b506107ca611adc565b6040516107d79190613914565b60405180910390f35b3480156107ec57600080fd5b506107f5611aef565b005b34801561080357600080fd5b5061081e600480360381019061081991906133dc565b611b97565b005b34801561082c57600080fd5b50610835611c13565b6040516108429190613ad1565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190613582565b611c19565b60405161087f919061392f565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613349565b611d6f565b6040516108bc9190613914565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e7919061331c565b611e03565b005b6108f6611efb565b73ffffffffffffffffffffffffffffffffffffffff16610914611671565b73ffffffffffffffffffffffffffffffffffffffff161461096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613a51565b60405180910390fd5b80601190805190602001906109809291906130ed565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5f5750610a5e82611f03565b5b9050919050565b606060028054610a7590613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa190613d8c565b8015610aee5780601f10610ac357610100808354040283529160200191610aee565b820191906000526020600020905b815481529060010190602001808311610ad157829003601f168201915b5050505050905090565b6000610b0382611f6d565b610b39576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610b8190613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bad90613d8c565b8015610bfa5780601f10610bcf57610100808354040283529160200191610bfa565b820191906000526020600020905b815481529060010190602001808311610bdd57829003601f168201915b505050505081565b6000610c0d82611397565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c75576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c94611efb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cc65750610cc481610cbf611efb565b611d6f565b155b15610cfd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d08838383611fbb565b505050565b601060009054906101000a900460ff16610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613991565b60405180910390fd5b600d5481600e54610d6d9190613bc1565b1115610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906139b1565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfc9190613bc1565b1115610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613971565b60405180910390fd5b610e4e610e48611efb565b8261206d565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9d9190613bc1565b9250508190555080600e6000828254610eb69190613bc1565b9250508190555050565b6000610eca61208b565b6001546000540303905090565b610edf611efb565b73ffffffffffffffffffffffffffffffffffffffff16610efd611671565b73ffffffffffffffffffffffffffffffffffffffff1614610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90613a51565b60405180910390fd5b80600d8190555050565b610f65611efb565b73ffffffffffffffffffffffffffffffffffffffff16610f83611671565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613a51565b60405180910390fd5b80600c8190555050565b610fee838383612094565b505050565b610ffb611efb565b73ffffffffffffffffffffffffffffffffffffffff16611019611671565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690613a51565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600c5481565b6110a9611efb565b73ffffffffffffffffffffffffffffffffffffffff166110c7611671565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490613a51565b60405180910390fd5b80600b8190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118b83838360405180602001604052806000815250611b97565b505050565b611198611efb565b73ffffffffffffffffffffffffffffffffffffffff166111b6611671565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613a51565b60405180910390fd5b600c5481611218610ec0565b6112229190613bc1565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a906139d1565b60405180910390fd5b600081116112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90613a91565b60405180910390fd5b80600e60008282546112b89190613bc1565b925050819055506112c9828261206d565b5050565b601060019054906101000a900460ff1681565b6112e8611efb565b73ffffffffffffffffffffffffffffffffffffffff16611306611671565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613a51565b60405180910390fd5b80601290805190602001906113729291906130ed565b506001601060016101000a81548160ff02191690831515021790555050565b600e5481565b60006113a282612585565b600001519050919050565b601280546113ba90613d8c565b80601f01602080910402602001604051908101604052809291908181526020018280546113e690613d8c565b80156114335780601f1061140857610100808354040283529160200191611433565b820191906000526020600020905b81548152906001019060200180831161141657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611513611efb565b73ffffffffffffffffffffffffffffffffffffffff16611531611671565b73ffffffffffffffffffffffffffffffffffffffff1614611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613a51565b60405180910390fd5b6115916000612814565b565b600b5481565b6115a1611efb565b73ffffffffffffffffffffffffffffffffffffffff166115bf611671565b73ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613a51565b60405180910390fd5b60004790506000811161165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613a31565b60405180910390fd5b61166e611668611efb565b476128da565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116a3611efb565b73ffffffffffffffffffffffffffffffffffffffff166116c1611671565b73ffffffffffffffffffffffffffffffffffffffff1614611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613a51565b60405180910390fd5b670de0b6b3a76400008161172b9190613c48565b600a8190555050565b60606003805461174390613d8c565b80601f016020809104026020016040519081016040528092919081815260200182805461176f90613d8c565b80156117bc5780601f10611791576101008083540402835291602001916117bc565b820191906000526020600020905b81548152906001019060200180831161179f57829003601f168201915b5050505050905090565b600d5481565b600a5481565b601060009054906101000a900460ff16611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890613991565b60405180910390fd5b600954811115611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d906139f1565b60405180910390fd5b600c5481611872610ec0565b61187c9190613bc1565b11156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139d1565b60405180910390fd5b60008111611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613a91565b60405180910390fd5b3481600a5461190f9190613c48565b1115611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613a11565b60405180910390fd5b61196161195b611efb565b8261206d565b50565b61196c611efb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119de611efb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8b611efb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad09190613914565b60405180910390a35050565b601060009054906101000a900460ff1681565b611af7611efb565b73ffffffffffffffffffffffffffffffffffffffff16611b15611671565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613a51565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611ba2848484612094565b611bc18373ffffffffffffffffffffffffffffffffffffffff1661298b565b8015611bd65750611bd4848484846129ae565b155b15611c0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060611c2482611f6d565b611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613a71565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611d115760118054611c8c90613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb890613d8c565b8015611d055780601f10611cda57610100808354040283529160200191611d05565b820191906000526020600020905b815481529060010190602001808311611ce857829003601f168201915b50505050509050611d6a565b6000611d1b612b0e565b90506000815111611d3b5760405180602001604052806000815250611d66565b80611d4584612ba0565b604051602001611d56929190613869565b6040516020818303038152906040525b9150505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0b611efb565b73ffffffffffffffffffffffffffffffffffffffff16611e29611671565b73ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690613a51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690613951565b60405180910390fd5b611ef881612814565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f7861208b565b11158015611f87575060005482105b8015611fb4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612087828260405180602001604052806000815250612d01565b5050565b60006001905090565b600061209f82612585565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120c6611efb565b73ffffffffffffffffffffffffffffffffffffffff1614806120f957506120f882600001516120f3611efb565b611d6f565b5b8061213e5750612107611efb565b73ffffffffffffffffffffffffffffffffffffffff1661212684610af8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612177576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612247576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122548585856001612d13565b6122646000848460000151611fbb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612515576000548110156125145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461257e8585856001612d19565b5050505050565b61258d613173565b60008290508061259b61208b565b111580156125aa575060005481105b156127dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126bf57809250505061280f565b5b6001156127da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127d557809250505061280f565b6126c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161290090613898565b60006040518083038185875af1925050503d806000811461293d576040519150601f19603f3d011682016040523d82523d6000602084013e612942565b606091505b5050905080612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d90613ab1565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d4611efb565b8786866040518563ffffffff1660e01b81526004016129f694939291906138c8565b602060405180830381600087803b158015612a1057600080fd5b505af1925050508015612a4157506040513d601f19601f82011682018060405250810190612a3e919061350c565b60015b612abb573d8060008114612a71576040519150601f19603f3d011682016040523d82523d6000602084013e612a76565b606091505b50600081511415612ab3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060128054612b1d90613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054612b4990613d8c565b8015612b965780601f10612b6b57610100808354040283529160200191612b96565b820191906000526020600020905b815481529060010190602001808311612b7957829003601f168201915b5050505050905090565b60606000821415612be8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cfc565b600082905060005b60008214612c1a578080612c0390613def565b915050600a82612c139190613c17565b9150612bf0565b60008167ffffffffffffffff811115612c3657612c35613f25565b5b6040519080825280601f01601f191660200182016040528015612c685781602001600182028036833780820191505090505b5090505b60008514612cf557600182612c819190613ca2565b9150600a85612c909190613e38565b6030612c9c9190613bc1565b60f81b818381518110612cb257612cb1613ef6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cee9190613c17565b9450612c6c565b8093505050505b919050565b612d0e8383836001612d1f565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dc7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd46000868387612d13565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f9e5750612f9d8773ffffffffffffffffffffffffffffffffffffffff1661298b565b5b15613064575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461301360008884806001019550886129ae565b613049576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612fa457826000541461305f57600080fd5b6130d0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613065575b8160008190555050506130e66000868387612d19565b5050505050565b8280546130f990613d8c565b90600052602060002090601f01602090048101928261311b5760008555613162565b82601f1061313457805160ff1916838001178555613162565b82800160010185558215613162579182015b82811115613161578251825591602001919060010190613146565b5b50905061316f91906131b6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131cf5760008160009055506001016131b7565b5090565b60006131e66131e184613b11565b613aec565b90508281526020810184848401111561320257613201613f59565b5b61320d848285613d4a565b509392505050565b600061322861322384613b42565b613aec565b90508281526020810184848401111561324457613243613f59565b5b61324f848285613d4a565b509392505050565b60008135905061326681614203565b92915050565b60008135905061327b8161421a565b92915050565b60008135905061329081614231565b92915050565b6000815190506132a581614231565b92915050565b600082601f8301126132c0576132bf613f54565b5b81356132d08482602086016131d3565b91505092915050565b600082601f8301126132ee576132ed613f54565b5b81356132fe848260208601613215565b91505092915050565b60008135905061331681614248565b92915050565b60006020828403121561333257613331613f63565b5b600061334084828501613257565b91505092915050565b600080604083850312156133605761335f613f63565b5b600061336e85828601613257565b925050602061337f85828601613257565b9150509250929050565b6000806000606084860312156133a2576133a1613f63565b5b60006133b086828701613257565b93505060206133c186828701613257565b92505060406133d286828701613307565b9150509250925092565b600080600080608085870312156133f6576133f5613f63565b5b600061340487828801613257565b945050602061341587828801613257565b935050604061342687828801613307565b925050606085013567ffffffffffffffff81111561344757613446613f5e565b5b613453878288016132ab565b91505092959194509250565b6000806040838503121561347657613475613f63565b5b600061348485828601613257565b92505060206134958582860161326c565b9150509250929050565b600080604083850312156134b6576134b5613f63565b5b60006134c485828601613257565b92505060206134d585828601613307565b9150509250929050565b6000602082840312156134f5576134f4613f63565b5b600061350384828501613281565b91505092915050565b60006020828403121561352257613521613f63565b5b600061353084828501613296565b91505092915050565b60006020828403121561354f5761354e613f63565b5b600082013567ffffffffffffffff81111561356d5761356c613f5e565b5b613579848285016132d9565b91505092915050565b60006020828403121561359857613597613f63565b5b60006135a684828501613307565b91505092915050565b6135b881613cd6565b82525050565b6135c781613ce8565b82525050565b60006135d882613b73565b6135e28185613b89565b93506135f2818560208601613d59565b6135fb81613f68565b840191505092915050565b600061361182613b7e565b61361b8185613ba5565b935061362b818560208601613d59565b61363481613f68565b840191505092915050565b600061364a82613b7e565b6136548185613bb6565b9350613664818560208601613d59565b80840191505092915050565b600061367d602683613ba5565b915061368882613f79565b604082019050919050565b60006136a0601183613ba5565b91506136ab82613fc8565b602082019050919050565b60006136c3601b83613ba5565b91506136ce82613ff1565b602082019050919050565b60006136e6602083613ba5565b91506136f18261401a565b602082019050919050565b6000613709601f83613ba5565b915061371482614043565b602082019050919050565b600061372c603183613ba5565b91506137378261406c565b604082019050919050565b600061374f601783613ba5565b915061375a826140bb565b602082019050919050565b6000613772600583613bb6565b915061377d826140e4565b600582019050919050565b6000613795601383613ba5565b91506137a08261410d565b602082019050919050565b60006137b8602083613ba5565b91506137c382614136565b602082019050919050565b60006137db602f83613ba5565b91506137e68261415f565b604082019050919050565b60006137fe601c83613ba5565b9150613809826141ae565b602082019050919050565b6000613821601883613ba5565b915061382c826141d7565b602082019050919050565b6000613844600083613b9a565b915061384f82614200565b600082019050919050565b61386381613d40565b82525050565b6000613875828561363f565b9150613881828461363f565b915061388c82613765565b91508190509392505050565b60006138a382613837565b9150819050919050565b60006020820190506138c260008301846135af565b92915050565b60006080820190506138dd60008301876135af565b6138ea60208301866135af565b6138f7604083018561385a565b818103606083015261390981846135cd565b905095945050505050565b600060208201905061392960008301846135be565b92915050565b600060208201905081810360008301526139498184613606565b905092915050565b6000602082019050818103600083015261396a81613670565b9050919050565b6000602082019050818103600083015261398a81613693565b9050919050565b600060208201905081810360008301526139aa816136b6565b9050919050565b600060208201905081810360008301526139ca816136d9565b9050919050565b600060208201905081810360008301526139ea816136fc565b9050919050565b60006020820190508181036000830152613a0a8161371f565b9050919050565b60006020820190508181036000830152613a2a81613742565b9050919050565b60006020820190508181036000830152613a4a81613788565b9050919050565b60006020820190508181036000830152613a6a816137ab565b9050919050565b60006020820190508181036000830152613a8a816137ce565b9050919050565b60006020820190508181036000830152613aaa816137f1565b9050919050565b60006020820190508181036000830152613aca81613814565b9050919050565b6000602082019050613ae6600083018461385a565b92915050565b6000613af6613b07565b9050613b028282613dbe565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2c57613b2b613f25565b5b613b3582613f68565b9050602081019050919050565b600067ffffffffffffffff821115613b5d57613b5c613f25565b5b613b6682613f68565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bcc82613d40565b9150613bd783613d40565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0c57613c0b613e69565b5b828201905092915050565b6000613c2282613d40565b9150613c2d83613d40565b925082613c3d57613c3c613e98565b5b828204905092915050565b6000613c5382613d40565b9150613c5e83613d40565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9757613c96613e69565b5b828202905092915050565b6000613cad82613d40565b9150613cb883613d40565b925082821015613ccb57613cca613e69565b5b828203905092915050565b6000613ce182613d20565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d77578082015181840152602081019050613d5c565b83811115613d86576000848401525b50505050565b60006002820490506001821680613da457607f821691505b60208210811415613db857613db7613ec7565b5b50919050565b613dc782613f68565b810181811067ffffffffffffffff82111715613de657613de5613f25565b5b80604052505050565b6000613dfa82613d40565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e2d57613e2c613e69565b5b600182019050919050565b6000613e4382613d40565b9150613e4e83613d40565b925082613e5e57613e5d613e98565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320616c6c6f77616e6365000000000000000000000000000000600082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206672656520737570706c79600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b61420c81613cd6565b811461421757600080fd5b50565b61422381613ce8565b811461422e57600080fd5b50565b61423a81613cf4565b811461424557600080fd5b50565b61425181613d40565b811461425c57600080fd5b5056fea26469706673582212205dfa8d61f0cdc5007fdc1214cb60691bd8e1e5801deaaf11cf9f7a62fea1ae3264736f6c6343000807003368747470733a2f2f626162796674632e6d7970696e6174612e636c6f75642f697066732f516d51736e755853486f427648795273327a4163715a6941754e5a467955347044367236367744313159766d44552f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a035b1fe116100ab578063b88d4fde1161006f578063b88d4fde146107f7578063c6a91b4214610820578063c87b56dd1461084b578063e985e9c514610888578063f2fde38b146108c55761023b565b8063a035b1fe14610745578063a0712d6814610770578063a22cb4651461078c578063a2e91477146107b5578063a475b5dd146107e05761023b565b8063853828b6116100f2578063853828b6146106845780638da5cb5b1461069b57806391b7f5ed146106c657806395d89b41146106ef5780639858cf191461071a5761023b565b80636352211e1461059d5780636c0360eb146105da57806370a0823114610605578063715018a61461064257806384c76ea7146106595761023b565b806323b872dd116101bc57806342842e0e1161018057806342842e0e146104cc578063484b973c146104f5578063518302271461051e57806355f804b3146105495780635e1a2636146105725761023b565b806323b872dd146103fb5780632f8145751461042457806332cb6b0c1461043b5780633ba93f261461046657806341f6d8b11461048f5761023b565b8063095ea7b311610203578063095ea7b3146103395780630fbe4fe21461036257806318160ddd1461037e5780631a86854f146103a9578063228025e8146103d25761023b565b80630188541d1461024057806301ffc9a71461026957806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613539565b6108ee565b005b34801561027557600080fd5b50610290600480360381019061028b91906134df565b610984565b60405161029d9190613914565b60405180910390f35b3480156102b257600080fd5b506102bb610a66565b6040516102c8919061392f565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613582565b610af8565b60405161030591906138ad565b60405180910390f35b34801561031a57600080fd5b50610323610b74565b604051610330919061392f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061349f565b610c02565b005b61037c60048036038101906103779190613582565b610d0d565b005b34801561038a57600080fd5b50610393610ec0565b6040516103a09190613ad1565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613582565b610ed7565b005b3480156103de57600080fd5b506103f960048036038101906103f49190613582565b610f5d565b005b34801561040757600080fd5b50610422600480360381019061041d9190613389565b610fe3565b005b34801561043057600080fd5b50610439610ff3565b005b34801561044757600080fd5b5061045061109b565b60405161045d9190613ad1565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613582565b6110a1565b005b34801561049b57600080fd5b506104b660048036038101906104b1919061331c565b611127565b6040516104c39190613ad1565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613389565b611170565b005b34801561050157600080fd5b5061051c6004803603810190610517919061349f565b611190565b005b34801561052a57600080fd5b506105336112cd565b6040516105409190613914565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190613539565b6112e0565b005b34801561057e57600080fd5b50610587611391565b6040516105949190613ad1565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613582565b611397565b6040516105d191906138ad565b60405180910390f35b3480156105e657600080fd5b506105ef6113ad565b6040516105fc919061392f565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061331c565b61143b565b6040516106399190613ad1565b60405180910390f35b34801561064e57600080fd5b5061065761150b565b005b34801561066557600080fd5b5061066e611593565b60405161067b9190613ad1565b60405180910390f35b34801561069057600080fd5b50610699611599565b005b3480156106a757600080fd5b506106b0611671565b6040516106bd91906138ad565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190613582565b61169b565b005b3480156106fb57600080fd5b50610704611734565b604051610711919061392f565b60405180910390f35b34801561072657600080fd5b5061072f6117c6565b60405161073c9190613ad1565b60405180910390f35b34801561075157600080fd5b5061075a6117cc565b6040516107679190613ad1565b60405180910390f35b61078a60048036038101906107859190613582565b6117d2565b005b34801561079857600080fd5b506107b360048036038101906107ae919061345f565b611964565b005b3480156107c157600080fd5b506107ca611adc565b6040516107d79190613914565b60405180910390f35b3480156107ec57600080fd5b506107f5611aef565b005b34801561080357600080fd5b5061081e600480360381019061081991906133dc565b611b97565b005b34801561082c57600080fd5b50610835611c13565b6040516108429190613ad1565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190613582565b611c19565b60405161087f919061392f565b60405180910390f35b34801561089457600080fd5b506108af60048036038101906108aa9190613349565b611d6f565b6040516108bc9190613914565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e7919061331c565b611e03565b005b6108f6611efb565b73ffffffffffffffffffffffffffffffffffffffff16610914611671565b73ffffffffffffffffffffffffffffffffffffffff161461096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613a51565b60405180910390fd5b80601190805190602001906109809291906130ed565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5f5750610a5e82611f03565b5b9050919050565b606060028054610a7590613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa190613d8c565b8015610aee5780601f10610ac357610100808354040283529160200191610aee565b820191906000526020600020905b815481529060010190602001808311610ad157829003601f168201915b5050505050905090565b6000610b0382611f6d565b610b39576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60118054610b8190613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bad90613d8c565b8015610bfa5780601f10610bcf57610100808354040283529160200191610bfa565b820191906000526020600020905b815481529060010190602001808311610bdd57829003601f168201915b505050505081565b6000610c0d82611397565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c75576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c94611efb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cc65750610cc481610cbf611efb565b611d6f565b155b15610cfd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d08838383611fbb565b505050565b601060009054906101000a900460ff16610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613991565b60405180910390fd5b600d5481600e54610d6d9190613bc1565b1115610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906139b1565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfc9190613bc1565b1115610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613971565b60405180910390fd5b610e4e610e48611efb565b8261206d565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9d9190613bc1565b9250508190555080600e6000828254610eb69190613bc1565b9250508190555050565b6000610eca61208b565b6001546000540303905090565b610edf611efb565b73ffffffffffffffffffffffffffffffffffffffff16610efd611671565b73ffffffffffffffffffffffffffffffffffffffff1614610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90613a51565b60405180910390fd5b80600d8190555050565b610f65611efb565b73ffffffffffffffffffffffffffffffffffffffff16610f83611671565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613a51565b60405180910390fd5b80600c8190555050565b610fee838383612094565b505050565b610ffb611efb565b73ffffffffffffffffffffffffffffffffffffffff16611019611671565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690613a51565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600c5481565b6110a9611efb565b73ffffffffffffffffffffffffffffffffffffffff166110c7611671565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490613a51565b60405180910390fd5b80600b8190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118b83838360405180602001604052806000815250611b97565b505050565b611198611efb565b73ffffffffffffffffffffffffffffffffffffffff166111b6611671565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613a51565b60405180910390fd5b600c5481611218610ec0565b6112229190613bc1565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a906139d1565b60405180910390fd5b600081116112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90613a91565b60405180910390fd5b80600e60008282546112b89190613bc1565b925050819055506112c9828261206d565b5050565b601060019054906101000a900460ff1681565b6112e8611efb565b73ffffffffffffffffffffffffffffffffffffffff16611306611671565b73ffffffffffffffffffffffffffffffffffffffff161461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613a51565b60405180910390fd5b80601290805190602001906113729291906130ed565b506001601060016101000a81548160ff02191690831515021790555050565b600e5481565b60006113a282612585565b600001519050919050565b601280546113ba90613d8c565b80601f01602080910402602001604051908101604052809291908181526020018280546113e690613d8c565b80156114335780601f1061140857610100808354040283529160200191611433565b820191906000526020600020905b81548152906001019060200180831161141657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611513611efb565b73ffffffffffffffffffffffffffffffffffffffff16611531611671565b73ffffffffffffffffffffffffffffffffffffffff1614611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613a51565b60405180910390fd5b6115916000612814565b565b600b5481565b6115a1611efb565b73ffffffffffffffffffffffffffffffffffffffff166115bf611671565b73ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613a51565b60405180910390fd5b60004790506000811161165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613a31565b60405180910390fd5b61166e611668611efb565b476128da565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116a3611efb565b73ffffffffffffffffffffffffffffffffffffffff166116c1611671565b73ffffffffffffffffffffffffffffffffffffffff1614611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90613a51565b60405180910390fd5b670de0b6b3a76400008161172b9190613c48565b600a8190555050565b60606003805461174390613d8c565b80601f016020809104026020016040519081016040528092919081815260200182805461176f90613d8c565b80156117bc5780601f10611791576101008083540402835291602001916117bc565b820191906000526020600020905b81548152906001019060200180831161179f57829003601f168201915b5050505050905090565b600d5481565b600a5481565b601060009054906101000a900460ff16611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890613991565b60405180910390fd5b600954811115611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d906139f1565b60405180910390fd5b600c5481611872610ec0565b61187c9190613bc1565b11156118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139d1565b60405180910390fd5b60008111611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613a91565b60405180910390fd5b3481600a5461190f9190613c48565b1115611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790613a11565b60405180910390fd5b61196161195b611efb565b8261206d565b50565b61196c611efb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119de611efb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8b611efb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad09190613914565b60405180910390a35050565b601060009054906101000a900460ff1681565b611af7611efb565b73ffffffffffffffffffffffffffffffffffffffff16611b15611671565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613a51565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611ba2848484612094565b611bc18373ffffffffffffffffffffffffffffffffffffffff1661298b565b8015611bd65750611bd4848484846129ae565b155b15611c0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b6060611c2482611f6d565b611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613a71565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611d115760118054611c8c90613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb890613d8c565b8015611d055780601f10611cda57610100808354040283529160200191611d05565b820191906000526020600020905b815481529060010190602001808311611ce857829003601f168201915b50505050509050611d6a565b6000611d1b612b0e565b90506000815111611d3b5760405180602001604052806000815250611d66565b80611d4584612ba0565b604051602001611d56929190613869565b6040516020818303038152906040525b9150505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0b611efb565b73ffffffffffffffffffffffffffffffffffffffff16611e29611671565b73ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690613a51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690613951565b60405180910390fd5b611ef881612814565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f7861208b565b11158015611f87575060005482105b8015611fb4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612087828260405180602001604052806000815250612d01565b5050565b60006001905090565b600061209f82612585565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120c6611efb565b73ffffffffffffffffffffffffffffffffffffffff1614806120f957506120f882600001516120f3611efb565b611d6f565b5b8061213e5750612107611efb565b73ffffffffffffffffffffffffffffffffffffffff1661212684610af8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612177576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612247576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122548585856001612d13565b6122646000848460000151611fbb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612515576000548110156125145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461257e8585856001612d19565b5050505050565b61258d613173565b60008290508061259b61208b565b111580156125aa575060005481105b156127dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126bf57809250505061280f565b5b6001156127da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127d557809250505061280f565b6126c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161290090613898565b60006040518083038185875af1925050503d806000811461293d576040519150601f19603f3d011682016040523d82523d6000602084013e612942565b606091505b5050905080612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d90613ab1565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d4611efb565b8786866040518563ffffffff1660e01b81526004016129f694939291906138c8565b602060405180830381600087803b158015612a1057600080fd5b505af1925050508015612a4157506040513d601f19601f82011682018060405250810190612a3e919061350c565b60015b612abb573d8060008114612a71576040519150601f19603f3d011682016040523d82523d6000602084013e612a76565b606091505b50600081511415612ab3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060128054612b1d90613d8c565b80601f0160208091040260200160405190810160405280929190818152602001828054612b4990613d8c565b8015612b965780601f10612b6b57610100808354040283529160200191612b96565b820191906000526020600020905b815481529060010190602001808311612b7957829003601f168201915b5050505050905090565b60606000821415612be8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cfc565b600082905060005b60008214612c1a578080612c0390613def565b915050600a82612c139190613c17565b9150612bf0565b60008167ffffffffffffffff811115612c3657612c35613f25565b5b6040519080825280601f01601f191660200182016040528015612c685781602001600182028036833780820191505090505b5090505b60008514612cf557600182612c819190613ca2565b9150600a85612c909190613e38565b6030612c9c9190613bc1565b60f81b818381518110612cb257612cb1613ef6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cee9190613c17565b9450612c6c565b8093505050505b919050565b612d0e8383836001612d1f565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dc7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd46000868387612d13565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f9e5750612f9d8773ffffffffffffffffffffffffffffffffffffffff1661298b565b5b15613064575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461301360008884806001019550886129ae565b613049576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612fa457826000541461305f57600080fd5b6130d0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613065575b8160008190555050506130e66000868387612d19565b5050505050565b8280546130f990613d8c565b90600052602060002090601f01602090048101928261311b5760008555613162565b82601f1061313457805160ff1916838001178555613162565b82800160010185558215613162579182015b82811115613161578251825591602001919060010190613146565b5b50905061316f91906131b6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131cf5760008160009055506001016131b7565b5090565b60006131e66131e184613b11565b613aec565b90508281526020810184848401111561320257613201613f59565b5b61320d848285613d4a565b509392505050565b600061322861322384613b42565b613aec565b90508281526020810184848401111561324457613243613f59565b5b61324f848285613d4a565b509392505050565b60008135905061326681614203565b92915050565b60008135905061327b8161421a565b92915050565b60008135905061329081614231565b92915050565b6000815190506132a581614231565b92915050565b600082601f8301126132c0576132bf613f54565b5b81356132d08482602086016131d3565b91505092915050565b600082601f8301126132ee576132ed613f54565b5b81356132fe848260208601613215565b91505092915050565b60008135905061331681614248565b92915050565b60006020828403121561333257613331613f63565b5b600061334084828501613257565b91505092915050565b600080604083850312156133605761335f613f63565b5b600061336e85828601613257565b925050602061337f85828601613257565b9150509250929050565b6000806000606084860312156133a2576133a1613f63565b5b60006133b086828701613257565b93505060206133c186828701613257565b92505060406133d286828701613307565b9150509250925092565b600080600080608085870312156133f6576133f5613f63565b5b600061340487828801613257565b945050602061341587828801613257565b935050604061342687828801613307565b925050606085013567ffffffffffffffff81111561344757613446613f5e565b5b613453878288016132ab565b91505092959194509250565b6000806040838503121561347657613475613f63565b5b600061348485828601613257565b92505060206134958582860161326c565b9150509250929050565b600080604083850312156134b6576134b5613f63565b5b60006134c485828601613257565b92505060206134d585828601613307565b9150509250929050565b6000602082840312156134f5576134f4613f63565b5b600061350384828501613281565b91505092915050565b60006020828403121561352257613521613f63565b5b600061353084828501613296565b91505092915050565b60006020828403121561354f5761354e613f63565b5b600082013567ffffffffffffffff81111561356d5761356c613f5e565b5b613579848285016132d9565b91505092915050565b60006020828403121561359857613597613f63565b5b60006135a684828501613307565b91505092915050565b6135b881613cd6565b82525050565b6135c781613ce8565b82525050565b60006135d882613b73565b6135e28185613b89565b93506135f2818560208601613d59565b6135fb81613f68565b840191505092915050565b600061361182613b7e565b61361b8185613ba5565b935061362b818560208601613d59565b61363481613f68565b840191505092915050565b600061364a82613b7e565b6136548185613bb6565b9350613664818560208601613d59565b80840191505092915050565b600061367d602683613ba5565b915061368882613f79565b604082019050919050565b60006136a0601183613ba5565b91506136ab82613fc8565b602082019050919050565b60006136c3601b83613ba5565b91506136ce82613ff1565b602082019050919050565b60006136e6602083613ba5565b91506136f18261401a565b602082019050919050565b6000613709601f83613ba5565b915061371482614043565b602082019050919050565b600061372c603183613ba5565b91506137378261406c565b604082019050919050565b600061374f601783613ba5565b915061375a826140bb565b602082019050919050565b6000613772600583613bb6565b915061377d826140e4565b600582019050919050565b6000613795601383613ba5565b91506137a08261410d565b602082019050919050565b60006137b8602083613ba5565b91506137c382614136565b602082019050919050565b60006137db602f83613ba5565b91506137e68261415f565b604082019050919050565b60006137fe601c83613ba5565b9150613809826141ae565b602082019050919050565b6000613821601883613ba5565b915061382c826141d7565b602082019050919050565b6000613844600083613b9a565b915061384f82614200565b600082019050919050565b61386381613d40565b82525050565b6000613875828561363f565b9150613881828461363f565b915061388c82613765565b91508190509392505050565b60006138a382613837565b9150819050919050565b60006020820190506138c260008301846135af565b92915050565b60006080820190506138dd60008301876135af565b6138ea60208301866135af565b6138f7604083018561385a565b818103606083015261390981846135cd565b905095945050505050565b600060208201905061392960008301846135be565b92915050565b600060208201905081810360008301526139498184613606565b905092915050565b6000602082019050818103600083015261396a81613670565b9050919050565b6000602082019050818103600083015261398a81613693565b9050919050565b600060208201905081810360008301526139aa816136b6565b9050919050565b600060208201905081810360008301526139ca816136d9565b9050919050565b600060208201905081810360008301526139ea816136fc565b9050919050565b60006020820190508181036000830152613a0a8161371f565b9050919050565b60006020820190508181036000830152613a2a81613742565b9050919050565b60006020820190508181036000830152613a4a81613788565b9050919050565b60006020820190508181036000830152613a6a816137ab565b9050919050565b60006020820190508181036000830152613a8a816137ce565b9050919050565b60006020820190508181036000830152613aaa816137f1565b9050919050565b60006020820190508181036000830152613aca81613814565b9050919050565b6000602082019050613ae6600083018461385a565b92915050565b6000613af6613b07565b9050613b028282613dbe565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2c57613b2b613f25565b5b613b3582613f68565b9050602081019050919050565b600067ffffffffffffffff821115613b5d57613b5c613f25565b5b613b6682613f68565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bcc82613d40565b9150613bd783613d40565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c0c57613c0b613e69565b5b828201905092915050565b6000613c2282613d40565b9150613c2d83613d40565b925082613c3d57613c3c613e98565b5b828204905092915050565b6000613c5382613d40565b9150613c5e83613d40565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c9757613c96613e69565b5b828202905092915050565b6000613cad82613d40565b9150613cb883613d40565b925082821015613ccb57613cca613e69565b5b828203905092915050565b6000613ce182613d20565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d77578082015181840152602081019050613d5c565b83811115613d86576000848401525b50505050565b60006002820490506001821680613da457607f821691505b60208210811415613db857613db7613ec7565b5b50919050565b613dc782613f68565b810181811067ffffffffffffffff82111715613de657613de5613f25565b5b80604052505050565b6000613dfa82613d40565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e2d57613e2c613e69565b5b600182019050919050565b6000613e4382613d40565b9150613e4e83613d40565b925082613e5e57613e5d613e98565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320616c6c6f77616e6365000000000000000000000000000000600082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206672656520737570706c79600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b61420c81613cd6565b811461421757600080fd5b50565b61422381613ce8565b811461422e57600080fd5b50565b61423a81613cf4565b811461424557600080fd5b50565b61425181613d40565b811461425c57600080fd5b5056fea26469706673582212205dfa8d61f0cdc5007fdc1214cb60691bd8e1e5801deaaf11cf9f7a62fea1ae3264736f6c63430008070033

Deployed Bytecode Sourcemap

466:4308:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1499:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4690:355:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;960:127:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9320:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3396:467:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3939:303:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1983:105:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1874:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10728:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1240:111:13;;;;;;;;;;;;;:::i;:::-;;704:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1753:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3871:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10969:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4040:291:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;921:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1359:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;785:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7966:124:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1143:26:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5109:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;661:34:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4366:209;;;;;;;;;;;;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1641:104:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8326::3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;743:33:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;620:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:493;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10074:302:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;877:37:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2755:70;;;;;;;;;;;;;:::i;:::-;;11225:406:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;577:36:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2233:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10447:214:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1499:134:13;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1607:18:13::1;1590:14;:35;;;;;;;;;;;;:::i;:::-;;1499:134:::0;:::o;4690:355:3:-;4837:4;4894:25;4879:40;;;:11;:40;;;;:105;;;;4951:33;4936:48;;;:11;:48;;;;4879:105;:158;;;;5001:36;5025:11;5001:23;:36::i;:::-;4879:158;4859:178;;4690:355;;;:::o;8157:100::-;8211:13;8244:5;8237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8157:100;:::o;9757:245::-;9861:7;9891:16;9899:7;9891;:16::i;:::-;9886:64;;9916:34;;;;;;;;;;;;;;9886:64;9970:15;:24;9986:7;9970:24;;;;;;;;;;;;;;;;;;;;;9963:31;;9757:245;;;:::o;960:127:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9320:371:3:-;9393:13;9409:24;9425:7;9409:15;:24::i;:::-;9393:40;;9454:5;9448:11;;:2;:11;;;9444:48;;;9468:24;;;;;;;;;;;;;;9444:48;9525:5;9509:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9535:37;9552:5;9559:12;:10;:12::i;:::-;9535:16;:37::i;:::-;9534:38;9509:63;9505:138;;;9596:35;;;;;;;;;;;;;;9505:138;9655:28;9664:2;9668:7;9677:5;9655:8;:28::i;:::-;9382:309;9320:371;;:::o;3396:467:13:-;3470:17;;;;;;;;;;;3462:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3567:11;;3552:10;3538:11;;:24;;;;:::i;:::-;:41;;3530:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;3682:14;;3668:10;3635:18;:30;3654:10;3635:30;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:61;;3627:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;3729:35;3739:12;:10;:12::i;:::-;3753:10;3729:9;:35::i;:::-;3809:10;3775:18;:30;3794:10;3775:30;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;3845:10;3830:11;;:25;;;;;;;:::i;:::-;;;;;;;;3396:467;:::o;3939:303:3:-;3983:7;4208:15;:13;:15::i;:::-;4193:12;;4177:13;;:28;:46;4170:53;;3939:303;:::o;1983:105:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2069:14:13::1;2055:11;:28;;;;1983:105:::0;:::o;1874:101::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1957:13:13::1;1944:10;:26;;;;1874:101:::0;:::o;10728:170:3:-;10862:28;10872:4;10878:2;10882:7;10862:9;:28::i;:::-;10728:170;;;:::o;1240:111:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1326:17:13::1;;;;;;;;;;;1325:18;1305:17;;:38;;;;;;;;;;;;;;;;;;1240:111::o:0;704:32::-;;;;:::o;1753:113::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:13:13::1;1828:14;:30;;;;1753:113:::0;:::o;3871:127::-;3936:7;3963:18;:27;3982:7;3963:27;;;;;;;;;;;;;;;;3956:34;;3871:127;;;:::o;10969:185:3:-;11107:39;11124:4;11130:2;11134:7;11107:39;;;;;;;;;;;;:16;:39::i;:::-;10969:185;;;:::o;4040:291:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4151:10:13::1;;4141:6;4125:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;4117:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;4225:1;4216:6;:10;4208:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;4285:6;4270:11;;:21;;;;;;;:::i;:::-;;;;;;;;4302;4312:2;4316:6;4302:9;:21::i;:::-;4040:291:::0;;:::o;921:28::-;;;;;;;;;;;;;:::o;1359:132::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1446:11:13::1;1436:7;:21;;;;;;;;;;;;:::i;:::-;;1479:4;1468:8;;:15;;;;;;;;;;;;;;;;;;1359:132:::0;:::o;785:30::-;;;;:::o;7966:124:3:-;8030:7;8057:20;8069:7;8057:11;:20::i;:::-;:25;;;8050:32;;7966:124;;;:::o;1143:26:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5109:206:3:-;5173:7;5214:1;5197:19;;:5;:19;;;5193:60;;;5225:28;;;;;;;;;;;;;;5193:60;5279:12;:19;5292:5;5279:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5271:36;;5264:43;;5109:206;;;:::o;1714:103:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;661:34:13:-;;;;:::o;4366:209::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4417:15:13::1;4435:21;4417:39;;4485:1;4475:7;:11;4467:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;4521:46;4531:12;:10;:12::i;:::-;4545:21;4521:9;:46::i;:::-;4406:169;4366:209::o:0;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;1641:104:13:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1729:7:13::1;1716:9;:21;;;;:::i;:::-;1708:5;:29;;;;1641:104:::0;:::o;8326::3:-;8382:13;8415:7;8408:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8326:104;:::o;743:33:13:-;;;;:::o;620:34::-;;;;:::o;2864:493::-;2930:17;;;;;;;;;;;2922:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3008:16;;2998:6;:26;;2990:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;3124:10;;3113:6;3097:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;3089:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:1;3190:6;:10;3182:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3270:9;3260:6;3252:5;;:14;;;;:::i;:::-;:27;;3244:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3318:31;3328:12;:10;:12::i;:::-;3342:6;3318:9;:31::i;:::-;2864:493;:::o;10074:302:3:-;10200:12;:10;:12::i;:::-;10188:24;;:8;:24;;;10184:54;;;10221:17;;;;;;;;;;;;;;10184:54;10296:8;10251:18;:32;10270:12;:10;:12::i;:::-;10251:32;;;;;;;;;;;;;;;:42;10284:8;10251:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10349:8;10320:48;;10335:12;:10;:12::i;:::-;10320:48;;;10359:8;10320:48;;;;;;:::i;:::-;;;;;;;;10074:302;;:::o;877:37:13:-;;;;;;;;;;;;;:::o;2755:70::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2811:8:13::1;;;;;;;;;;;2810:9;2799:8;;:20;;;;;;;;;;;;;;;;;;2755:70::o:0;11225:406:3:-;11392:28;11402:4;11408:2;11412:7;11392:9;:28::i;:::-;11449:15;:2;:13;;;:15::i;:::-;:89;;;;;11482:56;11513:4;11519:2;11523:7;11532:5;11482:30;:56::i;:::-;11481:57;11449:89;11431:193;;;11572:40;;;;;;;;;;;;;;11431:193;11225:406;;;;:::o;577:36:13:-;;;;:::o;2233:493::-;2331:13;2372:16;2380:7;2372;:16::i;:::-;2356:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;2481:5;2469:17;;:8;;;;;;;;;;;:17;;;2466:62;;;2506:14;2499:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2466:62;2536:28;2567:10;:8;:10::i;:::-;2536:41;;2622:1;2597:14;2591:28;:32;:129;;;;;;;;;;;;;;;;;2659:14;2675:20;2676:7;2675:18;:20::i;:::-;2642:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2591:129;2584:136;;;2233:493;;;;:::o;10447:214:3:-;10589:4;10618:18;:25;10637:5;10618:25;;;;;;;;;;;;;;;:35;10644:8;10618:35;;;;;;;;;;;;;;;;;;;;;;;;;10611:42;;10447:214;;;;:::o;1972:201:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;11886:213:3:-;11943:4;11999:7;11980:15;:13;:15::i;:::-;:26;;:66;;;;;12033:13;;12023:7;:23;11980:66;:111;;;;;12064:11;:20;12076:7;12064:20;;;;;;;;;;;:27;;;;;;;;;;;;12063:28;11980:111;11960:131;;11886:213;;;:::o;19766:196::-;19908:2;19881:15;:24;19897:7;19881:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19946:7;19942:2;19926:28;;19935:5;19926:28;;;;;;;;;;;;19766:196;;;:::o;12107:104::-;12176:27;12186:2;12190:8;12176:27;;;;;;;;;;;;:9;:27::i;:::-;12107:104;;:::o;3663:92::-;3719:7;3746:1;3739:8;;3663:92;:::o;15216:2138::-;15331:35;15369:20;15381:7;15369:11;:20::i;:::-;15331:58;;15402:22;15444:13;:18;;;15428:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15479:50;15496:13;:18;;;15516:12;:10;:12::i;:::-;15479:16;:50::i;:::-;15428:101;:154;;;;15570:12;:10;:12::i;:::-;15546:36;;:20;15558:7;15546:11;:20::i;:::-;:36;;;15428:154;15402:181;;15601:17;15596:66;;15627:35;;;;;;;;;;;;;;15596:66;15699:4;15677:26;;:13;:18;;;:26;;;15673:67;;15712:28;;;;;;;;;;;;;;15673:67;15769:1;15755:16;;:2;:16;;;15751:52;;;15780:23;;;;;;;;;;;;;;15751:52;15816:43;15838:4;15844:2;15848:7;15857:1;15816:21;:43::i;:::-;15924:49;15941:1;15945:7;15954:13;:18;;;15924:8;:49::i;:::-;16299:1;16269:12;:18;16282:4;16269:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16343:1;16315:12;:16;16328:2;16315:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16389:2;16361:11;:20;16373:7;16361:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16451:15;16406:11;:20;16418:7;16406:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16719:19;16751:1;16741:7;:11;16719:33;;16812:1;16771:43;;:11;:24;16783:11;16771:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16767:471;;;16996:13;;16982:11;:27;16978:245;;;17066:13;:18;;;17034:11;:24;17046:11;17034:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;17149:13;:54;;;17107:11;:24;17119:11;17107:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;16978:245;16767:471;16244:1005;17285:7;17281:2;17266:27;;17275:4;17266:27;;;;;;;;;;;;17304:42;17325:4;17331:2;17335:7;17344:1;17304:20;:42::i;:::-;15320:2034;;15216:2138;;;:::o;6764:1140::-;6852:21;;:::i;:::-;6891:12;6906:7;6891:22;;6974:4;6955:15;:13;:15::i;:::-;:23;;:47;;;;;6989:13;;6982:4;:20;6955:47;6951:886;;;7023:31;7057:11;:17;7069:4;7057:17;;;;;;;;;;;7023:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7098:9;:16;;;7093:729;;7169:1;7143:28;;:9;:14;;;:28;;;7139:101;;7207:9;7200:16;;;;;;7139:101;7542:261;7549:4;7542:261;;;7582:6;;;;;;;;7627:11;:17;7639:4;7627:17;;;;;;;;;;;7615:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7701:1;7675:28;;:9;:14;;;:28;;;7671:109;;7743:9;7736:16;;;;;;7671:109;7542:261;;;7093:729;7004:833;6951:886;7865:31;;;;;;;;;;;;;;6764:1140;;;;:::o;2333:191:9:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;4583:188:13:-;4657:12;4675:8;:13;;4696:7;4675:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4656:52;;;4727:7;4719:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;4645:126;4583:188;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;20454:772:3:-;20617:4;20667:2;20651:36;;;20706:12;:10;:12::i;:::-;20737:4;20760:7;20786:5;20651:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20634:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20994:1;20977:6;:13;:18;20973:235;;;21023:40;;;;;;;;;;;;;;20973:235;21166:6;21160:13;21151:6;21147:2;21143:15;21136:38;20634:585;20872:45;;;20862:55;;;:6;:55;;;;20855:62;;;20454:772;;;;;;:::o;2096:100:13:-;2148:13;2181:7;2174:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096:100;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;12574:163:3:-;12697:32;12703:2;12707:8;12717:5;12724:4;12697:5;:32::i;:::-;12574:163;;;:::o;21874:159::-;;;;;:::o;22692:158::-;;;;;:::o;12996:1966::-;13135:20;13158:13;;13135:36;;13200:1;13186:16;;:2;:16;;;13182:48;;;13211:19;;;;;;;;;;;;;;13182:48;13257:1;13245:8;:13;13241:44;;;13267:18;;;;;;;;;;;;;;13241:44;13298:61;13328:1;13332:2;13336:12;13350:8;13298:21;:61::i;:::-;13671:8;13636:12;:16;13649:2;13636:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13735:8;13695:12;:16;13708:2;13695:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13794:2;13761:11;:25;13773:12;13761:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13861:15;13811:11;:25;13823:12;13811:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13894:20;13917:12;13894:35;;13944:11;13973:8;13958:12;:23;13944:37;;14002:4;:23;;;;;14010:15;:2;:13;;;:15::i;:::-;14002:23;13998:832;;;14046:505;14102:12;14098:2;14077:38;;14094:1;14077:38;;;;;;;;;;;;14169:212;14238:1;14271:2;14304:14;;;;;;14349:5;14169:30;:212::i;:::-;14138:365;;14439:40;;;;;;;;;;;;;;14138:365;14546:3;14530:12;:19;;14046:505;;14632:12;14615:13;;:29;14611:43;;14646:8;;;14611:43;13998:832;;;14695:120;14751:14;;;;;;14747:2;14726:40;;14743:1;14726:40;;;;;;;;;;;;14810:3;14794:12;:19;;14695:120;;13998:832;14860:12;14844:13;:28;;;;13611:1273;;14894:60;14923:1;14927:2;14931:12;14945:8;14894:20;:60::i;:::-;13124:1838;12996:1966;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:400::-;11280:3;11301:84;11383:1;11378:3;11301:84;:::i;:::-;11294:91;;11394:93;11483:3;11394:93;:::i;:::-;11512:1;11507:3;11503:11;11496:18;;11120:400;;;:::o;11526:366::-;11668:3;11689:67;11753:2;11748:3;11689:67;:::i;:::-;11682:74;;11765:93;11854:3;11765:93;:::i;:::-;11883:2;11878:3;11874:12;11867:19;;11526:366;;;:::o;11898:::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:::-;12412:3;12433:67;12497:2;12492:3;12433:67;:::i;:::-;12426:74;;12509:93;12598:3;12509:93;:::i;:::-;12627:2;12622:3;12618:12;12611:19;;12270:366;;;:::o;12642:::-;12784:3;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12881:93;12970:3;12881:93;:::i;:::-;12999:2;12994:3;12990:12;12983:19;;12642:366;;;:::o;13014:::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13014:366;;;:::o;13386:398::-;13545:3;13566:83;13647:1;13642:3;13566:83;:::i;:::-;13559:90;;13658:93;13747:3;13658:93;:::i;:::-;13776:1;13771:3;13767:11;13760:18;;13386:398;;;:::o;13790:118::-;13877:24;13895:5;13877:24;:::i;:::-;13872:3;13865:37;13790:118;;:::o;13914:701::-;14195:3;14217:95;14308:3;14299:6;14217:95;:::i;:::-;14210:102;;14329:95;14420:3;14411:6;14329:95;:::i;:::-;14322:102;;14441:148;14585:3;14441:148;:::i;:::-;14434:155;;14606:3;14599:10;;13914:701;;;;;:::o;14621:379::-;14805:3;14827:147;14970:3;14827:147;:::i;:::-;14820:154;;14991:3;14984:10;;14621:379;;;:::o;15006:222::-;15099:4;15137:2;15126:9;15122:18;15114:26;;15150:71;15218:1;15207:9;15203:17;15194:6;15150:71;:::i;:::-;15006:222;;;;:::o;15234:640::-;15429:4;15467:3;15456:9;15452:19;15444:27;;15481:71;15549:1;15538:9;15534:17;15525:6;15481:71;:::i;:::-;15562:72;15630:2;15619:9;15615:18;15606:6;15562:72;:::i;:::-;15644;15712:2;15701:9;15697:18;15688:6;15644:72;:::i;:::-;15763:9;15757:4;15753:20;15748:2;15737:9;15733:18;15726:48;15791:76;15862:4;15853:6;15791:76;:::i;:::-;15783:84;;15234:640;;;;;;;:::o;15880:210::-;15967:4;16005:2;15994:9;15990:18;15982:26;;16018:65;16080:1;16069:9;16065:17;16056:6;16018:65;:::i;:::-;15880:210;;;;:::o;16096:313::-;16209:4;16247:2;16236:9;16232:18;16224:26;;16296:9;16290:4;16286:20;16282:1;16271:9;16267:17;16260:47;16324:78;16397:4;16388:6;16324:78;:::i;:::-;16316:86;;16096:313;;;;:::o;16415:419::-;16581:4;16619:2;16608:9;16604:18;16596:26;;16668:9;16662:4;16658:20;16654:1;16643:9;16639:17;16632:47;16696:131;16822:4;16696:131;:::i;:::-;16688:139;;16415:419;;;:::o;16840:::-;17006:4;17044:2;17033:9;17029:18;17021:26;;17093:9;17087:4;17083:20;17079:1;17068:9;17064:17;17057:47;17121:131;17247:4;17121:131;:::i;:::-;17113:139;;16840:419;;;:::o;17265:::-;17431:4;17469:2;17458:9;17454:18;17446:26;;17518:9;17512:4;17508:20;17504:1;17493:9;17489:17;17482:47;17546:131;17672:4;17546:131;:::i;:::-;17538:139;;17265:419;;;:::o;17690:::-;17856:4;17894:2;17883:9;17879:18;17871:26;;17943:9;17937:4;17933:20;17929:1;17918:9;17914:17;17907:47;17971:131;18097:4;17971:131;:::i;:::-;17963:139;;17690:419;;;:::o;18115:::-;18281:4;18319:2;18308:9;18304:18;18296:26;;18368:9;18362:4;18358:20;18354:1;18343:9;18339:17;18332:47;18396:131;18522:4;18396:131;:::i;:::-;18388:139;;18115:419;;;:::o;18540:::-;18706:4;18744:2;18733:9;18729:18;18721:26;;18793:9;18787:4;18783:20;18779:1;18768:9;18764:17;18757:47;18821:131;18947:4;18821:131;:::i;:::-;18813:139;;18540:419;;;:::o;18965:::-;19131:4;19169:2;19158:9;19154:18;19146:26;;19218:9;19212:4;19208:20;19204:1;19193:9;19189:17;19182:47;19246:131;19372:4;19246:131;:::i;:::-;19238:139;;18965:419;;;:::o;19390:::-;19556:4;19594:2;19583:9;19579:18;19571:26;;19643:9;19637:4;19633:20;19629:1;19618:9;19614:17;19607:47;19671:131;19797:4;19671:131;:::i;:::-;19663:139;;19390:419;;;:::o;19815:::-;19981:4;20019:2;20008:9;20004:18;19996:26;;20068:9;20062:4;20058:20;20054:1;20043:9;20039:17;20032:47;20096:131;20222:4;20096:131;:::i;:::-;20088:139;;19815:419;;;:::o;20240:::-;20406:4;20444:2;20433:9;20429:18;20421:26;;20493:9;20487:4;20483:20;20479:1;20468:9;20464:17;20457:47;20521:131;20647:4;20521:131;:::i;:::-;20513:139;;20240:419;;;:::o;20665:::-;20831:4;20869:2;20858:9;20854:18;20846:26;;20918:9;20912:4;20908:20;20904:1;20893:9;20889:17;20882:47;20946:131;21072:4;20946:131;:::i;:::-;20938:139;;20665:419;;;:::o;21090:::-;21256:4;21294:2;21283:9;21279:18;21271:26;;21343:9;21337:4;21333:20;21329:1;21318:9;21314:17;21307:47;21371:131;21497:4;21371:131;:::i;:::-;21363:139;;21090:419;;;:::o;21515:222::-;21608:4;21646:2;21635:9;21631:18;21623:26;;21659:71;21727:1;21716:9;21712:17;21703:6;21659:71;:::i;:::-;21515:222;;;;:::o;21743:129::-;21777:6;21804:20;;:::i;:::-;21794:30;;21833:33;21861:4;21853:6;21833:33;:::i;:::-;21743:129;;;:::o;21878:75::-;21911:6;21944:2;21938:9;21928:19;;21878:75;:::o;21959:307::-;22020:4;22110:18;22102:6;22099:30;22096:56;;;22132:18;;:::i;:::-;22096:56;22170:29;22192:6;22170:29;:::i;:::-;22162:37;;22254:4;22248;22244:15;22236:23;;21959:307;;;:::o;22272:308::-;22334:4;22424:18;22416:6;22413:30;22410:56;;;22446:18;;:::i;:::-;22410:56;22484:29;22506:6;22484:29;:::i;:::-;22476:37;;22568:4;22562;22558:15;22550:23;;22272:308;;;:::o;22586:98::-;22637:6;22671:5;22665:12;22655:22;;22586:98;;;:::o;22690:99::-;22742:6;22776:5;22770:12;22760:22;;22690:99;;;:::o;22795:168::-;22878:11;22912:6;22907:3;22900:19;22952:4;22947:3;22943:14;22928:29;;22795:168;;;;:::o;22969:147::-;23070:11;23107:3;23092:18;;22969:147;;;;:::o;23122:169::-;23206:11;23240:6;23235:3;23228:19;23280:4;23275:3;23271:14;23256:29;;23122:169;;;;:::o;23297:148::-;23399:11;23436:3;23421:18;;23297:148;;;;:::o;23451:305::-;23491:3;23510:20;23528:1;23510:20;:::i;:::-;23505:25;;23544:20;23562:1;23544:20;:::i;:::-;23539:25;;23698:1;23630:66;23626:74;23623:1;23620:81;23617:107;;;23704:18;;:::i;:::-;23617:107;23748:1;23745;23741:9;23734:16;;23451:305;;;;:::o;23762:185::-;23802:1;23819:20;23837:1;23819:20;:::i;:::-;23814:25;;23853:20;23871:1;23853:20;:::i;:::-;23848:25;;23892:1;23882:35;;23897:18;;:::i;:::-;23882:35;23939:1;23936;23932:9;23927:14;;23762:185;;;;:::o;23953:348::-;23993:7;24016:20;24034:1;24016:20;:::i;:::-;24011:25;;24050:20;24068:1;24050:20;:::i;:::-;24045:25;;24238:1;24170:66;24166:74;24163:1;24160:81;24155:1;24148:9;24141:17;24137:105;24134:131;;;24245:18;;:::i;:::-;24134:131;24293:1;24290;24286:9;24275:20;;23953:348;;;;:::o;24307:191::-;24347:4;24367:20;24385:1;24367:20;:::i;:::-;24362:25;;24401:20;24419:1;24401:20;:::i;:::-;24396:25;;24440:1;24437;24434:8;24431:34;;;24445:18;;:::i;:::-;24431:34;24490:1;24487;24483:9;24475:17;;24307:191;;;;:::o;24504:96::-;24541:7;24570:24;24588:5;24570:24;:::i;:::-;24559:35;;24504:96;;;:::o;24606:90::-;24640:7;24683:5;24676:13;24669:21;24658:32;;24606:90;;;:::o;24702:149::-;24738:7;24778:66;24771:5;24767:78;24756:89;;24702:149;;;:::o;24857:126::-;24894:7;24934:42;24927:5;24923:54;24912:65;;24857:126;;;:::o;24989:77::-;25026:7;25055:5;25044:16;;24989:77;;;:::o;25072:154::-;25156:6;25151:3;25146;25133:30;25218:1;25209:6;25204:3;25200:16;25193:27;25072:154;;;:::o;25232:307::-;25300:1;25310:113;25324:6;25321:1;25318:13;25310:113;;;25409:1;25404:3;25400:11;25394:18;25390:1;25385:3;25381:11;25374:39;25346:2;25343:1;25339:10;25334:15;;25310:113;;;25441:6;25438:1;25435:13;25432:101;;;25521:1;25512:6;25507:3;25503:16;25496:27;25432:101;25281:258;25232:307;;;:::o;25545:320::-;25589:6;25626:1;25620:4;25616:12;25606:22;;25673:1;25667:4;25663:12;25694:18;25684:81;;25750:4;25742:6;25738:17;25728:27;;25684:81;25812:2;25804:6;25801:14;25781:18;25778:38;25775:84;;;25831:18;;:::i;:::-;25775:84;25596:269;25545:320;;;:::o;25871:281::-;25954:27;25976:4;25954:27;:::i;:::-;25946:6;25942:40;26084:6;26072:10;26069:22;26048:18;26036:10;26033:34;26030:62;26027:88;;;26095:18;;:::i;:::-;26027:88;26135:10;26131:2;26124:22;25914:238;25871:281;;:::o;26158:233::-;26197:3;26220:24;26238:5;26220:24;:::i;:::-;26211:33;;26266:66;26259:5;26256:77;26253:103;;;26336:18;;:::i;:::-;26253:103;26383:1;26376:5;26372:13;26365:20;;26158:233;;;:::o;26397:176::-;26429:1;26446:20;26464:1;26446:20;:::i;:::-;26441:25;;26480:20;26498:1;26480:20;:::i;:::-;26475:25;;26519:1;26509:35;;26524:18;;:::i;:::-;26509:35;26565:1;26562;26558:9;26553:14;;26397:176;;;;:::o;26579:180::-;26627:77;26624:1;26617:88;26724:4;26721:1;26714:15;26748:4;26745:1;26738:15;26765:180;26813:77;26810:1;26803:88;26910:4;26907:1;26900:15;26934:4;26931:1;26924:15;26951:180;26999:77;26996:1;26989:88;27096:4;27093:1;27086:15;27120:4;27117:1;27110:15;27137:180;27185:77;27182:1;27175:88;27282:4;27279:1;27272:15;27306:4;27303:1;27296:15;27323:180;27371:77;27368:1;27361:88;27468:4;27465:1;27458:15;27492:4;27489:1;27482:15;27509:117;27618:1;27615;27608:12;27632:117;27741:1;27738;27731:12;27755:117;27864:1;27861;27854:12;27878:117;27987:1;27984;27977:12;28001:102;28042:6;28093:2;28089:7;28084:2;28077:5;28073:14;28069:28;28059:38;;28001:102;;;:::o;28109:225::-;28249:34;28245:1;28237:6;28233:14;28226:58;28318:8;28313:2;28305:6;28301:15;28294:33;28109:225;:::o;28340:167::-;28480:19;28476:1;28468:6;28464:14;28457:43;28340:167;:::o;28513:177::-;28653:29;28649:1;28641:6;28637:14;28630:53;28513:177;:::o;28696:182::-;28836:34;28832:1;28824:6;28820:14;28813:58;28696:182;:::o;28884:181::-;29024:33;29020:1;29012:6;29008:14;29001:57;28884:181;:::o;29071:236::-;29211:34;29207:1;29199:6;29195:14;29188:58;29280:19;29275:2;29267:6;29263:15;29256:44;29071:236;:::o;29313:173::-;29453:25;29449:1;29441:6;29437:14;29430:49;29313:173;:::o;29492:155::-;29632:7;29628:1;29620:6;29616:14;29609:31;29492:155;:::o;29653:169::-;29793:21;29789:1;29781:6;29777:14;29770:45;29653:169;:::o;29828:182::-;29968:34;29964:1;29956:6;29952:14;29945:58;29828:182;:::o;30016:234::-;30156:34;30152:1;30144:6;30140:14;30133:58;30225:17;30220:2;30212:6;30208:15;30201:42;30016:234;:::o;30256:178::-;30396:30;30392:1;30384:6;30380:14;30373:54;30256:178;:::o;30440:174::-;30580:26;30576:1;30568:6;30564:14;30557:50;30440:174;:::o;30620:114::-;;:::o;30740:122::-;30813:24;30831:5;30813:24;:::i;:::-;30806:5;30803:35;30793:63;;30852:1;30849;30842:12;30793:63;30740:122;:::o;30868:116::-;30938:21;30953:5;30938:21;:::i;:::-;30931:5;30928:32;30918:60;;30974:1;30971;30964:12;30918:60;30868:116;:::o;30990:120::-;31062:23;31079:5;31062:23;:::i;:::-;31055:5;31052:34;31042:62;;31100:1;31097;31090:12;31042:62;30990:120;:::o;31116:122::-;31189:24;31207:5;31189:24;:::i;:::-;31182:5;31179:35;31169:63;;31228:1;31225;31218:12;31169:63;31116:122;:::o

Swarm Source

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