ETH Price: $2,871.58 (-9.14%)
Gas: 10 Gwei

Token

Fable Dragons by Tyrant (FABLE)
 

Overview

Max Total Supply

750 FABLE

Holders

182

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
burnttokens.eth
Balance
5 FABLE
0x0b8207ec94676910CedBa3b5a07eD2BBA3f93c2e
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:
Tyrant

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

contract Tyrant is ERC721, ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    
    // Set variables
    
    uint256 public constant TYRANT_SUPPLY = 750;
    uint256 public constant PRICE = 55000000000000000;
    
    bool private _saleActive = false;
    
    address team = 0x6BD72A62bd476BC7113010CB939EE39fA80D6a19;
    address sens = 0x542EFf118023cfF2821b24156a507a513Fe93539;

    address VB = 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045;

    string private _metaBaseUri = "";
    
    // Public Functions
    
    constructor() ERC721("Fable Dragons by Tyrant", "FABLE") {
        _safeMint(VB, 1);
        _mintTokens(25);
    }
    
    
    function mint(uint16 numberOfTokens) public payable {
        require(isSaleActive(), "Tyrant sale not active");
        require(totalSupply().add(numberOfTokens) <= TYRANT_SUPPLY, "Try less");
        require(numberOfTokens<=5, "Max mint per transaction is 5" );
        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()));
    }

    
    // Owner Functions

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

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


   function withdrawAll() external onlyOwner {
        uint256 _50percent = address(this).balance.div(2);
        require(payable(team).send(_50percent));
        require(payable(sens).send(_50percent));      
    }

    // Internal Functions
    
    function _mintTokens(uint16 numberOfTokens) internal {
        for (uint16 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = totalSupply() + 1;
            _safeMint(msg.sender, tokenId);
        }
    }

    
    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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TYRANT_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":[{"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"}]

