ETH Price: $3,480.47 (+2.13%)
Gas: 8 Gwei

Token

(0x69f0513f9b2c2233c18f17d08559f0dbd915e2b7)
 

Overview

Max Total Supply

11,397 ERC-721 TOKEN*

Holders

6,928

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xchm.eth
Balance
0 ERC-721 TOKEN*
0x01f3c2bcf2ab910dcf2d3daa0c5c3591dfe08579
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:
LOcommunityNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-11
*/

// SPDX-License-Identifier: MIT

/**

                                                                                                                       

*/

pragma solidity ^0.8.9;







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




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





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



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



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






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






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

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

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

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

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

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

    function isContractOwner() public virtual returns (bool) {
        return (_owner == _msgSender());
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}




abstract contract Target721 { 
    function ownerOf(uint256 tokenId) public view virtual returns (address);
}




/**
 * @title Gutter Punks Flyer contract.
 * @author The Gutter Punks team.
 *
 * @notice Airdrops a flyer to Invisible Friends holders.
 *
 */
contract LOcommunityNFT is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    
    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 from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    mapping(uint256 => bool) private _tokenBifurcated;

    string internal _baseTokenURI;
    string internal _contractURI;

    uint256 internal _totalSupply;
    uint256 internal MAX_TOKEN_ID; 
    
    bool internal burnAirdrop = false;

    Target721 _target = Target721(0xED5AF388653567Af2F388E6224dC7C4b3241C544);


    constructor() {
        _name = "LOcommunityNFT";
        _symbol = "LO";
    }

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

    function setTargetContract(address contractAddress) external onlyOwner { 
        _target = Target721(contractAddress);
    }

    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint256 balance = 0;
        for(uint256 i = 0;i <= MAX_TOKEN_ID;i++) {
           if(_ownerOf(i) == owner) { balance++; }
        }
        return balance;
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        address owner = _owners[tokenId];
        if(owner == address(0) && !_tokenBifurcated[tokenId] && !burnAirdrop) {
           try _target.ownerOf(tokenId) returns (address result) { owner = result; } catch { owner = address(0); }
        }
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = 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);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
        address approved = _tokenApprovals[tokenId];
        return approved;
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    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);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    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);
    }

    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");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0) || _target.ownerOf(tokenId) != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        emit Transfer(address(0), to, tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ownerOf(tokenId);
        require(owner == _msgSender(), "Must own token to burn.");

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

        // Clear approvals
        _approve(address(0), tokenId);
        unchecked { 
           if(!_tokenBifurcated[tokenId]) { _tokenBifurcated[tokenId] = true; }
           _totalSupply -= 1;
        }
        delete _owners[tokenId];

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

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(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);
       
        unchecked { 
           _owners[tokenId] = to;
        }

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    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;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}


    function setURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setBurnAirdrop(bool setBurn) external onlyOwner {
        burnAirdrop = setBurn;
    }

    function mintLO(address[] calldata recipients) external onlyOwner {
        uint256 startingSupply = _totalSupply;

        // Update the total supply.
        _totalSupply = startingSupply + recipients.length;

        // Note: First token has ID #0.
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], startingSupply + i);
        }
        if((startingSupply + recipients.length - 1) > MAX_TOKEN_ID) { MAX_TOKEN_ID = (startingSupply + recipients.length - 1); } 
    }

    function bifurcateToken(uint256 tokenId) external { 
        address owner = ownerOf(tokenId);
        require(owner == _msgSender() || isContractOwner(), "Must own token to bifurcate.");
        _tokenBifurcated[tokenId] = true; 
        unchecked { 
           _owners[tokenId] = owner;
        }
    }
    function burn(uint256 tokenId) external { 
        _burn(tokenId);
    }
    
    function emitTransfers(uint256[] calldata tokenId, address[] calldata from, address[] calldata to) external onlyOwner { 
       require(tokenId.length == from.length && from.length == to.length, "Arrays do not match.");
       for(uint256 i = 0;i < tokenId.length;i++) { 
           if(_owners[tokenId[i]] == address(0)) { 
              emit Transfer(from[i], to[i], tokenId[i]);
           } 
       }
    }

    function contractURI() external view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        
        return _baseTokenURI;
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }
}


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





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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"bifurcateToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"},{"internalType":"address[]","name":"from","type":"address[]"},{"internalType":"address[]","name":"to","type":"address[]"}],"name":"emitTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintLO","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"setBurn","type":"bool"}],"name":"setBurnAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setTargetContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","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":"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"}]

