ETH Price: $2,834.88 (+1.76%)
 

Overview

Max Total Supply

141 LaserCats

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mgugga.eth
Balance
1 LaserCats
0x8ab83d869f2bc250b781d26f6584fd5c562fdd9d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LaserCats is a fork of MoonCatRescue. The genetic code of each LaserCat evolved algorithmically and all graphical elements (including GIFs) are entirely procedurally-generated.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LaserCats

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 12 : LaserCats.sol
// SPDX-License-Identifier: MIT

pragma solidity ^ 0.8.0;

import "./SafeMath.sol";
import "./Context.sol";
import "./Ownable.sol";
import "./Strings.sol";
import "./Address.sol";
import "./IERC165.sol";
import "./ERC165.sol";
import "./IERC721.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Metadata.sol";
import "./IERC721Receiver.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;

	// Optional mapping for token URIs
	mapping(uint256 => string) private _tokenURIs;

	// Base URI
	string private _baseURI;

	/**
	 * @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 _tokenURI = _tokenURIs[tokenId];
		string memory base = baseURI();

		// If there is no base URI, return the token URI.
		if (bytes(base).length == 0) {
			return _tokenURI;
		}
		// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
		if (bytes(_tokenURI).length > 0) {
			return string(abi.encodePacked(base, _tokenURI));
		}
		// If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
		return string(abi.encodePacked(base, tokenId.toString()));
	}

	/**
	 * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
	 * in child contracts.
	 */
	function baseURI() internal view virtual returns(string memory) {
		return _baseURI;
	}

	/**
	 * @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 || ERC721.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 || ERC721.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 Sets `_tokenURI` as the tokenURI of `tokenId`.
	 *
	 * Requirements:
	 *
	 * - `tokenId` must exist.
	 */
	function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
		require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
		_tokenURIs[tokenId] = _tokenURI;
	}

	/**
	 * @dev Internal function to set the base URI for all token IDs. It is
	 * automatically added as a prefix to the value returned in {tokenURI},
	 * or to the token ID if {tokenURI} is empty.
	 */
	function _setBaseURI(string memory baseURI_) internal virtual {
		_baseURI = baseURI_;
	}

	/**
	 * @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 {
					// solhint-disable-next-line no-inline-assembly
					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` 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 { }
}

/**
 * @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();
	}
}

contract LaserCats is ERC721Enumerable, Ownable {
	using SafeMath for uint256;
	uint public constant maxTokenSupply = 25440;
	uint public presalePriceCap;
	uint public startPrice;
	uint public priceFactor;
	uint public maxTxQty;
	bool public mintingAllowed;

	constructor() ERC721("LaserCats", "LaserCats") { }

	function getTokensOfOwner(address _owner) external view returns(uint256[] memory) {
		uint256 tokenCount = balanceOf(_owner);
		if (tokenCount == 0) {
			return new uint256[](0);
		} else {
			uint256[] memory result = new uint256[](tokenCount);
			uint256 index;
			for (index = 0; index < tokenCount; index++) {
				result[index] = tokenOfOwnerByIndex(_owner, index);
			}
			return result;
		}
	}

	function getPresaleQty() public view returns(uint256) {
		require(mintingAllowed == true, "Minting not allowed yet.");
		require(totalSupply() < maxTokenSupply, "All tokens have been minted.");
		return maxTxQty;
	}

	function getPresalePrice() public view returns(uint256) {
		require(mintingAllowed == true, "Minting not allowed yet.");
		require(totalSupply() < maxTokenSupply, "All tokens have been minted.");
		return startPrice.mul(10 ** 16) + totalSupply().div(100).mul(priceFactor);
	}

	function mintToken(uint256 qty) public payable {
		require(qty > 0 && qty <= getPresaleQty(), "Quantity exceeds allowed.");
		require(totalSupply().add(qty) <= maxTokenSupply, "Quantity exceeds max supply.");
		require(msg.value >= getPresalePrice().mul(qty), "Ether value to send is insufficient.");

		for (uint i = 0; i < qty; i++) {
			uint mintIndex = totalSupply();
			_safeMint(msg.sender, mintIndex);
		}
	}

	// reserves tokens 0-99 for giveaways
	function mintPromoToken(uint256 qty) public onlyOwner {
		require(totalSupply().add(qty) <= 100, "Quantity exceeds allowed.");

		for (uint i = 0; i < qty; i++) {
			uint mintIndex = totalSupply();
			_safeMint(msg.sender, mintIndex);
		}
	}

	function setPresaleAmounts(uint start, uint cap, uint qty) public onlyOwner {
		startPrice = start;
		presalePriceCap = cap;
		maxTxQty = qty;
		priceFactor = ((cap - start) * (10 ** 5) / (maxTokenSupply.div(100))) * (10 ** 11);
	}

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

	function beginPresale() public onlyOwner {
		mintingAllowed = true;
	}

	function pausePresale() public onlyOwner {
		mintingAllowed = false;
	}

	function withdraw() public payable onlyOwner {
		require(payable(msg.sender).send(address(this).balance));
	}
}

File 2 of 12 : 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

File 4 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 5 of 12 : 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 6 of 12 : 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 7 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 12 : 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 9 of 12 : 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 10 of 12 : 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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 11 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 12 of 12 : 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);
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"beginPresale","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":[],"name":"getPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPromoToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presalePriceCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"setPresaleAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526009808252684c617365724361747360b81b6020808401828152855180870190965292855284015281519192916200005691600091620000d9565b5080516200006c906001906020840190620000d9565b505050600062000081620000d560201b60201c565b600c80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001bc565b3390565b828054620000e7906200017f565b90600052602060002090601f0160209004810192826200010b576000855562000156565b82601f106200012657805160ff191683800117855562000156565b8280016001018555821562000156579182015b828111156200015657825182559160200191906001019062000139565b506200016492915062000168565b5090565b5b8082111562000164576000815560010162000169565b600181811c908216806200019457607f821691505b60208210811415620001b657634e487b7160e01b600052602260045260246000fd5b50919050565b612b1680620001cc6000396000f3fe6080604052600436106102345760003560e01c80636352211e11610138578063bc13d1e7116100b0578063dfb2866d1161007f578063e985e9c511610064578063e985e9c5146105df578063f1a9af8914610628578063f2fde38b1461063e57610234565b8063dfb2866d146105b3578063e3679277146105c957610234565b8063bc13d1e714610556578063c634d0321461056b578063c87b56dd1461057e578063d799187b1461059e57610234565b80638da5cb5b1161010757806396532d1c116100ec57806396532d1c146104fc578063a22cb46514610516578063b88d4fde1461053657610234565b80638da5cb5b146104c957806395d89b41146104e757610234565b80636352211e1461045f57806370a082311461047f578063715018a61461049f57806377ee4b0f146104b457610234565b806323b872dd116101cb5780634ed6803a1161019a57806350f7c2041161017f57806350f7c204146103fc57806355f804b3146104125780635de6dc551461043257610234565b80634ed6803a146103bc5780634f6ccce7146103dc57610234565b806323b872dd146103545780632f745c59146103745780633ccfd60b1461039457806342842e0e1461039c57610234565b8063081812fc11610207578063081812fc146102c7578063095ea7b3146102ff57806318160ddd1461031f57806321a0de291461033e57610234565b806301ffc9a71461023957806304ab36481461026e57806306fdde0314610290578063070f5c09146102b2575b600080fd5b34801561024557600080fd5b506102596102543660046127cf565b61065e565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061028e61028936600461284d565b6106bc565b005b34801561029c57600080fd5b506102a56107b7565b604051610265919061296b565b3480156102be57600080fd5b5061028e610849565b3480156102d357600080fd5b506102e76102e236600461284d565b6108af565b6040516001600160a01b039091168152602001610265565b34801561030b57600080fd5b5061028e61031a3660046127a6565b610955565b34801561032b57600080fd5b50600a545b604051908152602001610265565b34801561034a57600080fd5b5061033060105481565b34801561036057600080fd5b5061028e61036f3660046126b8565b610a87565b34801561038057600080fd5b5061033061038f3660046127a6565b610b0e565b61028e610bb6565b3480156103a857600080fd5b5061028e6103b73660046126b8565b610c36565b3480156103c857600080fd5b5061028e6103d7366004612865565b610c51565b3480156103e857600080fd5b506103306103f736600461284d565b610cff565b34801561040857600080fd5b5061033061636081565b34801561041e57600080fd5b5061028e61042d366004612807565b610db1565b34801561043e57600080fd5b5061045261044d36600461266c565b610e17565b6040516102659190612927565b34801561046b57600080fd5b506102e761047a36600461284d565b610ef8565b34801561048b57600080fd5b5061033061049a36600461266c565b610f83565b3480156104ab57600080fd5b5061028e61101d565b3480156104c057600080fd5b506103306110ce565b3480156104d557600080fd5b50600c546001600160a01b03166102e7565b3480156104f357600080fd5b506102a56111c4565b34801561050857600080fd5b506011546102599060ff1681565b34801561052257600080fd5b5061028e61053136600461276c565b6111d3565b34801561054257600080fd5b5061028e6105513660046126f3565b6112a5565b34801561056257600080fd5b5061028e611333565b61028e61057936600461284d565b61139c565b34801561058a57600080fd5b506102a561059936600461284d565b611512565b3480156105aa57600080fd5b506103306116bb565b3480156105bf57600080fd5b50610330600f5481565b3480156105d557600080fd5b50610330600d5481565b3480156105eb57600080fd5b506102596105fa366004612686565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063457600080fd5b50610330600e5481565b34801561064a57600080fd5b5061028e61065936600461266c565b611775565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106b457506106b4826118b4565b90505b919050565b600c546001600160a01b0316331461071b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60646107308261072a600a5490565b90611997565b111561077e5760405162461bcd60e51b815260206004820152601960248201527f5175616e74697479206578636565647320616c6c6f7765642e000000000000006044820152606401610712565b60005b818110156107b3576000610794600a5490565b90506107a033826119aa565b50806107ab81612a41565b915050610781565b5050565b6060600080546107c690612a0c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290612a0c565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b600c546001600160a01b031633146108a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6011805460ff19169055565b6000818152600260205260408120546001600160a01b03166109395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610712565b506000908152600460205260409020546001600160a01b031690565b600061096082610ef8565b9050806001600160a01b0316836001600160a01b031614156109ea5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610712565b336001600160a01b0382161480610a065750610a0681336105fa565b610a785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610712565b610a8283836119c4565b505050565b610a913382611a3f565b610b035760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610712565b610a82838383611b47565b6000610b1983610f83565b8210610b8d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610712565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b600c546001600160a01b03163314610c105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b60405133904780156108fc02916000818181858888f19350505050610c3457600080fd5b565b610a82838383604051806020016040528060008152506112a5565b600c546001600160a01b03163314610cab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600e839055600d8290556010819055610cc76163606064611d2c565b610cd184846129c9565b610cde90620186a06129aa565b610ce89190612996565b610cf79064174876e8006129aa565b600f55505050565b6000610d0a600a5490565b8210610d7e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610712565b600a8281548110610d9f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600c546001600160a01b03163314610e0b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b610e1481611d38565b50565b60606000610e2483610f83565b905080610e415750506040805160008152602081019091526106b7565b60008167ffffffffffffffff811115610e6a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e93578160200160208202803683370190505b50905060005b82811015610ee857610eab8582610b0e565b828281518110610ecb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ee081612a41565b915050610e99565b5091506106b79050565b50919050565b6000818152600260205260408120546001600160a01b0316806106b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610712565b60006001600160a01b0382166110015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610712565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b031633146110775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c805473ffffffffffffffffffffffffffffffffffffffff19169055565b60115460009060ff1615156001146111285760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206e6f7420616c6c6f776564207965742e00000000000000006044820152606401610712565b616360611134600a5490565b106111815760405162461bcd60e51b815260206004820152601c60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465642e000000006044820152606401610712565b6111a1600f5461119b6064611195600a5490565b90611d2c565b90611d4b565b600e546111b590662386f26fc10000611d4b565b6111bf919061297e565b905090565b6060600180546107c690612a0c565b6001600160a01b03821633141561122c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610712565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611299911515815260200190565b60405180910390a35050565b6112af3383611a3f565b6113215760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610712565b61132d84848484611d57565b50505050565b600c546001600160a01b0316331461138d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6011805460ff19166001179055565b6000811180156113b357506113af6116bb565b8111155b6113ff5760405162461bcd60e51b815260206004820152601960248201527f5175616e74697479206578636565647320616c6c6f7765642e000000000000006044820152606401610712565b61636061140f8261072a600a5490565b111561145d5760405162461bcd60e51b815260206004820152601c60248201527f5175616e746974792065786365656473206d617820737570706c792e000000006044820152606401610712565b6114698161119b6110ce565b3410156114dd5760405162461bcd60e51b8152602060048201526024808201527f45746865722076616c756520746f2073656e6420697320696e7375666669636960448201527f656e742e000000000000000000000000000000000000000000000000000000006064820152608401610712565b60005b818110156107b35760006114f3600a5490565b90506114ff33826119aa565b508061150a81612a41565b9150506114e0565b6000818152600260205260409020546060906001600160a01b031661159f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610712565b600082815260066020526040812080546115b890612a0c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e490612a0c565b80156116315780601f1061160657610100808354040283529160200191611631565b820191906000526020600020905b81548152906001019060200180831161161457829003601f168201915b505050505090506000611642611de0565b9050805160001415611656575090506106b7565b8151156116885780826040516020016116709291906128bc565b604051602081830303815290604052925050506106b7565b8061169285611def565b6040516020016116a39291906128bc565b60405160208183030381529060405292505050919050565b60115460009060ff1615156001146117155760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206e6f7420616c6c6f776564207965742e00000000000000006044820152606401610712565b616360611721600a5490565b1061176e5760405162461bcd60e51b815260206004820152601c60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465642e000000006044820152606401610712565b5060105490565b600c546001600160a01b031633146117cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6001600160a01b03811661184b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610712565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061194757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106b457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106b4565b60006119a3828461297e565b9392505050565b6107b3828260405180602001604052806000815250611f3e565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611a0682610ef8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ac95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610712565b6000611ad483610ef8565b9050806001600160a01b0316846001600160a01b03161480611b0f5750836001600160a01b0316611b04846108af565b6001600160a01b0316145b80611b3f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b5a82610ef8565b6001600160a01b031614611bd65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610712565b6001600160a01b038216611c515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610712565b611c5c838383611fc7565b611c676000826119c4565b6001600160a01b0383166000908152600360205260408120805460019290611c909084906129c9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cbe90849061297e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119a38284612996565b80516107b3906007906020840190612546565b60006119a382846129aa565b611d62848484611b47565b611d6e84848484612084565b61132d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610712565b6060600780546107c690612a0c565b606081611e30575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526106b7565b8160005b8115611e5a5780611e4481612a41565b9150611e539050600a83612996565b9150611e34565b60008167ffffffffffffffff811115611e8357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ead576020820181803683370190505b5090505b8415611b3f57611ec26001836129c9565b9150611ecf600a86612a5c565b611eda90603061297e565b60f81b818381518110611efd57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f37600a86612996565b9450611eb1565b611f488383612231565b611f556000848484612084565b610a825760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610712565b6001600160a01b0383166120225761201d81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612045565b816001600160a01b0316836001600160a01b03161461204557612045838261238c565b6001600160a01b0382166120615761205c81612429565b610a82565b826001600160a01b0316826001600160a01b031614610a8257610a828282612502565b60006001600160a01b0384163b15612226576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906120e19033908990889088906004016128eb565b602060405180830381600087803b1580156120fb57600080fd5b505af192505050801561212b575060408051601f3d908101601f19168201909252612128918101906127eb565b60015b6121db573d808015612159576040519150601f19603f3d011682016040523d82523d6000602084013e61215e565b606091505b5080516121d35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610712565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611b3f565b506001949350505050565b6001600160a01b0382166122875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610712565b6000818152600260205260409020546001600160a01b0316156122ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610712565b6122f860008383611fc7565b6001600160a01b038216600090815260036020526040812080546001929061232190849061297e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161239984610f83565b6123a391906129c9565b6000838152600960205260409020549091508082146123f6576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061243b906001906129c9565b6000838152600b6020526040812054600a805493945090928490811061247157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a83815481106124a057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a8054806124e657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061250d83610f83565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461255290612a0c565b90600052602060002090601f01602090048101928261257457600085556125ba565b82601f1061258d57805160ff19168380011785556125ba565b828001600101855582156125ba579182015b828111156125ba57825182559160200191906001019061259f565b506125c69291506125ca565b5090565b5b808211156125c657600081556001016125cb565b600067ffffffffffffffff808411156125fa576125fa612a9c565b604051601f8501601f19908116603f0116810190828211818310171561262257612622612a9c565b8160405280935085815286868601111561263b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146106b757600080fd5b60006020828403121561267d578081fd5b6119a382612655565b60008060408385031215612698578081fd5b6126a183612655565b91506126af60208401612655565b90509250929050565b6000806000606084860312156126cc578081fd5b6126d584612655565b92506126e360208501612655565b9150604084013590509250925092565b60008060008060808587031215612708578081fd5b61271185612655565b935061271f60208601612655565b925060408501359150606085013567ffffffffffffffff811115612741578182fd5b8501601f81018713612751578182fd5b612760878235602084016125df565b91505092959194509250565b6000806040838503121561277e578182fd5b61278783612655565b91506020830135801515811461279b578182fd5b809150509250929050565b600080604083850312156127b8578182fd5b6127c183612655565b946020939093013593505050565b6000602082840312156127e0578081fd5b81356119a381612ab2565b6000602082840312156127fc578081fd5b81516119a381612ab2565b600060208284031215612818578081fd5b813567ffffffffffffffff81111561282e578182fd5b8201601f8101841361283e578182fd5b611b3f848235602084016125df565b60006020828403121561285e578081fd5b5035919050565b600080600060608486031215612879578283fd5b505081359360208301359350604090920135919050565b600081518084526128a88160208601602086016129e0565b601f01601f19169290920160200192915050565b600083516128ce8184602088016129e0565b8351908301906128e28183602088016129e0565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261291d6080830184612890565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561295f57835183529284019291840191600101612943565b50909695505050505050565b6000602082526119a36020830184612890565b6000821982111561299157612991612a70565b500190565b6000826129a5576129a5612a86565b500490565b60008160001904831182151516156129c4576129c4612a70565b500290565b6000828210156129db576129db612a70565b500390565b60005b838110156129fb5781810151838201526020016129e3565b8381111561132d5750506000910152565b600181811c90821680612a2057607f821691505b60208210811415610ef257634e487b7160e01b600052602260045260246000fd5b6000600019821415612a5557612a55612a70565b5060010190565b600082612a6b57612a6b612a86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e1457600080fdfea264697066735822122089fa3610fb4bbed844b31e3852221db4735ac76b257feab88fb4f9d27028097464736f6c63430008030033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636352211e11610138578063bc13d1e7116100b0578063dfb2866d1161007f578063e985e9c511610064578063e985e9c5146105df578063f1a9af8914610628578063f2fde38b1461063e57610234565b8063dfb2866d146105b3578063e3679277146105c957610234565b8063bc13d1e714610556578063c634d0321461056b578063c87b56dd1461057e578063d799187b1461059e57610234565b80638da5cb5b1161010757806396532d1c116100ec57806396532d1c146104fc578063a22cb46514610516578063b88d4fde1461053657610234565b80638da5cb5b146104c957806395d89b41146104e757610234565b80636352211e1461045f57806370a082311461047f578063715018a61461049f57806377ee4b0f146104b457610234565b806323b872dd116101cb5780634ed6803a1161019a57806350f7c2041161017f57806350f7c204146103fc57806355f804b3146104125780635de6dc551461043257610234565b80634ed6803a146103bc5780634f6ccce7146103dc57610234565b806323b872dd146103545780632f745c59146103745780633ccfd60b1461039457806342842e0e1461039c57610234565b8063081812fc11610207578063081812fc146102c7578063095ea7b3146102ff57806318160ddd1461031f57806321a0de291461033e57610234565b806301ffc9a71461023957806304ab36481461026e57806306fdde0314610290578063070f5c09146102b2575b600080fd5b34801561024557600080fd5b506102596102543660046127cf565b61065e565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061028e61028936600461284d565b6106bc565b005b34801561029c57600080fd5b506102a56107b7565b604051610265919061296b565b3480156102be57600080fd5b5061028e610849565b3480156102d357600080fd5b506102e76102e236600461284d565b6108af565b6040516001600160a01b039091168152602001610265565b34801561030b57600080fd5b5061028e61031a3660046127a6565b610955565b34801561032b57600080fd5b50600a545b604051908152602001610265565b34801561034a57600080fd5b5061033060105481565b34801561036057600080fd5b5061028e61036f3660046126b8565b610a87565b34801561038057600080fd5b5061033061038f3660046127a6565b610b0e565b61028e610bb6565b3480156103a857600080fd5b5061028e6103b73660046126b8565b610c36565b3480156103c857600080fd5b5061028e6103d7366004612865565b610c51565b3480156103e857600080fd5b506103306103f736600461284d565b610cff565b34801561040857600080fd5b5061033061636081565b34801561041e57600080fd5b5061028e61042d366004612807565b610db1565b34801561043e57600080fd5b5061045261044d36600461266c565b610e17565b6040516102659190612927565b34801561046b57600080fd5b506102e761047a36600461284d565b610ef8565b34801561048b57600080fd5b5061033061049a36600461266c565b610f83565b3480156104ab57600080fd5b5061028e61101d565b3480156104c057600080fd5b506103306110ce565b3480156104d557600080fd5b50600c546001600160a01b03166102e7565b3480156104f357600080fd5b506102a56111c4565b34801561050857600080fd5b506011546102599060ff1681565b34801561052257600080fd5b5061028e61053136600461276c565b6111d3565b34801561054257600080fd5b5061028e6105513660046126f3565b6112a5565b34801561056257600080fd5b5061028e611333565b61028e61057936600461284d565b61139c565b34801561058a57600080fd5b506102a561059936600461284d565b611512565b3480156105aa57600080fd5b506103306116bb565b3480156105bf57600080fd5b50610330600f5481565b3480156105d557600080fd5b50610330600d5481565b3480156105eb57600080fd5b506102596105fa366004612686565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063457600080fd5b50610330600e5481565b34801561064a57600080fd5b5061028e61065936600461266c565b611775565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106b457506106b4826118b4565b90505b919050565b600c546001600160a01b0316331461071b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60646107308261072a600a5490565b90611997565b111561077e5760405162461bcd60e51b815260206004820152601960248201527f5175616e74697479206578636565647320616c6c6f7765642e000000000000006044820152606401610712565b60005b818110156107b3576000610794600a5490565b90506107a033826119aa565b50806107ab81612a41565b915050610781565b5050565b6060600080546107c690612a0c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290612a0c565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b600c546001600160a01b031633146108a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6011805460ff19169055565b6000818152600260205260408120546001600160a01b03166109395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610712565b506000908152600460205260409020546001600160a01b031690565b600061096082610ef8565b9050806001600160a01b0316836001600160a01b031614156109ea5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610712565b336001600160a01b0382161480610a065750610a0681336105fa565b610a785760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610712565b610a8283836119c4565b505050565b610a913382611a3f565b610b035760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610712565b610a82838383611b47565b6000610b1983610f83565b8210610b8d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610712565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b600c546001600160a01b03163314610c105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b60405133904780156108fc02916000818181858888f19350505050610c3457600080fd5b565b610a82838383604051806020016040528060008152506112a5565b600c546001600160a01b03163314610cab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600e839055600d8290556010819055610cc76163606064611d2c565b610cd184846129c9565b610cde90620186a06129aa565b610ce89190612996565b610cf79064174876e8006129aa565b600f55505050565b6000610d0a600a5490565b8210610d7e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610712565b600a8281548110610d9f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600c546001600160a01b03163314610e0b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b610e1481611d38565b50565b60606000610e2483610f83565b905080610e415750506040805160008152602081019091526106b7565b60008167ffffffffffffffff811115610e6a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e93578160200160208202803683370190505b50905060005b82811015610ee857610eab8582610b0e565b828281518110610ecb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ee081612a41565b915050610e99565b5091506106b79050565b50919050565b6000818152600260205260408120546001600160a01b0316806106b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610712565b60006001600160a01b0382166110015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610712565b506001600160a01b031660009081526003602052604090205490565b600c546001600160a01b031633146110775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c805473ffffffffffffffffffffffffffffffffffffffff19169055565b60115460009060ff1615156001146111285760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206e6f7420616c6c6f776564207965742e00000000000000006044820152606401610712565b616360611134600a5490565b106111815760405162461bcd60e51b815260206004820152601c60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465642e000000006044820152606401610712565b6111a1600f5461119b6064611195600a5490565b90611d2c565b90611d4b565b600e546111b590662386f26fc10000611d4b565b6111bf919061297e565b905090565b6060600180546107c690612a0c565b6001600160a01b03821633141561122c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610712565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611299911515815260200190565b60405180910390a35050565b6112af3383611a3f565b6113215760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610712565b61132d84848484611d57565b50505050565b600c546001600160a01b0316331461138d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6011805460ff19166001179055565b6000811180156113b357506113af6116bb565b8111155b6113ff5760405162461bcd60e51b815260206004820152601960248201527f5175616e74697479206578636565647320616c6c6f7765642e000000000000006044820152606401610712565b61636061140f8261072a600a5490565b111561145d5760405162461bcd60e51b815260206004820152601c60248201527f5175616e746974792065786365656473206d617820737570706c792e000000006044820152606401610712565b6114698161119b6110ce565b3410156114dd5760405162461bcd60e51b8152602060048201526024808201527f45746865722076616c756520746f2073656e6420697320696e7375666669636960448201527f656e742e000000000000000000000000000000000000000000000000000000006064820152608401610712565b60005b818110156107b35760006114f3600a5490565b90506114ff33826119aa565b508061150a81612a41565b9150506114e0565b6000818152600260205260409020546060906001600160a01b031661159f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610712565b600082815260066020526040812080546115b890612a0c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e490612a0c565b80156116315780601f1061160657610100808354040283529160200191611631565b820191906000526020600020905b81548152906001019060200180831161161457829003601f168201915b505050505090506000611642611de0565b9050805160001415611656575090506106b7565b8151156116885780826040516020016116709291906128bc565b604051602081830303815290604052925050506106b7565b8061169285611def565b6040516020016116a39291906128bc565b60405160208183030381529060405292505050919050565b60115460009060ff1615156001146117155760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206e6f7420616c6c6f776564207965742e00000000000000006044820152606401610712565b616360611721600a5490565b1061176e5760405162461bcd60e51b815260206004820152601c60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465642e000000006044820152606401610712565b5060105490565b600c546001600160a01b031633146117cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6001600160a01b03811661184b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610712565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061194757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106b457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106b4565b60006119a3828461297e565b9392505050565b6107b3828260405180602001604052806000815250611f3e565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190611a0682610ef8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ac95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610712565b6000611ad483610ef8565b9050806001600160a01b0316846001600160a01b03161480611b0f5750836001600160a01b0316611b04846108af565b6001600160a01b0316145b80611b3f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b5a82610ef8565b6001600160a01b031614611bd65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610712565b6001600160a01b038216611c515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610712565b611c5c838383611fc7565b611c676000826119c4565b6001600160a01b0383166000908152600360205260408120805460019290611c909084906129c9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cbe90849061297e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119a38284612996565b80516107b3906007906020840190612546565b60006119a382846129aa565b611d62848484611b47565b611d6e84848484612084565b61132d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610712565b6060600780546107c690612a0c565b606081611e30575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526106b7565b8160005b8115611e5a5780611e4481612a41565b9150611e539050600a83612996565b9150611e34565b60008167ffffffffffffffff811115611e8357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ead576020820181803683370190505b5090505b8415611b3f57611ec26001836129c9565b9150611ecf600a86612a5c565b611eda90603061297e565b60f81b818381518110611efd57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f37600a86612996565b9450611eb1565b611f488383612231565b611f556000848484612084565b610a825760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610712565b6001600160a01b0383166120225761201d81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612045565b816001600160a01b0316836001600160a01b03161461204557612045838261238c565b6001600160a01b0382166120615761205c81612429565b610a82565b826001600160a01b0316826001600160a01b031614610a8257610a828282612502565b60006001600160a01b0384163b15612226576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906120e19033908990889088906004016128eb565b602060405180830381600087803b1580156120fb57600080fd5b505af192505050801561212b575060408051601f3d908101601f19168201909252612128918101906127eb565b60015b6121db573d808015612159576040519150601f19603f3d011682016040523d82523d6000602084013e61215e565b606091505b5080516121d35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610712565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611b3f565b506001949350505050565b6001600160a01b0382166122875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610712565b6000818152600260205260409020546001600160a01b0316156122ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610712565b6122f860008383611fc7565b6001600160a01b038216600090815260036020526040812080546001929061232190849061297e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161239984610f83565b6123a391906129c9565b6000838152600960205260409020549091508082146123f6576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061243b906001906129c9565b6000838152600b6020526040812054600a805493945090928490811061247157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a83815481106124a057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a8054806124e657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061250d83610f83565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b82805461255290612a0c565b90600052602060002090601f01602090048101928261257457600085556125ba565b82601f1061258d57805160ff19168380011785556125ba565b828001600101855582156125ba579182015b828111156125ba57825182559160200191906001019061259f565b506125c69291506125ca565b5090565b5b808211156125c657600081556001016125cb565b600067ffffffffffffffff808411156125fa576125fa612a9c565b604051601f8501601f19908116603f0116810190828211818310171561262257612622612a9c565b8160405280935085815286868601111561263b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146106b757600080fd5b60006020828403121561267d578081fd5b6119a382612655565b60008060408385031215612698578081fd5b6126a183612655565b91506126af60208401612655565b90509250929050565b6000806000606084860312156126cc578081fd5b6126d584612655565b92506126e360208501612655565b9150604084013590509250925092565b60008060008060808587031215612708578081fd5b61271185612655565b935061271f60208601612655565b925060408501359150606085013567ffffffffffffffff811115612741578182fd5b8501601f81018713612751578182fd5b612760878235602084016125df565b91505092959194509250565b6000806040838503121561277e578182fd5b61278783612655565b91506020830135801515811461279b578182fd5b809150509250929050565b600080604083850312156127b8578182fd5b6127c183612655565b946020939093013593505050565b6000602082840312156127e0578081fd5b81356119a381612ab2565b6000602082840312156127fc578081fd5b81516119a381612ab2565b600060208284031215612818578081fd5b813567ffffffffffffffff81111561282e578182fd5b8201601f8101841361283e578182fd5b611b3f848235602084016125df565b60006020828403121561285e578081fd5b5035919050565b600080600060608486031215612879578283fd5b505081359360208301359350604090920135919050565b600081518084526128a88160208601602086016129e0565b601f01601f19169290920160200192915050565b600083516128ce8184602088016129e0565b8351908301906128e28183602088016129e0565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261291d6080830184612890565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561295f57835183529284019291840191600101612943565b50909695505050505050565b6000602082526119a36020830184612890565b6000821982111561299157612991612a70565b500190565b6000826129a5576129a5612a86565b500490565b60008160001904831182151516156129c4576129c4612a70565b500290565b6000828210156129db576129db612a70565b500390565b60005b838110156129fb5781810151838201526020016129e3565b8381111561132d5750506000910152565b600181811c90821680612a2057607f821691505b60208210811415610ef257634e487b7160e01b600052602260045260246000fd5b6000600019821415612a5557612a55612a70565b5060010190565b600082612a6b57612a6b612a86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e1457600080fdfea264697066735822122089fa3610fb4bbed844b31e3852221db4735ac76b257feab88fb4f9d27028097464736f6c63430008030033

Deployed Bytecode Sourcemap

19102:2495:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13618:215;;;;;;;;;;-1:-1:-1;13618:215:8;;;;;:::i;:::-;;:::i;:::-;;;6954:14:12;;6947:22;6929:41;;6917:2;6902:18;13618:215:8;;;;;;;;20770:241;;;;;;;;;;-1:-1:-1;20770:241:8;;;;;:::i;:::-;;:::i;:::-;;2387:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21412:71::-;;;;;;;;;;;;;:::i;4011:201::-;;;;;;;;;;-1:-1:-1;4011:201:8;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5566:55:12;;;5548:74;;5536:2;5521:18;4011:201:8;5503:125:12;3609:353:8;;;;;;;;;;-1:-1:-1;3609:353:8;;;;;:::i;:::-;;:::i;14196:101::-;;;;;;;;;;-1:-1:-1;14276:10:8;:17;14196:101;;;16384:25:12;;;16372:2;16357:18;14196:101:8;16339:76:12;19309:20:8;;;;;;;;;;;;;;;;4792:279;;;;;;;;;;-1:-1:-1;4792:279:8;;;;;:::i;:::-;;:::i;13900:237::-;;;;;;;;;;-1:-1:-1;13900:237:8;;;;;:::i;:::-;;:::i;21486:109::-;;;:::i;5125:140::-;;;;;;;;;;-1:-1:-1;5125:140:8;;;;;:::i;:::-;;:::i;21014:231::-;;;;;;;;;;-1:-1:-1;21014:231:8;;;;;:::i;:::-;;:::i;14357:214::-;;;;;;;;;;-1:-1:-1;14357:214:8;;;;;:::i;:::-;;:::i;19182:43::-;;;;;;;;;;;;19220:5;19182:43;;21248:88;;;;;;;;;;-1:-1:-1;21248:88:8;;;;;:::i;:::-;;:::i;19415:399::-;;;;;;;;;;-1:-1:-1;19415:399:8;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2124:213::-;;;;;;;;;;-1:-1:-1;2124:213:8;;;;;:::i;:::-;;:::i;1890:189::-;;;;;;;;;;-1:-1:-1;1890:189:8;;;;;:::i;:::-;;:::i;1693:145:9:-;;;;;;;;;;;;;:::i;20035:275:8:-;;;;;;;;;;;;;:::i;1061:85:9:-;;;;;;;;;;-1:-1:-1;1133:6:9;;-1:-1:-1;;;;;1133:6:9;1061:85;;2527:92:8;;;;;;;;;;;;;:::i;19332:26::-;;;;;;;;;;-1:-1:-1;19332:26:8;;;;;;;;4267:269;;;;;;;;;;-1:-1:-1;4267:269:8;;;;;:::i;:::-;;:::i;5319:267::-;;;;;;;;;;-1:-1:-1;5319:267:8;;;;;:::i;:::-;;:::i;21339:70::-;;;;;;;;;;;;;:::i;20313:415::-;;;;;;:::i;:::-;;:::i;2673:688::-;;;;;;;;;;-1:-1:-1;2673:688:8;;;;;:::i;:::-;;:::i;19817:215::-;;;;;;;;;;;;;:::i;19283:23::-;;;;;;;;;;;;;;;;19228:27;;;;;;;;;;;;;;;;4590:152;;;;;;;;;;-1:-1:-1;4590:152:8;;;;;:::i;:::-;-1:-1:-1;;;;;4703:25:8;;;4686:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4590:152;19258:22;;;;;;;;;;;;;;;;1987:240:9;;;;;;;;;;-1:-1:-1;1987:240:9;;;;;:::i;:::-;;:::i;13618:215:8:-;13719:4;13736:50;;;13751:35;13736:50;;:93;;;13793:36;13817:11;13793:23;:36::i;:::-;13729:100;;13618:215;;;;:::o;20770:241::-;1133:6:9;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;;;;;;;;;20862:3:8::1;20836:22;20854:3;20836:13;14276:10:::0;:17;14196:101;;20836:13:::1;:17:::0;::::1;:22::i;:::-;:29;;20828:67;;;::::0;-1:-1:-1;;;20828:67:8;;9359:2:12;20828:67:8::1;::::0;::::1;9341:21:12::0;9398:2;9378:18;;;9371:30;9437:27;9417:18;;;9410:55;9482:18;;20828:67:8::1;9331:175:12::0;20828:67:8::1;20905:6;20900:108;20921:3;20917:1;:7;20900:108;;;20936:14;20953:13;14276:10:::0;:17;14196:101;;20953:13:::1;20936:30;;20971:32;20981:10;20993:9;20971;:32::i;:::-;-1:-1:-1::0;20926:3:8;::::1;::::0;::::1;:::i;:::-;;;;20900:108;;;;20770:241:::0;:::o;2387:88::-;2440:13;2466:5;2459:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2387:88;:::o;21412:71::-;1133:6:9;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;12877:182:12;1265:68:9;21457:14:8::1;:22:::0;;-1:-1:-1;;21457:22:8::1;::::0;;21412:71::o;4011:201::-;4086:7;7002:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7002:16:8;4099:73;;;;-1:-1:-1;;;4099:73:8;;12492:2:12;4099:73:8;;;12474:21:12;12531:2;12511:18;;;12504:30;12570:34;12550:18;;;12543:62;12641:14;12621:18;;;12614:42;12673:19;;4099:73:8;12464:234:12;4099:73:8;-1:-1:-1;4184:24:8;;;;:15;:24;;;;;;-1:-1:-1;;;;;4184:24:8;;4011:201::o;3609:353::-;3683:13;3699:23;3714:7;3699:14;:23::i;:::-;3683:39;;3740:5;-1:-1:-1;;;;;3734:11:8;:2;-1:-1:-1;;;;;3734:11:8;;;3726:57;;;;-1:-1:-1;;;3726:57:8;;14092:2:12;3726:57:8;;;14074:21:12;14131:2;14111:18;;;14104:30;14170:34;14150:18;;;14143:62;14241:3;14221:18;;;14214:31;14262:19;;3726:57:8;14064:223:12;3726:57:8;665:10:1;-1:-1:-1;;;;;3796:21:8;;;;:69;;-1:-1:-1;3821:44:8;3845:5;665:10:1;3852:12:8;586:96:1;3821:44:8;3788:144;;;;-1:-1:-1;;;3788:144:8;;10885:2:12;3788:144:8;;;10867:21:12;10924:2;10904:18;;;10897:30;10963:34;10943:18;;;10936:62;11034:26;11014:18;;;11007:54;11078:19;;3788:144:8;10857:246:12;3788:144:8;3937:21;3946:2;3950:7;3937:8;:21::i;:::-;3609:353;;;:::o;4792:279::-;4939:41;665:10:1;4972:7:8;4939:18;:41::i;:::-;4931:103;;;;-1:-1:-1;;;4931:103:8;;14494:2:12;4931:103:8;;;14476:21:12;14533:2;14513:18;;;14506:30;14572:34;14552:18;;;14545:62;14643:19;14623:18;;;14616:47;14680:19;;4931:103:8;14466:239:12;4931:103:8;5039:28;5049:4;5055:2;5059:7;5039:9;:28::i;13900:237::-;13996:7;14025:23;14042:5;14025:16;:23::i;:::-;14017:5;:31;14009:87;;;;-1:-1:-1;;;14009:87:8;;7407:2:12;14009:87:8;;;7389:21:12;7446:2;7426:18;;;7419:30;7485:34;7465:18;;;7458:62;7556:13;7536:18;;;7529:41;7587:19;;14009:87:8;7379:233:12;14009:87:8;-1:-1:-1;;;;;;14107:19:8;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;13900:237::o;21486:109::-;1133:6:9;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;12877:182:12;1265:68:9;21543:47:8::1;::::0;21551:10:::1;::::0;21568:21:::1;21543:47:::0;::::1;;;::::0;::::1;::::0;;;21568:21;21551:10;21543:47;::::1;;;;;;21535:56;;;::::0;::::1;;21486:109::o:0;5125:140::-;5222:39;5239:4;5245:2;5249:7;5222:39;;;;;;;;;;;;:16;:39::i;21014:231::-;1133:6:9;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;12877:182:12;1265:68:9;21094:10:8::1;:18:::0;;;21116:15:::1;:21:::0;;;21141:8:::1;:14:::0;;;21203:23:::1;19220:5;21222:3;21203:18;:23::i;:::-;21175:11;21181:5:::0;21175:3;:11:::1;:::i;:::-;21174:25;::::0;21191:7:::1;21174:25;:::i;:::-;:53;;;;:::i;:::-;21173:68;::::0;21232:8:::1;21173:68;:::i;:::-;21159:11;:82:::0;-1:-1:-1;;;21014:231:8:o;14357:214::-;14431:7;14460:30;14276:10;:17;14196:101;;14460:30;14452:5;:38;14444:95;;;;-1:-1:-1;;;14444:95:8;;14912:2:12;14444:95:8;;;14894:21:12;14951:2;14931:18;;;14924:30;14990:34;14970:18;;;14963:62;15061:14;15041:18;;;15034:42;15093:19;;14444:95:8;14884:234:12;14444:95:8;14550:10;14561:5;14550:17;;;;;;-1:-1:-1;;;14550:17:8;;;;;;;;;;;;;;;;;14543:24;;14357:214;;;:::o;21248:88::-;1133:6:9;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;12877:182:12;1265:68:9;21312:20:8::1;21324:7;21312:11;:20::i;:::-;21248:88:::0;:::o;19415:399::-;19479:16;19501:18;19522:17;19532:6;19522:9;:17::i;:::-;19501:38;-1:-1:-1;19547:15:8;19543:268;;-1:-1:-1;;19576:16:8;;;19590:1;19576:16;;;;;;;;19569:23;;19543:268;19608:23;19648:10;19634:25;;;;;;-1:-1:-1;;;19634:25:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19634:25:8;;19608:51;;19664:13;19682:107;19706:10;19698:5;:18;19682:107;;;19749:34;19769:6;19777:5;19749:19;:34::i;:::-;19733:6;19740:5;19733:13;;;;;;-1:-1:-1;;;19733:13:8;;;;;;;;;;;;;;;;;;:50;19718:7;;;;:::i;:::-;;;;19682:107;;;-1:-1:-1;19800:6:8;-1:-1:-1;19793:13:8;;-1:-1:-1;19793:13:8;19543:268;19415:399;;;;:::o;2124:213::-;2195:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:8;2252:19;2244:73;;;;-1:-1:-1;;;2244:73:8;;11721:2:12;2244:73:8;;;11703:21:12;11760:2;11740:18;;;11733:30;11799:34;11779:18;;;11772:62;11870:11;11850:18;;;11843:39;11899:19;;2244:73:8;11693:231:12;1890:189:8;1961:7;-1:-1:-1;;;;;1982:19:8;;1974:74;;;;-1:-1:-1;;;1974:74:8;;11310:2:12;1974:74:8;;;11292:21:12;11349:2;11329:18;;;11322:30;11388:34;11368:18;;;11361:62;11459:12;11439:18;;;11432:40;11489:19;;1974:74:8;11282:232:12;1974:74:8;-1:-1:-1;;;;;;2059:16:8;;;;;:9;:16;;;;;;;1890:189::o;1693:145:9:-;1133:6;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;12877:182:12;1265:68:9;1783:6:::1;::::0;1762:40:::1;::::0;1799:1:::1;::::0;-1:-1:-1;;;;;1783:6:9::1;::::0;1762:40:::1;::::0;1799:1;;1762:40:::1;1812:6;:19:::0;;-1:-1:-1;;1812:19:9::1;::::0;;1693:145::o;20035:275:8:-;20103:14;;20082:7;;20103:14;;:22;;:14;:22;20095:59;;;;-1:-1:-1;;;20095:59:8;;15325:2:12;20095:59:8;;;15307:21:12;15364:2;15344:18;;;15337:30;15403:26;15383:18;;;15376:54;15447:18;;20095:59:8;15297:174:12;20095:59:8;19220:5;20166:13;14276:10;:17;14196:101;;20166:13;:30;20158:71;;;;-1:-1:-1;;;20158:71:8;;9002:2:12;20158:71:8;;;8984:21:12;9041:2;9021:18;;;9014:30;9080;9060:18;;;9053:58;9128:18;;20158:71:8;8974:178:12;20158:71:8;20267:39;20294:11;;20267:22;20285:3;20267:13;14276:10;:17;14196:101;;20267:13;:17;;:22::i;:::-;:26;;:39::i;:::-;20240:10;;:24;;20255:8;20240:14;:24::i;:::-;:66;;;;:::i;:::-;20233:73;;20035:275;:::o;2527:92::-;2582:13;2608:7;2601:14;;;;;:::i;4267:269::-;-1:-1:-1;;;;;4363:24:8;;665:10:1;4363:24:8;;4355:62;;;;-1:-1:-1;;;4355:62:8;;10118:2:12;4355:62:8;;;10100:21:12;10157:2;10137:18;;;10130:30;10196:27;10176:18;;;10169:55;10241:18;;4355:62:8;10090:175:12;4355:62:8;665:10:1;4422:32:8;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4422:42:8;;;;;;;;;;:53;;-1:-1:-1;;4422:53:8;;;;;;;:42;-1:-1:-1;;;;;4484:48:8;;4523:8;4484:48;;;;6954:14:12;6947:22;6929:41;;6917:2;6902:18;;6884:92;4484:48:8;;;;;;;;4267:269;;:::o;5319:267::-;5444:41;665:10:1;5477:7:8;5444:18;:41::i;:::-;5436:103;;;;-1:-1:-1;;;5436:103:8;;14494:2:12;5436:103:8;;;14476:21:12;14533:2;14513:18;;;14506:30;14572:34;14552:18;;;14545:62;14643:19;14623:18;;;14616:47;14680:19;;5436:103:8;14466:239:12;5436:103:8;5543:39;5557:4;5563:2;5567:7;5576:5;5543:13;:39::i;:::-;5319:267;;;;:::o;21339:70::-;1133:6:9;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;12877:182:12;1265:68:9;21384:14:8::1;:21:::0;;-1:-1:-1;;21384:21:8::1;21401:4;21384:21;::::0;;21339:70::o;20313:415::-;20378:1;20372:3;:7;:33;;;;;20390:15;:13;:15::i;:::-;20383:3;:22;;20372:33;20364:71;;;;-1:-1:-1;;;20364:71:8;;9359:2:12;20364:71:8;;;9341:21:12;9398:2;9378:18;;;9371:30;9437:27;9417:18;;;9410:55;9482:18;;20364:71:8;9331:175:12;20364:71:8;19220:5;20447:22;20465:3;20447:13;14276:10;:17;14196:101;;20447:22;:40;;20439:81;;;;-1:-1:-1;;;20439:81:8;;15678:2:12;20439:81:8;;;15660:21:12;15717:2;15697:18;;;15690:30;15756;15736:18;;;15729:58;15804:18;;20439:81:8;15650:178:12;20439:81:8;20545:26;20567:3;20545:17;:15;:17::i;:26::-;20532:9;:39;;20524:88;;;;-1:-1:-1;;;20524:88:8;;16035:2:12;20524:88:8;;;16017:21:12;16074:2;16054:18;;;16047:30;16113:34;16093:18;;;16086:62;16184:6;16164:18;;;16157:34;16208:19;;20524:88:8;16007:226:12;20524:88:8;20622:6;20617:108;20638:3;20634:1;:7;20617:108;;;20653:14;20670:13;14276:10;:17;14196:101;;20670:13;20653:30;;20688:32;20698:10;20710:9;20688;:32::i;:::-;-1:-1:-1;20643:3:8;;;;:::i;:::-;;;;20617:108;;2673:688;6985:4;7002:16;;;:7;:16;;;;;;2745:13;;-1:-1:-1;;;;;7002:16:8;2764:76;;;;-1:-1:-1;;;2764:76:8;;13676:2:12;2764:76:8;;;13658:21:12;13715:2;13695:18;;;13688:30;13754:34;13734:18;;;13727:62;13825:17;13805:18;;;13798:45;13860:19;;2764:76:8;13648:237:12;2764:76:8;2845:23;2871:19;;;:10;:19;;;;;2845:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2894:18;2915:9;:7;:9::i;:::-;2894:30;;2991:4;2985:18;3007:1;2985:23;2981:55;;;-1:-1:-1;3022:9:8;-1:-1:-1;3015:16:8;;2981:55;3126:23;;:27;3122:91;;3191:4;3197:9;3174:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3160:48;;;;;;3122:91;3331:4;3337:18;:7;:16;:18::i;:::-;3314:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3300:57;;;;2673:688;;;:::o;19817:215::-;19883:14;;19862:7;;19883:14;;:22;;:14;:22;19875:59;;;;-1:-1:-1;;;19875:59:8;;15325:2:12;19875:59:8;;;15307:21:12;15364:2;15344:18;;;15337:30;15403:26;15383:18;;;15376:54;15447:18;;19875:59:8;15297:174:12;19875:59:8;19220:5;19946:13;14276:10;:17;14196:101;;19946:13;:30;19938:71;;;;-1:-1:-1;;;19938:71:8;;9002:2:12;19938:71:8;;;8984:21:12;9041:2;9021:18;;;9014:30;9080;9060:18;;;9053:58;9128:18;;19938:71:8;8974:178:12;19938:71:8;-1:-1:-1;20020:8:8;;19817:215;:::o;1987:240:9:-;1133:6;;-1:-1:-1;;;;;1133:6:9;665:10:1;1273:23:9;1265:68;;;;-1:-1:-1;;;1265:68:9;;12905:2:12;1265:68:9;;;12887:21:12;;;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;13035:18;;1265:68:9;12877:182:12;1265:68:9;-1:-1:-1;;;;;2075:22:9;::::1;2067:73;;;::::0;-1:-1:-1;;;2067:73:9;;8238:2:12;2067:73:9::1;::::0;::::1;8220:21:12::0;8277:2;8257:18;;;8250:30;8316:34;8296:18;;;8289:62;8387:8;8367:18;;;8360:36;8413:19;;2067:73:9::1;8210:228:12::0;2067:73:9::1;2176:6;::::0;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:9;;::::1;::::0;2176:6:::1;::::0;2155:38:::1;::::0;2176:6:::1;::::0;2155:38:::1;2203:6;:17:::0;;-1:-1:-1;;2203:17:9::1;-1:-1:-1::0;;;;;2203:17:9;;;::::1;::::0;;;::::1;::::0;;1987:240::o;1583:260:8:-;1684:4;1701:40;;;1716:25;1701:40;;:95;;-1:-1:-1;1748:48:8;;;1763:33;1748:48;1701:95;:138;;;-1:-1:-1;886:25:2;871:40;;;;1803:36:8;763:155:2;2672:96:10;2730:7;2756:5;2760:1;2756;:5;:::i;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:10:o;7796:99:8:-;7865:26;7875:2;7879:7;7865:26;;;;;;;;;;;;:9;:26::i;10904:156::-;10972:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;10972:29:8;-1:-1:-1;;;;;10972:29:8;;;;;;;;:24;;11019:23;10972:24;11019:14;:23::i;:::-;-1:-1:-1;;;;;11010:46:8;;;;;;;;;;;10904:156;;:::o;7170:329::-;7262:4;7002:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7002:16:8;7272:73;;;;-1:-1:-1;;;7272:73:8;;10472:2:12;7272:73:8;;;10454:21:12;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;10621:14;10601:18;;;10594:42;10653:19;;7272:73:8;10444:234:12;7272:73:8;7349:13;7365:23;7380:7;7365:14;:23::i;:::-;7349:39;;7411:5;-1:-1:-1;;;;;7400:16:8;:7;-1:-1:-1;;;;;7400:16:8;;:51;;;;7444:7;-1:-1:-1;;;;;7420:31:8;:20;7432:7;7420:11;:20::i;:::-;-1:-1:-1;;;;;7420:31:8;;7400:51;:94;;;-1:-1:-1;;;;;;4703:25:8;;;4686:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7455:39;7392:103;7170:329;-1:-1:-1;;;;7170:329:8:o;9724:473::-;9842:4;-1:-1:-1;;;;;9815:31:8;:23;9830:7;9815:14;:23::i;:::-;-1:-1:-1;;;;;9815:31:8;;9807:85;;;;-1:-1:-1;;;9807:85:8;;13266:2:12;9807:85:8;;;13248:21:12;13305:2;13285:18;;;13278:30;13344:34;13324:18;;;13317:62;13415:11;13395:18;;;13388:39;13444:19;;9807:85:8;13238:231:12;9807:85:8;-1:-1:-1;;;;;9904:16:8;;9896:65;;;;-1:-1:-1;;;9896:65:8;;9713:2:12;9896:65:8;;;9695:21:12;9752:2;9732:18;;;9725:30;9791:34;9771:18;;;9764:62;9862:6;9842:18;;;9835:34;9886:19;;9896:65:8;9685:226:12;9896:65:8;9966:39;9987:4;9993:2;9997:7;9966:20;:39::i;:::-;10055:29;10072:1;10076:7;10055:8;:29::i;:::-;-1:-1:-1;;;;;10089:15:8;;;;;;:9;:15;;;;;:20;;10108:1;;10089:15;:20;;10108:1;;10089:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10113:13:8;;;;;;:9;:13;;;;;:18;;10130:1;;10113:13;:18;;10130:1;;10113:18;:::i;:::-;;;;-1:-1:-1;;10135:16:8;;;;:7;:16;;;;;;:21;;-1:-1:-1;;10135:21:8;-1:-1:-1;;;;;10135:21:8;;;;;;;;;10166:27;;10135:16;;10166:27;;;;;;;9724:473;;;:::o;3767:96:10:-;3825:7;3851:5;3855:1;3851;:5;:::i;10722:89:8:-;10788:19;;;;:8;;:19;;;;;:::i;3382:96:10:-;3440:7;3466:5;3470:1;3466;:5;:::i;6391:254:8:-;6498:28;6508:4;6514:2;6518:7;6498:9;:28::i;:::-;6538:48;6561:4;6567:2;6571:7;6580:5;6538:22;:48::i;:::-;6530:111;;;;-1:-1:-1;;;6530:111:8;;7819:2:12;6530:111:8;;;7801:21:12;7858:2;7838:18;;;7831:30;7897:34;7877:18;;;7870:62;7968:20;7948:18;;;7941:48;8006:19;;6530:111:8;7791:240:12;3477:87:8;3526:13;3552:8;3545:15;;;;;:::i;271:703:11:-;327:13;544:10;540:51;;-1:-1:-1;570:10:11;;;;;;;;;;;;;;;;;;;540:51;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:11;;-1:-1:-1;716:2:11;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;-1:-1:-1;;;760:17:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:11;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:11;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:11;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;915:11:11;924:2;915:11;;:::i;:::-;;;787:150;;8101:232:8;8190:18;8196:2;8200:7;8190:5;:18::i;:::-;8220:54;8251:1;8255:2;8259:7;8268:5;8220:22;:54::i;:::-;8212:117;;;;-1:-1:-1;;;8212:117:8;;7819:2:12;8212:117:8;;;7801:21:12;7858:2;7838:18;;;7831:30;7897:34;7877:18;;;7870:62;7968:20;7948:18;;;7941:48;8006:19;;8212:117:8;7791:240:12;15119:461:8;-1:-1:-1;;;;;15276:18:8;;15272:153;;15301:40;15333:7;16329:10;:17;;16302:24;;;;:15;:24;;;;;:44;;;16350:24;;;;;;;;;;;;16232:146;15301:40;15272:153;;;15364:2;-1:-1:-1;;;;;15356:10:8;:4;-1:-1:-1;;;;;15356:10:8;;15352:73;;15373:47;15406:4;15412:7;15373:32;:47::i;:::-;-1:-1:-1;;;;;15432:16:8;;15428:149;;15455:45;15492:7;15455:36;:45::i;:::-;15428:149;;;15521:4;-1:-1:-1;;;;;15515:10:8;:2;-1:-1:-1;;;;;15515:10:8;;15511:66;;15532:40;15560:2;15564:7;15532:27;:40::i;11580:636::-;11699:4;-1:-1:-1;;;;;11714:13:8;;1078:20:0;1116:8;11710:503:8;;11740:72;;;;;-1:-1:-1;;;;;11740:36:8;;;;;:72;;665:10:1;;11791:4:8;;11797:7;;11806:5;;11740:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11740:72:8;;;;;;;;-1:-1:-1;;11740:72:8;;;;;;;;;;;;:::i;:::-;;;11736:446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11949:13:8;;11945:232;;11976:60;;-1:-1:-1;;;11976:60:8;;7819:2:12;11976:60:8;;;7801:21:12;7858:2;7838:18;;;7831:30;7897:34;7877:18;;;7870:62;7968:20;7948:18;;;7941:48;8006:19;;11976:60:8;7791:240:12;11945:232:8;12156:6;12150:13;12141:6;12137:2;12133:15;12126:38;11736:446;11849:55;;11859:45;11849:55;;-1:-1:-1;11842:62:8;;11710:503;-1:-1:-1;12204:4:8;11580:636;;;;;;:::o;8616:333::-;-1:-1:-1;;;;;8689:16:8;;8681:61;;;;-1:-1:-1;;;8681:61:8;;12131:2:12;8681:61:8;;;12113:21:12;;;12150:18;;;12143:30;12209:34;12189:18;;;12182:62;12261:18;;8681:61:8;12103:182:12;8681:61:8;6985:4;7002:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7002:16:8;:30;8746:58;;;;-1:-1:-1;;;8746:58:8;;8645:2:12;8746:58:8;;;8627:21:12;8684:2;8664:18;;;8657:30;8723;8703:18;;;8696:58;8771:18;;8746:58:8;8617:178:12;8746:58:8;8809:45;8838:1;8842:2;8846:7;8809:20;:45::i;:::-;-1:-1:-1;;;;;8859:13:8;;;;;;:9;:13;;;;;:18;;8876:1;;8859:13;:18;;8876:1;;8859:18;:::i;:::-;;;;-1:-1:-1;;8881:16:8;;;;:7;:16;;;;;;:21;;-1:-1:-1;;8881:21:8;-1:-1:-1;;;;;8881:21:8;;;;;;;;8912:33;;8881:16;;;8912:33;;8881:16;;8912:33;8616:333;;:::o;16968:880::-;17212:22;17262:1;17237:22;17254:4;17237:16;:22::i;:::-;:26;;;;:::i;:::-;17267:18;17288:26;;;:17;:26;;;;;;17212:51;;-1:-1:-1;17406:28:8;;;17402:290;;-1:-1:-1;;;;;17463:18:8;;17441:19;17463:18;;;:12;:18;;;;;;;;:34;;;;;;;;;17503:30;;;;;;:44;;;17610:30;;:17;:30;;;;;:43;;;17402:290;-1:-1:-1;17773:26:8;;;;:17;:26;;;;;;;;17766:33;;;-1:-1:-1;;;;;17810:18:8;;;;;:12;:18;;;;;:34;;;;;;;17803:41;16968:880::o;18118:980::-;18374:10;:17;18349:22;;18374:21;;18394:1;;18374:21;:::i;:::-;18399:18;18420:24;;;:15;:24;;;;;;18764:10;:26;;18349:46;;-1:-1:-1;18420:24:8;;18349:46;;18764:26;;;;-1:-1:-1;;;18764:26:8;;;;;;;;;;;;;;;;;18742:48;;18820:11;18795:10;18806;18795:22;;;;;;-1:-1:-1;;;18795:22:8;;;;;;;;;;;;;;;;;;;;:36;;;;18893:28;;;:15;:28;;;;;;;:41;;;19050:24;;;;;19043:31;19078:10;:16;;;;;-1:-1:-1;;;19078:16:8;;;;;;;;;;;;;;;;;;;;;;;;;;18118:980;;;;:::o;15856:196::-;15934:14;15951:20;15968:2;15951:16;:20::i;:::-;-1:-1:-1;;;;;15975:16:8;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;16013:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;15856:196:8:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:12;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;-1:-1:-1;;339:24:12;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:2;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:2;;;591:1;588;581:12;550:2;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;88:616;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:12;;816:65;;806:2;;895:1;892;885:12;910:196;;1022:2;1010:9;1001:7;997:23;993:32;990:2;;;1043:6;1035;1028:22;990:2;1071:29;1090:9;1071:29;:::i;1111:270::-;;;1240:2;1228:9;1219:7;1215:23;1211:32;1208:2;;;1261:6;1253;1246:22;1208:2;1289:29;1308:9;1289:29;:::i;:::-;1279:39;;1337:38;1371:2;1360:9;1356:18;1337:38;:::i;:::-;1327:48;;1198:183;;;;;:::o;1386:338::-;;;;1532:2;1520:9;1511:7;1507:23;1503:32;1500:2;;;1553:6;1545;1538:22;1500:2;1581:29;1600:9;1581:29;:::i;:::-;1571:39;;1629:38;1663:2;1652:9;1648:18;1629:38;:::i;:::-;1619:48;;1714:2;1703:9;1699:18;1686:32;1676:42;;1490:234;;;;;:::o;1729:696::-;;;;;1901:3;1889:9;1880:7;1876:23;1872:33;1869:2;;;1923:6;1915;1908:22;1869:2;1951:29;1970:9;1951:29;:::i;:::-;1941:39;;1999:38;2033:2;2022:9;2018:18;1999:38;:::i;:::-;1989:48;;2084:2;2073:9;2069:18;2056:32;2046:42;;2139:2;2128:9;2124:18;2111:32;2166:18;2158:6;2155:30;2152:2;;;2203:6;2195;2188:22;2152:2;2231:22;;2284:4;2276:13;;2272:27;-1:-1:-1;2262:2:12;;2318:6;2310;2303:22;2262:2;2346:73;2411:7;2406:2;2393:16;2388:2;2384;2380:11;2346:73;:::i;:::-;2336:83;;;1859:566;;;;;;;:::o;2430:367::-;;;2556:2;2544:9;2535:7;2531:23;2527:32;2524:2;;;2577:6;2569;2562:22;2524:2;2605:29;2624:9;2605:29;:::i;:::-;2595:39;;2684:2;2673:9;2669:18;2656:32;2731:5;2724:13;2717:21;2710:5;2707:32;2697:2;;2758:6;2750;2743:22;2697:2;2786:5;2776:15;;;2514:283;;;;;:::o;2802:264::-;;;2931:2;2919:9;2910:7;2906:23;2902:32;2899:2;;;2952:6;2944;2937:22;2899:2;2980:29;2999:9;2980:29;:::i;:::-;2970:39;3056:2;3041:18;;;;3028:32;;-1:-1:-1;;;2889:177:12:o;3071:255::-;;3182:2;3170:9;3161:7;3157:23;3153:32;3150:2;;;3203:6;3195;3188:22;3150:2;3247:9;3234:23;3266:30;3290:5;3266:30;:::i;3331:259::-;;3453:2;3441:9;3432:7;3428:23;3424:32;3421:2;;;3474:6;3466;3459:22;3421:2;3511:9;3505:16;3530:30;3554:5;3530:30;:::i;3595:480::-;;3717:2;3705:9;3696:7;3692:23;3688:32;3685:2;;;3738:6;3730;3723:22;3685:2;3783:9;3770:23;3816:18;3808:6;3805:30;3802:2;;;3853:6;3845;3838:22;3802:2;3881:22;;3934:4;3926:13;;3922:27;-1:-1:-1;3912:2:12;;3968:6;3960;3953:22;3912:2;3996:73;4061:7;4056:2;4043:16;4038:2;4034;4030:11;3996:73;:::i;4080:190::-;;4192:2;4180:9;4171:7;4167:23;4163:32;4160:2;;;4213:6;4205;4198:22;4160:2;-1:-1:-1;4241:23:12;;4150:120;-1:-1:-1;4150:120:12:o;4275:326::-;;;;4421:2;4409:9;4400:7;4396:23;4392:32;4389:2;;;4442:6;4434;4427:22;4389:2;-1:-1:-1;;4470:23:12;;;4540:2;4525:18;;4512:32;;-1:-1:-1;4591:2:12;4576:18;;;4563:32;;4379:222;-1:-1:-1;4379:222:12:o;4606:316::-;;4685:5;4679:12;4712:6;4707:3;4700:19;4728:63;4784:6;4777:4;4772:3;4768:14;4761:4;4754:5;4750:16;4728:63;:::i;:::-;4836:2;4824:15;-1:-1:-1;;4820:88:12;4811:98;;;;4911:4;4807:109;;4655:267;-1:-1:-1;;4655:267:12:o;4927:470::-;;5144:6;5138:13;5160:53;5206:6;5201:3;5194:4;5186:6;5182:17;5160:53;:::i;:::-;5276:13;;5235:16;;;;5298:57;5276:13;5235:16;5332:4;5320:17;;5298:57;:::i;:::-;5371:20;;5114:283;-1:-1:-1;;;;5114:283:12:o;5633:511::-;;-1:-1:-1;;;;;5937:2:12;5929:6;5925:15;5914:9;5907:34;5989:2;5981:6;5977:15;5972:2;5961:9;5957:18;5950:43;;6029:6;6024:2;6013:9;6009:18;6002:34;6072:3;6067:2;6056:9;6052:18;6045:31;6093:45;6133:3;6122:9;6118:19;6110:6;6093:45;:::i;:::-;6085:53;5836:308;-1:-1:-1;;;;;;5836:308:12:o;6149:635::-;6320:2;6372:21;;;6442:13;;6345:18;;;6464:22;;;6149:635;;6320:2;6543:15;;;;6517:2;6502:18;;;6149:635;6589:169;6603:6;6600:1;6597:13;6589:169;;;6664:13;;6652:26;;6733:15;;;;6698:12;;;;6625:1;6618:9;6589:169;;;-1:-1:-1;6775:3:12;;6300:484;-1:-1:-1;;;;;;6300:484:12:o;6981:219::-;;7130:2;7119:9;7112:21;7150:44;7190:2;7179:9;7175:18;7167:6;7150:44;:::i;16420:128::-;;16491:1;16487:6;16484:1;16481:13;16478:2;;;16497:18;;:::i;:::-;-1:-1:-1;16533:9:12;;16468:80::o;16553:120::-;;16619:1;16609:2;;16624:18;;:::i;:::-;-1:-1:-1;16658:9:12;;16599:74::o;16678:228::-;;16844:1;-1:-1:-1;;16772:74:12;16769:1;16766:81;16761:1;16754:9;16747:17;16743:105;16740:2;;;16851:18;;:::i;:::-;-1:-1:-1;16891:9:12;;16730:176::o;16911:125::-;;16979:1;16976;16973:8;16970:2;;;16984:18;;:::i;:::-;-1:-1:-1;17021:9:12;;16960:76::o;17041:258::-;17113:1;17123:113;17137:6;17134:1;17131:13;17123:113;;;17213:11;;;17207:18;17194:11;;;17187:39;17159:2;17152:10;17123:113;;;17254:6;17251:1;17248:13;17245:2;;;-1:-1:-1;;17289:1:12;17271:16;;17264:27;17094:205::o;17304:437::-;17383:1;17379:12;;;;17426;;;17447:2;;17501:4;17493:6;17489:17;17479:27;;17447:2;17554;17546:6;17543:14;17523:18;17520:38;17517:2;;;-1:-1:-1;;;17588:1:12;17581:88;17692:4;17689:1;17682:15;17720:4;17717:1;17710:15;17746:195;;-1:-1:-1;;17809:5:12;17806:77;17803:2;;;17886:18;;:::i;:::-;-1:-1:-1;17933:1:12;17922:13;;17793:148::o;17946:112::-;;18004:1;17994:2;;18009:18;;:::i;:::-;-1:-1:-1;18043:9:12;;17984:74::o;18063:184::-;-1:-1:-1;;;18112:1:12;18105:88;18212:4;18209:1;18202:15;18236:4;18233:1;18226:15;18252:184;-1:-1:-1;;;18301:1:12;18294:88;18401:4;18398:1;18391:15;18425:4;18422:1;18415:15;18441:184;-1:-1:-1;;;18490:1:12;18483:88;18590:4;18587:1;18580:15;18614:4;18611:1;18604:15;18630:177;18715:66;18708:5;18704:78;18697:5;18694:89;18684:2;;18797:1;18794;18787:12

Swarm Source

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