ETH Price: $2,644.33 (+0.68%)

Token

Obscure Octopus Club (OOC)
 

Overview

Max Total Supply

430 OOC

Holders

269

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 OOC
0x7b2d448585765d9b8595ff144e8a754c8228fda6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Obscure Octopus Club is a collection of 515 Octos who are on a quest to find hidden treasure in the depths of the ocean. Through their quest, they will discover a new underwater world and find mysterious prizes.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ObscureOctopusClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 17 of 21: ObscureOctopusClub.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./ERC721Pausable.sol";
import "./ERC2981Royalties.sol";

contract ObscureOctopusClub is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable, ERC2981Royalties {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;
	
	uint256 public GIVEAWAY_NFT = 50;
	uint256 public GIVEAWAY_NFT_MINTED;
	
	uint256 public SALE_NFT = 8950;
	uint256 public SALE_PRICE = 8 * 10**16;
	uint256 public MAX_MINT_IN_SALE = 5;
	uint256 public MAX_HOLDING_NFT_SALE = 20;
	uint256 public SALE_NFT_MINTED;
	
    uint256 public PRESALE_NFT = 1000;
	uint256 public PRESALE_PRICE = 7 * 10**16;
	uint256 public MAX_MINT_IN_PRESALE = 2;
	uint256 public MAX_HOLDING_NFT_PRESALE = 4;
	uint256 public PRESALE_NFT_MINTED;
	
	uint256 public MAX_NFT = GIVEAWAY_NFT.add(PRESALE_NFT).add(SALE_NFT);
	
	bool public presaleEnable = false;
	bool public saleEnable = false;
    string public baseTokenURI;
	
    event CreateObscureOctopusClub(uint256 indexed id);
	
    constructor(string memory baseURI) ERC721("Obscure Octopus Club", "OOC") {
		setBaseURI(baseURI);
		_setRoyalties(owner(), 800);
        pause(true);
    }
	
    function _totalSupply() public view returns (uint) {
        return _tokenIdTracker.current();
    }
	
	function mintGiveawayNFT(address _to, uint256 _count) public onlyOwner{
        require(
            GIVEAWAY_NFT_MINTED + _count <= GIVEAWAY_NFT, 
            "Max limit"
        );
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
			GIVEAWAY_NFT_MINTED++;
        }
    }
	
	function mintPreSaleNFT(uint256 _count) public payable{
	    uint256 tokenCount = balanceOf(msg.sender);
		require(
			!paused(), 
			"Contract is paused"
		);
		require(
			presaleEnable, 
			"Presale is not enable"
		);
		require(
			isWhiteListed[msg.sender], 
			"Sender is not whitelist to mint"
		);
		require(
			_count <= MAX_MINT_IN_PRESALE, 
			"Exceeds mint limit"
		);
		require(
			tokenCount + _count <= MAX_HOLDING_NFT_PRESALE, 
			"Max limit per address"
		);
        require(
			PRESALE_NFT_MINTED.add(_count) <= PRESALE_NFT, 
			"Exceeds max limit"
		);
		require(
			msg.value >= PRESALE_PRICE.mul(_count), 
			"Value below price"
		);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
			PRESALE_NFT_MINTED++;
        }
    }
	
    function mintSaleNFT(uint256 _count) public payable{
	    uint256 tokenCount = balanceOf(msg.sender);
		require(
			!paused(), 
			"Contract is paused"
		);
		require(
			saleEnable, 
			"Sale is not enable"
		);
		require(
			_count <= MAX_MINT_IN_SALE, 
			"Exceeds mint limit"
		);
		require(
			tokenCount + _count <= MAX_HOLDING_NFT_SALE, 
			"Max limit per address"
		);
        require(
			SALE_NFT_MINTED.add(_count) <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			msg.value >= SALE_PRICE.mul(_count), 
			"Value below price"
		);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
			SALE_NFT_MINTED++;
        }
    }
	
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateObscureOctopusClub(id);
    }
	
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
	
	function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
	
    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
	
    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
	
	function setPreSaleStatus(bool _status) public onlyOwner {
	   require(presaleEnable != _status);
       presaleEnable = _status;
    }
	
	function setSaleStatus(bool _status) public onlyOwner {
        require(saleEnable != _status);
		saleEnable = _status;
    }
	
	function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }
	
	function updateGiveawayLimit(uint256 newLimit) external onlyOwner {
	   require(
		   GIVEAWAY_NFT_MINTED <= newLimit, 
		   "Incorrect value"
	   );
       GIVEAWAY_NFT = newLimit;
    }
	
	function updatePreSaleLimit(uint256 newLimit) external onlyOwner {
	   require(
			PRESALE_NFT_MINTED <= newLimit, 
			"Incorrect value"
	   );
       PRESALE_NFT = newLimit;
    }
	
	function updateSaleLimit(uint256 newLimit) external onlyOwner {
	   require(
		    SALE_NFT_MINTED <= newLimit, 
		   "Incorrect value"
	   );
       SALE_NFT = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
         MAX_MINT_IN_PRESALE = newLimit;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
        MAX_MINT_IN_SALE = newLimit;
    }
	
	function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, ERC2981Base) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function updateSaleHoldingLimit(uint256 newLimit) external onlyOwner {
        MAX_HOLDING_NFT_SALE = newLimit;
    }
	
	function updatePreSaleHoldingLimit(uint256 newLimit) external onlyOwner {
        MAX_HOLDING_NFT_PRESALE = newLimit;
    }
	
	function setRoyalties(address recipient, uint256 value) public onlyOwner{
        _setRoyalties(recipient, value);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 21: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 21: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 21: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 21: ERC2981Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import './ERC165.sol';
import './IERC2981Royalties.sol';

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 6 of 21: ERC2981Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import './ERC165.sol';
import './ERC2981Base.sol';

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
/// @dev This implementation has the same royalties for each and every tokens
abstract contract ERC2981Royalties is ERC2981Base {
    RoyaltyInfo private _royalties;

    /// @dev Sets token royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, 'ERC2981Royalties: Too high');
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }
}

File 7 of 21: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
	
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

}

File 8 of 21: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

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

File 9 of 21: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 21: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
	 
	event AddToWhiteList(address _address);
    event RemovedFromWhiteList(address _address);
	event WhiteListMultipleAddress(address[] accounts);
    event RemoveWhiteListedMultipleAddress(address[] accounts);
	mapping (address => bool) public isWhiteListed;
	
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
	
	function whiteListAddress(address _address) public onlyOwner{
	   isWhiteListed[_address] = true;
	   emit AddToWhiteList(_address);
    }
	
	function removeWhiteListedAddress (address _address) public onlyOwner{
	   isWhiteListed[_address] = false;
	   emit RemovedFromWhiteList(_address);
	}
	
	function whiteListMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
			isWhiteListed[accounts[i]] = true;
        }
        emit WhiteListMultipleAddress(accounts);
    }
	
	function removeWhiteListedMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
			isWhiteListed[accounts[i]] = false;
        }
		emit RemoveWhiteListedMultipleAddress(accounts);
    }
}