60806040526000600a60146101000a81548160ff021916908315150217905550736bd72a62bd476bc7113010cb939ee39fa80d6a19600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073542eff118023cff2821b24156a507a513fe93539600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d8da6bf26964af9d7eed9e03e53415d37aa96045600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600e90805190602001906200014592919062000da4565b503480156200015357600080fd5b506040518060400160405280601781526020017f4661626c6520447261676f6e7320627920547972616e740000000000000000008152506040518060400160405280600581526020017f4641424c450000000000000000000000000000000000000000000000000000008152508160009080519060200190620001d892919062000da4565b508060019080519060200190620001f192919062000da4565b50505062000214620002086200026160201b60201c565b6200026960201b60201c565b62000249600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200032f60201b60201c565b6200025b60196200035560201b60201c565b6200142d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000351828260405180602001604052806000815250620003b860201b60201c565b5050565b60005b8161ffff168161ffff161015620003b457600060016200037d6200042660201b60201c565b620003899190620010a5565b90506200039d33826200032f60201b60201c565b508080620003ab9062001221565b91505062000358565b5050565b620003ca83836200043360201b60201c565b620003df60008484846200061960201b60201c565b62000421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004189062000ff0565b60405180910390fd5b505050565b6000600880549050905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049d9062001056565b60405180910390fd5b620004b781620007d360201b60201c565b15620004fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f19062001012565b60405180910390fd5b6200050e600083836200083f60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005609190620010a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006478473ffffffffffffffffffffffffffffffffffffffff166200085c60201b620014731760201c565b15620007c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006796200026160201b60201c565b8786866040518563ffffffff1660e01b81526004016200069d949392919062000f9c565b602060405180830381600087803b158015620006b857600080fd5b505af1925050508015620006ec57506040513d601f19601f82011682018060405250810190620006e9919062000e6b565b60015b62000775573d80600081146200071f576040519150601f19603f3d011682016040523d82523d6000602084013e62000724565b606091505b506000815114156200076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007649062000ff0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007cb565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008578383836200086f60201b620014861760201c565b505050565b600080823b905060008111915050919050565b62000887838383620009b660201b6200159a1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008d457620008ce81620009bb60201b60201c565b6200091c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200091b576200091a838262000a0460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200096957620009638162000b8160201b60201c565b620009b1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009b057620009af828262000c5d60201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a1e8462000ce960201b62000cd31760201c565b62000a2a919062001102565b905060006007600084815260200190815260200160002054905081811462000b10576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b97919062001102565b905060006009600084815260200190815260200160002054905060006008838154811062000bca5762000bc9620012de565b5b90600052602060002001549050806008838154811062000bef5762000bee620012de565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000c415762000c40620012af565b5b6001900381819060005260206000200160009055905550505050565b600062000c758362000ce960201b62000cd31760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d549062001034565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000db290620011eb565b90600052602060002090601f01602090048101928262000dd6576000855562000e22565b82601f1062000df157805160ff191683800117855562000e22565b8280016001018555821562000e22579182015b8281111562000e2157825182559160200191906001019062000e04565b5b50905062000e31919062000e35565b5090565b5b8082111562000e5057600081600090555060010162000e36565b5090565b60008151905062000e658162001413565b92915050565b60006020828403121562000e845762000e836200130d565b5b600062000e948482850162000e54565b91505092915050565b62000ea8816200113d565b82525050565b600062000ebb8262001078565b62000ec7818562001083565b935062000ed9818560208601620011b5565b62000ee48162001312565b840191505092915050565b600062000efe60328362001094565b915062000f0b8262001323565b604082019050919050565b600062000f25601c8362001094565b915062000f328262001372565b602082019050919050565b600062000f4c602a8362001094565b915062000f59826200139b565b604082019050919050565b600062000f7360208362001094565b915062000f8082620013ea565b602082019050919050565b62000f9681620011ab565b82525050565b600060808201905062000fb3600083018762000e9d565b62000fc2602083018662000e9d565b62000fd1604083018562000f8b565b818103606083015262000fe5818462000eae565b905095945050505050565b600060208201905081810360008301526200100b8162000eef565b9050919050565b600060208201905081810360008301526200102d8162000f16565b9050919050565b600060208201905081810360008301526200104f8162000f3d565b9050919050565b60006020820190508181036000830152620010718162000f64565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620010b282620011ab565b9150620010bf83620011ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010f757620010f662001251565b5b828201905092915050565b60006200110f82620011ab565b91506200111c83620011ab565b92508282101562001132576200113162001251565b5b828203905092915050565b60006200114a826200118b565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620011d5578082015181840152602081019050620011b8565b83811115620011e5576000848401525b50505050565b600060028204905060018216806200120457607f821691505b602082108114156200121b576200121a62001280565b5b50919050565b60006200122e826200117d565b915061ffff82141562001246576200124562001251565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200141e8162001151565b81146200142a57600080fd5b50565b613d93806200143d6000396000f3fe6080604052600436106101815760003560e01c8063679055da116100d15780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde14610561578063c87b56dd1461058a578063e985e9c5146105c7578063f2fde38b1461060457610181565b80638da5cb5b146104e257806395d89b411461050d578063a22cb4651461053857610181565b8063679055da146103f857806370a0823114610423578063715018a614610460578063841718a614610477578063853828b6146104a05780638d859f3e146104b757610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461032a5780634f6ccce714610353578063564566a8146103905780636352211e146103bb57610181565b806323b872dd146102a857806323cf0a22146102d15780632f745c59146102ed57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806318d272eb1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612a55565b61062d565b6040516101ba9190612fba565b60405180910390f35b3480156101cf57600080fd5b506101d861063f565b6040516101e59190612fd5565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612b25565b6106d1565b6040516102229190612f53565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906129e8565b610756565b005b34801561026057600080fd5b5061026961086e565b6040516102769190613297565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612aaf565b61087b565b005b3480156102b457600080fd5b506102cf60048036038101906102ca91906128d2565b610911565b005b6102eb60048036038101906102e69190612af8565b610971565b005b3480156102f957600080fd5b50610314600480360381019061030f91906129e8565b610ace565b6040516103219190613297565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906128d2565b610b73565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612b25565b610b93565b6040516103879190613297565b60405180910390f35b34801561039c57600080fd5b506103a5610c04565b6040516103b29190612fba565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612b25565b610c1b565b6040516103ef9190612f53565b60405180910390f35b34801561040457600080fd5b5061040d610ccd565b60405161041a9190613297565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612865565b610cd3565b6040516104579190613297565b60405180910390f35b34801561046c57600080fd5b50610475610d8b565b005b34801561048357600080fd5b5061049e60048036038101906104999190612a28565b610e13565b005b3480156104ac57600080fd5b506104b5610eac565b005b3480156104c357600080fd5b506104cc611003565b6040516104d99190613297565b60405180910390f35b3480156104ee57600080fd5b506104f761100e565b6040516105049190612f53565b60405180910390f35b34801561051957600080fd5b50610522611038565b60405161052f9190612fd5565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a91906129a8565b6110ca565b005b34801561056d57600080fd5b5061058860048036038101906105839190612925565b61124b565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612b25565b6112ad565b6040516105be9190612fd5565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612892565b6112e7565b6040516105fb9190612fba565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612865565b61137b565b005b60006106388261159f565b9050919050565b60606000805461064e90613555565b80601f016020809104026020016040519081016040528092919081815260200182805461067a90613555565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106dc82611619565b61071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290613197565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076182610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990613217565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f1611685565b73ffffffffffffffffffffffffffffffffffffffff161480610820575061081f8161081a611685565b6112e7565b5b61085f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610856906130f7565b60405180910390fd5b610869838361168d565b505050565b6000600880549050905090565b610883611685565b73ffffffffffffffffffffffffffffffffffffffff166108a161100e565b73ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee906131b7565b60405180910390fd5b80600e908051906020019061090d929190612664565b5050565b61092261091c611685565b82611746565b610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613237565b60405180910390fd5b61096c838383611824565b505050565b610979610c04565b6109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906130d7565b60405180910390fd5b6102ee6109d98261ffff166109cb61086e565b611a8090919063ffffffff16565b1115610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906131f7565b60405180910390fd5b60058161ffff161115610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613177565b60405180910390fd5b34610a818261ffff1666c3663566a58000611a9690919063ffffffff16565b1115610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990613277565b60405180910390fd5b610acb81611aac565b50565b6000610ad983610cd3565b8210610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190612ff7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b8e8383836040518060200160405280600081525061124b565b505050565b6000610b9d61086e565b8210610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613257565b60405180910390fd5b60088281548110610bf257610bf1613719565b5b90600052602060002001549050919050565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613137565b60405180910390fd5b80915050919050565b6102ee81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613117565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d93611685565b73ffffffffffffffffffffffffffffffffffffffff16610db161100e565b73ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906131b7565b60405180910390fd5b610e116000611af9565b565b610e1b611685565b73ffffffffffffffffffffffffffffffffffffffff16610e3961100e565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906131b7565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b610eb4611685565b73ffffffffffffffffffffffffffffffffffffffff16610ed261100e565b73ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906131b7565b60405180910390fd5b6000610f3e600247611bbf90919063ffffffff16565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610fa057600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061100057600080fd5b50565b66c3663566a5800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461104790613555565b80601f016020809104026020016040519081016040528092919081815260200182805461107390613555565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b5050505050905090565b6110d2611685565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613097565b60405180910390fd5b806005600061114d611685565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111fa611685565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123f9190612fba565b60405180910390a35050565b61125c611256611685565b83611746565b61129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613237565b60405180910390fd5b6112a784848484611bd5565b50505050565b60606112b7611c31565b6112c083611cc3565b6040516020016112d1929190612f24565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611383611685565b73ffffffffffffffffffffffffffffffffffffffff166113a161100e565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee906131b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613037565b60405180910390fd5b61147081611af9565b50565b600080823b905060008111915050919050565b61149183838361159a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d4576114cf81611e24565b611513565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611512576115118382611e6d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115565761155181611fda565b611595565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146115945761159382826120ab565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161257506116118261212a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661170083610c1b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061175182611619565b611790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611787906130b7565b60405180910390fd5b600061179b83610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061180a57508373ffffffffffffffffffffffffffffffffffffffff166117f2846106d1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061181b575061181a81856112e7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661184482610c1b565b73ffffffffffffffffffffffffffffffffffffffff161461189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906131d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190190613077565b60405180910390fd5b61191583838361220c565b61192060008261168d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611970919061345d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c7919061337c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611a8e919061337c565b905092915050565b60008183611aa49190613403565b905092915050565b60005b8161ffff168161ffff161015611af55760006001611acb61086e565b611ad5919061337c565b9050611ae1338261221c565b508080611aed906135b8565b915050611aaf565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611bcd91906133d2565b905092915050565b611be0848484611824565b611bec8484848461223a565b611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613017565b60405180910390fd5b50505050565b6060600e8054611c4090613555565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6c90613555565b8015611cb95780601f10611c8e57610100808354040283529160200191611cb9565b820191906000526020600020905b815481529060010190602001808311611c9c57829003601f168201915b5050505050905090565b60606000821415611d0b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e1f565b600082905060005b60008214611d3d578080611d26906135e3565b915050600a82611d3691906133d2565b9150611d13565b60008167ffffffffffffffff811115611d5957611d58613748565b5b6040519080825280601f01601f191660200182016040528015611d8b5781602001600182028036833780820191505090505b5090505b60008514611e1857600182611da4919061345d565b9150600a85611db3919061362c565b6030611dbf919061337c565b60f81b818381518110611dd557611dd4613719565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e1191906133d2565b9450611d8f565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e7a84610cd3565b611e84919061345d565b9050600060076000848152602001908152602001600020549050818114611f69576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fee919061345d565b905060006009600084815260200190815260200160002054905060006008838154811061201e5761201d613719565b5b9060005260206000200154905080600883815481106120405761203f613719565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061208f5761208e6136ea565b5b6001900381819060005260206000200160009055905550505050565b60006120b683610cd3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122055750612204826123d1565b5b9050919050565b612217838383611486565b505050565b61223682826040518060200160405280600081525061243b565b5050565b600061225b8473ffffffffffffffffffffffffffffffffffffffff16611473565b156123c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612284611685565b8786866040518563ffffffff1660e01b81526004016122a69493929190612f6e565b602060405180830381600087803b1580156122c057600080fd5b505af19250505080156122f157506040513d601f19601f820116820180604052508101906122ee9190612a82565b60015b612374573d8060008114612321576040519150601f19603f3d011682016040523d82523d6000602084013e612326565b606091505b5060008151141561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390613017565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123c9565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124458383612496565b612452600084848461223a565b612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890613017565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90613157565b60405180910390fd5b61250f81611619565b1561254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690613057565b60405180910390fd5b61255b6000838361220c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ab919061337c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461267090613555565b90600052602060002090601f01602090048101928261269257600085556126d9565b82601f106126ab57805160ff19168380011785556126d9565b828001600101855582156126d9579182015b828111156126d85782518255916020019190600101906126bd565b5b5090506126e691906126ea565b5090565b5b808211156127035760008160009055506001016126eb565b5090565b600061271a612715846132d7565b6132b2565b9050828152602081018484840111156127365761273561377c565b5b612741848285613513565b509392505050565b600061275c61275784613308565b6132b2565b9050828152602081018484840111156127785761277761377c565b5b612783848285613513565b509392505050565b60008135905061279a81613cea565b92915050565b6000813590506127af81613d01565b92915050565b6000813590506127c481613d18565b92915050565b6000815190506127d981613d18565b92915050565b600082601f8301126127f4576127f3613777565b5b8135612804848260208601612707565b91505092915050565b600082601f83011261282257612821613777565b5b8135612832848260208601612749565b91505092915050565b60008135905061284a81613d2f565b92915050565b60008135905061285f81613d46565b92915050565b60006020828403121561287b5761287a613786565b5b60006128898482850161278b565b91505092915050565b600080604083850312156128a9576128a8613786565b5b60006128b78582860161278b565b92505060206128c88582860161278b565b9150509250929050565b6000806000606084860312156128eb576128ea613786565b5b60006128f98682870161278b565b935050602061290a8682870161278b565b925050604061291b86828701612850565b9150509250925092565b6000806000806080858703121561293f5761293e613786565b5b600061294d8782880161278b565b945050602061295e8782880161278b565b935050604061296f87828801612850565b925050606085013567ffffffffffffffff8111156129905761298f613781565b5b61299c878288016127df565b91505092959194509250565b600080604083850312156129bf576129be613786565b5b60006129cd8582860161278b565b92505060206129de858286016127a0565b9150509250929050565b600080604083850312156129ff576129fe613786565b5b6000612a0d8582860161278b565b9250506020612a1e85828601612850565b9150509250929050565b600060208284031215612a3e57612a3d613786565b5b6000612a4c848285016127a0565b91505092915050565b600060208284031215612a6b57612a6a613786565b5b6000612a79848285016127b5565b91505092915050565b600060208284031215612a9857612a97613786565b5b6000612aa6848285016127ca565b91505092915050565b600060208284031215612ac557612ac4613786565b5b600082013567ffffffffffffffff811115612ae357612ae2613781565b5b612aef8482850161280d565b91505092915050565b600060208284031215612b0e57612b0d613786565b5b6000612b1c8482850161283b565b91505092915050565b600060208284031215612b3b57612b3a613786565b5b6000612b4984828501612850565b91505092915050565b612b5b81613491565b82525050565b612b6a816134a3565b82525050565b6000612b7b82613339565b612b85818561334f565b9350612b95818560208601613522565b612b9e8161378b565b840191505092915050565b6000612bb482613344565b612bbe8185613360565b9350612bce818560208601613522565b612bd78161378b565b840191505092915050565b6000612bed82613344565b612bf78185613371565b9350612c07818560208601613522565b80840191505092915050565b6000612c20602b83613360565b9150612c2b8261379c565b604082019050919050565b6000612c43603283613360565b9150612c4e826137eb565b604082019050919050565b6000612c66602683613360565b9150612c718261383a565b604082019050919050565b6000612c89601c83613360565b9150612c9482613889565b602082019050919050565b6000612cac602483613360565b9150612cb7826138b2565b604082019050919050565b6000612ccf601983613360565b9150612cda82613901565b602082019050919050565b6000612cf2602c83613360565b9150612cfd8261392a565b604082019050919050565b6000612d15601683613360565b9150612d2082613979565b602082019050919050565b6000612d38603883613360565b9150612d43826139a2565b604082019050919050565b6000612d5b602a83613360565b9150612d66826139f1565b604082019050919050565b6000612d7e602983613360565b9150612d8982613a40565b604082019050919050565b6000612da1602083613360565b9150612dac82613a8f565b602082019050919050565b6000612dc4601d83613360565b9150612dcf82613ab8565b602082019050919050565b6000612de7602c83613360565b9150612df282613ae1565b604082019050919050565b6000612e0a602083613360565b9150612e1582613b30565b602082019050919050565b6000612e2d602983613360565b9150612e3882613b59565b604082019050919050565b6000612e50600883613360565b9150612e5b82613ba8565b602082019050919050565b6000612e73602183613360565b9150612e7e82613bd1565b604082019050919050565b6000612e96600083613371565b9150612ea182613c20565b600082019050919050565b6000612eb9603183613360565b9150612ec482613c23565b604082019050919050565b6000612edc602c83613360565b9150612ee782613c72565b604082019050919050565b6000612eff601e83613360565b9150612f0a82613cc1565b602082019050919050565b612f1e81613509565b82525050565b6000612f308285612be2565b9150612f3b82612e89565b9150612f478284612be2565b91508190509392505050565b6000602082019050612f686000830184612b52565b92915050565b6000608082019050612f836000830187612b52565b612f906020830186612b52565b612f9d6040830185612f15565b8181036060830152612faf8184612b70565b905095945050505050565b6000602082019050612fcf6000830184612b61565b92915050565b60006020820190508181036000830152612fef8184612ba9565b905092915050565b6000602082019050818103600083015261301081612c13565b9050919050565b6000602082019050818103600083015261303081612c36565b9050919050565b6000602082019050818103600083015261305081612c59565b9050919050565b6000602082019050818103600083015261307081612c7c565b9050919050565b6000602082019050818103600083015261309081612c9f565b9050919050565b600060208201905081810360008301526130b081612cc2565b9050919050565b600060208201905081810360008301526130d081612ce5565b9050919050565b600060208201905081810360008301526130f081612d08565b9050919050565b6000602082019050818103600083015261311081612d2b565b9050919050565b6000602082019050818103600083015261313081612d4e565b9050919050565b6000602082019050818103600083015261315081612d71565b9050919050565b6000602082019050818103600083015261317081612d94565b9050919050565b6000602082019050818103600083015261319081612db7565b9050919050565b600060208201905081810360008301526131b081612dda565b9050919050565b600060208201905081810360008301526131d081612dfd565b9050919050565b600060208201905081810360008301526131f081612e20565b9050919050565b6000602082019050818103600083015261321081612e43565b9050919050565b6000602082019050818103600083015261323081612e66565b9050919050565b6000602082019050818103600083015261325081612eac565b9050919050565b6000602082019050818103600083015261327081612ecf565b9050919050565b6000602082019050818103600083015261329081612ef2565b9050919050565b60006020820190506132ac6000830184612f15565b92915050565b60006132bc6132cd565b90506132c88282613587565b919050565b6000604051905090565b600067ffffffffffffffff8211156132f2576132f1613748565b5b6132fb8261378b565b9050602081019050919050565b600067ffffffffffffffff82111561332357613322613748565b5b61332c8261378b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061338782613509565b915061339283613509565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c7576133c661365d565b5b828201905092915050565b60006133dd82613509565b91506133e883613509565b9250826133f8576133f761368c565b5b828204905092915050565b600061340e82613509565b915061341983613509565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134525761345161365d565b5b828202905092915050565b600061346882613509565b915061347383613509565b9250828210156134865761348561365d565b5b828203905092915050565b600061349c826134e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613540578082015181840152602081019050613525565b8381111561354f576000848401525b50505050565b6000600282049050600182168061356d57607f821691505b60208210811415613581576135806136bb565b5b50919050565b6135908261378b565b810181811067ffffffffffffffff821117156135af576135ae613748565b5b80604052505050565b60006135c3826134db565b915061ffff8214156135d8576135d761365d565b5b600182019050919050565b60006135ee82613509565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136215761362061365d565b5b600182019050919050565b600061363782613509565b915061364283613509565b9250826136525761365161368c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f547972616e742073616c65206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6178206d696e7420706572207472616e73616374696f6e2069732035000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f547279206c657373000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f457468657220616d6f756e742073656e7420697320696e636f72726563740000600082015250565b613cf381613491565b8114613cfe57600080fd5b50565b613d0a816134a3565b8114613d1557600080fd5b50565b613d21816134af565b8114613d2c57600080fd5b50565b613d38816134db565b8114613d4357600080fd5b50565b613d4f81613509565b8114613d5a57600080fd5b5056fea26469706673582212208cc36f94a57672bf5432a64740a1e3c244d2beabaa6bc137f781fc3fc6ef1f5764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063679055da116100d15780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde14610561578063c87b56dd1461058a578063e985e9c5146105c7578063f2fde38b1461060457610181565b80638da5cb5b146104e257806395d89b411461050d578063a22cb4651461053857610181565b8063679055da146103f857806370a0823114610423578063715018a614610460578063841718a614610477578063853828b6146104a05780638d859f3e146104b757610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461032a5780634f6ccce714610353578063564566a8146103905780636352211e146103bb57610181565b806323b872dd146102a857806323cf0a22146102d15780632f745c59146102ed57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806318d272eb1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612a55565b61062d565b6040516101ba9190612fba565b60405180910390f35b3480156101cf57600080fd5b506101d861063f565b6040516101e59190612fd5565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612b25565b6106d1565b6040516102229190612f53565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906129e8565b610756565b005b34801561026057600080fd5b5061026961086e565b6040516102769190613297565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612aaf565b61087b565b005b3480156102b457600080fd5b506102cf60048036038101906102ca91906128d2565b610911565b005b6102eb60048036038101906102e69190612af8565b610971565b005b3480156102f957600080fd5b50610314600480360381019061030f91906129e8565b610ace565b6040516103219190613297565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906128d2565b610b73565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612b25565b610b93565b6040516103879190613297565b60405180910390f35b34801561039c57600080fd5b506103a5610c04565b6040516103b29190612fba565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612b25565b610c1b565b6040516103ef9190612f53565b60405180910390f35b34801561040457600080fd5b5061040d610ccd565b60405161041a9190613297565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612865565b610cd3565b6040516104579190613297565b60405180910390f35b34801561046c57600080fd5b50610475610d8b565b005b34801561048357600080fd5b5061049e60048036038101906104999190612a28565b610e13565b005b3480156104ac57600080fd5b506104b5610eac565b005b3480156104c357600080fd5b506104cc611003565b6040516104d99190613297565b60405180910390f35b3480156104ee57600080fd5b506104f761100e565b6040516105049190612f53565b60405180910390f35b34801561051957600080fd5b50610522611038565b60405161052f9190612fd5565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a91906129a8565b6110ca565b005b34801561056d57600080fd5b5061058860048036038101906105839190612925565b61124b565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612b25565b6112ad565b6040516105be9190612fd5565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190612892565b6112e7565b6040516105fb9190612fba565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612865565b61137b565b005b60006106388261159f565b9050919050565b60606000805461064e90613555565b80601f016020809104026020016040519081016040528092919081815260200182805461067a90613555565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106dc82611619565b61071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290613197565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076182610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990613217565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f1611685565b73ffffffffffffffffffffffffffffffffffffffff161480610820575061081f8161081a611685565b6112e7565b5b61085f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610856906130f7565b60405180910390fd5b610869838361168d565b505050565b6000600880549050905090565b610883611685565b73ffffffffffffffffffffffffffffffffffffffff166108a161100e565b73ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee906131b7565b60405180910390fd5b80600e908051906020019061090d929190612664565b5050565b61092261091c611685565b82611746565b610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613237565b60405180910390fd5b61096c838383611824565b505050565b610979610c04565b6109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906130d7565b60405180910390fd5b6102ee6109d98261ffff166109cb61086e565b611a8090919063ffffffff16565b1115610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a11906131f7565b60405180910390fd5b60058161ffff161115610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613177565b60405180910390fd5b34610a818261ffff1666c3663566a58000611a9690919063ffffffff16565b1115610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990613277565b60405180910390fd5b610acb81611aac565b50565b6000610ad983610cd3565b8210610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190612ff7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b8e8383836040518060200160405280600081525061124b565b505050565b6000610b9d61086e565b8210610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613257565b60405180910390fd5b60088281548110610bf257610bf1613719565b5b90600052602060002001549050919050565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613137565b60405180910390fd5b80915050919050565b6102ee81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613117565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d93611685565b73ffffffffffffffffffffffffffffffffffffffff16610db161100e565b73ffffffffffffffffffffffffffffffffffffffff1614610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906131b7565b60405180910390fd5b610e116000611af9565b565b610e1b611685565b73ffffffffffffffffffffffffffffffffffffffff16610e3961100e565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906131b7565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b610eb4611685565b73ffffffffffffffffffffffffffffffffffffffff16610ed261100e565b73ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f906131b7565b60405180910390fd5b6000610f3e600247611bbf90919063ffffffff16565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610fa057600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061100057600080fd5b50565b66c3663566a5800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461104790613555565b80601f016020809104026020016040519081016040528092919081815260200182805461107390613555565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b5050505050905090565b6110d2611685565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613097565b60405180910390fd5b806005600061114d611685565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111fa611685565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123f9190612fba565b60405180910390a35050565b61125c611256611685565b83611746565b61129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613237565b60405180910390fd5b6112a784848484611bd5565b50505050565b60606112b7611c31565b6112c083611cc3565b6040516020016112d1929190612f24565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611383611685565b73ffffffffffffffffffffffffffffffffffffffff166113a161100e565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee906131b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613037565b60405180910390fd5b61147081611af9565b50565b600080823b905060008111915050919050565b61149183838361159a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d4576114cf81611e24565b611513565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611512576115118382611e6d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115565761155181611fda565b611595565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146115945761159382826120ab565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161257506116118261212a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661170083610c1b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061175182611619565b611790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611787906130b7565b60405180910390fd5b600061179b83610c1b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061180a57508373ffffffffffffffffffffffffffffffffffffffff166117f2846106d1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061181b575061181a81856112e7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661184482610c1b565b73ffffffffffffffffffffffffffffffffffffffff161461189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906131d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190190613077565b60405180910390fd5b61191583838361220c565b61192060008261168d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611970919061345d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c7919061337c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611a8e919061337c565b905092915050565b60008183611aa49190613403565b905092915050565b60005b8161ffff168161ffff161015611af55760006001611acb61086e565b611ad5919061337c565b9050611ae1338261221c565b508080611aed906135b8565b915050611aaf565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611bcd91906133d2565b905092915050565b611be0848484611824565b611bec8484848461223a565b611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613017565b60405180910390fd5b50505050565b6060600e8054611c4090613555565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6c90613555565b8015611cb95780601f10611c8e57610100808354040283529160200191611cb9565b820191906000526020600020905b815481529060010190602001808311611c9c57829003601f168201915b5050505050905090565b60606000821415611d0b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e1f565b600082905060005b60008214611d3d578080611d26906135e3565b915050600a82611d3691906133d2565b9150611d13565b60008167ffffffffffffffff811115611d5957611d58613748565b5b6040519080825280601f01601f191660200182016040528015611d8b5781602001600182028036833780820191505090505b5090505b60008514611e1857600182611da4919061345d565b9150600a85611db3919061362c565b6030611dbf919061337c565b60f81b818381518110611dd557611dd4613719565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e1191906133d2565b9450611d8f565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e7a84610cd3565b611e84919061345d565b9050600060076000848152602001908152602001600020549050818114611f69576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fee919061345d565b905060006009600084815260200190815260200160002054905060006008838154811061201e5761201d613719565b5b9060005260206000200154905080600883815481106120405761203f613719565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061208f5761208e6136ea565b5b6001900381819060005260206000200160009055905550505050565b60006120b683610cd3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122055750612204826123d1565b5b9050919050565b612217838383611486565b505050565b61223682826040518060200160405280600081525061243b565b5050565b600061225b8473ffffffffffffffffffffffffffffffffffffffff16611473565b156123c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612284611685565b8786866040518563ffffffff1660e01b81526004016122a69493929190612f6e565b602060405180830381600087803b1580156122c057600080fd5b505af19250505080156122f157506040513d601f19601f820116820180604052508101906122ee9190612a82565b60015b612374573d8060008114612321576040519150601f19603f3d011682016040523d82523d6000602084013e612326565b606091505b5060008151141561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390613017565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123c9565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124458383612496565b612452600084848461223a565b612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890613017565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90613157565b60405180910390fd5b61250f81611619565b1561254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690613057565b60405180910390fd5b61255b6000838361220c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ab919061337c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461267090613555565b90600052602060002090601f01602090048101928261269257600085556126d9565b82601f106126ab57805160ff19168380011785556126d9565b828001600101855582156126d9579182015b828111156126d85782518255916020019190600101906126bd565b5b5090506126e691906126ea565b5090565b5b808211156127035760008160009055506001016126eb565b5090565b600061271a612715846132d7565b6132b2565b9050828152602081018484840111156127365761273561377c565b5b612741848285613513565b509392505050565b600061275c61275784613308565b6132b2565b9050828152602081018484840111156127785761277761377c565b5b612783848285613513565b509392505050565b60008135905061279a81613cea565b92915050565b6000813590506127af81613d01565b92915050565b6000813590506127c481613d18565b92915050565b6000815190506127d981613d18565b92915050565b600082601f8301126127f4576127f3613777565b5b8135612804848260208601612707565b91505092915050565b600082601f83011261282257612821613777565b5b8135612832848260208601612749565b91505092915050565b60008135905061284a81613d2f565b92915050565b60008135905061285f81613d46565b92915050565b60006020828403121561287b5761287a613786565b5b60006128898482850161278b565b91505092915050565b600080604083850312156128a9576128a8613786565b5b60006128b78582860161278b565b92505060206128c88582860161278b565b9150509250929050565b6000806000606084860312156128eb576128ea613786565b5b60006128f98682870161278b565b935050602061290a8682870161278b565b925050604061291b86828701612850565b9150509250925092565b6000806000806080858703121561293f5761293e613786565b5b600061294d8782880161278b565b945050602061295e8782880161278b565b935050604061296f87828801612850565b925050606085013567ffffffffffffffff8111156129905761298f613781565b5b61299c878288016127df565b91505092959194509250565b600080604083850312156129bf576129be613786565b5b60006129cd8582860161278b565b92505060206129de858286016127a0565b9150509250929050565b600080604083850312156129ff576129fe613786565b5b6000612a0d8582860161278b565b9250506020612a1e85828601612850565b9150509250929050565b600060208284031215612a3e57612a3d613786565b5b6000612a4c848285016127a0565b91505092915050565b600060208284031215612a6b57612a6a613786565b5b6000612a79848285016127b5565b91505092915050565b600060208284031215612a9857612a97613786565b5b6000612aa6848285016127ca565b91505092915050565b600060208284031215612ac557612ac4613786565b5b600082013567ffffffffffffffff811115612ae357612ae2613781565b5b612aef8482850161280d565b91505092915050565b600060208284031215612b0e57612b0d613786565b5b6000612b1c8482850161283b565b91505092915050565b600060208284031215612b3b57612b3a613786565b5b6000612b4984828501612850565b91505092915050565b612b5b81613491565b82525050565b612b6a816134a3565b82525050565b6000612b7b82613339565b612b85818561334f565b9350612b95818560208601613522565b612b9e8161378b565b840191505092915050565b6000612bb482613344565b612bbe8185613360565b9350612bce818560208601613522565b612bd78161378b565b840191505092915050565b6000612bed82613344565b612bf78185613371565b9350612c07818560208601613522565b80840191505092915050565b6000612c20602b83613360565b9150612c2b8261379c565b604082019050919050565b6000612c43603283613360565b9150612c4e826137eb565b604082019050919050565b6000612c66602683613360565b9150612c718261383a565b604082019050919050565b6000612c89601c83613360565b9150612c9482613889565b602082019050919050565b6000612cac602483613360565b9150612cb7826138b2565b604082019050919050565b6000612ccf601983613360565b9150612cda82613901565b602082019050919050565b6000612cf2602c83613360565b9150612cfd8261392a565b604082019050919050565b6000612d15601683613360565b9150612d2082613979565b602082019050919050565b6000612d38603883613360565b9150612d43826139a2565b604082019050919050565b6000612d5b602a83613360565b9150612d66826139f1565b604082019050919050565b6000612d7e602983613360565b9150612d8982613a40565b604082019050919050565b6000612da1602083613360565b9150612dac82613a8f565b602082019050919050565b6000612dc4601d83613360565b9150612dcf82613ab8565b602082019050919050565b6000612de7602c83613360565b9150612df282613ae1565b604082019050919050565b6000612e0a602083613360565b9150612e1582613b30565b602082019050919050565b6000612e2d602983613360565b9150612e3882613b59565b604082019050919050565b6000612e50600883613360565b9150612e5b82613ba8565b602082019050919050565b6000612e73602183613360565b9150612e7e82613bd1565b604082019050919050565b6000612e96600083613371565b9150612ea182613c20565b600082019050919050565b6000612eb9603183613360565b9150612ec482613c23565b604082019050919050565b6000612edc602c83613360565b9150612ee782613c72565b604082019050919050565b6000612eff601e83613360565b9150612f0a82613cc1565b602082019050919050565b612f1e81613509565b82525050565b6000612f308285612be2565b9150612f3b82612e89565b9150612f478284612be2565b91508190509392505050565b6000602082019050612f686000830184612b52565b92915050565b6000608082019050612f836000830187612b52565b612f906020830186612b52565b612f9d6040830185612f15565b8181036060830152612faf8184612b70565b905095945050505050565b6000602082019050612fcf6000830184612b61565b92915050565b60006020820190508181036000830152612fef8184612ba9565b905092915050565b6000602082019050818103600083015261301081612c13565b9050919050565b6000602082019050818103600083015261303081612c36565b9050919050565b6000602082019050818103600083015261305081612c59565b9050919050565b6000602082019050818103600083015261307081612c7c565b9050919050565b6000602082019050818103600083015261309081612c9f565b9050919050565b600060208201905081810360008301526130b081612cc2565b9050919050565b600060208201905081810360008301526130d081612ce5565b9050919050565b600060208201905081810360008301526130f081612d08565b9050919050565b6000602082019050818103600083015261311081612d2b565b9050919050565b6000602082019050818103600083015261313081612d4e565b9050919050565b6000602082019050818103600083015261315081612d71565b9050919050565b6000602082019050818103600083015261317081612d94565b9050919050565b6000602082019050818103600083015261319081612db7565b9050919050565b600060208201905081810360008301526131b081612dda565b9050919050565b600060208201905081810360008301526131d081612dfd565b9050919050565b600060208201905081810360008301526131f081612e20565b9050919050565b6000602082019050818103600083015261321081612e43565b9050919050565b6000602082019050818103600083015261323081612e66565b9050919050565b6000602082019050818103600083015261325081612eac565b9050919050565b6000602082019050818103600083015261327081612ecf565b9050919050565b6000602082019050818103600083015261329081612ef2565b9050919050565b60006020820190506132ac6000830184612f15565b92915050565b60006132bc6132cd565b90506132c88282613587565b919050565b6000604051905090565b600067ffffffffffffffff8211156132f2576132f1613748565b5b6132fb8261378b565b9050602081019050919050565b600067ffffffffffffffff82111561332357613322613748565b5b61332c8261378b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061338782613509565b915061339283613509565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133c7576133c661365d565b5b828201905092915050565b60006133dd82613509565b91506133e883613509565b9250826133f8576133f761368c565b5b828204905092915050565b600061340e82613509565b915061341983613509565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134525761345161365d565b5b828202905092915050565b600061346882613509565b915061347383613509565b9250828210156134865761348561365d565b5b828203905092915050565b600061349c826134e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613540578082015181840152602081019050613525565b8381111561354f576000848401525b50505050565b6000600282049050600182168061356d57607f821691505b60208210811415613581576135806136bb565b5b50919050565b6135908261378b565b810181811067ffffffffffffffff821117156135af576135ae613748565b5b80604052505050565b60006135c3826134db565b915061ffff8214156135d8576135d761365d565b5b600182019050919050565b60006135ee82613509565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136215761362061365d565b5b600182019050919050565b600061363782613509565b915061364283613509565b9250826136525761365161368c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f547972616e742073616c65206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6178206d696e7420706572207472616e73616374696f6e2069732035000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f547279206c657373000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f457468657220616d6f756e742073656e7420697320696e636f72726563740000600082015250565b613cf381613491565b8114613cfe57600080fd5b50565b613d0a816134a3565b8114613d1557600080fd5b50565b613d21816134af565b8114613d2c57600080fd5b50565b613d38816134db565b8114613d4357600080fd5b50565b613d4f81613509565b8114613d5a57600080fd5b5056fea26469706673582212208cc36f94a57672bf5432a64740a1e3c244d2beabaa6bc137f781fc3fc6ef1f5764736f6c63430008070033

