ETH Price: $2,720.06 (-7.77%)
 

Overview

Max Total Supply

314 THO

Holders

145

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
masterkat.eth
Balance
2 THO
0xb5f549fd4E2452A8265C79b24226c5b73DE1F6c4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheHighestOffice

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 14: thofinalfinal.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";

contract TheHighestOffice is ERC721, ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    
    // Set variables
    
    uint256 public constant THO_SUPPLY = 8400;
    
    bool private _saleActive = false;
    
    uint16[] idPool;
    
    address team1 = 0x60d235bCD1fD7c6017b298837fc4c40098e5FE14;
    address team2 = 0xe03bC396f212C8d286B9C08a2Bf88158018D8De6;
    address team3 = 0x30427e200BE02A3bEE014Ec6C8DE2b5b018C5Ee6;

    string private _metaBaseUri = "";
    
    // Public Functions
    
    constructor() ERC721("The Highest Office", "THO") {
        for (uint16 i = 1; i <= THO_SUPPLY; i++) {
            idPool.push(i);
        }
    }
    
    function mint(uint16 numberOfTokens) public payable {
        require(isSaleActive(), "THO sale not active");
        require(totalSupply().add(numberOfTokens) <= THO_SUPPLY, "Try less");
        require(numberOfTokens<=4, "Max mint per transaction is 4" );

        uint256 price = getCurrentPrice();
        require(price.mul(numberOfTokens) <= msg.value, "Ether amount sent is incorrect");        

        _mintTokens(numberOfTokens);
    }    
   
    
    function isSaleActive() public view returns (bool) {
        return _saleActive;
    }        

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(_baseURI(), "", uint256(tokenId).toString()));
    }

    function getCurrentPrice() public view returns (uint256) {
        if (totalSupply() < 100) return 0;
        if (totalSupply() < 4200) return 49000000000000000;
        else return 65000000000000000;
    }
    
    // Owner Functions

    function setSaleActive(bool active) external onlyOwner {
        _saleActive = active;
    }   
  

    function setMetaBaseURI(string memory baseURI) external onlyOwner {
        _metaBaseUri = baseURI;
    }


   function withdrawAll() external onlyOwner {
        uint256 _25percent = address(this).balance.mul(25).div(100);
        uint256 _65percent = address(this).balance.mul(65).div(100);
        uint256 _10percent = address(this).balance.mul(10).div(100);
        require(payable(team1).send(_25percent));
        require(payable(team2).send(_65percent));
        require(payable(team3).send(_10percent));        
    }

    // Internal Functions
    
    function _mintTokens(uint16 numberOfTokens) internal {

        uint256 idSeed = uint256(keccak256(abi.encodePacked(blockhash(block.number - 1))));

        for (uint16 i = 0; i < numberOfTokens; i++) {                 
            
            uint256 index = idSeed % idPool.length;
            uint16 tokenId = idPool[index];
            remove (index);

            _safeMint(msg.sender, tokenId);
         }
    }

    function remove(uint index) internal {
        if (index >= idPool.length) return;

         if (idPool.length > 1) {
            idPool[index] = idPool[idPool.length-1];        
        }
        idPool.pop();
    }

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

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 14: 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 4 of 14: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 14: 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 7 of 14: 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 8 of 14: 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 9 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 14: 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 11 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"THO_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"setMetaBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805460ff60a01b19169055600c80546001600160a01b03199081167360d235bcd1fd7c6017b298837fc4c40098e5fe1417909155600d8054821673e03bc396f212c8d286b9c08a2bf88158018d8de6179055600e80549091167330427e200be02a3bee014ec6c8de2b5b018c5ee617905560a06040819052600060808190526200008e91600f9162000200565b503480156200009c57600080fd5b5060408051808201825260128152715468652048696768657374204f666669636560701b60208083019182528351808501909452600384526254484f60e81b908401528151919291620000f29160009162000200565b5080516200010890600190602084019062000200565b505050620001256200011f620001aa60201b60201c565b620001ae565b60015b6120d08161ffff1611620001a357600b80546001810182556000919091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db960108204018054600f9092166002026101000a61ffff8181021990931692841602919091179055806200019a81620002a6565b91505062000128565b5062000314565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200020e90620002d7565b90600052602060002090601f0160209004810192826200023257600085556200027d565b82601f106200024d57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027d57825182559160200191906001019062000260565b506200028b9291506200028f565b5090565b5b808211156200028b576000815560010162000290565b600061ffff80831681811415620002cd57634e487b7160e01b600052601160045260246000fd5b6001019392505050565b600181811c90821680620002ec57607f821691505b602082108114156200030e57634e487b7160e01b600052602260045260246000fd5b50919050565b61217f80620003246000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610445578063eb91d37e1461048e578063f2fde38b146104a3578063f9d5dd98146104c357600080fd5b8063a22cb465146103e5578063b88d4fde14610405578063c87b56dd1461042557600080fd5b806370a0823114610348578063715018a614610368578063841718a61461037d578063853828b61461039d5780638da5cb5b146103b257806395d89b41146103d057600080fd5b806323b872dd1161013e57806342842e0e1161011857806342842e0e146102c95780634f6ccce7146102e9578063564566a8146103095780636352211e1461032857600080fd5b806323b872dd1461027657806323cf0a22146102965780632f745c59146102a957600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806318d272eb14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611b67565b6104d9565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06104ea565b6040516101b29190611bdc565b3480156101e957600080fd5b506101fd6101f8366004611bef565b61057c565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611c24565b610616565b005b34801561024357600080fd5b506008545b6040519081526020016101b2565b34801561026257600080fd5b50610235610271366004611cda565b61072c565b34801561028257600080fd5b50610235610291366004611d23565b61076d565b6102356102a4366004611d5f565b61079e565b3480156102b557600080fd5b506102486102c4366004611c24565b610907565b3480156102d557600080fd5b506102356102e4366004611d23565b61099d565b3480156102f557600080fd5b50610248610304366004611bef565b6109b8565b34801561031557600080fd5b50600a54600160a01b900460ff166101a6565b34801561033457600080fd5b506101fd610343366004611bef565b610a4b565b34801561035457600080fd5b50610248610363366004611d83565b610ac2565b34801561037457600080fd5b50610235610b49565b34801561038957600080fd5b50610235610398366004611dae565b610b7f565b3480156103a957600080fd5b50610235610bc7565b3480156103be57600080fd5b50600a546001600160a01b03166101fd565b3480156103dc57600080fd5b506101d0610cc8565b3480156103f157600080fd5b50610235610400366004611dc9565b610cd7565b34801561041157600080fd5b50610235610420366004611dfc565b610d9c565b34801561043157600080fd5b506101d0610440366004611bef565b610dd4565b34801561045157600080fd5b506101a6610460366004611e78565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561049a57600080fd5b50610248610e0e565b3480156104af57600080fd5b506102356104be366004611d83565b610e51565b3480156104cf57600080fd5b506102486120d081565b60006104e482610eec565b92915050565b6060600080546104f990611ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461052590611ea2565b80156105725780601f1061054757610100808354040283529160200191610572565b820191906000526020600020905b81548152906001019060200180831161055557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062182610a4b565b9050806001600160a01b0316836001600160a01b0316141561068f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105f1565b336001600160a01b03821614806106ab57506106ab8133610460565b61071d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105f1565b6107278383610f11565b505050565b600a546001600160a01b031633146107565760405162461bcd60e51b81526004016105f190611edd565b805161076990600f906020840190611ab8565b5050565b6107773382610f7f565b6107935760405162461bcd60e51b81526004016105f190611f12565b610727838383611076565b600a54600160a01b900460ff166107ed5760405162461bcd60e51b815260206004820152601360248201527254484f2073616c65206e6f742061637469766560681b60448201526064016105f1565b6120d06108078261ffff1661080160085490565b90611221565b11156108405760405162461bcd60e51b8152602060048201526008602482015267547279206c65737360c01b60448201526064016105f1565b60048161ffff1611156108955760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e7420706572207472616e73616374696f6e206973203400000060448201526064016105f1565b600061089f610e0e565b9050346108b08261ffff8516611234565b11156108fe5760405162461bcd60e51b815260206004820152601e60248201527f457468657220616d6f756e742073656e7420697320696e636f7272656374000060448201526064016105f1565b61076982611240565b600061091283610ac2565b82106109745760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61072783838360405180602001604052806000815250610d9c565b60006109c360085490565b8210610a265760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f1565b60088281548110610a3957610a39611f63565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105f1565b60006001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105f1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b735760405162461bcd60e51b81526004016105f190611edd565b610b7d6000611300565b565b600a546001600160a01b03163314610ba95760405162461bcd60e51b81526004016105f190611edd565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b03163314610bf15760405162461bcd60e51b81526004016105f190611edd565b6000610c096064610c03476019611234565b90611352565b90506000610c1d6064610c03476041611234565b90506000610c316064610c0347600a611234565b600c546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050610c6457600080fd5b600d546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050610c9657600080fd5b600e546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061072757600080fd5b6060600180546104f990611ea2565b6001600160a01b038216331415610d305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da63383610f7f565b610dc25760405162461bcd60e51b81526004016105f190611f12565b610dce8484848461135e565b50505050565b6060610dde611391565b610de7836113a0565b604051602001610df8929190611f79565b6040516020818303038152906040529050919050565b60006064610e1b60085490565b1015610e275750600090565b611068610e3360085490565b1015610e45575066ae153d89fe800090565b5066e6ed27d666800090565b600a546001600160a01b03163314610e7b5760405162461bcd60e51b81526004016105f190611edd565b6001600160a01b038116610ee05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f1565b610ee981611300565b50565b60006001600160e01b0319821663780e9d6360e01b14806104e457506104e48261149e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4682610a4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ff85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105f1565b600061100383610a4b565b9050806001600160a01b0316846001600160a01b0316148061103e5750836001600160a01b03166110338461057c565b6001600160a01b0316145b8061106e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108982610a4b565b6001600160a01b0316146110f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105f1565b6001600160a01b0382166111535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f1565b61115e8383836114ee565b611169600082610f11565b6001600160a01b0383166000908152600360205260408120805460019290611192908490611fbe565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c0908490611fd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061122d8284611fd5565b9392505050565b600061122d8284611fed565b600061124d600143611fbe565b6040805191406020830152016040516020818303038152906040528051906020012060001c905060005b8261ffff168161ffff16101561072757600b546000906112979084612022565b90506000600b82815481106112ae576112ae611f63565b90600052602060002090601091828204019190066002029054906101000a900461ffff1690506112dd826114f9565b6112eb338261ffff166115d7565b505080806112f890612036565b915050611277565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061122d8284612058565b611369848484611076565b611375848484846115f1565b610dce5760405162461bcd60e51b81526004016105f19061206c565b6060600f80546104f990611ea2565b6060816113c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ee57806113d8816120be565b91506113e79050600a83612058565b91506113c8565b60008167ffffffffffffffff81111561140957611409611c4e565b6040519080825280601f01601f191660200182016040528015611433576020820181803683370190505b5090505b841561106e57611448600183611fbe565b9150611455600a86612022565b611460906030611fd5565b60f81b81838151811061147557611475611f63565b60200101906001600160f81b031916908160001a905350611497600a86612058565b9450611437565b60006001600160e01b031982166380ac58cd60e01b14806114cf57506001600160e01b03198216635b5e139f60e01b145b806104e457506301ffc9a760e01b6001600160e01b03198316146104e4565b6107278383836116ef565b600b5481106115055750565b600b546001101561159757600b805461152090600190611fbe565b8154811061153057611530611f63565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600b828154811061156757611567611f63565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505b600b8054806115a8576115a86120d9565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905550565b6107698282604051806020016040528060008152506117a7565b60006001600160a01b0384163b156116e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116359033908990889088906004016120ef565b6020604051808303816000875af1925050508015611670575060408051601f3d908101601f1916820190925261166d9181019061212c565b60015b6116ca573d80801561169e576040519150601f19603f3d011682016040523d82523d6000602084013e6116a3565b606091505b5080516116c25760405162461bcd60e51b81526004016105f19061206c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061106e565b506001949350505050565b6001600160a01b03831661174a5761174581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61176d565b816001600160a01b0316836001600160a01b03161461176d5761176d83826117da565b6001600160a01b0382166117845761072781611877565b826001600160a01b0316826001600160a01b031614610727576107278282611926565b6117b1838361196a565b6117be60008484846115f1565b6107275760405162461bcd60e51b81526004016105f19061206c565b600060016117e784610ac2565b6117f19190611fbe565b600083815260076020526040902054909150808214611844576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061188990600190611fbe565b600083815260096020526040812054600880549394509092849081106118b1576118b1611f63565b9060005260206000200154905080600883815481106118d2576118d2611f63565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061190a5761190a6120d9565b6001900381819060005260206000200160009055905550505050565b600061193183610ac2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f1565b6000818152600260205260409020546001600160a01b031615611a255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f1565b611a31600083836114ee565b6001600160a01b0382166000908152600360205260408120805460019290611a5a908490611fd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ac490611ea2565b90600052602060002090601f016020900481019282611ae65760008555611b2c565b82601f10611aff57805160ff1916838001178555611b2c565b82800160010185558215611b2c579182015b82811115611b2c578251825591602001919060010190611b11565b50611b38929150611b3c565b5090565b5b80821115611b385760008155600101611b3d565b6001600160e01b031981168114610ee957600080fd5b600060208284031215611b7957600080fd5b813561122d81611b51565b60005b83811015611b9f578181015183820152602001611b87565b83811115610dce5750506000910152565b60008151808452611bc8816020860160208601611b84565b601f01601f19169290920160200192915050565b60208152600061122d6020830184611bb0565b600060208284031215611c0157600080fd5b5035919050565b80356001600160a01b0381168114611c1f57600080fd5b919050565b60008060408385031215611c3757600080fd5b611c4083611c08565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7f57611c7f611c4e565b604051601f8501601f19908116603f01168101908282118183101715611ca757611ca7611c4e565b81604052809350858152868686011115611cc057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cec57600080fd5b813567ffffffffffffffff811115611d0357600080fd5b8201601f81018413611d1457600080fd5b61106e84823560208401611c64565b600080600060608486031215611d3857600080fd5b611d4184611c08565b9250611d4f60208501611c08565b9150604084013590509250925092565b600060208284031215611d7157600080fd5b813561ffff8116811461122d57600080fd5b600060208284031215611d9557600080fd5b61122d82611c08565b80358015158114611c1f57600080fd5b600060208284031215611dc057600080fd5b61122d82611d9e565b60008060408385031215611ddc57600080fd5b611de583611c08565b9150611df360208401611d9e565b90509250929050565b60008060008060808587031215611e1257600080fd5b611e1b85611c08565b9350611e2960208601611c08565b925060408501359150606085013567ffffffffffffffff811115611e4c57600080fd5b8501601f81018713611e5d57600080fd5b611e6c87823560208401611c64565b91505092959194509250565b60008060408385031215611e8b57600080fd5b611e9483611c08565b9150611df360208401611c08565b600181811c90821680611eb657607f821691505b60208210811415611ed757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351611f8b818460208801611b84565b835190830190611f9f818360208801611b84565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b600082821015611fd057611fd0611fa8565b500390565b60008219821115611fe857611fe8611fa8565b500190565b600081600019048311821515161561200757612007611fa8565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826120315761203161200c565b500690565b600061ffff8083168181141561204e5761204e611fa8565b6001019392505050565b6000826120675761206761200c565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156120d2576120d2611fa8565b5060010190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212290830184611bb0565b9695505050505050565b60006020828403121561213e57600080fd5b815161122d81611b5156fea26469706673582212203a93877e3ee147c11acaa5727f9f23d2d9203bc0cf5fb93bedbde2ae218ece5a64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610445578063eb91d37e1461048e578063f2fde38b146104a3578063f9d5dd98146104c357600080fd5b8063a22cb465146103e5578063b88d4fde14610405578063c87b56dd1461042557600080fd5b806370a0823114610348578063715018a614610368578063841718a61461037d578063853828b61461039d5780638da5cb5b146103b257806395d89b41146103d057600080fd5b806323b872dd1161013e57806342842e0e1161011857806342842e0e146102c95780634f6ccce7146102e9578063564566a8146103095780636352211e1461032857600080fd5b806323b872dd1461027657806323cf0a22146102965780632f745c59146102a957600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806318d272eb14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611b67565b6104d9565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d06104ea565b6040516101b29190611bdc565b3480156101e957600080fd5b506101fd6101f8366004611bef565b61057c565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611c24565b610616565b005b34801561024357600080fd5b506008545b6040519081526020016101b2565b34801561026257600080fd5b50610235610271366004611cda565b61072c565b34801561028257600080fd5b50610235610291366004611d23565b61076d565b6102356102a4366004611d5f565b61079e565b3480156102b557600080fd5b506102486102c4366004611c24565b610907565b3480156102d557600080fd5b506102356102e4366004611d23565b61099d565b3480156102f557600080fd5b50610248610304366004611bef565b6109b8565b34801561031557600080fd5b50600a54600160a01b900460ff166101a6565b34801561033457600080fd5b506101fd610343366004611bef565b610a4b565b34801561035457600080fd5b50610248610363366004611d83565b610ac2565b34801561037457600080fd5b50610235610b49565b34801561038957600080fd5b50610235610398366004611dae565b610b7f565b3480156103a957600080fd5b50610235610bc7565b3480156103be57600080fd5b50600a546001600160a01b03166101fd565b3480156103dc57600080fd5b506101d0610cc8565b3480156103f157600080fd5b50610235610400366004611dc9565b610cd7565b34801561041157600080fd5b50610235610420366004611dfc565b610d9c565b34801561043157600080fd5b506101d0610440366004611bef565b610dd4565b34801561045157600080fd5b506101a6610460366004611e78565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561049a57600080fd5b50610248610e0e565b3480156104af57600080fd5b506102356104be366004611d83565b610e51565b3480156104cf57600080fd5b506102486120d081565b60006104e482610eec565b92915050565b6060600080546104f990611ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461052590611ea2565b80156105725780601f1061054757610100808354040283529160200191610572565b820191906000526020600020905b81548152906001019060200180831161055557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062182610a4b565b9050806001600160a01b0316836001600160a01b0316141561068f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105f1565b336001600160a01b03821614806106ab57506106ab8133610460565b61071d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105f1565b6107278383610f11565b505050565b600a546001600160a01b031633146107565760405162461bcd60e51b81526004016105f190611edd565b805161076990600f906020840190611ab8565b5050565b6107773382610f7f565b6107935760405162461bcd60e51b81526004016105f190611f12565b610727838383611076565b600a54600160a01b900460ff166107ed5760405162461bcd60e51b815260206004820152601360248201527254484f2073616c65206e6f742061637469766560681b60448201526064016105f1565b6120d06108078261ffff1661080160085490565b90611221565b11156108405760405162461bcd60e51b8152602060048201526008602482015267547279206c65737360c01b60448201526064016105f1565b60048161ffff1611156108955760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e7420706572207472616e73616374696f6e206973203400000060448201526064016105f1565b600061089f610e0e565b9050346108b08261ffff8516611234565b11156108fe5760405162461bcd60e51b815260206004820152601e60248201527f457468657220616d6f756e742073656e7420697320696e636f7272656374000060448201526064016105f1565b61076982611240565b600061091283610ac2565b82106109745760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61072783838360405180602001604052806000815250610d9c565b60006109c360085490565b8210610a265760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f1565b60088281548110610a3957610a39611f63565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105f1565b60006001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105f1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b735760405162461bcd60e51b81526004016105f190611edd565b610b7d6000611300565b565b600a546001600160a01b03163314610ba95760405162461bcd60e51b81526004016105f190611edd565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b03163314610bf15760405162461bcd60e51b81526004016105f190611edd565b6000610c096064610c03476019611234565b90611352565b90506000610c1d6064610c03476041611234565b90506000610c316064610c0347600a611234565b600c546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050610c6457600080fd5b600d546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050610c9657600080fd5b600e546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061072757600080fd5b6060600180546104f990611ea2565b6001600160a01b038216331415610d305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da63383610f7f565b610dc25760405162461bcd60e51b81526004016105f190611f12565b610dce8484848461135e565b50505050565b6060610dde611391565b610de7836113a0565b604051602001610df8929190611f79565b6040516020818303038152906040529050919050565b60006064610e1b60085490565b1015610e275750600090565b611068610e3360085490565b1015610e45575066ae153d89fe800090565b5066e6ed27d666800090565b600a546001600160a01b03163314610e7b5760405162461bcd60e51b81526004016105f190611edd565b6001600160a01b038116610ee05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f1565b610ee981611300565b50565b60006001600160e01b0319821663780e9d6360e01b14806104e457506104e48261149e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4682610a4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ff85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105f1565b600061100383610a4b565b9050806001600160a01b0316846001600160a01b0316148061103e5750836001600160a01b03166110338461057c565b6001600160a01b0316145b8061106e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108982610a4b565b6001600160a01b0316146110f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105f1565b6001600160a01b0382166111535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f1565b61115e8383836114ee565b611169600082610f11565b6001600160a01b0383166000908152600360205260408120805460019290611192908490611fbe565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c0908490611fd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061122d8284611fd5565b9392505050565b600061122d8284611fed565b600061124d600143611fbe565b6040805191406020830152016040516020818303038152906040528051906020012060001c905060005b8261ffff168161ffff16101561072757600b546000906112979084612022565b90506000600b82815481106112ae576112ae611f63565b90600052602060002090601091828204019190066002029054906101000a900461ffff1690506112dd826114f9565b6112eb338261ffff166115d7565b505080806112f890612036565b915050611277565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061122d8284612058565b611369848484611076565b611375848484846115f1565b610dce5760405162461bcd60e51b81526004016105f19061206c565b6060600f80546104f990611ea2565b6060816113c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ee57806113d8816120be565b91506113e79050600a83612058565b91506113c8565b60008167ffffffffffffffff81111561140957611409611c4e565b6040519080825280601f01601f191660200182016040528015611433576020820181803683370190505b5090505b841561106e57611448600183611fbe565b9150611455600a86612022565b611460906030611fd5565b60f81b81838151811061147557611475611f63565b60200101906001600160f81b031916908160001a905350611497600a86612058565b9450611437565b60006001600160e01b031982166380ac58cd60e01b14806114cf57506001600160e01b03198216635b5e139f60e01b145b806104e457506301ffc9a760e01b6001600160e01b03198316146104e4565b6107278383836116ef565b600b5481106115055750565b600b546001101561159757600b805461152090600190611fbe565b8154811061153057611530611f63565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600b828154811061156757611567611f63565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055505b600b8054806115a8576115a86120d9565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905550565b6107698282604051806020016040528060008152506117a7565b60006001600160a01b0384163b156116e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116359033908990889088906004016120ef565b6020604051808303816000875af1925050508015611670575060408051601f3d908101601f1916820190925261166d9181019061212c565b60015b6116ca573d80801561169e576040519150601f19603f3d011682016040523d82523d6000602084013e6116a3565b606091505b5080516116c25760405162461bcd60e51b81526004016105f19061206c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061106e565b506001949350505050565b6001600160a01b03831661174a5761174581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61176d565b816001600160a01b0316836001600160a01b03161461176d5761176d83826117da565b6001600160a01b0382166117845761072781611877565b826001600160a01b0316826001600160a01b031614610727576107278282611926565b6117b1838361196a565b6117be60008484846115f1565b6107275760405162461bcd60e51b81526004016105f19061206c565b600060016117e784610ac2565b6117f19190611fbe565b600083815260076020526040902054909150808214611844576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061188990600190611fbe565b600083815260096020526040812054600880549394509092849081106118b1576118b1611f63565b9060005260206000200154905080600883815481106118d2576118d2611f63565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061190a5761190a6120d9565b6001900381819060005260206000200160009055905550505050565b600061193183610ac2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f1565b6000818152600260205260409020546001600160a01b031615611a255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f1565b611a31600083836114ee565b6001600160a01b0382166000908152600360205260408120805460019290611a5a908490611fd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ac490611ea2565b90600052602060002090601f016020900481019282611ae65760008555611b2c565b82601f10611aff57805160ff1916838001178555611b2c565b82800160010185558215611b2c579182015b82811115611b2c578251825591602001919060010190611b11565b50611b38929150611b3c565b5090565b5b80821115611b385760008155600101611b3d565b6001600160e01b031981168114610ee957600080fd5b600060208284031215611b7957600080fd5b813561122d81611b51565b60005b83811015611b9f578181015183820152602001611b87565b83811115610dce5750506000910152565b60008151808452611bc8816020860160208601611b84565b601f01601f19169290920160200192915050565b60208152600061122d6020830184611bb0565b600060208284031215611c0157600080fd5b5035919050565b80356001600160a01b0381168114611c1f57600080fd5b919050565b60008060408385031215611c3757600080fd5b611c4083611c08565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7f57611c7f611c4e565b604051601f8501601f19908116603f01168101908282118183101715611ca757611ca7611c4e565b81604052809350858152868686011115611cc057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cec57600080fd5b813567ffffffffffffffff811115611d0357600080fd5b8201601f81018413611d1457600080fd5b61106e84823560208401611c64565b600080600060608486031215611d3857600080fd5b611d4184611c08565b9250611d4f60208501611c08565b9150604084013590509250925092565b600060208284031215611d7157600080fd5b813561ffff8116811461122d57600080fd5b600060208284031215611d9557600080fd5b61122d82611c08565b80358015158114611c1f57600080fd5b600060208284031215611dc057600080fd5b61122d82611d9e565b60008060408385031215611ddc57600080fd5b611de583611c08565b9150611df360208401611d9e565b90509250929050565b60008060008060808587031215611e1257600080fd5b611e1b85611c08565b9350611e2960208601611c08565b925060408501359150606085013567ffffffffffffffff811115611e4c57600080fd5b8501601f81018713611e5d57600080fd5b611e6c87823560208401611c64565b91505092959194509250565b60008060408385031215611e8b57600080fd5b611e9483611c08565b9150611df360208401611c08565b600181811c90821680611eb657607f821691505b60208210811415611ed757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351611f8b818460208801611b84565b835190830190611f9f818360208801611b84565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b600082821015611fd057611fd0611fa8565b500390565b60008219821115611fe857611fe8611fa8565b500190565b600081600019048311821515161561200757612007611fa8565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826120315761203161200c565b500690565b600061ffff8083168181141561204e5761204e611fa8565b6001019392505050565b6000826120675761206761200c565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156120d2576120d2611fa8565b5060010190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212290830184611bb0565b9695505050505050565b60006020828403121561213e57600080fd5b815161122d81611b5156fea26469706673582212203a93877e3ee147c11acaa5727f9f23d2d9203bc0cf5fb93bedbde2ae218ece5a64736f6c634300080a0033