File 11 of 21: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 21: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 15 of 21: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 16 of 21: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 18 of 21: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 19 of 21: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 20 of 21: 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 21 of 21: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"AddToWhiteList","type":"event"},{"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":"uint256","name":"id","type":"uint256"}],"name":"CreateObscureOctopusClub","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"RemoveWhiteListedMultipleAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"RemovedFromWhiteList","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"WhiteListMultipleAddress","type":"event"},{"inputs":[],"name":"GIVEAWAY_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_NFT_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HOLDING_NFT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HOLDING_NFT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_IN_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_IN_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_NFT_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhiteListedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeWhiteListedMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateGiveawayLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleHoldingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleHoldingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526032600e556122f660105567011c37937e080000601155600560125560146013556103e860155566f8b0a10e470000601655600260175560046018556200007960105462000065601554600e546200018c60201b62001e5a1790919060201c565b6200018c60201b62001e5a1790919060201c565b601a55601b805461ffff191690553480156200009457600080fd5b506040516200405038038062004050833981016040819052620000b791620004ed565b604080518082018252601481527f4f627363757265204f63746f70757320436c75620000000000000000000000006020808301918252835180850190945260038452624f4f4360e81b908401528151919291620001179160009162000447565b5080516200012d90600190602084019062000447565b5050506200014a62000144620001a160201b60201c565b620001a5565b600a805460ff60a01b191690556200016281620001f7565b62000179620001706200025f565b6103206200026e565b620001856001620002e6565b5062000715565b60006200019a82846200069d565b9392505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000201620001a1565b6001600160a01b0316620002146200025f565b6001600160a01b031614620002465760405162461bcd60e51b81526004016200023d9062000668565b60405180910390fd5b80516200025b90601c90602084019062000447565b5050565b600a546001600160a01b031690565b612710811115620002935760405162461bcd60e51b81526004016200023d9062000607565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600c8054600160a01b90930262ffffff60a01b196001600160a01b031990941690921792909216179055565b620002f0620001a1565b6001600160a01b0316620003036200025f565b6001600160a01b0316146200032c5760405162461bcd60e51b81526004016200023d9062000668565b6001811515141562000348576200034262000355565b62000352565b62000352620003d6565b50565b6200035f62000437565b156200037f5760405162461bcd60e51b81526004016200023d906200063e565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003bd620001a1565b604051620003cc9190620005bc565b60405180910390a1565b620003e062000437565b620003ff5760405162461bcd60e51b81526004016200023d90620005d0565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620003bd620001a1565b600a54600160a01b900460ff1690565b8280546200045590620006c2565b90600052602060002090601f016020900481019282620004795760008555620004c4565b82601f106200049457805160ff1916838001178555620004c4565b82800160010185558215620004c4579182015b82811115620004c4578251825591602001919060010190620004a7565b50620004d2929150620004d6565b5090565b5b80821115620004d25760008155600101620004d7565b6000602080838503121562000500578182fd5b82516001600160401b038082111562000517578384fd5b818501915085601f8301126200052b578384fd5b815181811115620005405762000540620006ff565b604051601f8201601f1916810185018381118282101715620005665762000566620006ff565b60405281815283820185018810156200057d578586fd5b8592505b81831015620005a0578383018501518184018601529184019162000581565b81831115620005b157858583830101525b979650505050505050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b6020808252601a908201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115620006bd57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620006d757607f821691505b60208210811415620006f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61392b80620007256000396000f3fe6080604052600436106103b85760003560e01c806370a08231116101f2578063c39b3ead1161010d578063d897833e116100a0578063f176baaa1161006f578063f176baaa14610a6b578063f20e4bf014610a8b578063f2fde38b14610aa0578063fe4ca84714610ac0576103b8565b8063d897833e146109eb578063dce051cc14610a0b578063e29879a814610a2b578063e985e9c514610a4b576103b8565b8063cf52a7b2116100dc578063cf52a7b21461098c578063d547cfb7146109ac578063d7edbf2a146109c1578063d81a4f50146109d6576103b8565b8063c39b3ead14610917578063c433793d1461092c578063c87b56dd1461094c578063caceb61b1461096c576103b8565b8063941e79fc11610185578063a384491611610154578063a3844916146108ba578063a9526862146108cf578063b88d4fde146108e2578063be0709e014610902576103b8565b8063941e79fc1461085057806395d89b4114610870578063995b8ef614610885578063a22cb4651461089a576103b8565b80637f205a74116101c15780637f205a74146107f1578063836aea10146108065780638c7ea24b1461081b5780638da5cb5b1461083b576103b8565b806370a0823114610787578063715018a6146107a75780637ec0912e146107bc5780637ec18cf6146107dc576103b8565b80633eaaf86b116102e257806355f804b3116102755780636352211e116102445780636352211e1461071257806365fccb52146107325780636f9170f6146107525780636fdaddf114610772576103b8565b806355f804b3146106a85780635c975abb146106c85780635e326b92146106dd57806362dc6e21146106fd576103b8565b8063438b6300116102b1578063438b630014610626578063470d124c14610653578063497865b3146106735780634f6ccce714610688576103b8565b80633eaaf86b146105b1578063414c377b146105c657806342842e0e146105e657806342966c6814610606576103b8565b8063155bfecb1161035a5780632a55205a116103295780632a55205a1461052e5780632f745c591461055c578063309568cd1461057c5780633ccfd60b1461059c576103b8565b8063155bfecb146104c457806318160ddd146104d757806323b872dd146104f957806327e106f114610519576103b8565b806306fdde031161039657806306fdde0314610435578063081812fc14610457578063095ea7b31461048457806312895eda146104a4576103b8565b806301ffc9a7146103bd57806302329a29146103f3578063059de0fc14610415575b600080fd5b3480156103c957600080fd5b506103dd6103d8366004612d90565b610ad5565b6040516103ea9190612f9c565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612d76565b610ae8565b005b34801561042157600080fd5b50610413610430366004612d07565b610b53565b34801561044157600080fd5b5061044a610c50565b6040516103ea9190612fa7565b34801561046357600080fd5b50610477610472366004612e0e565b610ce2565b6040516103ea9190612ea2565b34801561049057600080fd5b5061041361049f366004612cde565b610d25565b3480156104b057600080fd5b506104136104bf366004612e0e565b610dbd565b6104136104d2366004612e0e565b610e23565b3480156104e357600080fd5b506104ec610f89565b6040516103ea919061379c565b34801561050557600080fd5b50610413610514366004612c01565b610f8f565b34801561052557600080fd5b506104ec610fc7565b34801561053a57600080fd5b5061054e610549366004612e26565b610fcd565b6040516103ea929190612ef3565b34801561056857600080fd5b506104ec610577366004612cde565b611022565b34801561058857600080fd5b50610413610597366004612e0e565b611074565b3480156105a857600080fd5b506104136110b8565b3480156105bd57600080fd5b506104ec61112a565b3480156105d257600080fd5b506104136105e1366004612e0e565b61113b565b3480156105f257600080fd5b50610413610601366004612c01565b6111a1565b34801561061257600080fd5b50610413610621366004612e0e565b6111bc565b34801561063257600080fd5b50610646610641366004612bb5565b6111ec565b6040516103ea9190612f58565b34801561065f57600080fd5b5061041361066e366004612e0e565b6112aa565b34801561067f57600080fd5b506104ec6112ee565b34801561069457600080fd5b506104ec6106a3366004612e0e565b6112f4565b3480156106b457600080fd5b506104136106c3366004612dc8565b61134f565b3480156106d457600080fd5b506103dd6113a1565b3480156106e957600080fd5b506104136106f8366004612d76565b6113b1565b34801561070957600080fd5b506104ec611419565b34801561071e57600080fd5b5061047761072d366004612e0e565b61141f565b34801561073e57600080fd5b5061041361074d366004612e0e565b611454565b34801561075e57600080fd5b506103dd61076d366004612bb5565b611498565b34801561077e57600080fd5b506104ec6114ad565b34801561079357600080fd5b506104ec6107a2366004612bb5565b6114b3565b3480156107b357600080fd5b506104136114f7565b3480156107c857600080fd5b506104136107d7366004612e0e565b611542565b3480156107e857600080fd5b506103dd611586565b3480156107fd57600080fd5b506104ec61158f565b34801561081257600080fd5b506104ec611595565b34801561082757600080fd5b50610413610836366004612cde565b61159b565b34801561084757600080fd5b506104776115e4565b34801561085c57600080fd5b5061041361086b366004612e0e565b6115f3565b34801561087c57600080fd5b5061044a611637565b34801561089157600080fd5b506104ec611646565b3480156108a657600080fd5b506104136108b5366004612cb5565b61164c565b3480156108c657600080fd5b506104ec61171a565b6104136108dd366004612e0e565b611720565b3480156108ee57600080fd5b506104136108fd366004612c3c565b61185c565b34801561090e57600080fd5b506104ec61189b565b34801561092357600080fd5b506104ec6118a1565b34801561093857600080fd5b50610413610947366004612bb5565b6118a7565b34801561095857600080fd5b5061044a610967366004612e0e565b611941565b34801561097857600080fd5b50610413610987366004612d07565b6119c4565b34801561099857600080fd5b506104136109a7366004612bb5565b611ab5565b3480156109b857600080fd5b5061044a611b47565b3480156109cd57600080fd5b506104ec611bd5565b3480156109e257600080fd5b506104ec611bdb565b3480156109f757600080fd5b50610413610a06366004612d76565b611be1565b348015610a1757600080fd5b50610413610a26366004612cde565b611c56565b348015610a3757600080fd5b50610413610a46366004612e0e565b611d00565b348015610a5757600080fd5b506103dd610a66366004612bcf565b611d66565b348015610a7757600080fd5b50610413610a86366004612e0e565b611d94565b348015610a9757600080fd5b506104ec611dd8565b348015610aac57600080fd5b50610413610abb366004612bb5565b611dde565b348015610acc57600080fd5b506103dd611e4c565b6000610ae082611e66565b90505b919050565b610af0611e8b565b6001600160a01b0316610b016115e4565b6001600160a01b031614610b305760405162461bcd60e51b8152600401610b279061351b565b60405180910390fd5b60018115151415610b4857610b43611e8f565b610b50565b610b50611f07565b50565b610b5b611e8b565b6001600160a01b0316610b6c6115e4565b6001600160a01b031614610b925760405162461bcd60e51b8152600401610b279061351b565b60005b81811015610c12576000600b6000858585818110610bc357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610bd89190612bb5565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c0a8161386e565b915050610b95565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe328282604051610c44929190612f0c565b60405180910390a15050565b606060008054610c5f90613833565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8b90613833565b8015610cd85780601f10610cad57610100808354040283529160200191610cd8565b820191906000526020600020905b815481529060010190602001808311610cbb57829003601f168201915b5050505050905090565b6000610ced82611f61565b610d095760405162461bcd60e51b8152600401610b2790613477565b506000908152600460205260409020546001600160a01b031690565b6000610d308261141f565b9050806001600160a01b0316836001600160a01b03161415610d645760405162461bcd60e51b8152600401610b2790613642565b806001600160a01b0316610d76611e8b565b6001600160a01b03161480610d925750610d9281610a66611e8b565b610dae5760405162461bcd60e51b8152600401610b2790613327565b610db88383611f7e565b505050565b610dc5611e8b565b6001600160a01b0316610dd66115e4565b6001600160a01b031614610dfc5760405162461bcd60e51b8152600401610b279061351b565b806019541115610e1e5760405162461bcd60e51b8152600401610b27906134c3565b601555565b6000610e2e336114b3565b9050610e386113a1565b15610e555760405162461bcd60e51b8152600401610b2790613720565b601b5460ff16610e775760405162461bcd60e51b8152600401610b27906134ec565b336000908152600b602052604090205460ff16610ea65760405162461bcd60e51b8152600401610b2790613033565b601754821115610ec85760405162461bcd60e51b8152600401610b279061313e565b601854610ed583836137a5565b1115610ef35760405162461bcd60e51b8152600401610b2790613613565b601554601954610f039084611e5a565b1115610f215760405162461bcd60e51b8152600401610b2790613417565b601654610f2e9083611fec565b341015610f4d5760405162461bcd60e51b8152600401610b27906135e8565b60005b82811015610db857610f6133611ff8565b60198054906000610f718361386e565b91905055508080610f819061386e565b915050610f50565b60085490565b610fa0610f9a611e8b565b82612047565b610fbc5760405162461bcd60e51b8152600401610b2790613683565b610db88383836120cc565b60175481565b60408051808201909152600c546001600160a01b038116808352600160a01b90910462ffffff166020830181905290916000916127109061100e90866137d1565b61101891906137bd565b9150509250929050565b600061102d836114b3565b821061104b5760405162461bcd60e51b8152600401610b27906130a1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61107c611e8b565b6001600160a01b031661108d6115e4565b6001600160a01b0316146110b35760405162461bcd60e51b8152600401610b279061351b565b601355565b6110c0611e8b565b6001600160a01b03166110d16115e4565b6001600160a01b0316146110f75760405162461bcd60e51b8152600401610b279061351b565b6040514790339082156108fc029083906000818181858888f19350505050158015611126573d6000803e3d6000fd5b5050565b6000611136600d6121f9565b905090565b611143611e8b565b6001600160a01b03166111546115e4565b6001600160a01b03161461117a5760405162461bcd60e51b8152600401610b279061351b565b80601454111561119c5760405162461bcd60e51b8152600401610b27906134c3565b601055565b610db88383836040518060200160405280600081525061185c565b6111c7610f9a611e8b565b6111e35760405162461bcd60e51b8152600401610b279061374c565b610b50816121fd565b606060006111f9836114b3565b905060008167ffffffffffffffff81111561122457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561124d578160200160208202803683370190505b50905060005b828110156112a2576112658582611022565b82828151811061128557634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061129a8161386e565b915050611253565b509392505050565b6112b2611e8b565b6001600160a01b03166112c36115e4565b6001600160a01b0316146112e95760405162461bcd60e51b8152600401610b279061351b565b601855565b600e5481565b60006112fe610f89565b821061131c5760405162461bcd60e51b8152600401610b27906136d4565b6008828154811061133d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b611357611e8b565b6001600160a01b03166113686115e4565b6001600160a01b03161461138e5760405162461bcd60e51b8152600401610b279061351b565b805161112690601c906020840190612a85565b600a54600160a01b900460ff1690565b6113b9611e8b565b6001600160a01b03166113ca6115e4565b6001600160a01b0316146113f05760405162461bcd60e51b8152600401610b279061351b565b601b5460ff161515811515141561140657600080fd5b601b805460ff1916911515919091179055565b60165481565b6000818152600260205260408120546001600160a01b031680610ae05760405162461bcd60e51b8152600401610b27906133ce565b61145c611e8b565b6001600160a01b031661146d6115e4565b6001600160a01b0316146114935760405162461bcd60e51b8152600401610b279061351b565b601655565b600b6020526000908152604090205460ff1681565b601a5481565b60006001600160a01b0382166114db5760405162461bcd60e51b8152600401610b2790613384565b506001600160a01b031660009081526003602052604090205490565b6114ff611e8b565b6001600160a01b03166115106115e4565b6001600160a01b0316146115365760405162461bcd60e51b8152600401610b279061351b565b61154060006122a4565b565b61154a611e8b565b6001600160a01b031661155b6115e4565b6001600160a01b0316146115815760405162461bcd60e51b8152600401610b279061351b565b601155565b601b5460ff1681565b60115481565b60125481565b6115a3611e8b565b6001600160a01b03166115b46115e4565b6001600160a01b0316146115da5760405162461bcd60e51b8152600401610b279061351b565b61112682826122f6565b600a546001600160a01b031690565b6115fb611e8b565b6001600160a01b031661160c6115e4565b6001600160a01b0316146116325760405162461bcd60e51b8152600401610b279061351b565b601755565b606060018054610c5f90613833565b60105481565b611654611e8b565b6001600160a01b0316826001600160a01b031614156116855760405162461bcd60e51b8152600401610b279061322b565b8060056000611692611e8b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116d6611e8b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170e9190612f9c565b60405180910390a35050565b60155481565b600061172b336114b3565b90506117356113a1565b156117525760405162461bcd60e51b8152600401610b2790613720565b601b54610100900460ff166117795760405162461bcd60e51b8152600401610b2790613285565b60125482111561179b5760405162461bcd60e51b8152600401610b279061313e565b6013546117a883836137a5565b11156117c65760405162461bcd60e51b8152600401610b2790613613565b6010546014546117d69084611e5a565b11156117f45760405162461bcd60e51b8152600401610b2790613417565b6011546118019083611fec565b3410156118205760405162461bcd60e51b8152600401610b27906135e8565b60005b82811015610db85761183433611ff8565b601480549060006118448361386e565b919050555080806118549061386e565b915050611823565b61186d611867611e8b565b83612047565b6118895760405162461bcd60e51b8152600401610b2790613683565b6118958484848461236b565b50505050565b60195481565b60185481565b6118af611e8b565b6001600160a01b03166118c06115e4565b6001600160a01b0316146118e65760405162461bcd60e51b8152600401610b279061351b565b6001600160a01b0381166000908152600b602052604090819020805460ff19169055517f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc90611936908390612ea2565b60405180910390a150565b606061194c82611f61565b6119685760405162461bcd60e51b8152600401610b2790613599565b600061197261239e565b9050600081511161199257604051806020016040528060008152506119bd565b8061199c846123ad565b6040516020016119ad929190612e73565b6040516020818303038152906040525b9392505050565b6119cc611e8b565b6001600160a01b03166119dd6115e4565b6001600160a01b031614611a035760405162461bcd60e51b8152600401610b279061351b565b60005b81811015611a83576001600b6000858585818110611a3457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a499190612bb5565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611a7b8161386e565b915050611a06565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff8282604051610c44929190612f0c565b611abd611e8b565b6001600160a01b0316611ace6115e4565b6001600160a01b031614611af45760405162461bcd60e51b8152600401610b279061351b565b6001600160a01b0381166000908152600b602052604090819020805460ff19166001179055517f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c90611936908390612ea2565b601c8054611b5490613833565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8090613833565b8015611bcd5780601f10611ba257610100808354040283529160200191611bcd565b820191906000526020600020905b815481529060010190602001808311611bb057829003601f168201915b505050505081565b60145481565b600f5481565b611be9611e8b565b6001600160a01b0316611bfa6115e4565b6001600160a01b031614611c205760405162461bcd60e51b8152600401610b279061351b565b601b5460ff6101009091041615158115151415611c3c57600080fd5b601b80549115156101000261ff0019909216919091179055565b611c5e611e8b565b6001600160a01b0316611c6f6115e4565b6001600160a01b031614611c955760405162461bcd60e51b8152600401610b279061351b565b600e5481600f54611ca691906137a5565b1115611cc45760405162461bcd60e51b8152600401610b2790613262565b60005b81811015610db857611cd883611ff8565b600f8054906000611ce88361386e565b91905055508080611cf89061386e565b915050611cc7565b611d08611e8b565b6001600160a01b0316611d196115e4565b6001600160a01b031614611d3f5760405162461bcd60e51b8152600401610b279061351b565b80600f541115611d615760405162461bcd60e51b8152600401610b27906134c3565b600e55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611d9c611e8b565b6001600160a01b0316611dad6115e4565b6001600160a01b031614611dd35760405162461bcd60e51b8152600401610b279061351b565b601255565b60135481565b611de6611e8b565b6001600160a01b0316611df76115e4565b6001600160a01b031614611e1d5760405162461bcd60e51b8152600401610b279061351b565b6001600160a01b038116611e435760405162461bcd60e51b8152600401610b279061316a565b610b50816122a4565b601b54610100900460ff1681565b60006119bd82846137a5565b60006001600160e01b0319821663152a902d60e11b1480610ae05750610ae0826124c8565b3390565b611e976113a1565b15611eb45760405162461bcd60e51b8152600401610b27906132fd565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ef0611e8b565b604051611efd9190612ea2565b60405180910390a1565b611f0f6113a1565b611f2b5760405162461bcd60e51b8152600401610b2790613005565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ef0611e8b565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fb38261141f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119bd82846137d1565b600061200261112a565b905061200e600d6124ed565b61201882826124f6565b60405181907fd80b387b1df330f56d4b334f26a7cb9e401af8400bd782114deecf0b9d758c2a90600090a25050565b600061205282611f61565b61206e5760405162461bcd60e51b8152600401610b27906132b1565b60006120798361141f565b9050806001600160a01b0316846001600160a01b031614806120b45750836001600160a01b03166120a984610ce2565b6001600160a01b0316145b806120c457506120c48185611d66565b949350505050565b826001600160a01b03166120df8261141f565b6001600160a01b0316146121055760405162461bcd60e51b8152600401610b2790613550565b6001600160a01b03821661212b5760405162461bcd60e51b8152600401610b27906131e7565b612136838383612510565b612141600082611f7e565b6001600160a01b038316600090815260036020526040812080546001929061216a9084906137f0565b90915550506001600160a01b03821660009081526003602052604081208054600192906121989084906137a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b5490565b60006122088261141f565b905061221681600084612510565b612221600083611f7e565b6001600160a01b038116600090815260036020526040812080546001929061224a9084906137f0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127108111156123185760405162461bcd60e51b8152600401610b279061306a565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600c8054600160a01b90930262ffffff60a01b196001600160a01b031990941690921792909216179055565b6123768484846120cc565b6123828484848461251b565b6118955760405162461bcd60e51b8152600401610b27906130ec565b6060601c8054610c5f90613833565b6060816123d257506040805180820190915260018152600360fc1b6020820152610ae3565b8160005b81156123fc57806123e68161386e565b91506123f59050600a836137bd565b91506123d6565b60008167ffffffffffffffff81111561242557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561244f576020820181803683370190505b5090505b84156120c4576124646001836137f0565b9150612471600a86613889565b61247c9060306137a5565b60f81b81838151811061249f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506124c1600a866137bd565b9450612453565b60006001600160e01b0319821663780e9d6360e01b1480610ae05750610ae082612636565b80546001019055565b611126828260405180602001604052806000815250612676565b610db88383836126a9565b600061252f846001600160a01b0316612700565b1561262b57836001600160a01b031663150b7a0261254b611e8b565b8786866040518563ffffffff1660e01b815260040161256d9493929190612eb6565b602060405180830381600087803b15801561258757600080fd5b505af19250505080156125b7575060408051601f3d908101601f191682019092526125b491810190612dac565b60015b612611573d8080156125e5576040519150601f19603f3d011682016040523d82523d6000602084013e6125ea565b606091505b5080516126095760405162461bcd60e51b8152600401610b27906130ec565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c4565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061266757506001600160e01b03198216635b5e139f60e01b145b80610ae05750610ae082612706565b612680838361271f565b61268d600084848461251b565b610db85760405162461bcd60e51b8152600401610b27906130ec565b6126b48383836127fe565b6126bc6115e4565b6001600160a01b03166126cd611e8b565b6001600160a01b031614610db8576126e36113a1565b15610db85760405162461bcd60e51b8152600401610b2790612fba565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0382166127455760405162461bcd60e51b8152600401610b2790613442565b61274e81611f61565b1561276b5760405162461bcd60e51b8152600401610b27906131b0565b61277760008383612510565b6001600160a01b03821660009081526003602052604081208054600192906127a09084906137a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612809838383610db8565b6001600160a01b0383166128255761282081612887565b612848565b816001600160a01b0316836001600160a01b0316146128485761284883826128cb565b6001600160a01b0382166128645761285f81612968565b610db8565b826001600160a01b0316826001600160a01b031614610db857610db88282612a41565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016128d8846114b3565b6128e291906137f0565b600083815260076020526040902054909150808214612935576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061297a906001906137f0565b600083815260096020526040812054600880549394509092849081106129b057634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106129df57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a2557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a4c836114b3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612a9190613833565b90600052602060002090601f016020900481019282612ab35760008555612af9565b82601f10612acc57805160ff1916838001178555612af9565b82800160010185558215612af9579182015b82811115612af9578251825591602001919060010190612ade565b50612b05929150612b09565b5090565b5b80821115612b055760008155600101612b0a565b600067ffffffffffffffff80841115612b3957612b396138c9565b604051601f8501601f191681016020018281118282101715612b5d57612b5d6138c9565b604052848152915081838501861015612b7557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b0381168114610ae357600080fd5b80358015158114610ae357600080fd5b600060208284031215612bc6578081fd5b6119bd82612b8e565b60008060408385031215612be1578081fd5b612bea83612b8e565b9150612bf860208401612b8e565b90509250929050565b600080600060608486031215612c15578081fd5b612c1e84612b8e565b9250612c2c60208501612b8e565b9150604084013590509250925092565b60008060008060808587031215612c51578081fd5b612c5a85612b8e565b9350612c6860208601612b8e565b925060408501359150606085013567ffffffffffffffff811115612c8a578182fd5b8501601f81018713612c9a578182fd5b612ca987823560208401612b1e565b91505092959194509250565b60008060408385031215612cc7578182fd5b612cd083612b8e565b9150612bf860208401612ba5565b60008060408385031215612cf0578182fd5b612cf983612b8e565b946020939093013593505050565b60008060208385031215612d19578182fd5b823567ffffffffffffffff80821115612d30578384fd5b818501915085601f830112612d43578384fd5b813581811115612d51578485fd5b8660208083028501011115612d64578485fd5b60209290920196919550909350505050565b600060208284031215612d87578081fd5b6119bd82612ba5565b600060208284031215612da1578081fd5b81356119bd816138df565b600060208284031215612dbd578081fd5b81516119bd816138df565b600060208284031215612dd9578081fd5b813567ffffffffffffffff811115612def578182fd5b8201601f81018413612dff578182fd5b6120c484823560208401612b1e565b600060208284031215612e1f578081fd5b5035919050565b60008060408385031215612e38578182fd5b50508035926020909101359150565b60008151808452612e5f816020860160208601613807565b601f01601f19169290920160200192915050565b60008351612e85818460208801613807565b835190830190612e99818360208801613807565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ee990830184612e47565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b60208082528181018390526000908460408401835b86811015612f4d576001600160a01b03612f3a84612b8e565b1682529183019190830190600101612f21565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f9057835183529284019291840191600101612f74565b50909695505050505050565b901515815260200190565b6000602082526119bd6020830184612e47565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f53656e646572206973206e6f742077686974656c69737420746f206d696e7400604082015260600190565b6020808252601a908201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260129082015271115e18d959591cc81b5a5b9d081b1a5b5a5d60721b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b60208082526015908201527450726573616c65206973206e6f7420656e61626c6560581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b6020808252601590820152744d6178206c696d697420706572206164647265737360581b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b600082198211156137b8576137b861389d565b500190565b6000826137cc576137cc6138b3565b500490565b60008160001904831182151516156137eb576137eb61389d565b500290565b6000828210156138025761380261389d565b500390565b60005b8381101561382257818101518382015260200161380a565b838111156118955750506000910152565b60028104600182168061384757607f821691505b6020821081141561386857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156138825761388261389d565b5060010190565b600082613898576138986138b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5057600080fdfea2646970667358221220f2000d0f3e5d8d9f431d12448adbe410e65f9dd8ded38bbb31d1dfbf560190ef64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56733358446350597161464267666f7978544c6e355762325279697a6b7774564236785054455a336a78766f2f00000000000000000000

