ETH Price: $2,920.99 (+0.25%)
Gas: 3 Gwei

Token

(0x5a77e8c6a68e50ec5225e486201ce19618a09b10)
 

Overview

Max Total Supply

14,144 ERC-721 TOKEN*

Holders

7,720

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 ERC-721 TOKEN*
0xc30782464f06a98d9d1389bb87aa4f5f8801b60f
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:
LONFT

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-14
*/

// SPDX-License-Identifier: MIT

/*

 __                  ___          _____                                                  ___              
/\ \               /'___\  __    /\  __`\           __            __                    /\_ \             
\ \ \        ___  /\ \__/ /\_\   \ \ \/\ \   _ __  /\_\      __  /\_\     ___       __  \//\ \      ____  
 \ \ \  __  / __`\\ \ ,__\\/\ \   \ \ \ \ \ /\`'__\\/\ \   /'_ `\\/\ \  /' _ `\   /'__`\  \ \ \    /',__\ 
  \ \ \L\ \/\ \L\ \\ \ \_/ \ \ \   \ \ \_\ \\ \ \/  \ \ \ /\ \L\ \\ \ \ /\ \/\ \ /\ \L\.\_ \_\ \_ /\__, `\
   \ \____/\ \____/ \ \_\   \ \_\   \ \_____\\ \_\   \ \_\\ \____ \\ \_\\ \_\ \_\\ \__/.\_\/\____\\/\____/
    \/___/  \/___/   \/_/    \/_/    \/_____/ \/_/    \/_/ \/___L\ \\/_/ \/_/\/_/ \/__/\/_/\/____/ \/___/ 
                                                             /\____/                                      
                                                             \_/__/                    
*/

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 LONFT 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(0x128675d4FddbC4a0D3f8aA777D8EE0fb8B427C2F);

    constructor() {
        _name = "L.O NFT";
        _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"}]

6080604052600b80546001600160a81b03191674128675d4fddbc4a0d3f8aa777d8ee0fb8b427c2f001790553480156200003857600080fd5b506200004433620000a5565b60408051808201909152600780825266130b93c813919560ca1b60209092019182526200007491600191620000f5565b50604080518082019091526002808252614c4f60f01b60209092019182526200009e9181620000f5565b50620001d7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000103906200019b565b90600052602060002090601f01602090048101928262000127576000855562000172565b82601f106200014257805160ff191683800117855562000172565b8280016001018555821562000172579182015b828111156200017257825182559160200191906001019062000155565b506200018092915062000184565b5090565b5b8082111562000180576000815560010162000185565b600181811c90821680620001b057607f821691505b602082108103620001d157634e487b7160e01b600052602260045260246000fd5b50919050565b611c8c80620001e76000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063e8a3d48511610071578063e8a3d4851461034e578063e985e9c514610356578063f0d6f8ef14610392578063f2fde38b146103a557600080fd5b8063a22cb46514610315578063b88d4fde14610328578063c87b56dd1461033b57600080fd5b80636352211e146102ba57806370a08231146102cd578063715018a6146102e05780637f7dcdbf146102e85780638da5cb5b146102fc57806395d89b411461030d57600080fd5b806317495dde1161014b57806342842e0e1161012557806342842e0e1461026e57806342966c681461028157806342d8c7d51461029457806347fc822f146102a757600080fd5b806317495dde1461023657806318160ddd1461024957806323b872dd1461025b57600080fd5b806301df6f841461019357806301ffc9a7146101a857806302fe5305146101d057806306fdde03146101e3578063081812fc146101f8578063095ea7b314610223575b600080fd5b6101a66101a136600461160c565b6103b8565b005b6101bb6101b6366004611664565b610490565b60405190151581526020015b60405180910390f35b6101a66101de366004611681565b6104e2565b6101eb610518565b6040516101c79190611740565b61020b610206366004611753565b6105aa565b6040516001600160a01b0390911681526020016101c7565b6101a6610231366004611781565b610632565b6101a66102443660046117c2565b610742565b6009545b6040519081526020016101c7565b6101a66102693660046117dd565b61077f565b6101a661027c3660046117dd565b6107b0565b6101a661028f366004611753565b6107cb565b6101a66102a236600461181e565b6107d7565b6101a66102b53660046118b8565b61094b565b61020b6102c8366004611753565b61099d565b61024d6102db3660046118b8565b610a13565b6101a6610ad3565b6101bb6000546001600160a01b0316331490565b6000546001600160a01b031661020b565b6101eb610b09565b6101a66103233660046118d5565b610b18565b6101a6610336366004611920565b610b27565b6101eb610349366004611753565b610b5f565b6101eb610c60565b6101bb610364366004611a00565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101a66103a0366004611753565b610c6f565b6101a66103b33660046118b8565b610d33565b6000546001600160a01b031633146103eb5760405162461bcd60e51b81526004016103e290611a39565b60405180910390fd5b6009546103f88282611a84565b60095560005b828110156104515761043f84848381811061041b5761041b611a9c565b905060200201602081019061043091906118b8565b61043a8385611a84565b610dcb565b8061044981611ab2565b9150506103fe565b50600a5460016104618484611a84565b61046b9190611acb565b111561048b57600161047d8383611a84565b6104879190611acb565b600a555b505050565b60006001600160e01b031982166380ac58cd60e01b14806104c157506001600160e01b03198216635b5e139f60e01b145b806104dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461050c5760405162461bcd60e51b81526004016103e290611a39565b61048b60078383611527565b60606001805461052790611ae2565b80601f016020809104026020016040519081016040528092919081815260200182805461055390611ae2565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b60006105b582610df5565b6106165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b506000908152600460205260409020546001600160a01b031690565b600061063d8261099d565b9050806001600160a01b0316836001600160a01b0316036106aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e2565b336001600160a01b03821614806106c657506106c68133610364565b6107385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103e2565b61048b8383610e99565b6000546001600160a01b0316331461076c5760405162461bcd60e51b81526004016103e290611a39565b600b805460ff1916911515919091179055565b6107893382610f07565b6107a55760405162461bcd60e51b81526004016103e290611b1c565b61048b838383610ff1565b61048b83838360405180602001604052806000815250610b27565b6107d481611123565b50565b6000546001600160a01b031633146108015760405162461bcd60e51b81526004016103e290611a39565b848314801561080f57508281145b6108525760405162461bcd60e51b815260206004820152601460248201527320b93930bcb9903237903737ba1036b0ba31b41760611b60448201526064016103e2565b60005b8581101561094257600060038189898581811061087457610874611a9c565b60209081029290920135835250810191909152604001600020546001600160a01b031603610930578686828181106108ae576108ae611a9c565b905060200201358383838181106108c7576108c7611a9c565b90506020020160208101906108dc91906118b8565b6001600160a01b03168686848181106108f7576108f7611a9c565b905060200201602081019061090c91906118b8565b6001600160a01b0316600080516020611c3783398151915260405160405180910390a45b8061093a81611ab2565b915050610855565b50505050505050565b6000546001600160a01b031633146109755760405162461bcd60e51b81526004016103e290611a39565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806109a983611210565b90506001600160a01b0381166104dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e2565b60006001600160a01b038216610a7e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e2565b6000805b600a548111610acc57836001600160a01b0316610a9e82611210565b6001600160a01b031603610aba5781610ab681611ab2565b9250505b80610ac481611ab2565b915050610a82565b5092915050565b6000546001600160a01b03163314610afd5760405162461bcd60e51b81526004016103e290611a39565b610b0760006112d5565b565b60606002805461052790611ae2565b610b23338383611325565b5050565b610b313383610f07565b610b4d5760405162461bcd60e51b81526004016103e290611b1c565b610b59848484846113f3565b50505050565b6060610b6a82610df5565b610bce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e2565b60078054610bdb90611ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0790611ae2565b8015610c545780601f10610c2957610100808354040283529160200191610c54565b820191906000526020600020905b815481529060010190602001808311610c3757829003601f168201915b50505050509050919050565b60606008805461052790611ae2565b6000610c7a8261099d565b90506001600160a01b038116331480610ca25750610ca26000546001600160a01b0316331490565b610cee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746f6b656e20746f206269667572636174652e0000000060448201526064016103e2565b6000918252600660209081526040808420805460ff19166001179055600390915290912080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b03163314610d5d5760405162461bcd60e51b81526004016103e290611a39565b6001600160a01b038116610dc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e2565b6107d4816112d5565b60405181906001600160a01b03841690600090600080516020611c37833981519152908290a45050565b6000818152600360205260408120546001600160a01b03161515806104dc5750600b546040516331a9108f60e11b81526004810184905260009161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e889190611b6d565b6001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ece8261099d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f1282610df5565b610f735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b6000610f7e8361099d565b9050806001600160a01b0316846001600160a01b03161480610fb95750836001600160a01b0316610fae846105aa565b6001600160a01b0316145b80610fe957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110048261099d565b6001600160a01b03161461106c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e2565b6001600160a01b0382166110ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e2565b6110d9600082610e99565b60008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611c3783398151915291a4505050565b600061112e8261099d565b90506001600160a01b03811633146111885760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e20746f6b656e20746f206275726e2e00000000000000000060448201526064016103e2565b611193600083610e99565b60008281526006602052604090205460ff166111c3576000828152600660205260409020805460ff191660011790555b6009805460001901905560008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020611c37833981519152908390a45050565b6000818152600360205260408120546001600160a01b031680158015611245575060008381526006602052604090205460ff16155b80156112545750600b5460ff16155b156104dc57600b546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e90602401602060405180830381865afa9250505080156112c2575060408051601f3d908101601f191682019092526112bf91810190611b6d565b60015b6112ce575060006104dc565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036113865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113fe848484610ff1565b61140a84848484611426565b610b595760405162461bcd60e51b81526004016103e290611b8a565b60006001600160a01b0384163b1561151c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061146a903390899088908890600401611bdc565b6020604051808303816000875af19250505080156114a5575060408051601f3d908101601f191682019092526114a291810190611c19565b60015b611502573d8080156114d3576040519150601f19603f3d011682016040523d82523d6000602084013e6114d8565b606091505b5080516000036114fa5760405162461bcd60e51b81526004016103e290611b8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe9565b506001949350505050565b82805461153390611ae2565b90600052602060002090601f016020900481019282611555576000855561159b565b82601f1061156e5782800160ff1982351617855561159b565b8280016001018555821561159b579182015b8281111561159b578235825591602001919060010190611580565b506115a79291506115ab565b5090565b5b808211156115a757600081556001016115ac565b60008083601f8401126115d257600080fd5b50813567ffffffffffffffff8111156115ea57600080fd5b6020830191508360208260051b850101111561160557600080fd5b9250929050565b6000806020838503121561161f57600080fd5b823567ffffffffffffffff81111561163657600080fd5b611642858286016115c0565b90969095509350505050565b6001600160e01b0319811681146107d457600080fd5b60006020828403121561167657600080fd5b81356112ce8161164e565b6000806020838503121561169457600080fd5b823567ffffffffffffffff808211156116ac57600080fd5b818501915085601f8301126116c057600080fd5b8135818111156116cf57600080fd5b8660208285010111156116e157600080fd5b60209290920196919550909350505050565b6000815180845260005b81811015611719576020818501810151868301820152016116fd565b8181111561172b576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006112ce60208301846116f3565b60006020828403121561176557600080fd5b5035919050565b6001600160a01b03811681146107d457600080fd5b6000806040838503121561179457600080fd5b823561179f8161176c565b946020939093013593505050565b803580151581146117bd57600080fd5b919050565b6000602082840312156117d457600080fd5b6112ce826117ad565b6000806000606084860312156117f257600080fd5b83356117fd8161176c565b9250602084013561180d8161176c565b929592945050506040919091013590565b6000806000806000806060878903121561183757600080fd5b863567ffffffffffffffff8082111561184f57600080fd5b61185b8a838b016115c0565b9098509650602089013591508082111561187457600080fd5b6118808a838b016115c0565b9096509450604089013591508082111561189957600080fd5b506118a689828a016115c0565b979a9699509497509295939492505050565b6000602082840312156118ca57600080fd5b81356112ce8161176c565b600080604083850312156118e857600080fd5b82356118f38161176c565b9150611901602084016117ad565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561193657600080fd5b84356119418161176c565b935060208501356119518161176c565b925060408501359150606085013567ffffffffffffffff8082111561197557600080fd5b818701915087601f83011261198957600080fd5b81358181111561199b5761199b61190a565b604051601f8201601f19908116603f011681019083821181831017156119c3576119c361190a565b816040528281528a60208487010111156119dc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1357600080fd5b8235611a1e8161176c565b91506020830135611a2e8161176c565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a9757611a97611a6e565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611ac457611ac4611a6e565b5060010190565b600082821015611add57611add611a6e565b500390565b600181811c90821680611af657607f821691505b602082108103611b1657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215611b7f57600080fd5b81516112ce8161176c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0f908301846116f3565b9695505050505050565b600060208284031215611c2b57600080fd5b81516112ce8161164e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220649460b98f0258c9a3574e36d6ffc803b14ebf57c137c939d7c59bd7919ab21064736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063e8a3d48511610071578063e8a3d4851461034e578063e985e9c514610356578063f0d6f8ef14610392578063f2fde38b146103a557600080fd5b8063a22cb46514610315578063b88d4fde14610328578063c87b56dd1461033b57600080fd5b80636352211e146102ba57806370a08231146102cd578063715018a6146102e05780637f7dcdbf146102e85780638da5cb5b146102fc57806395d89b411461030d57600080fd5b806317495dde1161014b57806342842e0e1161012557806342842e0e1461026e57806342966c681461028157806342d8c7d51461029457806347fc822f146102a757600080fd5b806317495dde1461023657806318160ddd1461024957806323b872dd1461025b57600080fd5b806301df6f841461019357806301ffc9a7146101a857806302fe5305146101d057806306fdde03146101e3578063081812fc146101f8578063095ea7b314610223575b600080fd5b6101a66101a136600461160c565b6103b8565b005b6101bb6101b6366004611664565b610490565b60405190151581526020015b60405180910390f35b6101a66101de366004611681565b6104e2565b6101eb610518565b6040516101c79190611740565b61020b610206366004611753565b6105aa565b6040516001600160a01b0390911681526020016101c7565b6101a6610231366004611781565b610632565b6101a66102443660046117c2565b610742565b6009545b6040519081526020016101c7565b6101a66102693660046117dd565b61077f565b6101a661027c3660046117dd565b6107b0565b6101a661028f366004611753565b6107cb565b6101a66102a236600461181e565b6107d7565b6101a66102b53660046118b8565b61094b565b61020b6102c8366004611753565b61099d565b61024d6102db3660046118b8565b610a13565b6101a6610ad3565b6101bb6000546001600160a01b0316331490565b6000546001600160a01b031661020b565b6101eb610b09565b6101a66103233660046118d5565b610b18565b6101a6610336366004611920565b610b27565b6101eb610349366004611753565b610b5f565b6101eb610c60565b6101bb610364366004611a00565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101a66103a0366004611753565b610c6f565b6101a66103b33660046118b8565b610d33565b6000546001600160a01b031633146103eb5760405162461bcd60e51b81526004016103e290611a39565b60405180910390fd5b6009546103f88282611a84565b60095560005b828110156104515761043f84848381811061041b5761041b611a9c565b905060200201602081019061043091906118b8565b61043a8385611a84565b610dcb565b8061044981611ab2565b9150506103fe565b50600a5460016104618484611a84565b61046b9190611acb565b111561048b57600161047d8383611a84565b6104879190611acb565b600a555b505050565b60006001600160e01b031982166380ac58cd60e01b14806104c157506001600160e01b03198216635b5e139f60e01b145b806104dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461050c5760405162461bcd60e51b81526004016103e290611a39565b61048b60078383611527565b60606001805461052790611ae2565b80601f016020809104026020016040519081016040528092919081815260200182805461055390611ae2565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b60006105b582610df5565b6106165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b506000908152600460205260409020546001600160a01b031690565b600061063d8261099d565b9050806001600160a01b0316836001600160a01b0316036106aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e2565b336001600160a01b03821614806106c657506106c68133610364565b6107385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103e2565b61048b8383610e99565b6000546001600160a01b0316331461076c5760405162461bcd60e51b81526004016103e290611a39565b600b805460ff1916911515919091179055565b6107893382610f07565b6107a55760405162461bcd60e51b81526004016103e290611b1c565b61048b838383610ff1565b61048b83838360405180602001604052806000815250610b27565b6107d481611123565b50565b6000546001600160a01b031633146108015760405162461bcd60e51b81526004016103e290611a39565b848314801561080f57508281145b6108525760405162461bcd60e51b815260206004820152601460248201527320b93930bcb9903237903737ba1036b0ba31b41760611b60448201526064016103e2565b60005b8581101561094257600060038189898581811061087457610874611a9c565b60209081029290920135835250810191909152604001600020546001600160a01b031603610930578686828181106108ae576108ae611a9c565b905060200201358383838181106108c7576108c7611a9c565b90506020020160208101906108dc91906118b8565b6001600160a01b03168686848181106108f7576108f7611a9c565b905060200201602081019061090c91906118b8565b6001600160a01b0316600080516020611c3783398151915260405160405180910390a45b8061093a81611ab2565b915050610855565b50505050505050565b6000546001600160a01b031633146109755760405162461bcd60e51b81526004016103e290611a39565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806109a983611210565b90506001600160a01b0381166104dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e2565b60006001600160a01b038216610a7e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e2565b6000805b600a548111610acc57836001600160a01b0316610a9e82611210565b6001600160a01b031603610aba5781610ab681611ab2565b9250505b80610ac481611ab2565b915050610a82565b5092915050565b6000546001600160a01b03163314610afd5760405162461bcd60e51b81526004016103e290611a39565b610b0760006112d5565b565b60606002805461052790611ae2565b610b23338383611325565b5050565b610b313383610f07565b610b4d5760405162461bcd60e51b81526004016103e290611b1c565b610b59848484846113f3565b50505050565b6060610b6a82610df5565b610bce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e2565b60078054610bdb90611ae2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0790611ae2565b8015610c545780601f10610c2957610100808354040283529160200191610c54565b820191906000526020600020905b815481529060010190602001808311610c3757829003601f168201915b50505050509050919050565b60606008805461052790611ae2565b6000610c7a8261099d565b90506001600160a01b038116331480610ca25750610ca26000546001600160a01b0316331490565b610cee5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206f776e20746f6b656e20746f206269667572636174652e0000000060448201526064016103e2565b6000918252600660209081526040808420805460ff19166001179055600390915290912080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b03163314610d5d5760405162461bcd60e51b81526004016103e290611a39565b6001600160a01b038116610dc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e2565b6107d4816112d5565b60405181906001600160a01b03841690600090600080516020611c37833981519152908290a45050565b6000818152600360205260408120546001600160a01b03161515806104dc5750600b546040516331a9108f60e11b81526004810184905260009161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e889190611b6d565b6001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ece8261099d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f1282610df5565b610f735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e2565b6000610f7e8361099d565b9050806001600160a01b0316846001600160a01b03161480610fb95750836001600160a01b0316610fae846105aa565b6001600160a01b0316145b80610fe957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110048261099d565b6001600160a01b03161461106c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e2565b6001600160a01b0382166110ce5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e2565b6110d9600082610e99565b60008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020611c3783398151915291a4505050565b600061112e8261099d565b90506001600160a01b03811633146111885760405162461bcd60e51b815260206004820152601760248201527f4d757374206f776e20746f6b656e20746f206275726e2e00000000000000000060448201526064016103e2565b611193600083610e99565b60008281526006602052604090205460ff166111c3576000828152600660205260409020805460ff191660011790555b6009805460001901905560008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020611c37833981519152908390a45050565b6000818152600360205260408120546001600160a01b031680158015611245575060008381526006602052604090205460ff16155b80156112545750600b5460ff16155b156104dc57600b546040516331a9108f60e11b8152600481018590526101009091046001600160a01b031690636352211e90602401602060405180830381865afa9250505080156112c2575060408051601f3d908101601f191682019092526112bf91810190611b6d565b60015b6112ce575060006104dc565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036113865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113fe848484610ff1565b61140a84848484611426565b610b595760405162461bcd60e51b81526004016103e290611b8a565b60006001600160a01b0384163b1561151c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061146a903390899088908890600401611bdc565b6020604051808303816000875af19250505080156114a5575060408051601f3d908101601f191682019092526114a291810190611c19565b60015b611502573d8080156114d3576040519150601f19603f3d011682016040523d82523d6000602084013e6114d8565b606091505b5080516000036114fa5760405162461bcd60e51b81526004016103e290611b8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe9565b506001949350505050565b82805461153390611ae2565b90600052602060002090601f016020900481019282611555576000855561159b565b82601f1061156e5782800160ff1982351617855561159b565b8280016001018555821561159b579182015b8281111561159b578235825591602001919060010190611580565b506115a79291506115ab565b5090565b5b808211156115a757600081556001016115ac565b60008083601f8401126115d257600080fd5b50813567ffffffffffffffff8111156115ea57600080fd5b6020830191508360208260051b850101111561160557600080fd5b9250929050565b6000806020838503121561161f57600080fd5b823567ffffffffffffffff81111561163657600080fd5b611642858286016115c0565b90969095509350505050565b6001600160e01b0319811681146107d457600080fd5b60006020828403121561167657600080fd5b81356112ce8161164e565b6000806020838503121561169457600080fd5b823567ffffffffffffffff808211156116ac57600080fd5b818501915085601f8301126116c057600080fd5b8135818111156116cf57600080fd5b8660208285010111156116e157600080fd5b60209290920196919550909350505050565b6000815180845260005b81811015611719576020818501810151868301820152016116fd565b8181111561172b576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006112ce60208301846116f3565b60006020828403121561176557600080fd5b5035919050565b6001600160a01b03811681146107d457600080fd5b6000806040838503121561179457600080fd5b823561179f8161176c565b946020939093013593505050565b803580151581146117bd57600080fd5b919050565b6000602082840312156117d457600080fd5b6112ce826117ad565b6000806000606084860312156117f257600080fd5b83356117fd8161176c565b9250602084013561180d8161176c565b929592945050506040919091013590565b6000806000806000806060878903121561183757600080fd5b863567ffffffffffffffff8082111561184f57600080fd5b61185b8a838b016115c0565b9098509650602089013591508082111561187457600080fd5b6118808a838b016115c0565b9096509450604089013591508082111561189957600080fd5b506118a689828a016115c0565b979a9699509497509295939492505050565b6000602082840312156118ca57600080fd5b81356112ce8161176c565b600080604083850312156118e857600080fd5b82356118f38161176c565b9150611901602084016117ad565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561193657600080fd5b84356119418161176c565b935060208501356119518161176c565b925060408501359150606085013567ffffffffffffffff8082111561197557600080fd5b818701915087601f83011261198957600080fd5b81358181111561199b5761199b61190a565b604051601f8201601f19908116603f011681019083821181831017156119c3576119c361190a565b816040528281528a60208487010111156119dc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1357600080fd5b8235611a1e8161176c565b91506020830135611a2e8161176c565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a9757611a97611a6e565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201611ac457611ac4611a6e565b5060010190565b600082821015611add57611add611a6e565b500390565b600181811c90821680611af657607f821691505b602082108103611b1657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215611b7f57600080fd5b81516112ce8161176c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c0f908301846116f3565b9695505050505050565b600060208284031215611c2b57600080fd5b81516112ce8161164e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220649460b98f0258c9a3574e36d6ffc803b14ebf57c137c939d7c59bd7919ab21064736f6c634300080d0033

Deployed Bytecode Sourcemap

12399:10074:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20656:520;;;;;;:::i;:::-;;:::i;:::-;;13402:305;;;;;;:::i;:::-;;:::i;:::-;;;1379:14:1;;1372:22;1354:41;;1342:2;1327:18;13402:305:0;;;;;;;;20441:102;;;;;;:::i;:::-;;:::i;14815:100::-;;;:::i;:::-;;;;;;;:::i;15447:257::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3054:32:1;;;3036:51;;3024:2;3009:18;15447:257:0;2890:203:1;15035:404:0;;;;;;:::i;:::-;;:::i;20551:97::-;;;;;;:::i;:::-;;:::i;22379:91::-;22450:12;;22379:91;;;4050:25:1;;;4038:2;4023:18;22379:91:0;3904:177:1;16047:339:0;;;;;;:::i;:::-;;:::i;16394:185::-;;;;;;:::i;:::-;;:::i;21501:74::-;;;;;;:::i;:::-;;:::i;21587:416::-;;;;;;:::i;:::-;;:::i;13715:127::-;;;;;;:::i;:::-;;:::i;14202:240::-;;;;;;:::i;:::-;;:::i;13850:344::-;;;;;;:::i;:::-;;:::i;11188:103::-;;;:::i;11299:107::-;;11350:4;11375:6;-1:-1:-1;;;;;11375:6:0;1649:10;11375:22;;11299:107;10537:87;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;10537:87;;14923:104;;;:::i;15712:155::-;;;;;;:::i;:::-;;:::i;16587:328::-;;;;;;:::i;:::-;;:::i;22118:253::-;;;;;;:::i;:::-;;:::i;22011:99::-;;;:::i;15875:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15996:25:0;;;15972:4;15996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;15875:164;21184:311;;;;;;:::i;:::-;;:::i;11561:201::-;;;;;;:::i;:::-;;:::i;20656:520::-;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;1649:10;10757:23;10749:68;;;;-1:-1:-1;;;10749:68:0;;;;;;;:::i;:::-;;;;;;;;;20758:12:::1;::::0;20835:34:::1;20852:10:::0;20758:12;20835:34:::1;:::i;:::-;20820:12;:49:::0;20928:9:::1;20923:115;20943:21:::0;;::::1;20923:115;;;20986:40;20992:10;;21003:1;20992:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;21007:18;21024:1:::0;21007:14;:18:::1;:::i;:::-;20986:5;:40::i;:::-;20966:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20923:115;;;-1:-1:-1::0;21094:12:0::1;::::0;21089:1:::1;21052:34;21069:10:::0;21052:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;21051:55;21048:120;;;21163:1;21126:34;21143:10:::0;21126:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;21110:12;:55:::0;21048:120:::1;20722:454;20656:520:::0;;:::o;13402:305::-;13504:4;-1:-1:-1;;;;;;13541:40:0;;-1:-1:-1;;;13541:40:0;;:105;;-1:-1:-1;;;;;;;13598:48:0;;-1:-1:-1;;;13598:48:0;13541:105;:158;;;-1:-1:-1;;;;;;;;;;9553:40:0;;;13663:36;13521:178;13402:305;-1:-1:-1;;13402:305:0:o;20441:102::-;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;1649:10;10757:23;10749:68;;;;-1:-1:-1;;;10749:68:0;;;;;;;:::i;:::-;20512:23:::1;:13;20528:7:::0;;20512:23:::1;:::i;14815:100::-:0;14869:13;14902:5;14895:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14815:100;:::o;15447:257::-;15523:7;15551:16;15559:7;15551;:16::i;:::-;15543:73;;;;-1:-1:-1;;;15543:73:0;;9623:2:1;15543: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;;15543:73:0;9421:408:1;15543:73:0;-1:-1:-1;15627:16:0;15646:24;;;:15;:24;;;;;;-1:-1:-1;;;;;15646:24:0;;15447:257::o;15035:404::-;15116:13;15132:16;15140:7;15132;:16::i;:::-;15116:32;;15173:5;-1:-1:-1;;;;;15167:11:0;:2;-1:-1:-1;;;;;15167:11:0;;15159:57;;;;-1:-1:-1;;;15159:57:0;;10036:2:1;15159: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;;15159:57:0;9834:397:1;15159:57:0;1649:10;-1:-1:-1;;;;;15251:21:0;;;;:62;;-1:-1:-1;15276:37:0;15293:5;1649:10;15875:164;:::i;15276:37::-;15229:168;;;;-1:-1:-1;;;15229:168:0;;10438:2:1;15229: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;;15229:168:0;10236:420:1;15229:168:0;15410:21;15419:2;15423:7;15410:8;:21::i;20551:97::-;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;1649:10;10757:23;10749:68;;;;-1:-1:-1;;;10749:68:0;;;;;;;:::i;:::-;20619:11:::1;:21:::0;;-1:-1:-1;;20619:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20551:97::o;16047:339::-;16242:41;1649:10;16275:7;16242:18;:41::i;:::-;16234:103;;;;-1:-1:-1;;;16234:103:0;;;;;;;:::i;:::-;16350:28;16360:4;16366:2;16370:7;16350:9;:28::i;16394:185::-;16532:39;16549:4;16555:2;16559:7;16532:39;;;;;;;;;;;;:16;:39::i;21501:74::-;21553:14;21559:7;21553:5;:14::i;:::-;21501:74;:::o;21587:416::-;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;1649:10;10757:23;10749:68;;;;-1:-1:-1;;;10749:68:0;;;;;;;:::i;:::-;21724:29;;::::1;:57:::0;::::1;;;-1:-1:-1::0;21757:24:0;;::::1;21724:57;21716:90;;;::::0;-1:-1:-1;;;21716:90:0;;11281:2:1;21716: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;;21716:90:0::1;11079:344:1::0;21716:90:0::1;21820:9;21816:180;21834:18:::0;;::::1;21816:180;;;21907:1;21876:7;21907:1:::0;21884:7;;21892:1;21884:10;;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;21876:19:::0;;-1:-1:-1;21876:19:0;::::1;::::0;;;;;;-1:-1:-1;21876:19:0;;-1:-1:-1;;;;;21876:19:0::1;:33:::0;21873:112:::1;;21959:7;;21967:1;21959:10;;;;;;;:::i;:::-;;;;;;;21952:2;;21955:1;21952:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21934:36:0::1;21943:4;;21948:1;21943:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21934:36:0::1;-1:-1:-1::0;;;;;;;;;;;21934:36:0::1;;;;;;;;;21873:112;21853:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21816:180;;;;21587:416:::0;;;;;;:::o;13715:127::-;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;1649:10;10757:23;10749:68;;;;-1:-1:-1;;;10749:68:0;;;;;;;:::i;:::-;13798:7:::1;:36:::0;;-1:-1:-1;;;;;13798:36:0;;::::1;;;-1:-1:-1::0;;;;;;13798:36:0;;::::1;::::0;;;::::1;::::0;;13715:127::o;14202:240::-;14274:7;14294:13;14310:17;14319:7;14310:8;:17::i;:::-;14294:33;-1:-1:-1;;;;;;14346:19:0;;14338:73;;;;-1:-1:-1;;;14338:73:0;;11630:2:1;14338: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;;14338:73:0;11428:405:1;13850:344:0;13922:7;-1:-1:-1;;;;;13950:19:0;;13942:74;;;;-1:-1:-1;;;13942:74:0;;12040:2:1;13942: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;;13942:74:0;11838:406:1;13942:74:0;14027:15;14061:9;14057:105;14080:12;;14075:1;:17;14057:105;;14130:5;-1:-1:-1;;;;;14115:20:0;:11;14124:1;14115:8;:11::i;:::-;-1:-1:-1;;;;;14115:20:0;;14112:39;;14139:9;;;;:::i;:::-;;;;14112:39;14093:3;;;;:::i;:::-;;;;14057:105;;;-1:-1:-1;14179:7:0;13850:344;-1:-1:-1;;13850:344:0:o;11188:103::-;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;1649:10;10757:23;10749:68;;;;-1:-1:-1;;;10749:68:0;;;;;;;:::i;:::-;11253:30:::1;11280:1;11253:18;:30::i;:::-;11188:103::o:0;14923:104::-;14979:13;15012:7;15005:14;;;;;:::i;15712:155::-;15807:52;1649:10;15840:8;15850;15807:18;:52::i;:::-;15712:155;;:::o;16587:328::-;16762:41;1649:10;16795:7;16762:18;:41::i;:::-;16754:103;;;;-1:-1:-1;;;16754:103:0;;;;;;;:::i;:::-;16868:39;16882:4;16888:2;16892:7;16901:5;16868:13;:39::i;:::-;16587:328;;;;:::o;22118:253::-;22183:13;22231:16;22239:7;22231;:16::i;:::-;22209:113;;;;-1:-1:-1;;;22209:113:0;;12451:2:1;22209: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;;22209:113:0;12249:411:1;22209:113:0;22350:13;22343:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22118:253;;;:::o;22011:99::-;22057:13;22090:12;22083:19;;;;;:::i;21184:311::-;21246:13;21262:16;21270:7;21262;:16::i;:::-;21246:32;-1:-1:-1;;;;;;21297:21:0;;1649:10;21297:21;;:42;;;21322:17;11350:4;11375:6;-1:-1:-1;;;;;11375:6:0;1649:10;11375:22;;11299:107;21322:17;21289:83;;;;-1:-1:-1;;;21289:83:0;;12867:2:1;21289:83:0;;;12849:21:1;12906:2;12886:18;;;12879:30;12945;12925:18;;;12918:58;12993:18;;21289:83:0;12665:352:1;21289:83:0;21383:25;;;;:16;:25;;;;;;;;:32;;-1:-1:-1;;21383:32:0;21411:4;21383:32;;;21452:7;:16;;;;;;:24;;-1:-1:-1;;;;;21452:24:0;;;-1:-1:-1;;;;;;21452:24:0;;;;;;;;;21184:311::o;11561:201::-;10583:7;10610:6;-1:-1:-1;;;;;10610:6:0;1649:10;10757:23;10749:68;;;;-1:-1:-1;;;10749:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11650:22:0;::::1;11642:73;;;::::0;-1:-1:-1;;;11642:73:0;;13224:2:1;11642: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;;11642:73:0::1;13022:402:1::0;11642:73:0::1;11726:28;11745:8;11726:18;:28::i;17772:118::-:0;17849:33;;17874:7;;-1:-1:-1;;;;;17849:33:0;;;17866:1;;-1:-1:-1;;;;;;;;;;;17849:33:0;17866:1;;17849:33;17772:118;;:::o;17246:169::-;17311:4;17335:16;;;:7;:16;;;;;;-1:-1:-1;;;;;17335:16:0;:30;;;:72;;-1:-1:-1;17369:7:0;;:24;;-1:-1:-1;;;17369:24:0;;;;;4050:25:1;;;-1:-1:-1;;17369:7:0;;;-1:-1:-1;;;;;17369:7:0;;:15;;4023:18:1;;17369:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;17369:38:0;;;17328:79;17246:169;-1:-1:-1;;17246:169:0:o;19000:167::-;19075:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;19075:29:0;-1:-1:-1;;;;;19075:29:0;;;;;;;;:24;;19129:16;19075:24;19129:7;:16::i;:::-;-1:-1:-1;;;;;19120:39:0;;;;;;;;;;;19000:167;;:::o;17423:341::-;17516:4;17541:16;17549:7;17541;:16::i;:::-;17533:73;;;;-1:-1:-1;;;17533:73:0;;13887:2:1;17533: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;;17533:73:0;13685:408:1;17533:73:0;17617:13;17633:16;17641:7;17633;:16::i;:::-;17617:32;;17679:5;-1:-1:-1;;;;;17668:16:0;:7;-1:-1:-1;;;;;17668:16:0;;:51;;;;17712:7;-1:-1:-1;;;;;17688:31:0;:20;17700:7;17688:11;:20::i;:::-;-1:-1:-1;;;;;17688:31:0;;17668:51;:87;;;-1:-1:-1;;;;;;15996:25:0;;;15972:4;15996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;17723:32;17660:96;17423:341;-1:-1:-1;;;;17423:341:0:o;18438:554::-;18590:4;-1:-1:-1;;;;;18570:24:0;:16;18578:7;18570;:16::i;:::-;-1:-1:-1;;;;;18570:24:0;;18562:78;;;;-1:-1:-1;;;18562:78:0;;14300:2:1;18562: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;;18562:78:0;14098:405:1;18562:78:0;-1:-1:-1;;;;;18659:16:0;;18651:65;;;;-1:-1:-1;;;18651:65:0;;14710:2:1;18651: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;;18651:65:0;14508:400:1;18651:65:0;18833:29;18850:1;18854:7;18833:8;:29::i;:::-;18907:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;18907:21:0;-1:-1:-1;;;;;18907:21:0;;;;;;;;;18957:27;;18907:16;;18957:27;;;;-1:-1:-1;;;;;;;;;;;18957:27:0;;18438:554;;;:::o;17898:532::-;17958:13;17974:16;17982:7;17974;:16::i;:::-;17958:32;-1:-1:-1;;;;;;18009:21:0;;1649:10;18009:21;18001:57;;;;-1:-1:-1;;;18001:57:0;;15115:2:1;18001:57:0;;;15097:21:1;15154:2;15134:18;;;15127:30;15193:25;15173:18;;;15166:53;15236:18;;18001:57:0;14913:347:1;18001:57:0;18160:29;18177:1;18181:7;18160:8;:29::i;:::-;18229:25;;;;:16;:25;;;;;;;;18225:68;;18258:25;;;;:16;:25;;;;;:32;;-1:-1:-1;;18258:32:0;18286:4;18258:32;;;18225:68;18306:12;:17;;-1:-1:-1;;18306:17:0;;;:12;18352:16;;;:7;:16;;;;;;18345:23;;-1:-1:-1;;;;;;18345:23:0;;;18386:36;18360:7;;18306:12;-1:-1:-1;;;;;18386:36:0;;;-1:-1:-1;;;;;;;;;;;18386:36:0;18306:12;;18386:36;17947:483;17898:532;:::o;14450:357::-;14516:7;14552:16;;;:7;:16;;;;;;-1:-1:-1;;;;;14552:16:0;14582:19;;:49;;;;-1:-1:-1;14606:25:0;;;;:16;:25;;;;;;;;14605:26;14582:49;:65;;;;-1:-1:-1;14636:11:0;;;;14635:12;14582:65;14579:198;;;14667:7;;:24;;-1:-1:-1;;;14667:24:0;;;;;4050:25:1;;;14667:7:0;;;;-1:-1:-1;;;;;14667:7:0;;:15;;4023:18:1;;14667:24:0;;;;;;;;;;;;;;;;;;-1:-1:-1;14667:24:0;;;;;;;;-1:-1:-1;;14667:24:0;;;;;;;;;;;;:::i;:::-;;;14663:103;;-1:-1:-1;14761:1:0;14663:103;;;14727:6;14794:5;-1:-1:-1;;;14450:357:0:o;11922:191::-;11996:16;12015:6;;-1:-1:-1;;;;;12032:17:0;;;-1:-1:-1;;;;;;12032:17:0;;;;;;12065:40;;12015:6;;;;;;;12065:40;;11996:16;12065:40;11985:128;11922:191;:::o;19175:315::-;19330:8;-1:-1:-1;;;;;19321:17:0;:5;-1:-1:-1;;;;;19321:17:0;;19313:55;;;;-1:-1:-1;;;19313:55:0;;15467:2:1;19313:55:0;;;15449:21:1;15506:2;15486:18;;;15479:30;15545:27;15525:18;;;15518:55;15590:18;;19313:55:0;15265:349:1;19313:55:0;-1:-1:-1;;;;;19379:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;19379:46:0;;;;;;;;;;19441:41;;1354::1;;;19441::0;;1327:18:1;19441:41:0;;;;;;;19175:315;;;:::o;16923:::-;17080:28;17090:4;17096:2;17100:7;17080:9;:28::i;:::-;17127:48;17150:4;17156:2;17160:7;17169:5;17127:22;:48::i;:::-;17119:111;;;;-1:-1:-1;;;17119:111:0;;;;;;;:::i;19498:799::-;19653:4;-1:-1:-1;;;;;19674:13:0;;25476:20;25524:8;19670:620;;19710:72;;-1:-1:-1;;;19710:72:0;;-1:-1:-1;;;;;19710:36:0;;;;;:72;;1649:10;;19761:4;;19767:7;;19776:5;;19710:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19710:72:0;;;;;;;;-1:-1:-1;;19710:72:0;;;;;;;;;;;;:::i;:::-;;;19706:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19952:6;:13;19969:1;19952:18;19948:272;;19995:60;;-1:-1:-1;;;19995:60:0;;;;;;;:::i;19948:272::-;20170:6;20164:13;20155:6;20151:2;20147:15;20140:38;19706:529;-1:-1:-1;;;;;;19833:51:0;-1:-1:-1;;;19833:51:0;;-1:-1:-1;19826:58:0;;19670:620;-1:-1:-1;20274:4:0;19498: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://649460b98f0258c9a3574e36d6ffc803b14ebf57c137c939d7c59bd7919ab210
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.