Deployed Bytecode Sourcemap

171:3718:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3674:212;;;;;;;;;;-1:-1:-1;3674:212:13;;;;;:::i;:::-;;:::i;:::-;;;565:14:14;;558:22;540:41;;528:2;513:18;3674:212:13;;;;;;;;2426:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:14;;;1674:51;;1662:2;1647:18;3985:221:3;1528:203:14;3508:411:3;;;;;;;;;;-1:-1:-1;3508:411:3;;;;;:::i;:::-;;:::i;:::-;;1577:113:4;;;;;;;;;;-1:-1:-1;1665:10:4;:17;1577:113;;;2319:25:14;;;2307:2;2292:18;1577:113:4;2173:177:14;2020:107:13;;;;;;;;;;-1:-1:-1;2020:107:13;;;;;:::i;:::-;;:::i;4875:339:3:-;;;;;;;;;;-1:-1:-1;4875:339:3;;;;;:::i;:::-;;:::i;902:453:13:-;;;;;;:::i;:::-;;:::i;1245:256:4:-;;;;;;;;;;-1:-1:-1;1245:256:4;;;;;:::i;:::-;;:::i;5285:185:3:-;;;;;;;;;;-1:-1:-1;5285:185:3;;;;;:::i;:::-;;:::i;1767:233:4:-;;;;;;;;;;-1:-1:-1;1767:233:4;;;;;:::i;:::-;;:::i;1376:88:13:-;;;;;;;;;;-1:-1:-1;1445:11:13;;-1:-1:-1;;;1445:11:13;;;;1376:88;;2120:239:3;;;;;;;;;;-1:-1:-1;2120:239:3;;;;;:::i;:::-;;:::i;1850:208::-;;;;;;;;;;-1:-1:-1;1850:208:3;;;;;:::i;:::-;;:::i;1650:94:10:-;;;;;;;;;;;;;:::i;1911::13:-;;;;;;;;;;-1:-1:-1;1911:94:13;;;;;:::i;:::-;;:::i;2136:421::-;;;;;;;;;;;;;:::i;999:87:10:-;;;;;;;;;;-1:-1:-1;1072:6:10;;-1:-1:-1;;;;;1072:6:10;999:87;;2595:104:3;;;;;;;;;;;;;:::i;4278:295::-;;;;;;;;;;-1:-1:-1;4278:295:3;;;;;:::i;:::-;;:::i;5541:328::-;;;;;;;;;;-1:-1:-1;5541:328:3;;;;;:::i;:::-;;:::i;1480:175:13:-;;;;;;;;;;-1:-1:-1;1480:175:13;;;;;:::i;:::-;;:::i;4644:164:3:-;;;;;;;;;;-1:-1:-1;4644:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:3;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;1663:210:13;;;;;;;;;;;;;:::i;1899:192:10:-;;;;;;;;;;-1:-1:-1;1899:192:10;;;;;:::i;:::-;;:::i;340:41:13:-;;;;;;;;;;;;377:4;340:41;;3674:212;3813:4;3842:36;3866:11;3842:23;:36::i;:::-;3835:43;3674:212;-1:-1:-1;;3674:212:13:o;2426:100:3:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:3;4081:73;;;;-1:-1:-1;;;4081:73:3;;6514:2:14;4081:73:3;;;6496:21:14;6553:2;6533:18;;;6526:30;6592:34;6572:18;;;6565:62;-1:-1:-1;;;6643:18:14;;;6636:42;6695:19;;4081:73:3;;;;;;;;;-1:-1:-1;4174:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:3;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:3;:2;-1:-1:-1;;;;;3647:11:3;;;3639:57;;;;-1:-1:-1;;;3639:57:3;;6927:2:14;3639:57:3;;;6909:21:14;6966:2;6946:18;;;6939:30;7005:34;6985:18;;;6978:62;-1:-1:-1;;;7056:18:14;;;7049:31;7097:19;;3639:57:3;6725:397:14;3639:57:3;682:10:1;-1:-1:-1;;;;;3731:21:3;;;;:62;;-1:-1:-1;3756:37:3;3773:5;682:10:1;4644:164:3;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:3;;7329:2:14;3709:168:3;;;7311:21:14;7368:2;7348:18;;;7341:30;7407:34;7387:18;;;7380:62;7478:26;7458:18;;;7451:54;7522:19;;3709:168:3;7127:420:14;3709:168:3;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;2020:107:13:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2097:22:13;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2020:107:::0;:::o;4875:339:3:-;5070:41;682:10:1;5103:7:3;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:3;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;902:453:13:-;1445:11;;-1:-1:-1;;;1445:11:13;;;;965:46;;;;-1:-1:-1;;;965:46:13;;8533:2:14;965:46:13;;;8515:21:14;8572:2;8552:18;;;8545:30;-1:-1:-1;;;8591:18:14;;;8584:49;8650:18;;965:46:13;8331:343:14;965:46:13;377:4;1030:33;1048:14;1030:33;;:13;1665:10:4;:17;;1577:113;1030:13:13;:17;;:33::i;:::-;:47;;1022:68;;;;-1:-1:-1;;;1022:68:13;;8881:2:14;1022:68:13;;;8863:21:14;8920:1;8900:18;;;8893:29;-1:-1:-1;;;8938:18:14;;;8931:38;8986:18;;1022:68:13;8679:331:14;1022:68:13;1125:1;1109:14;:17;;;;1101:60;;;;-1:-1:-1;;;1101:60:13;;9217:2:14;1101:60:13;;;9199:21:14;9256:2;9236:18;;;9229:30;9295:31;9275:18;;;9268:59;9344:18;;1101:60:13;9015:353:14;1101:60:13;1174:13;1190:17;:15;:17::i;:::-;1174:33;-1:-1:-1;1255:9:13;1226:25;1174:33;1226:25;;;:9;:25::i;:::-;:38;;1218:81;;;;-1:-1:-1;;;1218:81:13;;9575:2:14;1218:81:13;;;9557:21:14;9614:2;9594:18;;;9587:30;9653:32;9633:18;;;9626:60;9703:18;;1218:81:13;9373:354:14;1218:81:13;1320:27;1332:14;1320:11;:27::i;1245:256:4:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:4;;9934:2:14;1362:87:4;;;9916:21:14;9973:2;9953:18;;;9946:30;10012:34;9992:18;;;9985:62;-1:-1:-1;;;10063:18:14;;;10056:41;10114:19;;1362:87:4;9732:407:14;1362:87:4;-1:-1:-1;;;;;;1467:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;5285:185:3:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;1767:233:4:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:4;;10346:2:14;1862:95:4;;;10328:21:14;10385:2;10365:18;;;10358:30;10424:34;10404:18;;;10397:62;-1:-1:-1;;;10475:18:14;;;10468:42;10527:19;;1862:95:4;10144:408:14;1862:95:4;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;2120:239:3:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:3;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:3;;10891:2:14;2255:73:3;;;10873:21:14;10930:2;10910:18;;;10903:30;10969:34;10949:18;;;10942:62;-1:-1:-1;;;11020:18:14;;;11013:39;11069:19;;2255:73:3;10689:405:14;1850:208:3;1922:7;-1:-1:-1;;;;;1950:19:3;;1942:74;;;;-1:-1:-1;;;1942:74:3;;11301:2:14;1942:74:3;;;11283:21:14;11340:2;11320:18;;;11313:30;11379:34;11359:18;;;11352:62;-1:-1:-1;;;11430:18:14;;;11423:40;11480:19;;1942:74:3;11099:406:14;1942:74:3;-1:-1:-1;;;;;;2034:16:3;;;;;:9;:16;;;;;;;1850:208::o;1650:94:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1911::13:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;1977:11:13::1;:20:::0;;;::::1;;-1:-1:-1::0;;;1977:20:13::1;-1:-1:-1::0;;;;1977:20:13;;::::1;::::0;;;::::1;::::0;;1911:94::o;2136:421::-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2189:18:13::1;2210:38;2244:3;2210:29;:21;2236:2;2210:25;:29::i;:::-;:33:::0;::::1;:38::i;:::-;2189:59:::0;-1:-1:-1;2259:18:13::1;2280:38;2314:3;2280:29;:21;2306:2;2280:25;:29::i;:38::-;2259:59:::0;-1:-1:-1;2329:18:13::1;2350:38;2384:3;2350:29;:21;2376:2;2350:25;:29::i;:38::-;2415:5;::::0;2407:31:::1;::::0;2329:59;;-1:-1:-1;;;;;;2415:5:13::1;::::0;2407:31;::::1;;;::::0;2427:10;;2415:5:::1;2407:31:::0;2415:5;2407:31;2427:10;2415:5;2407:31;::::1;;;;;;2399:40;;;::::0;::::1;;2466:5;::::0;2458:31:::1;::::0;-1:-1:-1;;;;;2466:5:13;;::::1;::::0;2458:31;::::1;;;::::0;2478:10;;2466:5:::1;2458:31:::0;2466:5;2458:31;2478:10;2466:5;2458:31;::::1;;;;;;2450:40;;;::::0;::::1;;2517:5;::::0;2509:31:::1;::::0;-1:-1:-1;;;;;2517:5:13;;::::1;::::0;2509:31;::::1;;;::::0;2529:10;;2517:5:::1;2509:31:::0;2517:5;2509:31;2529:10;2517:5;2509:31;::::1;;;;;;2501:40;;;::::0;::::1;2595:104:3::0;2651:13;2684:7;2677:14;;;;;:::i;4278:295::-;-1:-1:-1;;;;;4381:24:3;;682:10:1;4381:24:3;;4373:62;;;;-1:-1:-1;;;4373:62:3;;11712:2:14;4373:62:3;;;11694:21:14;11751:2;11731:18;;;11724:30;11790:27;11770:18;;;11763:55;11835:18;;4373:62:3;11510:349:14;4373:62:3;682:10:1;4448:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:3;;;;;;;;;;4517:48;;540:41:14;;;4448:42:3;;682:10:1;4517:48:3;;513:18:14;4517:48:3;;;;;;;4278:295;;:::o;5541:328::-;5716:41;682:10:1;5749:7:3;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:3;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;1480:175:13:-;1545:13;1602:10;:8;:10::i;:::-;1618:27;1626:7;1618:25;:27::i;:::-;1585:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1571:76;;1480:175;;;:::o;1663:210::-;1711:7;1751:3;1735:13;1665:10:4;:17;;1577:113;1735:13:13;:19;1731:33;;;-1:-1:-1;1763:1:13;;1663:210::o;1731:33::-;1795:4;1779:13;1665:10:4;:17;;1577:113;1779:13:13;:20;1775:90;;;-1:-1:-1;1808:17:13;;1663:210::o;1775:90::-;-1:-1:-1;1848:17:13;;1663:210::o;1899:192:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:10;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:10;;12642:2:14;1980:73:10::1;::::0;::::1;12624:21:14::0;12681:2;12661:18;;;12654:30;12720:34;12700:18;;;12693:62;-1:-1:-1;;;12771:18:14;;;12764:36;12817:19;;1980:73:10::1;12440:402:14::0;1980:73:10::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;937:224:4:-;1039:4;-1:-1:-1;;;;;;1063:50:4;;-1:-1:-1;;;1063:50:4;;:90;;;1117:36;1141:11;1117:23;:36::i;11361:174:3:-;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:3;-1:-1:-1;;;;;11436:29:3;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:3;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:3;7783:73;;;;-1:-1:-1;;;7783:73:3;;13049:2:14;7783:73:3;;;13031:21:14;13088:2;13068:18;;;13061:30;13127:34;13107:18;;;13100:62;-1:-1:-1;;;13178:18:14;;;13171:42;13230:19;;7783:73:3;12847:408:14;7783:73:3;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:3;:7;-1:-1:-1;;;;;7925:16:3;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:3;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:3;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:3;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:3:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:3;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:3;;10789:85;;;;-1:-1:-1;;;10789:85:3;;13462:2:14;10789:85:3;;;13444:21:14;13501:2;13481:18;;;13474:30;13540:34;13520:18;;;13513:62;-1:-1:-1;;;13591:18:14;;;13584:39;13640:19;;10789:85:3;13260:405:14;10789:85:3;-1:-1:-1;;;;;10893:16:3;;10885:65;;;;-1:-1:-1;;;10885:65:3;;13872:2:14;10885:65:3;;;13854:21:14;13911:2;13891:18;;;13884:30;13950:34;13930:18;;;13923:62;-1:-1:-1;;;14001:18:14;;;13994:34;14045:19;;10885:65:3;13670:400:14;10885:65:3;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:3;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:3;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:3;-1:-1:-1;;;;;11169:21:3;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;2763:98:11:-;2821:7;2848:5;2852:1;2848;:5;:::i;:::-;2841:12;2763:98;-1:-1:-1;;;2763:98:11:o;3501:::-;3559:7;3586:5;3590:1;3586;:5;:::i;2598:430:13:-;2664:14;2726:16;2741:1;2726:12;:16;:::i;:::-;2699:45;;;2716:27;;2699:45;;;14772:19:14;14807:12;2699:45:13;;;;;;;;;;;;2689:56;;;;;;2681:65;;2664:82;;2764:8;2759:262;2782:14;2778:18;;:1;:18;;;2759:262;;;2874:6;:13;2849;;2865:22;;:6;:22;:::i;:::-;2849:38;;2902:14;2919:6;2926:5;2919:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;2902:30;;2947:14;2955:5;2947:6;:14::i;:::-;2978:30;2988:10;3000:7;2978:30;;:9;:30::i;:::-;2803:218;;2798:3;;;;;:::i;:::-;;;;2759:262;;2099:173:10;2174:6;;;-1:-1:-1;;;;;2191:17:10;;;-1:-1:-1;;;;;;2191:17:10;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;3900:98:11:-;3958:7;3985:5;3989:1;3985;:5;:::i;6751:315:3:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:3;;;;;;;:::i;3273:105:13:-;3325:13;3358:12;3351:19;;;;;:::i;288:723:12:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:12;;;;;;;;;;;;-1:-1:-1;;;592:10:12;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:12;;-1:-1:-1;744:2:12;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:12;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:12;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:12;;;;;;;;-1:-1:-1;949:11:12;958:2;949:11;;:::i;:::-;;;818:154;;1481:305:3;1583:4;-1:-1:-1;;;;;;1620:40:3;;-1:-1:-1;;;1620:40:3;;:105;;-1:-1:-1;;;;;;;1677:48:3;;-1:-1:-1;;;1677:48:3;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:2;;;1742:36:3;787:157:2;3462:204:13;3613:45;3640:4;3646:2;3650:7;3613:26;:45::i;3036:223::-;3097:6;:13;3088:22;;3084:35;;3036:223;:::o;3084:35::-;3136:6;:13;3152:1;-1:-1:-1;3132:97:13;;;3186:6;3193:13;;:15;;3207:1;;3193:15;:::i;:::-;3186:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;3170:6;3177:5;3170:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;3132:97;3239:6;:12;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;3239:12:13;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3036:223:13:o;8363:110:3:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;12100:799::-;12255:4;-1:-1:-1;;;;;12276:13:3;;1066:20:0;1114:8;12272:620:3;;12312:72;;-1:-1:-1;;;12312:72:3;;-1:-1:-1;;;;;12312:36:3;;;;;:72;;682:10:1;;12363:4:3;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:3;;;;;;;;-1:-1:-1;;12312:72:3;;;;;;;;;;;;:::i;:::-;;;12308:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12554:13:3;;12550:272;;12597:60;;-1:-1:-1;;;12597:60:3;;;;;;;:::i;12550:272::-;12772:6;12766:13;12757:6;12753:2;12749:15;12742:38;12308:529;-1:-1:-1;;;;;;12435:51:3;-1:-1:-1;;;12435:51:3;;-1:-1:-1;12428:58:3;;12272:620;-1:-1:-1;12876:4:3;12100:799;;;;;;:::o;2613:589:4:-;-1:-1:-1;;;;;2819:18:4;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:4;:4;-1:-1:-1;;;;;2916:10:4;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:4;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:4;:2;-1:-1:-1;;;;;3116:10:4;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;8700:321:3:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:3;;;;;;;:::i;4716:988:4:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:4;;;5194:328;;-1:-1:-1;;;;;5265:18:4;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:4;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:4;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:4;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:4:o;9357:382:3:-;-1:-1:-1;;;;;9437:16:3;;9429:61;;;;-1:-1:-1;;;9429:61:3;;17047:2:14;9429:61:3;;;17029:21:14;;;17066:18;;;17059:30;17125:34;17105:18;;;17098:62;17177:18;;9429:61:3;16845:356:14;9429:61:3;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:3;:30;9501:58;;;;-1:-1:-1;;;9501:58:3;;17408:2:14;9501:58:3;;;17390:21:14;17447:2;17427:18;;;17420:30;17486;17466:18;;;17459:58;17534:18;;9501:58:3;17206:352:14;9501:58:3;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:3;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:3;-1:-1:-1;;;;;9659:21:3;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:14;-1:-1:-1;;;;;;88:32:14;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:14;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:14;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:14:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:14;;1343:180;-1:-1:-1;1343:180:14:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:14;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:14:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;2582:18;2623:2;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:14;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;3335:18;3327:6;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:14;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:272::-;3971:6;4024:2;4012:9;4003:7;3999:23;3995:32;3992:52;;;4040:1;4037;4030:12;3992:52;4079:9;4066:23;4129:6;4122:5;4118:18;4111:5;4108:29;4098:57;;4151:1;4148;4141:12;4190:186;4249:6;4302:2;4290:9;4281:7;4277:23;4273:32;4270:52;;;4318:1;4315;4308:12;4270:52;4341:29;4360:9;4341:29;:::i;4381:160::-;4446:20;;4502:13;;4495:21;4485:32;;4475:60;;4531:1;4528;4521:12;4546:180;4602:6;4655:2;4643:9;4634:7;4630:23;4626:32;4623:52;;;4671:1;4668;4661:12;4623:52;4694:26;4710:9;4694:26;:::i;4731:254::-;4796:6;4804;4857:2;4845:9;4836:7;4832:23;4828:32;4825:52;;;4873:1;4870;4863:12;4825:52;4896:29;4915:9;4896:29;:::i;:::-;4886:39;;4944:35;4975:2;4964:9;4960:18;4944:35;:::i;:::-;4934:45;;4731:254;;;;;:::o;4990:667::-;5085:6;5093;5101;5109;5162:3;5150:9;5141:7;5137:23;5133:33;5130:53;;;5179:1;5176;5169:12;5130:53;5202:29;5221:9;5202:29;:::i;:::-;5192:39;;5250:38;5284:2;5273:9;5269:18;5250:38;:::i;:::-;5240:48;;5335:2;5324:9;5320:18;5307:32;5297:42;;5390:2;5379:9;5375:18;5362:32;5417:18;5409:6;5406:30;5403:50;;;5449:1;5446;5439:12;5403:50;5472:22;;5525:4;5517:13;;5513:27;-1:-1:-1;5503:55:14;;5554:1;5551;5544:12;5503:55;5577:74;5643:7;5638:2;5625:16;5620:2;5616;5612:11;5577:74;:::i;:::-;5567:84;;;4990:667;;;;;;;:::o;5662:260::-;5730:6;5738;5791:2;5779:9;5770:7;5766:23;5762:32;5759:52;;;5807:1;5804;5797:12;5759:52;5830:29;5849:9;5830:29;:::i;:::-;5820:39;;5878:38;5912:2;5901:9;5897:18;5878:38;:::i;5927:380::-;6006:1;6002:12;;;;6049;;;6070:61;;6124:4;6116:6;6112:17;6102:27;;6070:61;6177:2;6169:6;6166:14;6146:18;6143:38;6140:161;;;6223:10;6218:3;6214:20;6211:1;6204:31;6258:4;6255:1;6248:15;6286:4;6283:1;6276:15;6140:161;;5927:380;;;:::o;7552:356::-;7754:2;7736:21;;;7773:18;;;7766:30;7832:34;7827:2;7812:18;;7805:62;7899:2;7884:18;;7552:356::o;7913:413::-;8115:2;8097:21;;;8154:2;8134:18;;;8127:30;8193:34;8188:2;8173:18;;8166:62;-1:-1:-1;;;8259:2:14;8244:18;;8237:47;8316:3;8301:19;;7913:413::o;10557:127::-;10618:10;10613:3;10609:20;10606:1;10599:31;10649:4;10646:1;10639:15;10673:4;10670:1;10663:15;11864:571;12144:3;12182:6;12176:13;12198:53;12244:6;12239:3;12232:4;12224:6;12220:17;12198:53;:::i;:::-;12314:13;;12273:16;;;;12336:57;12314:13;12273:16;12370:4;12358:17;;12336:57;:::i;:::-;12409:20;;11864:571;-1:-1:-1;;;;11864:571:14:o;14075:127::-;14136:10;14131:3;14127:20;14124:1;14117:31;14167:4;14164:1;14157:15;14191:4;14188:1;14181:15;14207:125;14247:4;14275:1;14272;14269:8;14266:34;;;14280:18;;:::i;:::-;-1:-1:-1;14317:9:14;;14207:125::o;14337:128::-;14377:3;14408:1;14404:6;14401:1;14398:13;14395:39;;;14414:18;;:::i;:::-;-1:-1:-1;14450:9:14;;14337:128::o;14470:168::-;14510:7;14576:1;14572;14568:6;14564:14;14561:1;14558:21;14553:1;14546:9;14539:17;14535:45;14532:71;;;14583:18;;:::i;:::-;-1:-1:-1;14623:9:14;;14470:168::o;14830:127::-;14891:10;14886:3;14882:20;14879:1;14872:31;14922:4;14919:1;14912:15;14946:4;14943:1;14936:15;14962:112;14994:1;15020;15010:35;;15025:18;;:::i;:::-;-1:-1:-1;15059:9:14;;14962:112::o;15079:197::-;15117:3;15145:6;15186:2;15179:5;15175:14;15213:2;15204:7;15201:15;15198:41;;;15219:18;;:::i;:::-;15268:1;15255:15;;15079:197;-1:-1:-1;;;15079:197:14:o;15281:120::-;15321:1;15347;15337:35;;15352:18;;:::i;:::-;-1:-1:-1;15386:9:14;;15281:120::o;15406:414::-;15608:2;15590:21;;;15647:2;15627:18;;;15620:30;15686:34;15681:2;15666:18;;15659:62;-1:-1:-1;;;15752:2:14;15737:18;;15730:48;15810:3;15795:19;;15406:414::o;15825:135::-;15864:3;-1:-1:-1;;15885:17:14;;15882:43;;;15905:18;;:::i;:::-;-1:-1:-1;15952:1:14;15941:13;;15825:135::o;15965:127::-;16026:10;16021:3;16017:20;16014:1;16007:31;16057:4;16054:1;16047:15;16081:4;16078:1;16071:15;16097:489;-1:-1:-1;;;;;16366:15:14;;;16348:34;;16418:15;;16413:2;16398:18;;16391:43;16465:2;16450:18;;16443:34;;;16513:3;16508:2;16493:18;;16486:31;;;16291:4;;16534:46;;16560:19;;16552:6;16534:46;:::i;:::-;16526:54;16097:489;-1:-1:-1;;;;;;16097:489:14:o;16591:249::-;16660:6;16713:2;16701:9;16692:7;16688:23;16684:32;16681:52;;;16729:1;16726;16719:12;16681:52;16761:9;16755:16;16780:30;16804:5;16780:30;:::i

Swarm Source

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