Deployed Bytecode

0x6080604052600436106103b85760003560e01c806370a08231116101f2578063c39b3ead1161010d578063d897833e116100a0578063f176baaa1161006f578063f176baaa14610a6b578063f20e4bf014610a8b578063f2fde38b14610aa0578063fe4ca84714610ac0576103b8565b8063d897833e146109eb578063dce051cc14610a0b578063e29879a814610a2b578063e985e9c514610a4b576103b8565b8063cf52a7b2116100dc578063cf52a7b21461098c578063d547cfb7146109ac578063d7edbf2a146109c1578063d81a4f50146109d6576103b8565b8063c39b3ead14610917578063c433793d1461092c578063c87b56dd1461094c578063caceb61b1461096c576103b8565b8063941e79fc11610185578063a384491611610154578063a3844916146108ba578063a9526862146108cf578063b88d4fde146108e2578063be0709e014610902576103b8565b8063941e79fc1461085057806395d89b4114610870578063995b8ef614610885578063a22cb4651461089a576103b8565b80637f205a74116101c15780637f205a74146107f1578063836aea10146108065780638c7ea24b1461081b5780638da5cb5b1461083b576103b8565b806370a0823114610787578063715018a6146107a75780637ec0912e146107bc5780637ec18cf6146107dc576103b8565b80633eaaf86b116102e257806355f804b3116102755780636352211e116102445780636352211e1461071257806365fccb52146107325780636f9170f6146107525780636fdaddf114610772576103b8565b806355f804b3146106a85780635c975abb146106c85780635e326b92146106dd57806362dc6e21146106fd576103b8565b8063438b6300116102b1578063438b630014610626578063470d124c14610653578063497865b3146106735780634f6ccce714610688576103b8565b80633eaaf86b146105b1578063414c377b146105c657806342842e0e146105e657806342966c6814610606576103b8565b8063155bfecb1161035a5780632a55205a116103295780632a55205a1461052e5780632f745c591461055c578063309568cd1461057c5780633ccfd60b1461059c576103b8565b8063155bfecb146104c457806318160ddd146104d757806323b872dd146104f957806327e106f114610519576103b8565b806306fdde031161039657806306fdde0314610435578063081812fc14610457578063095ea7b31461048457806312895eda146104a4576103b8565b806301ffc9a7146103bd57806302329a29146103f3578063059de0fc14610415575b600080fd5b3480156103c957600080fd5b506103dd6103d8366004612d90565b610ad5565b6040516103ea9190612f9c565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612d76565b610ae8565b005b34801561042157600080fd5b50610413610430366004612d07565b610b53565b34801561044157600080fd5b5061044a610c50565b6040516103ea9190612fa7565b34801561046357600080fd5b50610477610472366004612e0e565b610ce2565b6040516103ea9190612ea2565b34801561049057600080fd5b5061041361049f366004612cde565b610d25565b3480156104b057600080fd5b506104136104bf366004612e0e565b610dbd565b6104136104d2366004612e0e565b610e23565b3480156104e357600080fd5b506104ec610f89565b6040516103ea919061379c565b34801561050557600080fd5b50610413610514366004612c01565b610f8f565b34801561052557600080fd5b506104ec610fc7565b34801561053a57600080fd5b5061054e610549366004612e26565b610fcd565b6040516103ea929190612ef3565b34801561056857600080fd5b506104ec610577366004612cde565b611022565b34801561058857600080fd5b50610413610597366004612e0e565b611074565b3480156105a857600080fd5b506104136110b8565b3480156105bd57600080fd5b506104ec61112a565b3480156105d257600080fd5b506104136105e1366004612e0e565b61113b565b3480156105f257600080fd5b50610413610601366004612c01565b6111a1565b34801561061257600080fd5b50610413610621366004612e0e565b6111bc565b34801561063257600080fd5b50610646610641366004612bb5565b6111ec565b6040516103ea9190612f58565b34801561065f57600080fd5b5061041361066e366004612e0e565b6112aa565b34801561067f57600080fd5b506104ec6112ee565b34801561069457600080fd5b506104ec6106a3366004612e0e565b6112f4565b3480156106b457600080fd5b506104136106c3366004612dc8565b61134f565b3480156106d457600080fd5b506103dd6113a1565b3480156106e957600080fd5b506104136106f8366004612d76565b6113b1565b34801561070957600080fd5b506104ec611419565b34801561071e57600080fd5b5061047761072d366004612e0e565b61141f565b34801561073e57600080fd5b5061041361074d366004612e0e565b611454565b34801561075e57600080fd5b506103dd61076d366004612bb5565b611498565b34801561077e57600080fd5b506104ec6114ad565b34801561079357600080fd5b506104ec6107a2366004612bb5565b6114b3565b3480156107b357600080fd5b506104136114f7565b3480156107c857600080fd5b506104136107d7366004612e0e565b611542565b3480156107e857600080fd5b506103dd611586565b3480156107fd57600080fd5b506104ec61158f565b34801561081257600080fd5b506104ec611595565b34801561082757600080fd5b50610413610836366004612cde565b61159b565b34801561084757600080fd5b506104776115e4565b34801561085c57600080fd5b5061041361086b366004612e0e565b6115f3565b34801561087c57600080fd5b5061044a611637565b34801561089157600080fd5b506104ec611646565b3480156108a657600080fd5b506104136108b5366004612cb5565b61164c565b3480156108c657600080fd5b506104ec61171a565b6104136108dd366004612e0e565b611720565b3480156108ee57600080fd5b506104136108fd366004612c3c565b61185c565b34801561090e57600080fd5b506104ec61189b565b34801561092357600080fd5b506104ec6118a1565b34801561093857600080fd5b50610413610947366004612bb5565b6118a7565b34801561095857600080fd5b5061044a610967366004612e0e565b611941565b34801561097857600080fd5b50610413610987366004612d07565b6119c4565b34801561099857600080fd5b506104136109a7366004612bb5565b611ab5565b3480156109b857600080fd5b5061044a611b47565b3480156109cd57600080fd5b506104ec611bd5565b3480156109e257600080fd5b506104ec611bdb565b3480156109f757600080fd5b50610413610a06366004612d76565b611be1565b348015610a1757600080fd5b50610413610a26366004612cde565b611c56565b348015610a3757600080fd5b50610413610a46366004612e0e565b611d00565b348015610a5757600080fd5b506103dd610a66366004612bcf565b611d66565b348015610a7757600080fd5b50610413610a86366004612e0e565b611d94565b348015610a9757600080fd5b506104ec611dd8565b348015610aac57600080fd5b50610413610abb366004612bb5565b611dde565b348015610acc57600080fd5b506103dd611e4c565b6000610ae082611e66565b90505b919050565b610af0611e8b565b6001600160a01b0316610b016115e4565b6001600160a01b031614610b305760405162461bcd60e51b8152600401610b279061351b565b60405180910390fd5b60018115151415610b4857610b43611e8f565b610b50565b610b50611f07565b50565b610b5b611e8b565b6001600160a01b0316610b6c6115e4565b6001600160a01b031614610b925760405162461bcd60e51b8152600401610b279061351b565b60005b81811015610c12576000600b6000858585818110610bc357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610bd89190612bb5565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c0a8161386e565b915050610b95565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe328282604051610c44929190612f0c565b60405180910390a15050565b606060008054610c5f90613833565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8b90613833565b8015610cd85780601f10610cad57610100808354040283529160200191610cd8565b820191906000526020600020905b815481529060010190602001808311610cbb57829003601f168201915b5050505050905090565b6000610ced82611f61565b610d095760405162461bcd60e51b8152600401610b2790613477565b506000908152600460205260409020546001600160a01b031690565b6000610d308261141f565b9050806001600160a01b0316836001600160a01b03161415610d645760405162461bcd60e51b8152600401610b2790613642565b806001600160a01b0316610d76611e8b565b6001600160a01b03161480610d925750610d9281610a66611e8b565b610dae5760405162461bcd60e51b8152600401610b2790613327565b610db88383611f7e565b505050565b610dc5611e8b565b6001600160a01b0316610dd66115e4565b6001600160a01b031614610dfc5760405162461bcd60e51b8152600401610b279061351b565b806019541115610e1e5760405162461bcd60e51b8152600401610b27906134c3565b601555565b6000610e2e336114b3565b9050610e386113a1565b15610e555760405162461bcd60e51b8152600401610b2790613720565b601b5460ff16610e775760405162461bcd60e51b8152600401610b27906134ec565b336000908152600b602052604090205460ff16610ea65760405162461bcd60e51b8152600401610b2790613033565b601754821115610ec85760405162461bcd60e51b8152600401610b279061313e565b601854610ed583836137a5565b1115610ef35760405162461bcd60e51b8152600401610b2790613613565b601554601954610f039084611e5a565b1115610f215760405162461bcd60e51b8152600401610b2790613417565b601654610f2e9083611fec565b341015610f4d5760405162461bcd60e51b8152600401610b27906135e8565b60005b82811015610db857610f6133611ff8565b60198054906000610f718361386e565b91905055508080610f819061386e565b915050610f50565b60085490565b610fa0610f9a611e8b565b82612047565b610fbc5760405162461bcd60e51b8152600401610b2790613683565b610db88383836120cc565b60175481565b60408051808201909152600c546001600160a01b038116808352600160a01b90910462ffffff166020830181905290916000916127109061100e90866137d1565b61101891906137bd565b9150509250929050565b600061102d836114b3565b821061104b5760405162461bcd60e51b8152600401610b27906130a1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61107c611e8b565b6001600160a01b031661108d6115e4565b6001600160a01b0316146110b35760405162461bcd60e51b8152600401610b279061351b565b601355565b6110c0611e8b565b6001600160a01b03166110d16115e4565b6001600160a01b0316146110f75760405162461bcd60e51b8152600401610b279061351b565b6040514790339082156108fc029083906000818181858888f19350505050158015611126573d6000803e3d6000fd5b5050565b6000611136600d6121f9565b905090565b611143611e8b565b6001600160a01b03166111546115e4565b6001600160a01b03161461117a5760405162461bcd60e51b8152600401610b279061351b565b80601454111561119c5760405162461bcd60e51b8152600401610b27906134c3565b601055565b610db88383836040518060200160405280600081525061185c565b6111c7610f9a611e8b565b6111e35760405162461bcd60e51b8152600401610b279061374c565b610b50816121fd565b606060006111f9836114b3565b905060008167ffffffffffffffff81111561122457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561124d578160200160208202803683370190505b50905060005b828110156112a2576112658582611022565b82828151811061128557634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061129a8161386e565b915050611253565b509392505050565b6112b2611e8b565b6001600160a01b03166112c36115e4565b6001600160a01b0316146112e95760405162461bcd60e51b8152600401610b279061351b565b601855565b600e5481565b60006112fe610f89565b821061131c5760405162461bcd60e51b8152600401610b27906136d4565b6008828154811061133d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b611357611e8b565b6001600160a01b03166113686115e4565b6001600160a01b03161461138e5760405162461bcd60e51b8152600401610b279061351b565b805161112690601c906020840190612a85565b600a54600160a01b900460ff1690565b6113b9611e8b565b6001600160a01b03166113ca6115e4565b6001600160a01b0316146113f05760405162461bcd60e51b8152600401610b279061351b565b601b5460ff161515811515141561140657600080fd5b601b805460ff1916911515919091179055565b60165481565b6000818152600260205260408120546001600160a01b031680610ae05760405162461bcd60e51b8152600401610b27906133ce565b61145c611e8b565b6001600160a01b031661146d6115e4565b6001600160a01b0316146114935760405162461bcd60e51b8152600401610b279061351b565b601655565b600b6020526000908152604090205460ff1681565b601a5481565b60006001600160a01b0382166114db5760405162461bcd60e51b8152600401610b2790613384565b506001600160a01b031660009081526003602052604090205490565b6114ff611e8b565b6001600160a01b03166115106115e4565b6001600160a01b0316146115365760405162461bcd60e51b8152600401610b279061351b565b61154060006122a4565b565b61154a611e8b565b6001600160a01b031661155b6115e4565b6001600160a01b0316146115815760405162461bcd60e51b8152600401610b279061351b565b601155565b601b5460ff1681565b60115481565b60125481565b6115a3611e8b565b6001600160a01b03166115b46115e4565b6001600160a01b0316146115da5760405162461bcd60e51b8152600401610b279061351b565b61112682826122f6565b600a546001600160a01b031690565b6115fb611e8b565b6001600160a01b031661160c6115e4565b6001600160a01b0316146116325760405162461bcd60e51b8152600401610b279061351b565b601755565b606060018054610c5f90613833565b60105481565b611654611e8b565b6001600160a01b0316826001600160a01b031614156116855760405162461bcd60e51b8152600401610b279061322b565b8060056000611692611e8b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116d6611e8b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170e9190612f9c565b60405180910390a35050565b60155481565b600061172b336114b3565b90506117356113a1565b156117525760405162461bcd60e51b8152600401610b2790613720565b601b54610100900460ff166117795760405162461bcd60e51b8152600401610b2790613285565b60125482111561179b5760405162461bcd60e51b8152600401610b279061313e565b6013546117a883836137a5565b11156117c65760405162461bcd60e51b8152600401610b2790613613565b6010546014546117d69084611e5a565b11156117f45760405162461bcd60e51b8152600401610b2790613417565b6011546118019083611fec565b3410156118205760405162461bcd60e51b8152600401610b27906135e8565b60005b82811015610db85761183433611ff8565b601480549060006118448361386e565b919050555080806118549061386e565b915050611823565b61186d611867611e8b565b83612047565b6118895760405162461bcd60e51b8152600401610b2790613683565b6118958484848461236b565b50505050565b60195481565b60185481565b6118af611e8b565b6001600160a01b03166118c06115e4565b6001600160a01b0316146118e65760405162461bcd60e51b8152600401610b279061351b565b6001600160a01b0381166000908152600b602052604090819020805460ff19169055517f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc90611936908390612ea2565b60405180910390a150565b606061194c82611f61565b6119685760405162461bcd60e51b8152600401610b2790613599565b600061197261239e565b9050600081511161199257604051806020016040528060008152506119bd565b8061199c846123ad565b6040516020016119ad929190612e73565b6040516020818303038152906040525b9392505050565b6119cc611e8b565b6001600160a01b03166119dd6115e4565b6001600160a01b031614611a035760405162461bcd60e51b8152600401610b279061351b565b60005b81811015611a83576001600b6000858585818110611a3457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a499190612bb5565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611a7b8161386e565b915050611a06565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff8282604051610c44929190612f0c565b611abd611e8b565b6001600160a01b0316611ace6115e4565b6001600160a01b031614611af45760405162461bcd60e51b8152600401610b279061351b565b6001600160a01b0381166000908152600b602052604090819020805460ff19166001179055517f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c90611936908390612ea2565b601c8054611b5490613833565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8090613833565b8015611bcd5780601f10611ba257610100808354040283529160200191611bcd565b820191906000526020600020905b815481529060010190602001808311611bb057829003601f168201915b505050505081565b60145481565b600f5481565b611be9611e8b565b6001600160a01b0316611bfa6115e4565b6001600160a01b031614611c205760405162461bcd60e51b8152600401610b279061351b565b601b5460ff6101009091041615158115151415611c3c57600080fd5b601b80549115156101000261ff0019909216919091179055565b611c5e611e8b565b6001600160a01b0316611c6f6115e4565b6001600160a01b031614611c955760405162461bcd60e51b8152600401610b279061351b565b600e5481600f54611ca691906137a5565b1115611cc45760405162461bcd60e51b8152600401610b2790613262565b60005b81811015610db857611cd883611ff8565b600f8054906000611ce88361386e565b91905055508080611cf89061386e565b915050611cc7565b611d08611e8b565b6001600160a01b0316611d196115e4565b6001600160a01b031614611d3f5760405162461bcd60e51b8152600401610b279061351b565b80600f541115611d615760405162461bcd60e51b8152600401610b27906134c3565b600e55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611d9c611e8b565b6001600160a01b0316611dad6115e4565b6001600160a01b031614611dd35760405162461bcd60e51b8152600401610b279061351b565b601255565b60135481565b611de6611e8b565b6001600160a01b0316611df76115e4565b6001600160a01b031614611e1d5760405162461bcd60e51b8152600401610b279061351b565b6001600160a01b038116611e435760405162461bcd60e51b8152600401610b279061316a565b610b50816122a4565b601b54610100900460ff1681565b60006119bd82846137a5565b60006001600160e01b0319821663152a902d60e11b1480610ae05750610ae0826124c8565b3390565b611e976113a1565b15611eb45760405162461bcd60e51b8152600401610b27906132fd565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ef0611e8b565b604051611efd9190612ea2565b60405180910390a1565b611f0f6113a1565b611f2b5760405162461bcd60e51b8152600401610b2790613005565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ef0611e8b565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fb38261141f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119bd82846137d1565b600061200261112a565b905061200e600d6124ed565b61201882826124f6565b60405181907fd80b387b1df330f56d4b334f26a7cb9e401af8400bd782114deecf0b9d758c2a90600090a25050565b600061205282611f61565b61206e5760405162461bcd60e51b8152600401610b27906132b1565b60006120798361141f565b9050806001600160a01b0316846001600160a01b031614806120b45750836001600160a01b03166120a984610ce2565b6001600160a01b0316145b806120c457506120c48185611d66565b949350505050565b826001600160a01b03166120df8261141f565b6001600160a01b0316146121055760405162461bcd60e51b8152600401610b2790613550565b6001600160a01b03821661212b5760405162461bcd60e51b8152600401610b27906131e7565b612136838383612510565b612141600082611f7e565b6001600160a01b038316600090815260036020526040812080546001929061216a9084906137f0565b90915550506001600160a01b03821660009081526003602052604081208054600192906121989084906137a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b5490565b60006122088261141f565b905061221681600084612510565b612221600083611f7e565b6001600160a01b038116600090815260036020526040812080546001929061224a9084906137f0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127108111156123185760405162461bcd60e51b8152600401610b279061306a565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600c8054600160a01b90930262ffffff60a01b196001600160a01b031990941690921792909216179055565b6123768484846120cc565b6123828484848461251b565b6118955760405162461bcd60e51b8152600401610b27906130ec565b6060601c8054610c5f90613833565b6060816123d257506040805180820190915260018152600360fc1b6020820152610ae3565b8160005b81156123fc57806123e68161386e565b91506123f59050600a836137bd565b91506123d6565b60008167ffffffffffffffff81111561242557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561244f576020820181803683370190505b5090505b84156120c4576124646001836137f0565b9150612471600a86613889565b61247c9060306137a5565b60f81b81838151811061249f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506124c1600a866137bd565b9450612453565b60006001600160e01b0319821663780e9d6360e01b1480610ae05750610ae082612636565b80546001019055565b611126828260405180602001604052806000815250612676565b610db88383836126a9565b600061252f846001600160a01b0316612700565b1561262b57836001600160a01b031663150b7a0261254b611e8b565b8786866040518563ffffffff1660e01b815260040161256d9493929190612eb6565b602060405180830381600087803b15801561258757600080fd5b505af19250505080156125b7575060408051601f3d908101601f191682019092526125b491810190612dac565b60015b612611573d8080156125e5576040519150601f19603f3d011682016040523d82523d6000602084013e6125ea565b606091505b5080516126095760405162461bcd60e51b8152600401610b27906130ec565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c4565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061266757506001600160e01b03198216635b5e139f60e01b145b80610ae05750610ae082612706565b612680838361271f565b61268d600084848461251b565b610db85760405162461bcd60e51b8152600401610b27906130ec565b6126b48383836127fe565b6126bc6115e4565b6001600160a01b03166126cd611e8b565b6001600160a01b031614610db8576126e36113a1565b15610db85760405162461bcd60e51b8152600401610b2790612fba565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6001600160a01b0382166127455760405162461bcd60e51b8152600401610b2790613442565b61274e81611f61565b1561276b5760405162461bcd60e51b8152600401610b27906131b0565b61277760008383612510565b6001600160a01b03821660009081526003602052604081208054600192906127a09084906137a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612809838383610db8565b6001600160a01b0383166128255761282081612887565b612848565b816001600160a01b0316836001600160a01b0316146128485761284883826128cb565b6001600160a01b0382166128645761285f81612968565b610db8565b826001600160a01b0316826001600160a01b031614610db857610db88282612a41565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016128d8846114b3565b6128e291906137f0565b600083815260076020526040902054909150808214612935576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061297a906001906137f0565b600083815260096020526040812054600880549394509092849081106129b057634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106129df57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a2557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a4c836114b3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612a9190613833565b90600052602060002090601f016020900481019282612ab35760008555612af9565b82601f10612acc57805160ff1916838001178555612af9565b82800160010185558215612af9579182015b82811115612af9578251825591602001919060010190612ade565b50612b05929150612b09565b5090565b5b80821115612b055760008155600101612b0a565b600067ffffffffffffffff80841115612b3957612b396138c9565b604051601f8501601f191681016020018281118282101715612b5d57612b5d6138c9565b604052848152915081838501861015612b7557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b0381168114610ae357600080fd5b80358015158114610ae357600080fd5b600060208284031215612bc6578081fd5b6119bd82612b8e565b60008060408385031215612be1578081fd5b612bea83612b8e565b9150612bf860208401612b8e565b90509250929050565b600080600060608486031215612c15578081fd5b612c1e84612b8e565b9250612c2c60208501612b8e565b9150604084013590509250925092565b60008060008060808587031215612c51578081fd5b612c5a85612b8e565b9350612c6860208601612b8e565b925060408501359150606085013567ffffffffffffffff811115612c8a578182fd5b8501601f81018713612c9a578182fd5b612ca987823560208401612b1e565b91505092959194509250565b60008060408385031215612cc7578182fd5b612cd083612b8e565b9150612bf860208401612ba5565b60008060408385031215612cf0578182fd5b612cf983612b8e565b946020939093013593505050565b60008060208385031215612d19578182fd5b823567ffffffffffffffff80821115612d30578384fd5b818501915085601f830112612d43578384fd5b813581811115612d51578485fd5b8660208083028501011115612d64578485fd5b60209290920196919550909350505050565b600060208284031215612d87578081fd5b6119bd82612ba5565b600060208284031215612da1578081fd5b81356119bd816138df565b600060208284031215612dbd578081fd5b81516119bd816138df565b600060208284031215612dd9578081fd5b813567ffffffffffffffff811115612def578182fd5b8201601f81018413612dff578182fd5b6120c484823560208401612b1e565b600060208284031215612e1f578081fd5b5035919050565b60008060408385031215612e38578182fd5b50508035926020909101359150565b60008151808452612e5f816020860160208601613807565b601f01601f19169290920160200192915050565b60008351612e85818460208801613807565b835190830190612e99818360208801613807565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ee990830184612e47565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b60208082528181018390526000908460408401835b86811015612f4d576001600160a01b03612f3a84612b8e565b1682529183019190830190600101612f21565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f9057835183529284019291840191600101612f74565b50909695505050505050565b901515815260200190565b6000602082526119bd6020830184612e47565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601f908201527f53656e646572206973206e6f742077686974656c69737420746f206d696e7400604082015260600190565b6020808252601a908201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260129082015271115e18d959591cc81b5a5b9d081b1a5b5a5d60721b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b60208082526015908201527450726573616c65206973206e6f7420656e61626c6560581b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b6020808252601590820152744d6178206c696d697420706572206164647265737360581b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b600082198211156137b8576137b861389d565b500190565b6000826137cc576137cc6138b3565b500490565b60008160001904831182151516156137eb576137eb61389d565b500290565b6000828210156138025761380261389d565b500390565b60005b8381101561382257818101518382015260200161380a565b838111156118955750506000910152565b60028104600182168061384757607f821691505b6020821081141561386857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156138825761388261389d565b5060010190565b600082613898576138986138b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5057600080fdfea2646970667358221220f2000d0f3e5d8d9f431d12448adbe410e65f9dd8ded38bbb31d1dfbf560190ef64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56733358446350597161464267666f7978544c6e355762325279697a6b7774564236785054455a336a78766f2f00000000000000000000

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

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d56733358446350597161464267666f7978544c6e355762
Arg [3] : 325279697a6b7774564236785054455a336a78766f2f00000000000000000000