Deployed Bytecode Sourcemap

171:2809:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2765:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2426:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1577:113:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1755:107:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4875:339:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;893:413:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1245:256:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5285:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1767:233:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1327:88:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2120:239:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;330:43:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1850:208:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:10;;;;;;;;;;;;;:::i;:::-;;1646::13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1871:216;;;;;;;;;;;;;:::i;:::-;;380:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;999:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2595:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4278:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5541:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1431:175:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2765:212:13;2904:4;2933:36;2957:11;2933:23;:36::i;:::-;2926:43;;2765:212;;;:::o;2426:100:3:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;1577:113:4:-;1638:7;1665:10;:17;;;;1658:24;;1577:113;:::o;1755:107:13:-;1230:12:10;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:7:13::1;1832:12;:22;;;;;;;;;;;;:::i;:::-;;1755:107:::0;:::o;4875:339:3:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;893:413:13:-;964:14;:12;:14::i;:::-;956:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;370:3;1024:33;1042:14;1024:33;;:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:50;;1016:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1122:1;1106:14;:17;;;;1098:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1206:9;1177:25;1187:14;1177:25;;412:17;1177:9;;:25;;;;:::i;:::-;:38;;1169:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1271:27;1283:14;1271:11;:27::i;:::-;893:413;:::o;1245:256:4:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:12;:19;1480:5;1467:19;;;;;;;;;;;;;;;:26;1487:5;1467:26;;;;;;;;;;;;1460:33;;1245:256;;;;:::o;5285:185:3:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;1767:233:4:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;;1968:24;;1767:233;;;:::o;1327:88:13:-;1372:4;1396:11;;;;;;;;;;;1389:18;;1327:88;:::o;2120:239:3:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;330:43:13:-;370:3;330:43;:::o;1850:208:3:-;1922:7;1967:1;1950:19;;:5;:19;;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1650:94:10:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1646::13:-;1230:12:10;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1726:6:13::1;1712:11;;:20;;;;;;;;;;;;;;;;;;1646:94:::0;:::o;1871:216::-;1230:12:10;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1924:18:13::1;1945:28;1971:1;1945:21;:25;;:28;;;;:::i;:::-;1924:49;;2000:4;;;;;;;;;;;1992:18;;:30;2011:10;1992:30;;;;;;;;;;;;;;;;;;;;;;;1984:39;;;::::0;::::1;;2050:4;;;;;;;;;;;2042:18;;:30;2061:10;2042:30;;;;;;;;;;;;;;;;;;;;;;;2034:39;;;::::0;::::1;;1913:174;1871:216::o:0;380:49::-;412:17;380:49;:::o;999:87:10:-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;2595:104:3:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;4278:295::-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;5541:328::-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;1431:175:13:-;1496:13;1553:10;:8;:10::i;:::-;1569:27;1577:7;1569:25;:27::i;:::-;1536:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1522:76;;1431:175;;;:::o;4644:164:3:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1899:192:10:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;2613:589:4:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;2835:1;2819:18;;:4;:18;;;2815:187;;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;2916:10;;:4;:10;;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2912:90;2815:187;3030:1;3016:16;;:2;:16;;;3012:183;;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;3116:10;;:2;:10;;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;:::-;3112:83;3012:183;2613:589;;;:::o;13471:126:3:-;;;;:::o;937:224:4:-;1039:4;1078:35;1063:50;;;:11;:50;;;;:90;;;;1117:36;1141:11;1117:23;:36::i;:::-;1063:90;1056:97;;937:224;;;:::o;7379:127:3:-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;602:98:1:-;655:7;682:10;675:17;;602:98;:::o;11361:174:3:-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;2763:98:11:-;2821:7;2852:1;2848;:5;;;;:::i;:::-;2841:12;;2763:98;;;;:::o;3501:::-;3559:7;3590:1;3586;:5;;;;:::i;:::-;3579:12;;3501:98;;;;:::o;2128:222:13:-;2197:8;2192:151;2215:14;2211:18;;:1;:18;;;2192:151;;;2251:15;2285:1;2269:13;:11;:13::i;:::-;:17;;;;:::i;:::-;2251:35;;2301:30;2311:10;2323:7;2301:9;:30::i;:::-;2236:107;2231:3;;;;;:::i;:::-;;;;2192:151;;;;2128:222;:::o;2099:173:10:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;3900:98:11:-;3958:7;3989:1;3985;:5;;;;:::i;:::-;3978:12;;3900:98;;;;:::o;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;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;2364:105:13:-;2416:13;2449:12;2442:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2364:105;:::o;288:723:12:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;3925:164:4:-;4029:10;:17;;;;4002:15;:24;4018:7;4002:24;;;;;;;;;;;:44;;;;4057:10;4073:7;4057:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:164;:::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;4982:51;;5044:18;5065:17;:26;5083:7;5065:26;;;;;;;;;;;;5044:47;;5212:14;5198:10;:28;5194:328;;5243:19;5265:12;:18;5278:4;5265:18;;;;;;;;;;;;;;;:34;5284:14;5265:34;;;;;;;;;;;;5243:56;;5349:11;5316:12;:18;5329:4;5316:18;;;;;;;;;;;;;;;:30;5335:10;5316:30;;;;;;;;;;;:44;;;;5466:10;5433:17;:30;5451:11;5433:30;;;;;;;;;;;:43;;;;5228:294;5194:328;5618:17;:26;5636:7;5618:26;;;;;;;;;;;5611:33;;;5662:12;:18;5675:4;5662:18;;;;;;;;;;;;;;;:34;5681:14;5662:34;;;;;;;;;;;5655:41;;;4797:907;;4716:988;;:::o;5999:1079::-;6252:22;6297:1;6277:10;:17;;;;:21;;;;:::i;:::-;6252:46;;6309:18;6330:15;:24;6346:7;6330:24;;;;;;;;;;;;6309:45;;6681:19;6703:10;6714:14;6703:26;;;;;;;;:::i;:::-;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6878:10;6847:15;:28;6863:11;6847:28;;;;;;;;;;;:41;;;;7019:15;:24;7035:7;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;:::-;3588:37;;3663:7;3636:12;:16;3649:2;3636:16;;;;;;;;;;;;;;;:24;3653:6;3636:24;;;;;;;;;;;:34;;;;3710:6;3681:17;:26;3699:7;3681:26;;;;;;;;;;;:35;;;;3577:147;3503:221;;:::o;1481:305:3:-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;2553:204:13:-;2704:45;2731:4;2737:2;2741:7;2704:26;:45::i;:::-;2553:204;;;:::o;8363:110:3:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;12100:799::-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:620;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12571:1;12554:6;:13;:18;12550:272;;;12597:60;;;;;;;;;;:::i;:::-;;;;;;;;12550:272;12772:6;12766:13;12757:6;12753:2;12749:15;12742:38;12308:529;12445:41;;;12435:51;;;:6;:51;;;;12428:58;;;;;12272:620;12876:4;12869:11;;12100:799;;;;;;;:::o;787:157:2:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;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;;;;;;;;;;;;:::i;:::-;;;;;;;;;8700:321;;;:::o;9357:382::-;9451:1;9437:16;;:2;:16;;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:137::-;2177:5;2215:6;2202:20;2193:29;;2231:32;2257:5;2231:32;:::i;:::-;2132:137;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:323::-;5819:6;5868:2;5856:9;5847:7;5843:23;5839:32;5836:119;;;5874:79;;:::i;:::-;5836:119;5994:1;6019:50;6061:7;6052:6;6041:9;6037:22;6019:50;:::i;:::-;6009:60;;5965:114;5763:323;;;;:::o;6092:327::-;6150:6;6199:2;6187:9;6178:7;6174:23;6170:32;6167:119;;;6205:79;;:::i;:::-;6167:119;6325:1;6350:52;6394:7;6385:6;6374:9;6370:22;6350:52;:::i;:::-;6340:62;;6296:116;6092:327;;;;:::o;6425:349::-;6494:6;6543:2;6531:9;6522:7;6518:23;6514:32;6511:119;;;6549:79;;:::i;:::-;6511:119;6669:1;6694:63;6749:7;6740:6;6729:9;6725:22;6694:63;:::i;:::-;6684:73;;6640:127;6425:349;;;;:::o;6780:509::-;6849:6;6898:2;6886:9;6877:7;6873:23;6869:32;6866:119;;;6904:79;;:::i;:::-;6866:119;7052:1;7041:9;7037:17;7024:31;7082:18;7074:6;7071:30;7068:117;;;7104:79;;:::i;:::-;7068:117;7209:63;7264:7;7255:6;7244:9;7240:22;7209:63;:::i;:::-;7199:73;;6995:287;6780:509;;;;:::o;7295:327::-;7353:6;7402:2;7390:9;7381:7;7377:23;7373:32;7370:119;;;7408:79;;:::i;:::-;7370:119;7528:1;7553:52;7597:7;7588:6;7577:9;7573:22;7553:52;:::i;:::-;7543:62;;7499:116;7295:327;;;;:::o;7628:329::-;7687:6;7736:2;7724:9;7715:7;7711:23;7707:32;7704:119;;;7742:79;;:::i;:::-;7704:119;7862:1;7887:53;7932:7;7923:6;7912:9;7908:22;7887:53;:::i;:::-;7877:63;;7833:117;7628:329;;;;:::o;7963:118::-;8050:24;8068:5;8050:24;:::i;:::-;8045:3;8038:37;7963:118;;:::o;8087:109::-;8168:21;8183:5;8168:21;:::i;:::-;8163:3;8156:34;8087:109;;:::o;8202:360::-;8288:3;8316:38;8348:5;8316:38;:::i;:::-;8370:70;8433:6;8428:3;8370:70;:::i;:::-;8363:77;;8449:52;8494:6;8489:3;8482:4;8475:5;8471:16;8449:52;:::i;:::-;8526:29;8548:6;8526:29;:::i;:::-;8521:3;8517:39;8510:46;;8292:270;8202:360;;;;:::o;8568:364::-;8656:3;8684:39;8717:5;8684:39;:::i;:::-;8739:71;8803:6;8798:3;8739:71;:::i;:::-;8732:78;;8819:52;8864:6;8859:3;8852:4;8845:5;8841:16;8819:52;:::i;:::-;8896:29;8918:6;8896:29;:::i;:::-;8891:3;8887:39;8880:46;;8660:272;8568:364;;;;:::o;8938:377::-;9044:3;9072:39;9105:5;9072:39;:::i;:::-;9127:89;9209:6;9204:3;9127:89;:::i;:::-;9120:96;;9225:52;9270:6;9265:3;9258:4;9251:5;9247:16;9225:52;:::i;:::-;9302:6;9297:3;9293:16;9286:23;;9048:267;8938:377;;;;:::o;9321:366::-;9463:3;9484:67;9548:2;9543:3;9484:67;:::i;:::-;9477:74;;9560:93;9649:3;9560:93;:::i;:::-;9678:2;9673:3;9669:12;9662:19;;9321:366;;;:::o;9693:::-;9835:3;9856:67;9920:2;9915:3;9856:67;:::i;:::-;9849:74;;9932:93;10021:3;9932:93;:::i;:::-;10050:2;10045:3;10041:12;10034:19;;9693:366;;;:::o;10065:::-;10207:3;10228:67;10292:2;10287:3;10228:67;:::i;:::-;10221:74;;10304:93;10393:3;10304:93;:::i;:::-;10422:2;10417:3;10413:12;10406:19;;10065:366;;;:::o;10437:::-;10579:3;10600:67;10664:2;10659:3;10600:67;:::i;:::-;10593:74;;10676:93;10765:3;10676:93;:::i;:::-;10794:2;10789:3;10785:12;10778:19;;10437:366;;;:::o;10809:::-;10951:3;10972:67;11036:2;11031:3;10972:67;:::i;:::-;10965:74;;11048:93;11137:3;11048:93;:::i;:::-;11166:2;11161:3;11157:12;11150:19;;10809:366;;;:::o;11181:::-;11323:3;11344:67;11408:2;11403:3;11344:67;:::i;:::-;11337:74;;11420:93;11509:3;11420:93;:::i;:::-;11538:2;11533:3;11529:12;11522:19;;11181:366;;;:::o;11553:::-;11695:3;11716:67;11780:2;11775:3;11716:67;:::i;:::-;11709:74;;11792:93;11881:3;11792:93;:::i;:::-;11910:2;11905:3;11901:12;11894:19;;11553:366;;;:::o;11925:::-;12067:3;12088:67;12152:2;12147:3;12088:67;:::i;:::-;12081:74;;12164:93;12253:3;12164:93;:::i;:::-;12282:2;12277:3;12273:12;12266:19;;11925:366;;;:::o;12297:::-;12439:3;12460:67;12524:2;12519:3;12460:67;:::i;:::-;12453:74;;12536:93;12625:3;12536:93;:::i;:::-;12654:2;12649:3;12645:12;12638:19;;12297:366;;;:::o;12669:::-;12811:3;12832:67;12896:2;12891:3;12832:67;:::i;:::-;12825:74;;12908:93;12997:3;12908:93;:::i;:::-;13026:2;13021:3;13017:12;13010:19;;12669:366;;;:::o;13041:::-;13183:3;13204:67;13268:2;13263:3;13204:67;:::i;:::-;13197:74;;13280:93;13369:3;13280:93;:::i;:::-;13398:2;13393:3;13389:12;13382:19;;13041:366;;;:::o;13413:::-;13555:3;13576:67;13640:2;13635:3;13576:67;:::i;:::-;13569:74;;13652:93;13741:3;13652:93;:::i;:::-;13770:2;13765:3;13761:12;13754:19;;13413:366;;;:::o;13785:::-;13927:3;13948:67;14012:2;14007:3;13948:67;:::i;:::-;13941:74;;14024:93;14113:3;14024:93;:::i;:::-;14142:2;14137:3;14133:12;14126:19;;13785:366;;;:::o;14157:::-;14299:3;14320:67;14384:2;14379:3;14320:67;:::i;:::-;14313:74;;14396:93;14485:3;14396:93;:::i;:::-;14514:2;14509:3;14505:12;14498:19;;14157:366;;;:::o;14529:::-;14671:3;14692:67;14756:2;14751:3;14692:67;:::i;:::-;14685:74;;14768:93;14857:3;14768:93;:::i;:::-;14886:2;14881:3;14877:12;14870:19;;14529:366;;;:::o;14901:::-;15043:3;15064:67;15128:2;15123:3;15064:67;:::i;:::-;15057:74;;15140:93;15229:3;15140:93;:::i;:::-;15258:2;15253:3;15249:12;15242:19;;14901:366;;;:::o;15273:365::-;15415:3;15436:66;15500:1;15495:3;15436:66;:::i;:::-;15429:73;;15511:93;15600:3;15511:93;:::i;:::-;15629:2;15624:3;15620:12;15613:19;;15273:365;;;:::o;15644:366::-;15786:3;15807:67;15871:2;15866:3;15807:67;:::i;:::-;15800:74;;15883:93;15972:3;15883:93;:::i;:::-;16001:2;15996:3;15992:12;15985:19;;15644:366;;;:::o;16016:400::-;16176:3;16197:84;16279:1;16274:3;16197:84;:::i;:::-;16190:91;;16290:93;16379:3;16290:93;:::i;:::-;16408:1;16403:3;16399:11;16392:18;;16016:400;;;:::o;16422:366::-;16564:3;16585:67;16649:2;16644:3;16585:67;:::i;:::-;16578:74;;16661:93;16750:3;16661:93;:::i;:::-;16779:2;16774:3;16770:12;16763:19;;16422:366;;;:::o;16794:::-;16936:3;16957:67;17021:2;17016:3;16957:67;:::i;:::-;16950:74;;17033:93;17122:3;17033:93;:::i;:::-;17151:2;17146:3;17142:12;17135:19;;16794:366;;;:::o;17166:::-;17308:3;17329:67;17393:2;17388:3;17329:67;:::i;:::-;17322:74;;17405:93;17494:3;17405:93;:::i;:::-;17523:2;17518:3;17514:12;17507:19;;17166:366;;;:::o;17538:118::-;17625:24;17643:5;17625:24;:::i;:::-;17620:3;17613:37;17538:118;;:::o;17662:701::-;17943:3;17965:95;18056:3;18047:6;17965:95;:::i;:::-;17958:102;;18077:148;18221:3;18077:148;:::i;:::-;18070:155;;18242:95;18333:3;18324:6;18242:95;:::i;:::-;18235:102;;18354:3;18347:10;;17662:701;;;;;:::o;18369:222::-;18462:4;18500:2;18489:9;18485:18;18477:26;;18513:71;18581:1;18570:9;18566:17;18557:6;18513:71;:::i;:::-;18369:222;;;;:::o;18597:640::-;18792:4;18830:3;18819:9;18815:19;18807:27;;18844:71;18912:1;18901:9;18897:17;18888:6;18844:71;:::i;:::-;18925:72;18993:2;18982:9;18978:18;18969:6;18925:72;:::i;:::-;19007;19075:2;19064:9;19060:18;19051:6;19007:72;:::i;:::-;19126:9;19120:4;19116:20;19111:2;19100:9;19096:18;19089:48;19154:76;19225:4;19216:6;19154:76;:::i;:::-;19146:84;;18597:640;;;;;;;:::o;19243:210::-;19330:4;19368:2;19357:9;19353:18;19345:26;;19381:65;19443:1;19432:9;19428:17;19419:6;19381:65;:::i;:::-;19243:210;;;;:::o;19459:313::-;19572:4;19610:2;19599:9;19595:18;19587:26;;19659:9;19653:4;19649:20;19645:1;19634:9;19630:17;19623:47;19687:78;19760:4;19751:6;19687:78;:::i;:::-;19679:86;;19459:313;;;;:::o;19778:419::-;19944:4;19982:2;19971:9;19967:18;19959:26;;20031:9;20025:4;20021:20;20017:1;20006:9;20002:17;19995:47;20059:131;20185:4;20059:131;:::i;:::-;20051:139;;19778:419;;;:::o;20203:::-;20369:4;20407:2;20396:9;20392:18;20384:26;;20456:9;20450:4;20446:20;20442:1;20431:9;20427:17;20420:47;20484:131;20610:4;20484:131;:::i;:::-;20476:139;;20203:419;;;:::o;20628:::-;20794:4;20832:2;20821:9;20817:18;20809:26;;20881:9;20875:4;20871:20;20867:1;20856:9;20852:17;20845:47;20909:131;21035:4;20909:131;:::i;:::-;20901:139;;20628:419;;;:::o;21053:::-;21219:4;21257:2;21246:9;21242:18;21234:26;;21306:9;21300:4;21296:20;21292:1;21281:9;21277:17;21270:47;21334:131;21460:4;21334:131;:::i;:::-;21326:139;;21053:419;;;:::o;21478:::-;21644:4;21682:2;21671:9;21667:18;21659:26;;21731:9;21725:4;21721:20;21717:1;21706:9;21702:17;21695:47;21759:131;21885:4;21759:131;:::i;:::-;21751:139;;21478:419;;;:::o;21903:::-;22069:4;22107:2;22096:9;22092:18;22084:26;;22156:9;22150:4;22146:20;22142:1;22131:9;22127:17;22120:47;22184:131;22310:4;22184:131;:::i;:::-;22176:139;;21903:419;;;:::o;22328:::-;22494:4;22532:2;22521:9;22517:18;22509:26;;22581:9;22575:4;22571:20;22567:1;22556:9;22552:17;22545:47;22609:131;22735:4;22609:131;:::i;:::-;22601:139;;22328:419;;;:::o;22753:::-;22919:4;22957:2;22946:9;22942:18;22934:26;;23006:9;23000:4;22996:20;22992:1;22981:9;22977:17;22970:47;23034:131;23160:4;23034:131;:::i;:::-;23026:139;;22753:419;;;:::o;23178:::-;23344:4;23382:2;23371:9;23367:18;23359:26;;23431:9;23425:4;23421:20;23417:1;23406:9;23402:17;23395:47;23459:131;23585:4;23459:131;:::i;:::-;23451:139;;23178:419;;;:::o;23603:::-;23769:4;23807:2;23796:9;23792:18;23784:26;;23856:9;23850:4;23846:20;23842:1;23831:9;23827:17;23820:47;23884:131;24010:4;23884:131;:::i;:::-;23876:139;;23603:419;;;:::o;24028:::-;24194:4;24232:2;24221:9;24217:18;24209:26;;24281:9;24275:4;24271:20;24267:1;24256:9;24252:17;24245:47;24309:131;24435:4;24309:131;:::i;:::-;24301:139;;24028:419;;;:::o;24453:::-;24619:4;24657:2;24646:9;24642:18;24634:26;;24706:9;24700:4;24696:20;24692:1;24681:9;24677:17;24670:47;24734:131;24860:4;24734:131;:::i;:::-;24726:139;;24453:419;;;:::o;24878:::-;25044:4;25082:2;25071:9;25067:18;25059:26;;25131:9;25125:4;25121:20;25117:1;25106:9;25102:17;25095:47;25159:131;25285:4;25159:131;:::i;:::-;25151:139;;24878:419;;;:::o;25303:::-;25469:4;25507:2;25496:9;25492:18;25484:26;;25556:9;25550:4;25546:20;25542:1;25531:9;25527:17;25520:47;25584:131;25710:4;25584:131;:::i;:::-;25576:139;;25303:419;;;:::o;25728:::-;25894:4;25932:2;25921:9;25917:18;25909:26;;25981:9;25975:4;25971:20;25967:1;25956:9;25952:17;25945:47;26009:131;26135:4;26009:131;:::i;:::-;26001:139;;25728:419;;;:::o;26153:::-;26319:4;26357:2;26346:9;26342:18;26334:26;;26406:9;26400:4;26396:20;26392:1;26381:9;26377:17;26370:47;26434:131;26560:4;26434:131;:::i;:::-;26426:139;;26153:419;;;:::o;26578:::-;26744:4;26782:2;26771:9;26767:18;26759:26;;26831:9;26825:4;26821:20;26817:1;26806:9;26802:17;26795:47;26859:131;26985:4;26859:131;:::i;:::-;26851:139;;26578:419;;;:::o;27003:::-;27169:4;27207:2;27196:9;27192:18;27184:26;;27256:9;27250:4;27246:20;27242:1;27231:9;27227:17;27220:47;27284:131;27410:4;27284:131;:::i;:::-;27276:139;;27003:419;;;:::o;27428:::-;27594:4;27632:2;27621:9;27617:18;27609:26;;27681:9;27675:4;27671:20;27667:1;27656:9;27652:17;27645:47;27709:131;27835:4;27709:131;:::i;:::-;27701:139;;27428:419;;;:::o;27853:::-;28019:4;28057:2;28046:9;28042:18;28034:26;;28106:9;28100:4;28096:20;28092:1;28081:9;28077:17;28070:47;28134:131;28260:4;28134:131;:::i;:::-;28126:139;;27853:419;;;:::o;28278:::-;28444:4;28482:2;28471:9;28467:18;28459:26;;28531:9;28525:4;28521:20;28517:1;28506:9;28502:17;28495:47;28559:131;28685:4;28559:131;:::i;:::-;28551:139;;28278:419;;;:::o;28703:222::-;28796:4;28834:2;28823:9;28819:18;28811:26;;28847:71;28915:1;28904:9;28900:17;28891:6;28847:71;:::i;:::-;28703:222;;;;:::o;28931:129::-;28965:6;28992:20;;:::i;:::-;28982:30;;29021:33;29049:4;29041:6;29021:33;:::i;:::-;28931:129;;;:::o;29066:75::-;29099:6;29132:2;29126:9;29116:19;;29066:75;:::o;29147:307::-;29208:4;29298:18;29290:6;29287:30;29284:56;;;29320:18;;:::i;:::-;29284:56;29358:29;29380:6;29358:29;:::i;:::-;29350:37;;29442:4;29436;29432:15;29424:23;;29147:307;;;:::o;29460:308::-;29522:4;29612:18;29604:6;29601:30;29598:56;;;29634:18;;:::i;:::-;29598:56;29672:29;29694:6;29672:29;:::i;:::-;29664:37;;29756:4;29750;29746:15;29738:23;;29460:308;;;:::o;29774:98::-;29825:6;29859:5;29853:12;29843:22;;29774:98;;;:::o;29878:99::-;29930:6;29964:5;29958:12;29948:22;;29878:99;;;:::o;29983:168::-;30066:11;30100:6;30095:3;30088:19;30140:4;30135:3;30131:14;30116:29;;29983:168;;;;:::o;30157:169::-;30241:11;30275:6;30270:3;30263:19;30315:4;30310:3;30306:14;30291:29;;30157:169;;;;:::o;30332:148::-;30434:11;30471:3;30456:18;;30332:148;;;;:::o;30486:305::-;30526:3;30545:20;30563:1;30545:20;:::i;:::-;30540:25;;30579:20;30597:1;30579:20;:::i;:::-;30574:25;;30733:1;30665:66;30661:74;30658:1;30655:81;30652:107;;;30739:18;;:::i;:::-;30652:107;30783:1;30780;30776:9;30769:16;;30486:305;;;;:::o;30797:185::-;30837:1;30854:20;30872:1;30854:20;:::i;:::-;30849:25;;30888:20;30906:1;30888:20;:::i;:::-;30883:25;;30927:1;30917:35;;30932:18;;:::i;:::-;30917:35;30974:1;30971;30967:9;30962:14;;30797:185;;;;:::o;30988:348::-;31028:7;31051:20;31069:1;31051:20;:::i;:::-;31046:25;;31085:20;31103:1;31085:20;:::i;:::-;31080:25;;31273:1;31205:66;31201:74;31198:1;31195:81;31190:1;31183:9;31176:17;31172:105;31169:131;;;31280:18;;:::i;:::-;31169:131;31328:1;31325;31321:9;31310:20;;30988:348;;;;:::o;31342:191::-;31382:4;31402:20;31420:1;31402:20;:::i;:::-;31397:25;;31436:20;31454:1;31436:20;:::i;:::-;31431:25;;31475:1;31472;31469:8;31466:34;;;31480:18;;:::i;:::-;31466:34;31525:1;31522;31518:9;31510:17;;31342:191;;;;:::o;31539:96::-;31576:7;31605:24;31623:5;31605:24;:::i;:::-;31594:35;;31539:96;;;:::o;31641:90::-;31675:7;31718:5;31711:13;31704:21;31693:32;;31641:90;;;:::o;31737:149::-;31773:7;31813:66;31806:5;31802:78;31791:89;;31737:149;;;:::o;31892:89::-;31928:7;31968:6;31961:5;31957:18;31946:29;;31892:89;;;:::o;31987:126::-;32024:7;32064:42;32057:5;32053:54;32042:65;;31987:126;;;:::o;32119:77::-;32156:7;32185:5;32174:16;;32119:77;;;:::o;32202:154::-;32286:6;32281:3;32276;32263:30;32348:1;32339:6;32334:3;32330:16;32323:27;32202:154;;;:::o;32362:307::-;32430:1;32440:113;32454:6;32451:1;32448:13;32440:113;;;32539:1;32534:3;32530:11;32524:18;32520:1;32515:3;32511:11;32504:39;32476:2;32473:1;32469:10;32464:15;;32440:113;;;32571:6;32568:1;32565:13;32562:101;;;32651:1;32642:6;32637:3;32633:16;32626:27;32562:101;32411:258;32362:307;;;:::o;32675:320::-;32719:6;32756:1;32750:4;32746:12;32736:22;;32803:1;32797:4;32793:12;32824:18;32814:81;;32880:4;32872:6;32868:17;32858:27;;32814:81;32942:2;32934:6;32931:14;32911:18;32908:38;32905:84;;;32961:18;;:::i;:::-;32905:84;32726:269;32675:320;;;:::o;33001:281::-;33084:27;33106:4;33084:27;:::i;:::-;33076:6;33072:40;33214:6;33202:10;33199:22;33178:18;33166:10;33163:34;33160:62;33157:88;;;33225:18;;:::i;:::-;33157:88;33265:10;33261:2;33254:22;33044:238;33001:281;;:::o;33288:171::-;33326:3;33349:23;33366:5;33349:23;:::i;:::-;33340:32;;33394:6;33387:5;33384:17;33381:43;;;33404:18;;:::i;:::-;33381:43;33451:1;33444:5;33440:13;33433:20;;33288:171;;;:::o;33465:233::-;33504:3;33527:24;33545:5;33527:24;:::i;:::-;33518:33;;33573:66;33566:5;33563:77;33560:103;;;33643:18;;:::i;:::-;33560:103;33690:1;33683:5;33679:13;33672:20;;33465:233;;;:::o;33704:176::-;33736:1;33753:20;33771:1;33753:20;:::i;:::-;33748:25;;33787:20;33805:1;33787:20;:::i;:::-;33782:25;;33826:1;33816:35;;33831:18;;:::i;:::-;33816:35;33872:1;33869;33865:9;33860:14;;33704:176;;;;:::o;33886:180::-;33934:77;33931:1;33924:88;34031:4;34028:1;34021:15;34055:4;34052:1;34045:15;34072:180;34120:77;34117:1;34110:88;34217:4;34214:1;34207:15;34241:4;34238:1;34231:15;34258:180;34306:77;34303:1;34296:88;34403:4;34400:1;34393:15;34427:4;34424:1;34417:15;34444:180;34492:77;34489:1;34482:88;34589:4;34586:1;34579:15;34613:4;34610:1;34603:15;34630:180;34678:77;34675:1;34668:88;34775:4;34772:1;34765:15;34799:4;34796:1;34789:15;34816:180;34864:77;34861:1;34854:88;34961:4;34958:1;34951:15;34985:4;34982:1;34975:15;35002:117;35111:1;35108;35101:12;35125:117;35234:1;35231;35224:12;35248:117;35357:1;35354;35347:12;35371:117;35480:1;35477;35470:12;35494:102;35535:6;35586:2;35582:7;35577:2;35570:5;35566:14;35562:28;35552:38;;35494:102;;;:::o;35602:230::-;35742:34;35738:1;35730:6;35726:14;35719:58;35811:13;35806:2;35798:6;35794:15;35787:38;35602:230;:::o;35838:237::-;35978:34;35974:1;35966:6;35962:14;35955:58;36047:20;36042:2;36034:6;36030:15;36023:45;35838:237;:::o;36081:225::-;36221:34;36217:1;36209:6;36205:14;36198:58;36290:8;36285:2;36277:6;36273:15;36266:33;36081:225;:::o;36312:178::-;36452:30;36448:1;36440:6;36436:14;36429:54;36312:178;:::o;36496:223::-;36636:34;36632:1;36624:6;36620:14;36613:58;36705:6;36700:2;36692:6;36688:15;36681:31;36496:223;:::o;36725:175::-;36865:27;36861:1;36853:6;36849:14;36842:51;36725:175;:::o;36906:231::-;37046:34;37042:1;37034:6;37030:14;37023:58;37115:14;37110:2;37102:6;37098:15;37091:39;36906:231;:::o;37143:172::-;37283:24;37279:1;37271:6;37267:14;37260:48;37143:172;:::o;37321:243::-;37461:34;37457:1;37449:6;37445:14;37438:58;37530:26;37525:2;37517:6;37513:15;37506:51;37321:243;:::o;37570:229::-;37710:34;37706:1;37698:6;37694:14;37687:58;37779:12;37774:2;37766:6;37762:15;37755:37;37570:229;:::o;37805:228::-;37945:34;37941:1;37933:6;37929:14;37922:58;38014:11;38009:2;38001:6;37997:15;37990:36;37805:228;:::o;38039:182::-;38179:34;38175:1;38167:6;38163:14;38156:58;38039:182;:::o;38227:179::-;38367:31;38363:1;38355:6;38351:14;38344:55;38227:179;:::o;38412:231::-;38552:34;38548:1;38540:6;38536:14;38529:58;38621:14;38616:2;38608:6;38604:15;38597:39;38412:231;:::o;38649:182::-;38789:34;38785:1;38777:6;38773:14;38766:58;38649:182;:::o;38837:228::-;38977:34;38973:1;38965:6;38961:14;38954:58;39046:11;39041:2;39033:6;39029:15;39022:36;38837:228;:::o;39071:158::-;39211:10;39207:1;39199:6;39195:14;39188:34;39071:158;:::o;39235:220::-;39375:34;39371:1;39363:6;39359:14;39352:58;39444:3;39439:2;39431:6;39427:15;39420:28;39235:220;:::o;39461:114::-;;:::o;39581:236::-;39721:34;39717:1;39709:6;39705:14;39698:58;39790:19;39785:2;39777:6;39773:15;39766:44;39581:236;:::o;39823:231::-;39963:34;39959:1;39951:6;39947:14;39940:58;40032:14;40027:2;40019:6;40015:15;40008:39;39823:231;:::o;40060:180::-;40200:32;40196:1;40188:6;40184:14;40177:56;40060:180;:::o;40246:122::-;40319:24;40337:5;40319:24;:::i;:::-;40312:5;40309:35;40299:63;;40358:1;40355;40348:12;40299:63;40246:122;:::o;40374:116::-;40444:21;40459:5;40444:21;:::i;:::-;40437:5;40434:32;40424:60;;40480:1;40477;40470:12;40424:60;40374:116;:::o;40496:120::-;40568:23;40585:5;40568:23;:::i;:::-;40561:5;40558:34;40548:62;;40606:1;40603;40596:12;40548:62;40496:120;:::o;40622:::-;40694:23;40711:5;40694:23;:::i;:::-;40687:5;40684:34;40674:62;;40732:1;40729;40722:12;40674:62;40622:120;:::o;40748:122::-;40821:24;40839:5;40821:24;:::i;:::-;40814:5;40811:35;40801:63;;40860:1;40857;40850:12;40801:63;40748:122;:::o

Swarm Source

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