6080604052600b80546001600160a81b03191674ed5af388653567af2f388e6224dc7c4b3241c544001790553480156200003857600080fd5b506200004433620000ac565b60408051808201909152600e8082526d1313d8dbdb5b5d5b9a5d1e53919560921b60209092019182526200007b91600191620000fc565b50604080518082019091526002808252614c4f60f01b6020909201918252620000a59181620000fc565b50620001de565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200010a90620001a2565b90600052602060002090601f0160209004810192826200012e576000855562000179565b82601f106200014957805160ff191683800117855562000179565b8280016001018555821562000179579182015b82811115620001795782518255916020019190600101906200015c565b50620001879291506200018b565b5090565b5b808211156200018757600081556001016200018c565b600181811c90821680620001b757607f821691505b602082108103620001d857634e487b7160e01b600052602260045260246000fd5b50919050565b611c8c80620001ee6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063e8a3d48511610071578063e8a3d4851461034e578063e985e9c514610356578063f0d6f8ef14610392578063f2fde38b146103a557600080fd5b8063a22cb46514610315578063b88d4fde14610328578063c87b56dd1461033b57600080fd5b80636352211e146102ba57806370a08231146102cd578063715018a6146102e05780637f7dcdbf146102e85780638da5cb5b146102fc57806395d89b411461030d57600080fd5b806317495dde1161014b57806342842e0e1161012557806342842e0e1461026e57806342966c681461028157806342d8c7d51461029457806347fc822f146102a757600080fd5b806317495dde1461023657806318160ddd1461024957806323b872dd1461025b57600080fd5b806301df6f841461019357806301ffc9a7146101a857806302fe5305146101d057806306fdde03146101e3578063081812fc146101f8578063095ea7b314610223575b600080fd5b6101a66101a136600461160c565b6103b8565b005b6101bb6101b6366004611664565b610490565b60405190151581526020015b60405180910390f35b6101a66101de366004611681565b6104e2565b6101eb610518565b6040516101c79190611740565b61020b610206366004611753565b6105aa565b6040516001600160a01b0390911681526020016101c7565b6101a6610231366004611781565b610632565b6101a66102443660046117c2565b610742565b6009545b6040519081526020016101c7565b6101a66102693660046117dd565b61077f565b6101a661027c3660046117dd565b6107b0565b6101a661028f366004611753565b6107cb565b6101a66102a236600461181e565b6107d7565b6101a66102b53660046118b8565b61094b565b61020b6102c8366004611753565b61099d565b61024d6102db3660046118b8565b610a13565b6101a6610ad3565b6101bb6000546001600160a01b0316331490565b6000546001600160a01b031661020b565b6101eb610b09565b6101a66103233660046118d5565b610b18565b6101a6610336366004611920565b610b27565b6101eb610349366004611753565b610b5f565b6101eb610c60565b6101bb610364366004611a00565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101a66103a0366004611753565b610c6f565b6101a66103b33660046118b8565b610d33565b6000546001600160a01b031633146103eb5760405162461bcd60e51b81526004016103e290611a39565b60405180910390fd5b6009546103f88282611a84565b60095560005b828110156104515761043f84848381811061041b5761041b611a9c565b905060200201602081019061043091906118b8565b61043a8385611a84565b610dcb565b8061044981611ab2565b9150506103fe565b50600a5460016104618484611a84565b61046b9190611acb565b111561048b57600161047d8383611a84565b6104879190611acb565b600a555b505050565b60006001600160e01b031982166380ac58cd60e01b14806104c157506001600160e01b03198216635b5e139f60e01b145b806104dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461050c5760405162461bcd60e51b81526004016103e290611a39565b61048b60078383611527565b60606001805461052790611ae2565b80601f016020809104026020016040519081016040528092919081815260200182805461055390611ae2565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b60006105b582610df5565b6106165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b506000908152600460205260409020546001600160a01b031690565b600061063d8261099d565b9050806001600160a01b0316836001600160a01b0316036106aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e2565b336001600160a01b03821614806106c657506106c68133610364565b6107385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103e2565b61048b8383610e99565b6000546001600160a01b0316331461076c5760405162461bcd60e51b81526004016103e290611a39565b600b805460ff1916911515919091179055565b6107893382610f07565b6107a55760405162461bcd60e51b81526004016103e290611b1c565b61048b838383610ff1565b61048b83838360405180602001604052806000815250610b27565b6107d481611123565b50565b6000546001600160a01b031633146108015760405162461bcd60e51b81526004016103e290611a39565b848314801561080f57508281145b6108525760405162461bcd60e51b815260206004820152601460248201527320b93930bcb9903237903737ba1036b0ba31b41760611b60448201526064016103e2565b60005b8581101561094257600060038189898581811061087457610874611a9c565b60209081029290920135835250810191909152604001600020546001600160a01b031603610930578686828181106108ae576108ae611a9c565b905060200201358383838181106108c7576108c7611a9c565b90506020020160208101906108dc91906118b8565b6001600160a01b03168686848181106108f7576108f7611a9c565b905060200201602081019061090c91906118b8565b6001600160a01b0316600080516020611c3783398151915260405160405180910390a45b8061093a81611ab2565b915050610855565b50505050505050565b6000546001600160a01b031633146109755760405162461bcd60e51b81526004016103e290611a39565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806109a983611210565b90506001600160a01b0381166104dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e2565b60006001600160a01b038216610a7e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e2565b6000805b600a548111610acc57836001600160a01b0316610a9e82611210565b6001600160a01b031603610aba5781610ab681611ab2565b9250505b80610ac481611ab2565b915050610a82565b5092915050565b6000546001600160a01b03163314610afd5760405162461bcd60e51b81526004016103e290611a39565b610b0760006112d5565b565b60606002805461052790611ae2565b610b23338383611325565b5050565b610b313383610f07565b610b4d5760405162461bcd60e51b81526004016103e290611b1c565b610b59848484846113f3565b50505050565b6060610b6a82610df5565b610bce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e2565b60078054610bdb90611ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0790611ae2565b8015610c545780601f10610c2957610100808354040283529160200191610c54565b820191906000526020600020905b815481529060010190602001808311610c3757829003601f168201915b50505050509050919050565b60606008805461052790611ae2565b6000610c7a8261099d565b90506001600160a01b038116331480610ca25750610ca26000546001600160a01b0316331490565b610cee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746f6b656e20746f206269667572636174652e0000000060448201526064016103e2565b6000918252600660209081526040808420805460ff19166001179055600390915290912080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b03163314610d5d5760405162461bcd60e51b81526004016103e290611a39565b6001600160a01b038116610dc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e2565b6107d4816112d5565b60405181906001600160a01b03841690600090600080516020611c37833981519152908290a45050565b6000818152600360205260408120546001600160a01b03161515806104dc5750600b546040516331a9108f60e11b81526004810184905260009161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e889190611b6d565b6001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ece8261099d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f1282610df5565b610f735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b6000610f7e8361099d565b9050806001600160a01b0316846001600160a01b03161480610fb95750836001600160a01b0316610fae846105aa565b6001600160a01b0316145b80610fe957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110048261099d565b6001600160a01b03161461106c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e2565b6001600160a01b0382166110ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e2565b6110d9600082610e99565b60008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611c3783398151915291a4505050565b600061112e8261099d565b90506001600160a01b03811633146111885760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e20746f6b656e20746f206275726e2e00000000000000000060448201526064016103e2565b611193600083610e99565b60008281526006602052604090205460ff166111c3576000828152600660205260409020805460ff191660011790555b6009805460001901905560008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020611c37833981519152908390a45050565b6000818152600360205260408120546001600160a01b031680158015611245575060008381526006602052604090205460ff16155b80156112545750600b5460ff16155b156104dc57600b546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e90602401602060405180830381865afa9250505080156112c2575060408051601f3d908101601f191682019092526112bf91810190611b6d565b60015b6112ce575060006104dc565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036113865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113fe848484610ff1565b61140a84848484611426565b610b595760405162461bcd60e51b81526004016103e290611b8a565b60006001600160a01b0384163b1561151c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061146a903390899088908890600401611bdc565b6020604051808303816000875af19250505080156114a5575060408051601f3d908101601f191682019092526114a291810190611c19565b60015b611502573d8080156114d3576040519150601f19603f3d011682016040523d82523d6000602084013e6114d8565b606091505b5080516000036114fa5760405162461bcd60e51b81526004016103e290611b8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe9565b506001949350505050565b82805461153390611ae2565b90600052602060002090601f016020900481019282611555576000855561159b565b82601f1061156e5782800160ff1982351617855561159b565b8280016001018555821561159b579182015b8281111561159b578235825591602001919060010190611580565b506115a79291506115ab565b5090565b5b808211156115a757600081556001016115ac565b60008083601f8401126115d257600080fd5b50813567ffffffffffffffff8111156115ea57600080fd5b6020830191508360208260051b850101111561160557600080fd5b9250929050565b6000806020838503121561161f57600080fd5b823567ffffffffffffffff81111561163657600080fd5b611642858286016115c0565b90969095509350505050565b6001600160e01b0319811681146107d457600080fd5b60006020828403121561167657600080fd5b81356112ce8161164e565b6000806020838503121561169457600080fd5b823567ffffffffffffffff808211156116ac57600080fd5b818501915085601f8301126116c057600080fd5b8135818111156116cf57600080fd5b8660208285010111156116e157600080fd5b60209290920196919550909350505050565b6000815180845260005b81811015611719576020818501810151868301820152016116fd565b8181111561172b576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006112ce60208301846116f3565b60006020828403121561176557600080fd5b5035919050565b6001600160a01b03811681146107d457600080fd5b6000806040838503121561179457600080fd5b823561179f8161176c565b946020939093013593505050565b803580151581146117bd57600080fd5b919050565b6000602082840312156117d457600080fd5b6112ce826117ad565b6000806000606084860312156117f257600080fd5b83356117fd8161176c565b9250602084013561180d8161176c565b929592945050506040919091013590565b6000806000806000806060878903121561183757600080fd5b863567ffffffffffffffff8082111561184f57600080fd5b61185b8a838b016115c0565b9098509650602089013591508082111561187457600080fd5b6118808a838b016115c0565b9096509450604089013591508082111561189957600080fd5b506118a689828a016115c0565b979a9699509497509295939492505050565b6000602082840312156118ca57600080fd5b81356112ce8161176c565b600080604083850312156118e857600080fd5b82356118f38161176c565b9150611901602084016117ad565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561193657600080fd5b84356119418161176c565b935060208501356119518161176c565b925060408501359150606085013567ffffffffffffffff8082111561197557600080fd5b818701915087601f83011261198957600080fd5b81358181111561199b5761199b61190a565b604051601f8201601f19908116603f011681019083821181831017156119c3576119c361190a565b816040528281528a60208487010111156119dc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1357600080fd5b8235611a1e8161176c565b91506020830135611a2e8161176c565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a9757611a97611a6e565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611ac457611ac4611a6e565b5060010190565b600082821015611add57611add611a6e565b500390565b600181811c90821680611af657607f821691505b602082108103611b1657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215611b7f57600080fd5b81516112ce8161176c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0f908301846116f3565b9695505050505050565b600060208284031215611c2b57600080fd5b81516112ce8161164e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e2fad710fdda4095df0be958d81c715db7b87ded0fd7e2f58c68246d2ac0067864736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063e8a3d48511610071578063e8a3d4851461034e578063e985e9c514610356578063f0d6f8ef14610392578063f2fde38b146103a557600080fd5b8063a22cb46514610315578063b88d4fde14610328578063c87b56dd1461033b57600080fd5b80636352211e146102ba57806370a08231146102cd578063715018a6146102e05780637f7dcdbf146102e85780638da5cb5b146102fc57806395d89b411461030d57600080fd5b806317495dde1161014b57806342842e0e1161012557806342842e0e1461026e57806342966c681461028157806342d8c7d51461029457806347fc822f146102a757600080fd5b806317495dde1461023657806318160ddd1461024957806323b872dd1461025b57600080fd5b806301df6f841461019357806301ffc9a7146101a857806302fe5305146101d057806306fdde03146101e3578063081812fc146101f8578063095ea7b314610223575b600080fd5b6101a66101a136600461160c565b6103b8565b005b6101bb6101b6366004611664565b610490565b60405190151581526020015b60405180910390f35b6101a66101de366004611681565b6104e2565b6101eb610518565b6040516101c79190611740565b61020b610206366004611753565b6105aa565b6040516001600160a01b0390911681526020016101c7565b6101a6610231366004611781565b610632565b6101a66102443660046117c2565b610742565b6009545b6040519081526020016101c7565b6101a66102693660046117dd565b61077f565b6101a661027c3660046117dd565b6107b0565b6101a661028f366004611753565b6107cb565b6101a66102a236600461181e565b6107d7565b6101a66102b53660046118b8565b61094b565b61020b6102c8366004611753565b61099d565b61024d6102db3660046118b8565b610a13565b6101a6610ad3565b6101bb6000546001600160a01b0316331490565b6000546001600160a01b031661020b565b6101eb610b09565b6101a66103233660046118d5565b610b18565b6101a6610336366004611920565b610b27565b6101eb610349366004611753565b610b5f565b6101eb610c60565b6101bb610364366004611a00565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101a66103a0366004611753565b610c6f565b6101a66103b33660046118b8565b610d33565b6000546001600160a01b031633146103eb5760405162461bcd60e51b81526004016103e290611a39565b60405180910390fd5b6009546103f88282611a84565b60095560005b828110156104515761043f84848381811061041b5761041b611a9c565b905060200201602081019061043091906118b8565b61043a8385611a84565b610dcb565b8061044981611ab2565b9150506103fe565b50600a5460016104618484611a84565b61046b9190611acb565b111561048b57600161047d8383611a84565b6104879190611acb565b600a555b505050565b60006001600160e01b031982166380ac58cd60e01b14806104c157506001600160e01b03198216635b5e139f60e01b145b806104dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461050c5760405162461bcd60e51b81526004016103e290611a39565b61048b60078383611527565b60606001805461052790611ae2565b80601f016020809104026020016040519081016040528092919081815260200182805461055390611ae2565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b60006105b582610df5565b6106165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b506000908152600460205260409020546001600160a01b031690565b600061063d8261099d565b9050806001600160a01b0316836001600160a01b0316036106aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e2565b336001600160a01b03821614806106c657506106c68133610364565b6107385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103e2565b61048b8383610e99565b6000546001600160a01b0316331461076c5760405162461bcd60e51b81526004016103e290611a39565b600b805460ff1916911515919091179055565b6107893382610f07565b6107a55760405162461bcd60e51b81526004016103e290611b1c565b61048b838383610ff1565b61048b83838360405180602001604052806000815250610b27565b6107d481611123565b50565b6000546001600160a01b031633146108015760405162461bcd60e51b81526004016103e290611a39565b848314801561080f57508281145b6108525760405162461bcd60e51b815260206004820152601460248201527320b93930bcb9903237903737ba1036b0ba31b41760611b60448201526064016103e2565b60005b8581101561094257600060038189898581811061087457610874611a9c565b60209081029290920135835250810191909152604001600020546001600160a01b031603610930578686828181106108ae576108ae611a9c565b905060200201358383838181106108c7576108c7611a9c565b90506020020160208101906108dc91906118b8565b6001600160a01b03168686848181106108f7576108f7611a9c565b905060200201602081019061090c91906118b8565b6001600160a01b0316600080516020611c3783398151915260405160405180910390a45b8061093a81611ab2565b915050610855565b50505050505050565b6000546001600160a01b031633146109755760405162461bcd60e51b81526004016103e290611a39565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806109a983611210565b90506001600160a01b0381166104dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e2565b60006001600160a01b038216610a7e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e2565b6000805b600a548111610acc57836001600160a01b0316610a9e82611210565b6001600160a01b031603610aba5781610ab681611ab2565b9250505b80610ac481611ab2565b915050610a82565b5092915050565b6000546001600160a01b03163314610afd5760405162461bcd60e51b81526004016103e290611a39565b610b0760006112d5565b565b60606002805461052790611ae2565b610b23338383611325565b5050565b610b313383610f07565b610b4d5760405162461bcd60e51b81526004016103e290611b1c565b610b59848484846113f3565b50505050565b6060610b6a82610df5565b610bce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e2565b60078054610bdb90611ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0790611ae2565b8015610c545780601f10610c2957610100808354040283529160200191610c54565b820191906000526020600020905b815481529060010190602001808311610c3757829003601f168201915b50505050509050919050565b60606008805461052790611ae2565b6000610c7a8261099d565b90506001600160a01b038116331480610ca25750610ca26000546001600160a01b0316331490565b610cee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746f6b656e20746f206269667572636174652e0000000060448201526064016103e2565b6000918252600660209081526040808420805460ff19166001179055600390915290912080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b03163314610d5d5760405162461bcd60e51b81526004016103e290611a39565b6001600160a01b038116610dc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e2565b6107d4816112d5565b60405181906001600160a01b03841690600090600080516020611c37833981519152908290a45050565b6000818152600360205260408120546001600160a01b03161515806104dc5750600b546040516331a9108f60e11b81526004810184905260009161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e889190611b6d565b6001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ece8261099d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f1282610df5565b610f735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b6000610f7e8361099d565b9050806001600160a01b0316846001600160a01b03161480610fb95750836001600160a01b0316610fae846105aa565b6001600160a01b0316145b80610fe957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110048261099d565b6001600160a01b03161461106c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e2565b6001600160a01b0382166110ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e2565b6110d9600082610e99565b60008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611c3783398151915291a4505050565b600061112e8261099d565b90506001600160a01b03811633146111885760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e20746f6b656e20746f206275726e2e00000000000000000060448201526064016103e2565b611193600083610e99565b60008281526006602052604090205460ff166111c3576000828152600660205260409020805460ff191660011790555b6009805460001901905560008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020611c37833981519152908390a45050565b6000818152600360205260408120546001600160a01b031680158015611245575060008381526006602052604090205460ff16155b80156112545750600b5460ff16155b156104dc57600b546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e90602401602060405180830381865afa9250505080156112c2575060408051601f3d908101601f191682019092526112bf91810190611b6d565b60015b6112ce575060006104dc565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036113865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113fe848484610ff1565b61140a84848484611426565b610b595760405162461bcd60e51b81526004016103e290611b8a565b60006001600160a01b0384163b1561151c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061146a903390899088908890600401611bdc565b6020604051808303816000875af19250505080156114a5575060408051601f3d908101601f191682019092526114a291810190611c19565b60015b611502573d8080156114d3576040519150601f19603f3d011682016040523d82523d6000602084013e6114d8565b606091505b5080516000036114fa5760405162461bcd60e51b81526004016103e290611b8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe9565b506001949350505050565b82805461153390611ae2565b90600052602060002090601f016020900481019282611555576000855561159b565b82601f1061156e5782800160ff1982351617855561159b565b8280016001018555821561159b579182015b8281111561159b578235825591602001919060010190611580565b506115a79291506115ab565b5090565b5b808211156115a757600081556001016115ac565b60008083601f8401126115d257600080fd5b50813567ffffffffffffffff8111156115ea57600080fd5b6020830191508360208260051b850101111561160557600080fd5b9250929050565b6000806020838503121561161f57600080fd5b823567ffffffffffffffff81111561163657600080fd5b611642858286016115c0565b90969095509350505050565b6001600160e01b0319811681146107d457600080fd5b60006020828403121561167657600080fd5b81356112ce8161164e565b6000806020838503121561169457600080fd5b823567ffffffffffffffff808211156116ac57600080fd5b818501915085601f8301126116c057600080fd5b8135818111156116cf57600080fd5b8660208285010111156116e157600080fd5b60209290920196919550909350505050565b6000815180845260005b81811015611719576020818501810151868301820152016116fd565b8181111561172b576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006112ce60208301846116f3565b60006020828403121561176557600080fd5b5035919050565b6001600160a01b03811681146107d457600080fd5b6000806040838503121561179457600080fd5b823561179f8161176c565b946020939093013593505050565b803580151581146117bd57600080fd5b919050565b6000602082840312156117d457600080fd5b6112ce826117ad565b6000806000606084860312156117f257600080fd5b83356117fd8161176c565b9250602084013561180d8161176c565b929592945050506040919091013590565b6000806000806000806060878903121561183757600080fd5b863567ffffffffffffffff8082111561184f57600080fd5b61185b8a838b016115c0565b9098509650602089013591508082111561187457600080fd5b6118808a838b016115c0565b9096509450604089013591508082111561189957600080fd5b506118a689828a016115c0565b979a9699509497509295939492505050565b6000602082840312156118ca57600080fd5b81356112ce8161176c565b600080604083850312156118e857600080fd5b82356118f38161176c565b9150611901602084016117ad565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561193657600080fd5b84356119418161176c565b935060208501356119518161176c565b925060408501359150606085013567ffffffffffffffff8082111561197557600080fd5b818701915087601f83011261198957600080fd5b81358181111561199b5761199b61190a565b604051601f8201601f19908116603f011681019083821181831017156119c3576119c361190a565b816040528281528a60208487010111156119dc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1357600080fd5b8235611a1e8161176c565b91506020830135611a2e8161176c565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a9757611a97611a6e565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611ac457611ac4611a6e565b5060010190565b600082821015611add57611add611a6e565b500390565b600181811c90821680611af657607f821691505b602082108103611b1657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215611b7f57600080fd5b81516112ce8161176c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0f908301846116f3565b9695505050505050565b600060208284031215611c2b57600080fd5b81516112ce8161164e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e2fad710fdda4095df0be958d81c715db7b87ded0fd7e2f58c68246d2ac0067864736f6c634300080d0033