Deployed Bytecode Sourcemap

295:6352:16:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6068:192;;;;;;;;;;-1:-1:-1;6068:192:16;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4187:154;;;;;;;;;;-1:-1:-1;4187:154:16;;;;;:::i;:::-;;:::i;:::-;;1792:254:9;;;;;;;;;;-1:-1:-1;1792:254:9;;;;;:::i;:::-;;:::i;2427:100:6:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3986:219::-;;;;;;;;;;-1:-1:-1;3986:219:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3509:411::-;;;;;;;;;;-1:-1:-1;3509:411:6;;;;;:::i;:::-;;:::i;5445:186:16:-;;;;;;;;;;-1:-1:-1;5445:186:16;;;;;:::i;:::-;;:::i;1857:816::-;;;;;;:::i;:::-;;:::i;1577:113:8:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4872:339:6:-;;;;;;;;;;-1:-1:-1;4872:339:6;;;;;:::i;:::-;;:::i;889:38:16:-;;;;;;;;;;;;;:::i;753:312:5:-;;;;;;;;;;-1:-1:-1;753:312:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;1245:256:8:-;;;;;;;;;;-1:-1:-1;1245:256:8;;;;;:::i;:::-;;:::i;6266:119:16:-;;;;;;;;;;-1:-1:-1;6266:119:16;;;;;:::i;:::-;;:::i;4349:143::-;;;;;;;;;;;;;:::i;1430:102::-;;;;;;;;;;;;;:::i;5637:182::-;;;;;;;;;;-1:-1:-1;5637:182:16;;;;;:::i;:::-;;:::i;5282:185:6:-;;;;;;;;;;-1:-1:-1;5282:185:6;;;;;:::i;:::-;;:::i;456:245:7:-;;;;;;;;;;-1:-1:-1;456:245:7;;;;;:::i;:::-;;:::i;3829:349:16:-;;;;;;;;;;-1:-1:-1;3829:349:16;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6391:125::-;;;;;;;;;;-1:-1:-1;6391:125:16;;;;;:::i;:::-;;:::i;531:32::-;;;;;;;;;;;;;:::i;1767:233:8:-;;;;;;;;;;-1:-1:-1;1767:233:8;;;;;:::i;:::-;;:::i;3719:101:16:-;;;;;;;;;;-1:-1:-1;3719:101:16;;;;;:::i;:::-;;:::i;1072:86:18:-;;;;;;;;;;;;;:::i;4746:138:16:-;;;;;;;;;;-1:-1:-1;4746:138:16;;;;;:::i;:::-;;:::i;844:41::-;;;;;;;;;;;;;:::i;2121:239:6:-;;;;;;;;;;-1:-1:-1;2121:239:6;;;;;:::i;:::-;;:::i;5132:108:16:-;;;;;;;;;;-1:-1:-1;5132:108:16;;;;;:::i;:::-;;:::i;846:46:9:-;;;;;;;;;;-1:-1:-1;846:46:9;;;;;:::i;:::-;;:::i;1017:68:16:-;;;;;;;;;;;;;:::i;1851:208:6:-;;;;;;;;;;-1:-1:-1;1851:208:6;;;;;:::i;:::-;;:::i;1650:94:17:-;;;;;;;;;;;;;:::i;5024:102:16:-;;;;;;;;;;-1:-1:-1;5024:102:16;;;;;:::i;:::-;;:::i;1092:33::-;;;;;;;;;;;;;:::i;642:38::-;;;;;;;;;;;;;:::i;684:35::-;;;;;;;;;;;;;:::i;6522:122::-;;;;;;;;;;-1:-1:-1;6522:122:16;;;;;:::i;:::-;;:::i;999:87:17:-;;;;;;;;;;;;;:::i;5825:119:16:-;;;;;;;;;;-1:-1:-1;5825:119:16;;;;;:::i;:::-;;:::i;2596:104:6:-;;;;;;;;;;;;;:::i;608:30:16:-;;;;;;;;;;;;;:::i;4277:293:6:-;;;;;;;;;;-1:-1:-1;4277:293:6;;;;;:::i;:::-;;:::i;807:33:16:-;;;;;;;;;;;;;:::i;2682:701::-;;;;;;:::i;:::-;;:::i;5538:328:6:-;;;;;;;;;;-1:-1:-1;5538:328:6;;;;;:::i;:::-;;:::i;977:33:16:-;;;;;;;;;;;;;:::i;931:42::-;;;;;;;;;;;;;:::i;1383:154:9:-;;;;;;;;;;-1:-1:-1;1383:154:9;;;;;:::i;:::-;;:::i;2771:334:6:-;;;;;;;;;;-1:-1:-1;2771:334:6;;;;;:::i;:::-;;:::i;1543:243:9:-;;;;;;;;;;-1:-1:-1;1543:243:9;;;;;:::i;:::-;;:::i;1236:141::-;;;;;;;;;;-1:-1:-1;1236:141:9;;;;;:::i;:::-;;:::i;1166:26:16:-;;;;;;;;;;;;;:::i;767:30::-;;;;;;;;;;;;;:::i;567:34::-;;;;;;;;;;;;;:::i;4890:128::-;;;;;;;;;;-1:-1:-1;4890:128:16;;;;;:::i;:::-;;:::i;1538:313::-;;;;;;;;;;-1:-1:-1;1538:313:16;;;;;:::i;:::-;;:::i;5246:193::-;;;;;;;;;;-1:-1:-1;5246:193:16;;;;;:::i;:::-;;:::i;4641:164:6:-;;;;;;;;;;-1:-1:-1;4641:164:6;;;;;:::i;:::-;;:::i;5950:112:16:-;;;;;;;;;;-1:-1:-1;5950:112:16;;;;;:::i;:::-;;:::i;723:40::-;;;;;;;;;;;;;:::i;1899:192:17:-;;;;;;;;;;-1:-1:-1;1899:192:17;;;;;:::i;:::-;;:::i;1129:30:16:-;;;;;;;;;;;;;:::i;6068:192::-;6192:4;6216:36;6240:11;6216:23;:36::i;:::-;6209:43;;6068:192;;;;:::o;4187:154::-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;;;;;;;;;4251:4:16::1;4244:11:::0;::::1;;;4240:73;;;4272:8;:6;:8::i;:::-;4295:7;;4240:73;4323:10;:8;:10::i;:::-;4187:154:::0;:::o;1792:254:9:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;1895:9:9::1;1891:96;1910:19:::0;;::::1;1891:96;;;1970:5;1941:13;:26;1955:8;;1964:1;1955:11;;;;;-1:-1:-1::0;;;1955:11:9::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1941:26:9::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1941:26:9;:34;;-1:-1:-1;;1941:34:9::1;::::0;::::1;;::::0;;;::::1;::::0;;1931:3;::::1;::::0;::::1;:::i;:::-;;;;1891:96;;;;1996:42;2029:8;;1996:42;;;;;;;:::i;:::-;;;;;;;;1792:254:::0;;:::o;2427:100:6:-;2481:13;2514:5;2507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2427:100;:::o;3986:219::-;4062:7;4090:16;4098:7;4090;:16::i;:::-;4082:73;;;;-1:-1:-1;;;4082:73:6;;;;;;;:::i;:::-;-1:-1:-1;4173:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;4173:24:6;;3986:219::o;3509:411::-;3590:13;3606:23;3621:7;3606:14;:23::i;:::-;3590:39;;3654:5;-1:-1:-1;;;;;3648:11:6;:2;-1:-1:-1;;;;;3648:11:6;;;3640:57;;;;-1:-1:-1;;;3640:57:6;;;;;;;:::i;:::-;3748:5;-1:-1:-1;;;;;3732:21:6;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3732:21:6;;:62;;;;3757:37;3774:5;3781:12;:10;:12::i;3757:37::-;3710:168;;;;-1:-1:-1;;;3710:168:6;;;;;;;:::i;:::-;3891:21;3900:2;3904:7;3891:8;:21::i;:::-;3509:411;;;:::o;5445:186:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;5552:8:16::1;5530:18;;:30;;5517:74;;;;-1:-1:-1::0;;;5517:74:16::1;;;;;;;:::i;:::-;5601:11;:22:::0;5445:186::o;1857:816::-;1919:18;1940:21;1950:10;1940:9;:21::i;:::-;1919:42;;1980:8;:6;:8::i;:::-;1979:9;1966:54;;;;-1:-1:-1;;;1966:54:16;;;;;;;:::i;:::-;2038:13;;;;2025:61;;;;-1:-1:-1;;;2025:61:16;;;;;;;:::i;:::-;2118:10;2104:25;;;;:13;:25;;;;;;;;2091:83;;;;-1:-1:-1;;;2091:83:16;;;;;;;:::i;:::-;2202:19;;2192:6;:29;;2179:74;;;;-1:-1:-1;;;2179:74:16;;;;;;;:::i;:::-;2294:23;;2271:19;2284:6;2271:10;:19;:::i;:::-;:46;;2258:94;;;;-1:-1:-1;;;2258:94:16;;;;;;;:::i;:::-;2410:11;;2376:18;;:30;;2399:6;2376:22;:30::i;:::-;:45;;2363:89;;;;-1:-1:-1;;;2363:89:16;;;;;;;:::i;:::-;2483:13;;:25;;2501:6;2483:17;:25::i;:::-;2470:9;:38;;2457:82;;;;-1:-1:-1;;;2457:82:16;;;;;;;:::i;:::-;2555:9;2550:116;2574:6;2570:1;:10;2550:116;;;2602:26;2617:10;2602:14;:26::i;:::-;2634:18;:20;;;:18;:20;;;:::i;:::-;;;;;;2582:3;;;;;:::i;:::-;;;;2550:116;;1577:113:8;1665:10;:17;1577:113;:::o;4872:339:6:-;5067:41;5086:12;:10;:12::i;:::-;5100:7;5067:18;:41::i;:::-;5059:103;;;;-1:-1:-1;;;5059:103:6;;;;;;;:::i;:::-;5175:28;5185:4;5191:2;5195:7;5175:9;:28::i;889:38:16:-;;;;:::o;753:312:5:-;917:41;;;;;;;;;948:10;917:41;-1:-1:-1;;;;;917:41:5;;;;;-1:-1:-1;;;917:41:5;;;;;;;;;;;;;-1:-1:-1;;1053:5:5;;1025:24;;:5;:24;:::i;:::-;1024:34;;;;:::i;:::-;1008:50;;753:312;;;;;;:::o;1245:256:8:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1467:19:8;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;6266:119:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;6346:20:16::1;:31:::0;6266:119::o;4349:143::-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;4447:37:16::1;::::0;4415:21:::1;::::0;4455:10:::1;::::0;4447:37;::::1;;;::::0;4415:21;;4397:15:::1;4447:37:::0;4397:15;4447:37;4415:21;4455:10;4447:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1290:1:17;4349:143:16:o:0;1430:102::-;1475:4;1499:25;:15;:23;:25::i;:::-;1492:32;;1430:102;:::o;5637:182::-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;5741:8:16::1;5722:15;;:27;;5706:76;;;;-1:-1:-1::0;;;5706:76:16::1;;;;;;;:::i;:::-;5792:8;:19:::0;5637:182::o;5282:185:6:-;5420:39;5437:4;5443:2;5447:7;5420:39;;;;;;;;;;;;:16;:39::i;456:245:7:-;574:41;593:12;:10;:12::i;574:41::-;566:102;;;;-1:-1:-1;;;566:102:7;;;;;;;:::i;:::-;679:14;685:7;679:5;:14::i;3829:349:16:-;3891:16;3920:18;3941:17;3951:6;3941:9;:17::i;:::-;3920:38;;3969:25;4011:10;3997:25;;;;;;-1:-1:-1;;;3997:25:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3997:25:16;;3969:53;;4038:9;4033:112;4057:10;4053:1;:14;4033:112;;;4103:30;4123:6;4131:1;4103:19;:30::i;:::-;4089:8;4098:1;4089:11;;;;;;-1:-1:-1;;;4089:11:16;;;;;;;;;;;;;;;;;;:44;4069:3;;;;:::i;:::-;;;;4033:112;;;-1:-1:-1;4162:8:16;3829:349;-1:-1:-1;;;3829:349:16:o;6391:125::-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;6474:23:16::1;:34:::0;6391:125::o;531:32::-;;;;:::o;1767:233:8:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:8;;;;;;;:::i;:::-;1975:10;1986:5;1975:17;;;;;;-1:-1:-1;;;1975:17:8;;;;;;;;;;;;;;;;;1968:24;;1767:233;;;:::o;3719:101:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;3790:22:16;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;1072:86:18:-:0;1143:7;;-1:-1:-1;;;1143:7:18;;;;;1072:86::o;4746:138:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;4818:13:16::1;::::0;::::1;;:24;;::::0;::::1;;;;4810:33;;;::::0;::::1;;4853:13;:23:::0;;-1:-1:-1;;4853:23:16::1;::::0;::::1;;::::0;;;::::1;::::0;;4746:138::o;844:41::-;;;;:::o;2121:239:6:-;2193:7;2229:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2229:16:6;2264:19;2256:73;;;;-1:-1:-1;;;2256:73:6;;;;;;;:::i;5132:108:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;5208:13:16::1;:24:::0;5132:108::o;846:46:9:-;;;;;;;;;;;;;;;:::o;1017:68:16:-;;;;:::o;1851:208:6:-;1923:7;-1:-1:-1;;;;;1951:19:6;;1943:74;;;;-1:-1:-1;;;1943:74:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2035:16:6;;;;;:9;:16;;;;;;;1851:208::o;1650:94:17:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;5024:102:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;5097:10:16::1;:21:::0;5024:102::o;1092:33::-;;;;;;:::o;642:38::-;;;;:::o;684:35::-;;;;:::o;6522:122::-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;6605:31:16::1;6619:9;6630:5;6605:13;:31::i;999:87:17:-:0;1072:6;;-1:-1:-1;;;;;1072:6:17;999:87;:::o;5825:119:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;5906:19:16::1;:30:::0;5825:119::o;2596:104:6:-;2652:13;2685:7;2678:14;;;;;:::i;608:30:16:-;;;;:::o;4277:293:6:-;4392:12;:10;:12::i;:::-;-1:-1:-1;;;;;4380:24:6;:8;-1:-1:-1;;;;;4380:24:6;;;4372:62;;;;-1:-1:-1;;;4372:62:6;;;;;;;:::i;:::-;4490:8;4445:18;:32;4464:12;:10;:12::i;:::-;-1:-1:-1;;;;;4445:32:6;;;;;;;;;;;;;;;;;-1:-1:-1;4445:32:6;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4445:53:6;;;;;;;;;;;4529:12;:10;:12::i;:::-;-1:-1:-1;;;;;4514:48:6;;4553:8;4514:48;;;;;;:::i;:::-;;;;;;;;4277:293;;:::o;807:33:16:-;;;;:::o;2682:701::-;2741:18;2762:21;2772:10;2762:9;:21::i;:::-;2741:42;;2802:8;:6;:8::i;:::-;2801:9;2788:54;;;;-1:-1:-1;;;2788:54:16;;;;;;;:::i;:::-;2860:10;;;;;;;2847:55;;;;-1:-1:-1;;;2847:55:16;;;;;;;:::i;:::-;2930:16;;2920:6;:26;;2907:71;;;;-1:-1:-1;;;2907:71:16;;;;;;;:::i;:::-;3019:20;;2996:19;3009:6;2996:10;:19;:::i;:::-;:43;;2983:91;;;;-1:-1:-1;;;2983:91:16;;;;;;;:::i;:::-;3129:8;;3098:15;;:27;;3118:6;3098:19;:27::i;:::-;:39;;3085:83;;;;-1:-1:-1;;;3085:83:16;;;;;;;:::i;:::-;3199:10;;:22;;3214:6;3199:14;:22::i;:::-;3186:9;:35;;3173:79;;;;-1:-1:-1;;;3173:79:16;;;;;;;:::i;:::-;3268:9;3263:113;3287:6;3283:1;:10;3263:113;;;3315:26;3330:10;3315:14;:26::i;:::-;3347:15;:17;;;:15;:17;;;:::i;:::-;;;;;;3295:3;;;;;:::i;:::-;;;;3263:113;;5538:328:6;5713:41;5732:12;:10;:12::i;:::-;5746:7;5713:18;:41::i;:::-;5705:103;;;;-1:-1:-1;;;5705:103:6;;;;;;;:::i;:::-;5819:39;5833:4;5839:2;5843:7;5852:5;5819:13;:39::i;:::-;5538:328;;;;:::o;977:33:16:-;;;;:::o;931:42::-;;;;:::o;1383:154:9:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;-1:-1:-1;;;;;1459:23:9;::::1;1485:5;1459:23:::0;;;:13:::1;:23;::::0;;;;;;:31;;-1:-1:-1;;1459:31:9::1;::::0;;1502:30;::::1;::::0;::::1;::::0;1473:8;;1502:30:::1;:::i;:::-;;;;;;;;1383:154:::0;:::o;2771:334:6:-;2844:13;2878:16;2886:7;2878;:16::i;:::-;2870:76;;;;-1:-1:-1;;;2870:76:6;;;;;;;:::i;:::-;2959:21;2983:10;:8;:10::i;:::-;2959:34;;3035:1;3017:7;3011:21;:25;:86;;;;;;;;;;;;;;;;;3063:7;3072:18;:7;:16;:18::i;:::-;3046:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3011:86;3004:93;2771:334;-1:-1:-1;;;2771:334:6:o;1543:243:9:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;1638:9:9::1;1634:95;1653:19:::0;;::::1;1634:95;;;1713:4;1684:13;:26;1698:8;;1707:1;1698:11;;;;;-1:-1:-1::0;;;1698:11:9::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1684:26:9::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1684:26:9;:33;;-1:-1:-1;;1684:33:9::1;::::0;::::1;;::::0;;;::::1;::::0;;1674:3;::::1;::::0;::::1;:::i;:::-;;;;1634:95;;;;1744:34;1769:8;;1744:34;;;;;;;:::i;1236:141::-:0;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;-1:-1:-1;;;;;1303:23:9;::::1;;::::0;;;:13:::1;:23;::::0;;;;;;:30;;-1:-1:-1;;1303:30:9::1;1329:4;1303:30;::::0;;1345:24;::::1;::::0;::::1;::::0;1317:8;;1345:24:::1;:::i;1166:26:16:-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;767:30::-;;;;:::o;567:34::-;;;;:::o;4890:128::-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;4963:10:16::1;::::0;::::1;;::::0;;::::1;;:21;;::::0;::::1;;;;4955:30;;;::::0;::::1;;4990:10;:20:::0;;;::::1;;;;-1:-1:-1::0;;4990:20:16;;::::1;::::0;;;::::1;::::0;;4890:128::o;1538:313::-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;1673:12:16::1;;1663:6;1641:19;;:28;;;;:::i;:::-;:44;;1619:104;;;;-1:-1:-1::0;;;1619:104:16::1;;;;;;;:::i;:::-;1739:9;1734:110;1758:6;1754:1;:10;1734:110;;;1786:19;1801:3;1786:14;:19::i;:::-;1811;:21:::0;;;:19:::1;:21;::::0;::::1;:::i;:::-;;;;;;1766:3;;;;;:::i;:::-;;;;1734:110;;5246:193:::0;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;5357:8:16::1;5334:19;;:31;;5319:79;;;;-1:-1:-1::0;;;5319:79:16::1;;;;;;;:::i;:::-;5408:12;:23:::0;5246:193::o;4641:164:6:-;-1:-1:-1;;;;;4762:25:6;;;4738:4;4762:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4641:164::o;5950:112:16:-;1230:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;6027:16:16::1;:27:::0;5950:112::o;723:40::-;;;;:::o;1899:192:17:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:17;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:17;;1211:68;;;;-1:-1:-1;;;1211:68:17;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:17;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:17::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;1129:30:16:-:0;;;;;;;;;:::o;2763:98:19:-;2821:7;2848:5;2852:1;2848;:5;:::i;364:273:4:-;489:4;-1:-1:-1;;;;;;528:50:4;;-1:-1:-1;;;528:50:4;;:102;;;594:36;618:11;594:23;:36::i;601:98:1:-;681:10;601:98;:::o;1872:118:18:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:18;;;;;;;:::i;:::-;1932:7:::1;:14:::0;;-1:-1:-1;;;;1932:14:18::1;-1:-1:-1::0;;;1932:14:18::1;::::0;;1962:20:::1;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;-1:-1:-1;;;1667:41:18;;;;;;;:::i;:::-;2190:7:::1;:15:::0;;-1:-1:-1;;;;2190:15:18::1;::::0;;2221:22:::1;2230:12;:10;:12::i;7376:127:6:-:0;7441:4;7465:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7465:16:6;:30;;;7376:127::o;11360:174::-;11435:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11435:29:6;-1:-1:-1;;;;;11435:29:6;;;;;;;;:24;;11489:23;11435:24;11489:14;:23::i;:::-;-1:-1:-1;;;;;11480:46:6;;;;;;;;;;;11360:174;;:::o;3501:98:19:-;3559:7;3586:5;3590:1;3586;:5;:::i;3392:199:16:-;3448:7;3458:14;:12;:14::i;:::-;3448:24;;3483:27;:15;:25;:27::i;:::-;3521:18;3531:3;3536:2;3521:9;:18::i;:::-;3555:28;;3580:2;;3555:28;;;;;3392:199;;:::o;7670:348:6:-;7763:4;7788:16;7796:7;7788;:16::i;:::-;7780:73;;;;-1:-1:-1;;;7780:73:6;;;;;;;:::i;:::-;7864:13;7880:23;7895:7;7880:14;:23::i;:::-;7864:39;;7933:5;-1:-1:-1;;;;;7922:16:6;:7;-1:-1:-1;;;;;7922:16:6;;:51;;;;7966:7;-1:-1:-1;;;;;7942:31:6;:20;7954:7;7942:11;:20::i;:::-;-1:-1:-1;;;;;7942:31:6;;7922:51;:87;;;;7977:32;7994:5;8001:7;7977:16;:32::i;:::-;7914:96;7670:348;-1:-1:-1;;;;7670:348:6:o;10662:580::-;10821:4;-1:-1:-1;;;;;10794:31:6;:23;10809:7;10794:14;:23::i;:::-;-1:-1:-1;;;;;10794:31:6;;10786:85;;;;-1:-1:-1;;;10786:85:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;10890:16:6;;10882:65;;;;-1:-1:-1;;;10882:65:6;;;;;;;:::i;:::-;10962:39;10983:4;10989:2;10993:7;10962:20;:39::i;:::-;11066:29;11083:1;11087:7;11066:8;:29::i;:::-;-1:-1:-1;;;;;11108:15:6;;;;;;:9;:15;;;;;:20;;11127:1;;11108:15;:20;;11127:1;;11108:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11139:13:6;;;;;;:9;:13;;;;;:18;;11156:1;;11139:13;:18;;11156:1;;11139:18;:::i;:::-;;;;-1:-1:-1;;11168:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11168:21:6;-1:-1:-1;;;;;11168:21:6;;;;;;;;;11207:27;;11168:16;;11207:27;;;;;;;10662:580;;;:::o;793:114:2:-;885:14;;793:114::o;9965:360:6:-;10025:13;10041:23;10056:7;10041:14;:23::i;:::-;10025:39;;10077:48;10098:5;10113:1;10117:7;10077:20;:48::i;:::-;10166:29;10183:1;10187:7;10166:8;:29::i;:::-;-1:-1:-1;;;;;10208:16:6;;;;;;:9;:16;;;;;:21;;10228:1;;10208:16;:21;;10228:1;;10208:21;:::i;:::-;;;;-1:-1:-1;;10247:16:6;;;;:7;:16;;;;;;10240:23;;-1:-1:-1;;;;;;10240:23:6;;;10281:36;10255:7;;10247:16;-1:-1:-1;;;;;10281:36:6;;;;;10247:16;;10281:36;9965:360;;:::o;2099:173:17:-;2174:6;;;-1:-1:-1;;;;;2191:17:17;;;-1:-1:-1;;;;;;2191:17:17;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;513:196:5:-;606:5;597;:14;;589:53;;;;-1:-1:-1;;;589:53:5;;;;;;;:::i;:::-;665:37;;;;;;;;;-1:-1:-1;;;;;665:37:5;;;;;;;;;;;;;;;;;652:10;:50;;-1:-1:-1;;;652:50:5;;;-1:-1:-1;;;;;;;;;;652:50:5;;;;;;;;;;;;;513:196::o;6748:315:6:-;6905:28;6915:4;6921:2;6925:7;6905:9;:28::i;:::-;6952:48;6975:4;6981:2;6985:7;6994:5;6952:22;:48::i;:::-;6944:111;;;;-1:-1:-1;;;6944:111:6;;;;;;;:::i;3600:113:16:-;3660:13;3693:12;3686:19;;;;;:::i;288:723:20:-;344:13;565:10;561:53;;-1:-1:-1;592:10:20;;;;;;;;;;;;-1:-1:-1;;;592:10:20;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:20;;-1:-1:-1;744:2:20;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:20;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:20;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:20;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:20;;;;;;;;-1:-1:-1;949:11:20;958:2;949:11;;:::i;:::-;;;818:154;;937:224:8;1039:4;-1:-1:-1;;;;;;1063:50:8;;-1:-1:-1;;;1063:50:8;;:90;;;1117:36;1141:11;1117:23;:36::i;915:127:2:-;1004:19;;1022:1;1004:19;;;915:127::o;8360:110:6:-;8436:26;8446:2;8450:7;8436:26;;;;;;;;;;;;:9;:26::i;4501:239:16:-;4687:45;4714:4;4720:2;4724:7;4687:26;:45::i;12099:803:6:-;12254:4;12275:15;:2;-1:-1:-1;;;;;12275:13:6;;:15::i;:::-;12271:624;;;12327:2;-1:-1:-1;;;;;12311:36:6;;12348:12;:10;:12::i;:::-;12362:4;12368:7;12377:5;12311:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12311:72:6;;;;;;;;-1:-1:-1;;12311:72:6;;;;;;;;;;;;:::i;:::-;;;12307:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12557:13:6;;12553:272;;12600:60;;-1:-1:-1;;;12600:60:6;;;;;;;:::i;12553:272::-;12775:6;12769:13;12760:6;12756:2;12752:15;12745:38;12307:533;-1:-1:-1;;;;;;12434:55:6;-1:-1:-1;;;12434:55:6;;-1:-1:-1;12427:62:6;;12271:624;-1:-1:-1;12879:4:6;12099:803;;;;;;:::o;1482:305::-;1584:4;-1:-1:-1;;;;;;1621:40:6;;-1:-1:-1;;;1621:40:6;;:105;;-1:-1:-1;;;;;;;1678:48:6;;-1:-1:-1;;;1678:48:6;1621:105;:158;;;;1743:36;1767:11;1743:23;:36::i;8697:321::-;8827:18;8833:2;8837:7;8827:5;:18::i;:::-;8878:54;8909:1;8913:2;8917:7;8926:5;8878:22;:54::i;:::-;8856:154;;;;-1:-1:-1;;;8856:154:6;;;;;;;:::i;902:328:9:-;1046:45;1073:4;1079:2;1083:7;1046:26;:45::i;:::-;1122:7;:5;:7::i;:::-;-1:-1:-1;;;;;1106:23:9;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1106:23:9;;1102:121;;1155:8;:6;:8::i;:::-;1154:9;1146:65;;;;-1:-1:-1;;;1146:65:9;;;;;;;:::i;743:387:0:-;1066:20;1114:8;;;743:387::o;787:157:3:-;-1:-1:-1;;;;;;896:40:3;;-1:-1:-1;;;896:40:3;787:157;;;:::o;9354:382:6:-;-1:-1:-1;;;;;9434:16:6;;9426:61;;;;-1:-1:-1;;;9426:61:6;;;;;;;:::i;:::-;9507:16;9515:7;9507;:16::i;:::-;9506:17;9498:58;;;;-1:-1:-1;;;9498:58:6;;;;;;;:::i;:::-;9569:45;9598:1;9602:2;9606:7;9569:20;:45::i;:::-;-1:-1:-1;;;;;9627:13:6;;;;;;:9;:13;;;;;:18;;9644:1;;9627:13;:18;;9644:1;;9627:18;:::i;:::-;;;;-1:-1:-1;;9656:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9656:21:6;-1:-1:-1;;;;;9656:21:6;;;;;;;;9695:33;;9656:16;;;9695:33;;9656:16;;9695:33;9354:382;;:::o;2613:589:8:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;-1:-1:-1;;;;;2819:18:8;;2815:187;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:8;:4;-1:-1:-1;;;;;2916:10:8;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:8;;3012:183;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;-1:-1:-1;;;;;3116:10:8;:2;-1:-1:-1;;;;;3116:10:8;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;3925:164::-;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:8;;;5194:328;;-1:-1:-1;;;;;5265:18:8;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:8;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:8;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:8;;6252:46;;6703:26;;;;-1:-1:-1;;;6703:26:8;;;;;;;;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;-1:-1:-1;;;6742:22:8;;;;;;;;;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;-1:-1:-1;;;7054:16:8;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1079;;;;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:8;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:8:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:21;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:21;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:21;473:16;;;470:25;-1:-1:-1;467:2:21;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:21;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:21;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:21:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:21;;-1:-1:-1;;;;3158:561:21:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:21;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:21;;5006:120;-1:-1:-1;5006:120:21:o;5131:258::-;;;5260:2;5248:9;5239:7;5235:23;5231:32;5228:2;;;5281:6;5273;5266:22;5228:2;-1:-1:-1;;5309:23:21;;;5379:2;5364:18;;;5351:32;;-1:-1:-1;5218:171:21:o;5394:259::-;;5475:5;5469:12;5502:6;5497:3;5490:19;5518:63;5574:6;5567:4;5562:3;5558:14;5551:4;5544:5;5540:16;5518:63;:::i;:::-;5635:2;5614:15;-1:-1:-1;;5610:29:21;5601:39;;;;5642:4;5597:50;;5445:208;-1:-1:-1;;5445:208:21:o;5658:470::-;;5875:6;5869:13;5891:53;5937:6;5932:3;5925:4;5917:6;5913:17;5891:53;:::i;:::-;6007:13;;5966:16;;;;6029:57;6007:13;5966:16;6063:4;6051:17;;6029:57;:::i;:::-;6102:20;;5845:283;-1:-1:-1;;;;5845:283:21:o;6133:203::-;-1:-1:-1;;;;;6297:32:21;;;;6279:51;;6267:2;6252:18;;6234:102::o;6341:490::-;-1:-1:-1;;;;;6610:15:21;;;6592:34;;6662:15;;6657:2;6642:18;;6635:43;6709:2;6694:18;;6687:34;;;6757:3;6752:2;6737:18;;6730:31;;;6341:490;;6778:47;;6805:19;;6797:6;6778:47;:::i;:::-;6770:55;6544:287;-1:-1:-1;;;;;;6544:287:21:o;6836:274::-;-1:-1:-1;;;;;7028:32:21;;;;7010:51;;7092:2;7077:18;;7070:34;6998:2;6983:18;;6965:145::o;7115:641::-;7296:2;7348:21;;;7321:18;;;7404:22;;;7115:641;;7483:6;7457:2;7442:18;;7115:641;7520:210;7534:6;7531:1;7528:13;7520:210;;;-1:-1:-1;;;;;7599:28:21;7620:6;7599:28;:::i;:::-;7595:54;7583:67;;7705:15;;;;7670:12;;;;7556:1;7549:9;7520:210;;;-1:-1:-1;7747:3:21;7276:480;-1:-1:-1;;;;;;7276:480:21:o;7761:635::-;7932:2;7984:21;;;8054:13;;7957:18;;;8076:22;;;7761:635;;7932:2;8155:15;;;;8129:2;8114:18;;;7761:635;8201:169;8215:6;8212:1;8209:13;8201:169;;;8276:13;;8264:26;;8345:15;;;;8310:12;;;;8237:1;8230:9;8201:169;;;-1:-1:-1;8387:3:21;;7912:484;-1:-1:-1;;;;;;7912:484:21:o;8401:187::-;8566:14;;8559:22;8541:41;;8529:2;8514:18;;8496:92::o;8593:221::-;;8742:2;8731:9;8724:21;8762:46;8804:2;8793:9;8789:18;8781:6;8762:46;:::i;8819:407::-;9021:2;9003:21;;;9060:2;9040:18;;;9033:30;9099:34;9094:2;9079:18;;9072:62;-1:-1:-1;;;9165:2:21;9150:18;;9143:41;9216:3;9201:19;;8993:233::o;9231:344::-;9433:2;9415:21;;;9472:2;9452:18;;;9445:30;-1:-1:-1;;;9506:2:21;9491:18;;9484:50;9566:2;9551:18;;9405:170::o;9580:355::-;9782:2;9764:21;;;9821:2;9801:18;;;9794:30;9860:33;9855:2;9840:18;;9833:61;9926:2;9911:18;;9754:181::o;9940:350::-;10142:2;10124:21;;;10181:2;10161:18;;;10154:30;10220:28;10215:2;10200:18;;10193:56;10281:2;10266:18;;10114:176::o;10295:407::-;10497:2;10479:21;;;10536:2;10516:18;;;10509:30;10575:34;10570:2;10555:18;;10548:62;-1:-1:-1;;;10641:2:21;10626:18;;10619:41;10692:3;10677:19;;10469:233::o;10707:414::-;10909:2;10891:21;;;10948:2;10928:18;;;10921:30;10987:34;10982:2;10967:18;;10960:62;-1:-1:-1;;;11053:2:21;11038:18;;11031:48;11111:3;11096:19;;10881:240::o;11126:342::-;11328:2;11310:21;;;11367:2;11347:18;;;11340:30;-1:-1:-1;;;11401:2:21;11386:18;;11379:48;11459:2;11444:18;;11300:168::o;11473:402::-;11675:2;11657:21;;;11714:2;11694:18;;;11687:30;11753:34;11748:2;11733:18;;11726:62;-1:-1:-1;;;11819:2:21;11804:18;;11797:36;11865:3;11850:19;;11647:228::o;11880:352::-;12082:2;12064:21;;;12121:2;12101:18;;;12094:30;12160;12155:2;12140:18;;12133:58;12223:2;12208:18;;12054:178::o;12237:400::-;12439:2;12421:21;;;12478:2;12458:18;;;12451:30;12517:34;12512:2;12497:18;;12490:62;-1:-1:-1;;;12583:2:21;12568:18;;12561:34;12627:3;12612:19;;12411:226::o;12642:349::-;12844:2;12826:21;;;12883:2;12863:18;;;12856:30;12922:27;12917:2;12902:18;;12895:55;12982:2;12967:18;;12816:175::o;12996:332::-;13198:2;13180:21;;;13237:1;13217:18;;;13210:29;-1:-1:-1;;;13270:2:21;13255:18;;13248:39;13319:2;13304:18;;13170:158::o;13333:342::-;13535:2;13517:21;;;13574:2;13554:18;;;13547:30;-1:-1:-1;;;13608:2:21;13593:18;;13586:48;13666:2;13651:18;;13507:168::o;13680:408::-;13882:2;13864:21;;;13921:2;13901:18;;;13894:30;13960:34;13955:2;13940:18;;13933:62;-1:-1:-1;;;14026:2:21;14011:18;;14004:42;14078:3;14063:19;;13854:234::o;14093:340::-;14295:2;14277:21;;;14334:2;14314:18;;;14307:30;-1:-1:-1;;;14368:2:21;14353:18;;14346:46;14424:2;14409:18;;14267:166::o;14438:420::-;14640:2;14622:21;;;14679:2;14659:18;;;14652:30;14718:34;14713:2;14698:18;;14691:62;14789:26;14784:2;14769:18;;14762:54;14848:3;14833:19;;14612:246::o;14863:406::-;15065:2;15047:21;;;15104:2;15084:18;;;15077:30;15143:34;15138:2;15123:18;;15116:62;-1:-1:-1;;;15209:2:21;15194:18;;15187:40;15259:3;15244:19;;15037:232::o;15274:405::-;15476:2;15458:21;;;15515:2;15495:18;;;15488:30;15554:34;15549:2;15534:18;;15527:62;-1:-1:-1;;;15620:2:21;15605:18;;15598:39;15669:3;15654:19;;15448:231::o;15684:341::-;15886:2;15868:21;;;15925:2;15905:18;;;15898:30;-1:-1:-1;;;15959:2:21;15944:18;;15937:47;16016:2;16001:18;;15858:167::o;16030:356::-;16232:2;16214:21;;;16251:18;;;16244:30;16310:34;16305:2;16290:18;;16283:62;16377:2;16362:18;;16204:182::o;16391:408::-;16593:2;16575:21;;;16632:2;16612:18;;;16605:30;16671:34;16666:2;16651:18;;16644:62;-1:-1:-1;;;16737:2:21;16722:18;;16715:42;16789:3;16774:19;;16565:234::o;16804:339::-;17006:2;16988:21;;;17045:2;17025:18;;;17018:30;-1:-1:-1;;;17079:2:21;17064:18;;17057:45;17134:2;17119:18;;16978:165::o;17148:345::-;17350:2;17332:21;;;17389:2;17369:18;;;17362:30;-1:-1:-1;;;17423:2:21;17408:18;;17401:51;17484:2;17469:18;;17322:171::o;17498:356::-;17700:2;17682:21;;;17719:18;;;17712:30;17778:34;17773:2;17758:18;;17751:62;17845:2;17830:18;;17672:182::o;17859:405::-;18061:2;18043:21;;;18100:2;18080:18;;;18073:30;18139:34;18134:2;18119:18;;18112:62;-1:-1:-1;;;18205:2:21;18190:18;;18183:39;18254:3;18239:19;;18033:231::o;18269:411::-;18471:2;18453:21;;;18510:2;18490:18;;;18483:30;18549:34;18544:2;18529:18;;18522:62;-1:-1:-1;;;18615:2:21;18600:18;;18593:45;18670:3;18655:19;;18443:237::o;18685:341::-;18887:2;18869:21;;;18926:2;18906:18;;;18899:30;-1:-1:-1;;;18960:2:21;18945:18;;18938:47;19017:2;19002:18;;18859:167::o;19031:345::-;19233:2;19215:21;;;19272:2;19252:18;;;19245:30;-1:-1:-1;;;19306:2:21;19291:18;;19284:51;19367:2;19352:18;;19205:171::o;19381:397::-;19583:2;19565:21;;;19622:2;19602:18;;;19595:30;19661:34;19656:2;19641:18;;19634:62;-1:-1:-1;;;19727:2:21;19712:18;;19705:31;19768:3;19753:19;;19555:223::o;19783:413::-;19985:2;19967:21;;;20024:2;20004:18;;;19997:30;20063:34;20058:2;20043:18;;20036:62;-1:-1:-1;;;20129:2:21;20114:18;;20107:47;20186:3;20171:19;;19957:239::o;20201:408::-;20403:2;20385:21;;;20442:2;20422:18;;;20415:30;20481:34;20476:2;20461:18;;20454:62;-1:-1:-1;;;20547:2:21;20532:18;;20525:42;20599:3;20584:19;;20375:234::o;20614:342::-;20816:2;20798:21;;;20855:2;20835:18;;;20828:30;-1:-1:-1;;;20889:2:21;20874:18;;20867:48;20947:2;20932:18;;20788:168::o;20961:412::-;21163:2;21145:21;;;21202:2;21182:18;;;21175:30;21241:34;21236:2;21221:18;;21214:62;-1:-1:-1;;;21307:2:21;21292:18;;21285:46;21363:3;21348:19;;21135:238::o;21378:177::-;21524:25;;;21512:2;21497:18;;21479:76::o;21560:128::-;;21631:1;21627:6;21624:1;21621:13;21618:2;;;21637:18;;:::i;:::-;-1:-1:-1;21673:9:21;;21608:80::o;21693:120::-;;21759:1;21749:2;;21764:18;;:::i;:::-;-1:-1:-1;21798:9:21;;21739:74::o;21818:168::-;;21924:1;21920;21916:6;21912:14;21909:1;21906:21;21901:1;21894:9;21887:17;21883:45;21880:2;;;21931:18;;:::i;:::-;-1:-1:-1;21971:9:21;;21870:116::o;21991:125::-;;22059:1;22056;22053:8;22050:2;;;22064:18;;:::i;:::-;-1:-1:-1;22101:9:21;;22040:76::o;22121:258::-;22193:1;22203:113;22217:6;22214:1;22211:13;22203:113;;;22293:11;;;22287:18;22274:11;;;22267:39;22239:2;22232:10;22203:113;;;22334:6;22331:1;22328:13;22325:2;;;-1:-1:-1;;22369:1:21;22351:16;;22344:27;22174:205::o;22384:380::-;22469:1;22459:12;;22516:1;22506:12;;;22527:2;;22581:4;22573:6;22569:17;22559:27;;22527:2;22634;22626:6;22623:14;22603:18;22600:38;22597:2;;;22680:10;22675:3;22671:20;22668:1;22661:31;22715:4;22712:1;22705:15;22743:4;22740:1;22733:15;22597:2;;22439:325;;;:::o;22769:135::-;;-1:-1:-1;;22829:17:21;;22826:2;;;22849:18;;:::i;:::-;-1:-1:-1;22896:1:21;22885:13;;22816:88::o;22909:112::-;;22967:1;22957:2;;22972:18;;:::i;:::-;-1:-1:-1;23006:9:21;;22947:74::o;23026:127::-;23087:10;23082:3;23078:20;23075:1;23068:31;23118:4;23115:1;23108:15;23142:4;23139:1;23132:15;23158:127;23219:10;23214:3;23210:20;23207:1;23200:31;23250:4;23247:1;23240:15;23274:4;23271:1;23264:15;23290:127;23351:10;23346:3;23342:20;23339:1;23332:31;23382:4;23379:1;23372:15;23406:4;23403:1;23396:15;23422:133;-1:-1:-1;;;;;;23498:32:21;;23488:43;;23478:2;;23545:1;23542;23535:12

Swarm Source

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