Deployed Bytecode Sourcemap

11588:10092:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19863:520;;;;;;:::i;:::-;;:::i;:::-;;12609:305;;;;;;:::i;:::-;;:::i;:::-;;;1379:14:1;;1372:22;1354:41;;1342:2;1327:18;12609:305:0;;;;;;;;19648:102;;;;;;:::i;:::-;;:::i;14022:100::-;;;:::i;:::-;;;;;;;:::i;14654:257::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3054:32:1;;;3036:51;;3024:2;3009:18;14654:257:0;2890:203:1;14242:404:0;;;;;;:::i;:::-;;:::i;19758:97::-;;;;;;:::i;:::-;;:::i;21586:91::-;21657:12;;21586:91;;;4050:25:1;;;4038:2;4023:18;21586:91:0;3904:177:1;15254:339:0;;;;;;:::i;:::-;;:::i;15601:185::-;;;;;;:::i;:::-;;:::i;20708:74::-;;;;;;:::i;:::-;;:::i;20794:416::-;;;;;;:::i;:::-;;:::i;12922:127::-;;;;;;:::i;:::-;;:::i;13409:240::-;;;;;;:::i;:::-;;:::i;13057:344::-;;;;;;:::i;:::-;;:::i;10377:103::-;;;:::i;10488:107::-;;10539:4;10564:6;-1:-1:-1;;;;;10564:6:0;830:10;10564:22;;10488:107;9726:87;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;9726:87;;14130:104;;;:::i;14919:155::-;;;;;;:::i;:::-;;:::i;15794:328::-;;;;;;:::i;:::-;;:::i;21325:253::-;;;;;;:::i;:::-;;:::i;21218:99::-;;;:::i;15082:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15203:25:0;;;15179:4;15203:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;15082:164;20391:311;;;;;;:::i;:::-;;:::i;10750:201::-;;;;;;:::i;:::-;;:::i;19863:520::-;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;830:10;9946:23;9938:68;;;;-1:-1:-1;;;9938:68:0;;;;;;;:::i;:::-;;;;;;;;;19965:12:::1;::::0;20042:34:::1;20059:10:::0;19965:12;20042:34:::1;:::i;:::-;20027:12;:49:::0;20135:9:::1;20130:115;20150:21:::0;;::::1;20130:115;;;20193:40;20199:10;;20210:1;20199:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;20214:18;20231:1:::0;20214:14;:18:::1;:::i;:::-;20193:5;:40::i;:::-;20173:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20130:115;;;-1:-1:-1::0;20301:12:0::1;::::0;20296:1:::1;20259:34;20276:10:::0;20259:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;20258:55;20255:120;;;20370:1;20333:34;20350:10:::0;20333:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;20317:12;:55:::0;20255:120:::1;19929:454;19863:520:::0;;:::o;12609:305::-;12711:4;-1:-1:-1;;;;;;12748:40:0;;-1:-1:-1;;;12748:40:0;;:105;;-1:-1:-1;;;;;;;12805:48:0;;-1:-1:-1;;;12805:48:0;12748:105;:158;;;-1:-1:-1;;;;;;;;;;8742:40:0;;;12870:36;12728:178;12609:305;-1:-1:-1;;12609:305:0:o;19648:102::-;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;830:10;9946:23;9938:68;;;;-1:-1:-1;;;9938:68:0;;;;;;;:::i;:::-;19719:23:::1;:13;19735:7:::0;;19719:23:::1;:::i;14022:100::-:0;14076:13;14109:5;14102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14022:100;:::o;14654:257::-;14730:7;14758:16;14766:7;14758;:16::i;:::-;14750:73;;;;-1:-1:-1;;;14750:73:0;;9623:2:1;14750:73:0;;;9605:21:1;9662:2;9642:18;;;9635:30;9701:34;9681:18;;;9674:62;-1:-1:-1;;;9752:18:1;;;9745:42;9804:19;;14750:73:0;9421:408:1;14750:73:0;-1:-1:-1;14834:16:0;14853:24;;;:15;:24;;;;;;-1:-1:-1;;;;;14853:24:0;;14654:257::o;14242:404::-;14323:13;14339:16;14347:7;14339;:16::i;:::-;14323:32;;14380:5;-1:-1:-1;;;;;14374:11:0;:2;-1:-1:-1;;;;;14374:11:0;;14366:57;;;;-1:-1:-1;;;14366:57:0;;10036:2:1;14366:57:0;;;10018:21:1;10075:2;10055:18;;;10048:30;10114:34;10094:18;;;10087:62;-1:-1:-1;;;10165:18:1;;;10158:31;10206:19;;14366:57:0;9834:397:1;14366:57:0;830:10;-1:-1:-1;;;;;14458:21:0;;;;:62;;-1:-1:-1;14483:37:0;14500:5;830:10;15082:164;:::i;14483:37::-;14436:168;;;;-1:-1:-1;;;14436:168:0;;10438:2:1;14436:168:0;;;10420:21:1;10477:2;10457:18;;;10450:30;10516:34;10496:18;;;10489:62;10587:26;10567:18;;;10560:54;10631:19;;14436:168:0;10236:420:1;14436:168:0;14617:21;14626:2;14630:7;14617:8;:21::i;19758:97::-;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;830:10;9946:23;9938:68;;;;-1:-1:-1;;;9938:68:0;;;;;;;:::i;:::-;19826:11:::1;:21:::0;;-1:-1:-1;;19826:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19758:97::o;15254:339::-;15449:41;830:10;15482:7;15449:18;:41::i;:::-;15441:103;;;;-1:-1:-1;;;15441:103:0;;;;;;;:::i;:::-;15557:28;15567:4;15573:2;15577:7;15557:9;:28::i;15601:185::-;15739:39;15756:4;15762:2;15766:7;15739:39;;;;;;;;;;;;:16;:39::i;20708:74::-;20760:14;20766:7;20760:5;:14::i;:::-;20708:74;:::o;20794:416::-;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;830:10;9946:23;9938:68;;;;-1:-1:-1;;;9938:68:0;;;;;;;:::i;:::-;20931:29;;::::1;:57:::0;::::1;;;-1:-1:-1::0;20964:24:0;;::::1;20931:57;20923:90;;;::::0;-1:-1:-1;;;20923:90:0;;11281:2:1;20923:90:0::1;::::0;::::1;11263:21:1::0;11320:2;11300:18;;;11293:30;-1:-1:-1;;;11339:18:1;;;11332:50;11399:18;;20923:90:0::1;11079:344:1::0;20923:90:0::1;21027:9;21023:180;21041:18:::0;;::::1;21023:180;;;21114:1;21083:7;21114:1:::0;21091:7;;21099:1;21091:10;;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;21083:19:::0;;-1:-1:-1;21083:19:0;::::1;::::0;;;;;;-1:-1:-1;21083:19:0;;-1:-1:-1;;;;;21083:19:0::1;:33:::0;21080:112:::1;;21166:7;;21174:1;21166:10;;;;;;;:::i;:::-;;;;;;;21159:2;;21162:1;21159:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21141:36:0::1;21150:4;;21155:1;21150:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21141:36:0::1;-1:-1:-1::0;;;;;;;;;;;21141:36:0::1;;;;;;;;;21080:112;21060:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21023:180;;;;20794:416:::0;;;;;;:::o;12922:127::-;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;830:10;9946:23;9938:68;;;;-1:-1:-1;;;9938:68:0;;;;;;;:::i;:::-;13005:7:::1;:36:::0;;-1:-1:-1;;;;;13005:36:0;;::::1;;;-1:-1:-1::0;;;;;;13005:36:0;;::::1;::::0;;;::::1;::::0;;12922:127::o;13409:240::-;13481:7;13501:13;13517:17;13526:7;13517:8;:17::i;:::-;13501:33;-1:-1:-1;;;;;;13553:19:0;;13545:73;;;;-1:-1:-1;;;13545:73:0;;11630:2:1;13545:73:0;;;11612:21:1;11669:2;11649:18;;;11642:30;11708:34;11688:18;;;11681:62;-1:-1:-1;;;11759:18:1;;;11752:39;11808:19;;13545:73:0;11428:405:1;13057:344:0;13129:7;-1:-1:-1;;;;;13157:19:0;;13149:74;;;;-1:-1:-1;;;13149:74:0;;12040:2:1;13149:74:0;;;12022:21:1;12079:2;12059:18;;;12052:30;12118:34;12098:18;;;12091:62;-1:-1:-1;;;12169:18:1;;;12162:40;12219:19;;13149:74:0;11838:406:1;13149:74:0;13234:15;13268:9;13264:105;13287:12;;13282:1;:17;13264:105;;13337:5;-1:-1:-1;;;;;13322:20:0;:11;13331:1;13322:8;:11::i;:::-;-1:-1:-1;;;;;13322:20:0;;13319:39;;13346:9;;;;:::i;:::-;;;;13319:39;13300:3;;;;:::i;:::-;;;;13264:105;;;-1:-1:-1;13386:7:0;13057:344;-1:-1:-1;;13057:344:0:o;10377:103::-;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;830:10;9946:23;9938:68;;;;-1:-1:-1;;;9938:68:0;;;;;;;:::i;:::-;10442:30:::1;10469:1;10442:18;:30::i;:::-;10377:103::o:0;14130:104::-;14186:13;14219:7;14212:14;;;;;:::i;14919:155::-;15014:52;830:10;15047:8;15057;15014:18;:52::i;:::-;14919:155;;:::o;15794:328::-;15969:41;830:10;16002:7;15969:18;:41::i;:::-;15961:103;;;;-1:-1:-1;;;15961:103:0;;;;;;;:::i;:::-;16075:39;16089:4;16095:2;16099:7;16108:5;16075:13;:39::i;:::-;15794:328;;;;:::o;21325:253::-;21390:13;21438:16;21446:7;21438;:16::i;:::-;21416:113;;;;-1:-1:-1;;;21416:113:0;;12451:2:1;21416:113:0;;;12433:21:1;12490:2;12470:18;;;12463:30;12529:34;12509:18;;;12502:62;-1:-1:-1;;;12580:18:1;;;12573:45;12635:19;;21416:113:0;12249:411:1;21416:113:0;21557:13;21550:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21325:253;;;:::o;21218:99::-;21264:13;21297:12;21290:19;;;;;:::i;20391:311::-;20453:13;20469:16;20477:7;20469;:16::i;:::-;20453:32;-1:-1:-1;;;;;;20504:21:0;;830:10;20504:21;;:42;;;20529:17;10539:4;10564:6;-1:-1:-1;;;;;10564:6:0;830:10;10564:22;;10488:107;20529:17;20496:83;;;;-1:-1:-1;;;20496:83:0;;12867:2:1;20496:83:0;;;12849:21:1;12906:2;12886:18;;;12879:30;12945;12925:18;;;12918:58;12993:18;;20496:83:0;12665:352:1;20496:83:0;20590:25;;;;:16;:25;;;;;;;;:32;;-1:-1:-1;;20590:32:0;20618:4;20590:32;;;20659:7;:16;;;;;;:24;;-1:-1:-1;;;;;20659:24:0;;;-1:-1:-1;;;;;;20659:24:0;;;;;;;;;20391:311::o;10750:201::-;9772:7;9799:6;-1:-1:-1;;;;;9799:6:0;830:10;9946:23;9938:68;;;;-1:-1:-1;;;9938:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10839:22:0;::::1;10831:73;;;::::0;-1:-1:-1;;;10831:73:0;;13224:2:1;10831:73:0::1;::::0;::::1;13206:21:1::0;13263:2;13243:18;;;13236:30;13302:34;13282:18;;;13275:62;-1:-1:-1;;;13353:18:1;;;13346:36;13399:19;;10831:73:0::1;13022:402:1::0;10831:73:0::1;10915:28;10934:8;10915:18;:28::i;16979:118::-:0;17056:33;;17081:7;;-1:-1:-1;;;;;17056:33:0;;;17073:1;;-1:-1:-1;;;;;;;;;;;17056:33:0;17073:1;;17056:33;16979:118;;:::o;16453:169::-;16518:4;16542:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16542:16:0;:30;;;:72;;-1:-1:-1;16576:7:0;;:24;;-1:-1:-1;;;16576:24:0;;;;;4050:25:1;;;-1:-1:-1;;16576:7:0;;;-1:-1:-1;;;;;16576:7:0;;:15;;4023:18:1;;16576:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;16576:38:0;;;16535:79;16453:169;-1:-1:-1;;16453:169:0:o;18207:167::-;18282:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;18282:29:0;-1:-1:-1;;;;;18282:29:0;;;;;;;;:24;;18336:16;18282:24;18336:7;:16::i;:::-;-1:-1:-1;;;;;18327:39:0;;;;;;;;;;;18207:167;;:::o;16630:341::-;16723:4;16748:16;16756:7;16748;:16::i;:::-;16740:73;;;;-1:-1:-1;;;16740:73:0;;13887:2:1;16740:73:0;;;13869:21:1;13926:2;13906:18;;;13899:30;13965:34;13945:18;;;13938:62;-1:-1:-1;;;14016:18:1;;;14009:42;14068:19;;16740:73:0;13685:408:1;16740:73:0;16824:13;16840:16;16848:7;16840;:16::i;:::-;16824:32;;16886:5;-1:-1:-1;;;;;16875:16:0;:7;-1:-1:-1;;;;;16875:16:0;;:51;;;;16919:7;-1:-1:-1;;;;;16895:31:0;:20;16907:7;16895:11;:20::i;:::-;-1:-1:-1;;;;;16895:31:0;;16875:51;:87;;;-1:-1:-1;;;;;;15203:25:0;;;15179:4;15203:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;16930:32;16867:96;16630:341;-1:-1:-1;;;;16630:341:0:o;17645:554::-;17797:4;-1:-1:-1;;;;;17777:24:0;:16;17785:7;17777;:16::i;:::-;-1:-1:-1;;;;;17777:24:0;;17769:78;;;;-1:-1:-1;;;17769:78:0;;14300:2:1;17769:78:0;;;14282:21:1;14339:2;14319:18;;;14312:30;14378:34;14358:18;;;14351:62;-1:-1:-1;;;14429:18:1;;;14422:39;14478:19;;17769:78:0;14098:405:1;17769:78:0;-1:-1:-1;;;;;17866:16:0;;17858:65;;;;-1:-1:-1;;;17858:65:0;;14710:2:1;17858:65:0;;;14692:21:1;14749:2;14729:18;;;14722:30;14788:34;14768:18;;;14761:62;-1:-1:-1;;;14839:18:1;;;14832:34;14883:19;;17858:65:0;14508:400:1;17858:65:0;18040:29;18057:1;18061:7;18040:8;:29::i;:::-;18114:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;18114:21:0;-1:-1:-1;;;;;18114:21:0;;;;;;;;;18164:27;;18114:16;;18164:27;;;;-1:-1:-1;;;;;;;;;;;18164:27:0;;17645:554;;;:::o;17105:532::-;17165:13;17181:16;17189:7;17181;:16::i;:::-;17165:32;-1:-1:-1;;;;;;17216:21:0;;830:10;17216:21;17208:57;;;;-1:-1:-1;;;17208:57:0;;15115:2:1;17208:57:0;;;15097:21:1;15154:2;15134:18;;;15127:30;15193:25;15173:18;;;15166:53;15236:18;;17208:57:0;14913:347:1;17208:57:0;17367:29;17384:1;17388:7;17367:8;:29::i;:::-;17436:25;;;;:16;:25;;;;;;;;17432:68;;17465:25;;;;:16;:25;;;;;:32;;-1:-1:-1;;17465:32:0;17493:4;17465:32;;;17432:68;17513:12;:17;;-1:-1:-1;;17513:17:0;;;:12;17559:16;;;:7;:16;;;;;;17552:23;;-1:-1:-1;;;;;;17552:23:0;;;17593:36;17567:7;;17513:12;-1:-1:-1;;;;;17593:36:0;;;-1:-1:-1;;;;;;;;;;;17593:36:0;17513:12;;17593:36;17154:483;17105:532;:::o;13657:357::-;13723:7;13759:16;;;:7;:16;;;;;;-1:-1:-1;;;;;13759:16:0;13789:19;;:49;;;;-1:-1:-1;13813:25:0;;;;:16;:25;;;;;;;;13812:26;13789:49;:65;;;;-1:-1:-1;13843:11:0;;;;13842:12;13789:65;13786:198;;;13874:7;;:24;;-1:-1:-1;;;13874:24:0;;;;;4050:25:1;;;13874:7:0;;;;-1:-1:-1;;;;;13874:7:0;;:15;;4023:18:1;;13874:24:0;;;;;;;;;;;;;;;;;;-1:-1:-1;13874:24:0;;;;;;;;-1:-1:-1;;13874:24:0;;;;;;;;;;;;:::i;:::-;;;13870:103;;-1:-1:-1;13968:1:0;13870:103;;;13934:6;14001:5;-1:-1:-1;;;13657:357:0:o;11111:191::-;11185:16;11204:6;;-1:-1:-1;;;;;11221:17:0;;;-1:-1:-1;;;;;;11221:17:0;;;;;;11254:40;;11204:6;;;;;;;11254:40;;11185:16;11254:40;11174:128;11111:191;:::o;18382:315::-;18537:8;-1:-1:-1;;;;;18528:17:0;:5;-1:-1:-1;;;;;18528:17:0;;18520:55;;;;-1:-1:-1;;;18520:55:0;;15467:2:1;18520:55:0;;;15449:21:1;15506:2;15486:18;;;15479:30;15545:27;15525:18;;;15518:55;15590:18;;18520:55:0;15265:349:1;18520:55:0;-1:-1:-1;;;;;18586:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;18586:46:0;;;;;;;;;;18648:41;;1354::1;;;18648::0;;1327:18:1;18648:41:0;;;;;;;18382:315;;;:::o;16130:::-;16287:28;16297:4;16303:2;16307:7;16287:9;:28::i;:::-;16334:48;16357:4;16363:2;16367:7;16376:5;16334:22;:48::i;:::-;16326:111;;;;-1:-1:-1;;;16326:111:0;;;;;;;:::i;18705:799::-;18860:4;-1:-1:-1;;;;;18881:13:0;;24683:20;24731:8;18877:620;;18917:72;;-1:-1:-1;;;18917:72:0;;-1:-1:-1;;;;;18917:36:0;;;;;:72;;830:10;;18968:4;;18974:7;;18983:5;;18917:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18917:72:0;;;;;;;;-1:-1:-1;;18917:72:0;;;;;;;;;;;;:::i;:::-;;;18913:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19159:6;:13;19176:1;19159:18;19155:272;;19202:60;;-1:-1:-1;;;19202:60:0;;;;;;;:::i;19155:272::-;19377:6;19371:13;19362:6;19358:2;19354:15;19347:38;18913:529;-1:-1:-1;;;;;;19040:51:0;-1:-1:-1;;;19040:51:0;;-1:-1:-1;19033:58:0;;18877:620;-1:-1:-1;19481:4:0;18705:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:367:1;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:437::-;472:6;480;533:2;521:9;512:7;508:23;504:32;501:52;;;549:1;546;539:12;501:52;589:9;576:23;622:18;614:6;611:30;608:50;;;654:1;651;644:12;608:50;693:70;755:7;746:6;735:9;731:22;693:70;:::i;:::-;782:8;;667:96;;-1:-1:-1;386:437:1;-1:-1:-1;;;;386:437:1:o;828:131::-;-1:-1:-1;;;;;;902:32:1;;892:43;;882:71;;949:1;946;939:12;964:245;1022:6;1075:2;1063:9;1054:7;1050:23;1046:32;1043:52;;;1091:1;1088;1081:12;1043:52;1130:9;1117:23;1149:30;1173:5;1149:30;:::i;1406:592::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1594:9;1581:23;1623:18;1664:2;1656:6;1653:14;1650:34;;;1680:1;1677;1670:12;1650:34;1718:6;1707:9;1703:22;1693:32;;1763:7;1756:4;1752:2;1748:13;1744:27;1734:55;;1785:1;1782;1775:12;1734:55;1825:2;1812:16;1851:2;1843:6;1840:14;1837:34;;;1867:1;1864;1857:12;1837:34;1912:7;1907:2;1898:6;1894:2;1890:15;1886:24;1883:37;1880:57;;;1933:1;1930;1923:12;1880:57;1964:2;1956:11;;;;;1986:6;;-1:-1:-1;1406:592:1;;-1:-1:-1;;;;1406:592:1:o;2003:472::-;2045:3;2083:5;2077:12;2110:6;2105:3;2098:19;2135:1;2145:162;2159:6;2156:1;2153:13;2145:162;;;2221:4;2277:13;;;2273:22;;2267:29;2249:11;;;2245:20;;2238:59;2174:12;2145:162;;;2325:6;2322:1;2319:13;2316:87;;;2391:1;2384:4;2375:6;2370:3;2366:16;2362:27;2355:38;2316:87;-1:-1:-1;2457:2:1;2436:15;-1:-1:-1;;2432:29:1;2423:39;;;;2464:4;2419:50;;2003:472;-1:-1:-1;;2003:472:1:o;2480:220::-;2629:2;2618:9;2611:21;2592:4;2649:45;2690:2;2679:9;2675:18;2667:6;2649:45;:::i;2705:180::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;-1:-1:-1;2856:23:1;;2705:180;-1:-1:-1;2705:180:1:o;3098:131::-;-1:-1:-1;;;;;3173:31:1;;3163:42;;3153:70;;3219:1;3216;3209:12;3234:315;3302:6;3310;3363:2;3351:9;3342:7;3338:23;3334:32;3331:52;;;3379:1;3376;3369:12;3331:52;3418:9;3405:23;3437:31;3462:5;3437:31;:::i;:::-;3487:5;3539:2;3524:18;;;;3511:32;;-1:-1:-1;;;3234:315:1:o;3554:160::-;3619:20;;3675:13;;3668:21;3658:32;;3648:60;;3704:1;3701;3694:12;3648:60;3554:160;;;:::o;3719:180::-;3775:6;3828:2;3816:9;3807:7;3803:23;3799:32;3796:52;;;3844:1;3841;3834:12;3796:52;3867:26;3883:9;3867:26;:::i;4086:456::-;4163:6;4171;4179;4232:2;4220:9;4211:7;4207:23;4203:32;4200:52;;;4248:1;4245;4238:12;4200:52;4287:9;4274:23;4306:31;4331:5;4306:31;:::i;:::-;4356:5;-1:-1:-1;4413:2:1;4398:18;;4385:32;4426:33;4385:32;4426:33;:::i;:::-;4086:456;;4478:7;;-1:-1:-1;;;4532:2:1;4517:18;;;;4504:32;;4086:456::o;4547:1088::-;4705:6;4713;4721;4729;4737;4745;4798:2;4786:9;4777:7;4773:23;4769:32;4766:52;;;4814:1;4811;4804:12;4766:52;4854:9;4841:23;4883:18;4924:2;4916:6;4913:14;4910:34;;;4940:1;4937;4930:12;4910:34;4979:70;5041:7;5032:6;5021:9;5017:22;4979:70;:::i;:::-;5068:8;;-1:-1:-1;4953:96:1;-1:-1:-1;5156:2:1;5141:18;;5128:32;;-1:-1:-1;5172:16:1;;;5169:36;;;5201:1;5198;5191:12;5169:36;5240:72;5304:7;5293:8;5282:9;5278:24;5240:72;:::i;:::-;5331:8;;-1:-1:-1;5214:98:1;-1:-1:-1;5419:2:1;5404:18;;5391:32;;-1:-1:-1;5435:16:1;;;5432:36;;;5464:1;5461;5454:12;5432:36;;5503:72;5567:7;5556:8;5545:9;5541:24;5503:72;:::i;:::-;4547:1088;;;;-1:-1:-1;4547:1088:1;;-1:-1:-1;4547:1088:1;;5594:8;;4547:1088;-1:-1:-1;;;4547:1088:1:o;5640:247::-;5699:6;5752:2;5740:9;5731:7;5727:23;5723:32;5720:52;;;5768:1;5765;5758:12;5720:52;5807:9;5794:23;5826:31;5851:5;5826:31;:::i;5892:315::-;5957:6;5965;6018:2;6006:9;5997:7;5993:23;5989:32;5986:52;;;6034:1;6031;6024:12;5986:52;6073:9;6060:23;6092:31;6117:5;6092:31;:::i;:::-;6142:5;-1:-1:-1;6166:35:1;6197:2;6182:18;;6166:35;:::i;:::-;6156:45;;5892:315;;;;;:::o;6212:127::-;6273:10;6268:3;6264:20;6261:1;6254:31;6304:4;6301:1;6294:15;6328:4;6325:1;6318:15;6344:1266;6439:6;6447;6455;6463;6516:3;6504:9;6495:7;6491:23;6487:33;6484:53;;;6533:1;6530;6523:12;6484:53;6572:9;6559:23;6591:31;6616:5;6591:31;:::i;:::-;6641:5;-1:-1:-1;6698:2:1;6683:18;;6670:32;6711:33;6670:32;6711:33;:::i;:::-;6763:7;-1:-1:-1;6817:2:1;6802:18;;6789:32;;-1:-1:-1;6872:2:1;6857:18;;6844:32;6895:18;6925:14;;;6922:34;;;6952:1;6949;6942:12;6922:34;6990:6;6979:9;6975:22;6965:32;;7035:7;7028:4;7024:2;7020:13;7016:27;7006:55;;7057:1;7054;7047:12;7006:55;7093:2;7080:16;7115:2;7111;7108:10;7105:36;;;7121:18;;:::i;:::-;7196:2;7190:9;7164:2;7250:13;;-1:-1:-1;;7246:22:1;;;7270:2;7242:31;7238:40;7226:53;;;7294:18;;;7314:22;;;7291:46;7288:72;;;7340:18;;:::i;:::-;7380:10;7376:2;7369:22;7415:2;7407:6;7400:18;7455:7;7450:2;7445;7441;7437:11;7433:20;7430:33;7427:53;;;7476:1;7473;7466:12;7427:53;7532:2;7527;7523;7519:11;7514:2;7506:6;7502:15;7489:46;7577:1;7572:2;7567;7559:6;7555:15;7551:24;7544:35;7598:6;7588:16;;;;;;;6344:1266;;;;;;;:::o;7615:388::-;7683:6;7691;7744:2;7732:9;7723:7;7719:23;7715:32;7712:52;;;7760:1;7757;7750:12;7712:52;7799:9;7786:23;7818:31;7843:5;7818:31;:::i;:::-;7868:5;-1:-1:-1;7925:2:1;7910:18;;7897:32;7938:33;7897:32;7938:33;:::i;:::-;7990:7;7980:17;;;7615:388;;;;;:::o;8008:356::-;8210:2;8192:21;;;8229:18;;;8222:30;8288:34;8283:2;8268:18;;8261:62;8355:2;8340:18;;8008:356::o;8369:127::-;8430:10;8425:3;8421:20;8418:1;8411:31;8461:4;8458:1;8451:15;8485:4;8482:1;8475:15;8501:128;8541:3;8572:1;8568:6;8565:1;8562:13;8559:39;;;8578:18;;:::i;:::-;-1:-1:-1;8614:9:1;;8501:128::o;8634:127::-;8695:10;8690:3;8686:20;8683:1;8676:31;8726:4;8723:1;8716:15;8750:4;8747:1;8740:15;8766:135;8805:3;8826:17;;;8823:43;;8846:18;;:::i;:::-;-1:-1:-1;8893:1:1;8882:13;;8766:135::o;8906:125::-;8946:4;8974:1;8971;8968:8;8965:34;;;8979:18;;:::i;:::-;-1:-1:-1;9016:9:1;;8906:125::o;9036:380::-;9115:1;9111:12;;;;9158;;;9179:61;;9233:4;9225:6;9221:17;9211:27;;9179:61;9286:2;9278:6;9275:14;9255:18;9252:38;9249:161;;9332:10;9327:3;9323:20;9320:1;9313:31;9367:4;9364:1;9357:15;9395:4;9392:1;9385:15;9249:161;;9036:380;;;:::o;10661:413::-;10863:2;10845:21;;;10902:2;10882:18;;;10875:30;10941:34;10936:2;10921:18;;10914:62;-1:-1:-1;;;11007:2:1;10992:18;;10985:47;11064:3;11049:19;;10661:413::o;13429:251::-;13499:6;13552:2;13540:9;13531:7;13527:23;13523:32;13520:52;;;13568:1;13565;13558:12;13520:52;13600:9;13594:16;13619:31;13644:5;13619:31;:::i;15619:414::-;15821:2;15803:21;;;15860:2;15840:18;;;15833:30;15899:34;15894:2;15879:18;;15872:62;-1:-1:-1;;;15965:2:1;15950:18;;15943:48;16023:3;16008:19;;15619:414::o;16038:489::-;-1:-1:-1;;;;;16307:15:1;;;16289:34;;16359:15;;16354:2;16339:18;;16332:43;16406:2;16391:18;;16384:34;;;16454:3;16449:2;16434:18;;16427:31;;;16232:4;;16475:46;;16501:19;;16493:6;16475:46;:::i;:::-;16467:54;16038:489;-1:-1:-1;;;;;;16038:489:1:o;16532:249::-;16601:6;16654:2;16642:9;16633:7;16629:23;16625:32;16622:52;;;16670:1;16667;16660:12;16622:52;16702:9;16696:16;16721:30;16745:5;16721:30;:::i

Swarm Source

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