ETH Price: $2,687.02 (-2.18%)

Token

MusicFund (MUSICFUND)
 

Overview

Max Total Supply

269 MUSICFUND

Holders

138

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
danyo.eth
Balance
2 MUSICFUND
0xC322177505Be9c46052Fd83aA249Aef57b87Ade7
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:
MusicFund

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-27
*/

//                                     #/&
//                                   @#@@%%     #(#*,
//                               (%(/ %%%&%#     &&&&/
//                              #@(%(* #/#%#/    &&&#*.
//                               %&%(* #(@%#/    %%(#%.
//                               %#%&(  &#*#/*   #/&#%,
//                         ,&%(, &#%((* #&##(/   #@#*%*
//                         %##/,  (%##* #&%&(,   %%((/,
//                         %@%(,  (&@#*.(((#(,  ,#**,,,     #/*#,.
//                         %(/#/, **###&,&%#/*,//***,,,   &#/(/*,
//                          (/#/**%(/*,%#(/*,.,#/***,,, .(/%%(.,
//                          (#&&%#&#/,,*#(/o/o/,//***,,, %(#%,,/
//                          (/&&%#&((/#(//*,((///***,,..&/#*,,
//                          #&#%(/&%(/*,/(#(((///*%%/,,.(&%*,,
//                          #&#%//&&%%#(/*#(((///o/(/,.(,/&/,
//                         &#&%%/,@&%%#(/##%%(//,(/%%%#((/**.
//                         &#&#%/*@&%%%%%#**%###(&%&%%#((/**.
//                         &#&(/(#%&&&%%&(#@,,#@@&&&%%#((*.
//                         &#/(/,/%/,&%@&##//,##@@&&%%(/,
//                          #/,*,/&(,/%%/&%(/%#@@@&%#(/
//                           /,*,/&(./%%*@&&%%##@&%**
//                           *,/%&#%*%&%(@&&%%##(/
//                            (*,/#%,,%@#@@&%%##(.
//                            .o//(//,,((,&&%%/*,/
//                             *,/&(/%%#/,&%#(/*,.
//                             *,@@&&&&&%@@#/(/*,*
//                            %*%(%&@&&&%@&%#(/*,..
//                            (/&(*&@&&%%#&%#(/*,.
//                            (*&(*&&&&%%##%#(/*,.
//                            (*&@@&&&%%%#((//*,,,*

// Sources flattened with hardhat v2.6.1 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/finance/[email protected]

pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}


// File contracts/MusicFund.sol


pragma solidity ^0.8.0;


contract MusicFund is ERC721, ERC721Enumerable, Ownable {

    string public PROVENANCE;

    uint public constant maxTokenPurchase = 10;

    uint256 public MAX_TOKENS = 10000;
    bool public saleIsActive = false;
    bool public preSaleIsActive = false;

    string private _baseURIextended;
    uint256 private _price = 50000000000000000; // .05 ETH
    uint256 private _reserve = 300;
    uint256 private _preSaleCap = 5;

    // Facilitating the needed functionality for the presale
    mapping(address => bool) addressToPreSaleEntry;
    mapping(address => uint256) addressToPreSaleNumberMinted;

    constructor() ERC721("MusicFund", "MUSICFUND") {
    }

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

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

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    function setPrice(uint256 _newWEIPrice) public onlyOwner {
        _price = _newWEIPrice;
    }

    function getReserve() public view returns (uint256) {
        return _reserve;
    }

    function setReserve(uint256 _newReserve) public onlyOwner {
        _reserve = _newReserve;
    }

    function reserveTokens() public onlyOwner {
        uint supply = totalSupply();
        require(supply + _reserve < MAX_TOKENS, "We have already hit the reserve limit");
        uint i;
        for (i = 0; i < _reserve; i++) {
            uint mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
    }

    function addWalletToPreSale(address _address) public onlyOwner {
        addressToPreSaleEntry[_address] = true;
    }

    function isWalletInPreSale(address _address) public view returns (bool) {
        return addressToPreSaleEntry[_address];
    }

    function preSaleNumberMinted(address _address) public view returns (uint256){
        return addressToPreSaleNumberMinted[_address];
    }

    function setPreSaleCap(uint256 _newPreSaleCap) public onlyOwner {
        _preSaleCap = _newPreSaleCap;
    }

    function getPreSaleCap() public view returns (uint256) {
        return _preSaleCap;
    }

    function preSaleMint(uint256 _count) public payable {
        uint256 totalSupply = totalSupply();
        require(preSaleIsActive, "Presale is not active");
        require(!saleIsActive, "The public sale has already started");
        require(addressToPreSaleEntry[msg.sender] == true, "This address is not whitelisted for the presale.");
        require(
            addressToPreSaleNumberMinted[msg.sender] + _count <= _preSaleCap,
            "Exceeds supply of presale cards you can mint."
        );
        require(_price * _count <= msg.value, "Transaction value too low.");

        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        // Keeps track of how many they've minted
        addressToPreSaleNumberMinted[msg.sender] += _count;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() public onlyOwner {
        preSaleIsActive = !preSaleIsActive;
    }

    function mintToken(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Tokens");
        require(numberOfTokens <= maxTokenPurchase, "Exceeded max token purchase");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens");
        require(_price * numberOfTokens <= msg.value, "Ether value sent is not correct");

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

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWalletToPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWalletInPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"preSaleNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPreSaleCap","type":"uint256"}],"name":"setPreSaleCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReserve","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c55600d805461ffff1916905566b1a2bc2ec50000600f5561012c60105560056011553480156200003857600080fd5b5060405180604001604052806009815260200168135d5cda58d19d5b9960ba1b81525060405180604001604052806009815260200168135554d250d195539160ba1b81525081600090805190602001906200009592919062000124565b508051620000ab90600190602084019062000124565b505050620000c8620000c2620000ce60201b60201c565b620000d2565b62000207565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013290620001ca565b90600052602060002090601f016020900481019282620001565760008555620001a1565b82601f106200017157805160ff1916838001178555620001a1565b82800160010185558215620001a1579182015b82811115620001a157825182559160200191906001019062000184565b50620001af929150620001b3565b5090565b5b80821115620001af5760008155600101620001b4565b600181811c90821680620001df57607f821691505b602082108114156200020157634e487b7160e01b600052602260045260246000fd5b50919050565b61271f80620002176000396000f3fe6080604052600436106102465760003560e01c80636373a6b111610139578063ae8e5ec9116100b6578063eb8d24441161007a578063eb8d2444146106a8578063ee4301b6146106c2578063f0325549146106e2578063f2fde38b146106f7578063f47c84c514610717578063ffe630b51461072d57600080fd5b8063ae8e5ec9146105d3578063b88d4fde1461060c578063c634d0321461062c578063c87b56dd1461063f578063e985e9c51461065f57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461054b57806391b7f5ed1461056957806395d89b411461058957806398d5fdca1461059e578063a22cb465146105b357600080fd5b80636373a6b1146104b857806370a08231146104cd578063715018a6146104ed5780637835c635146105025780638d05c07b1461051557600080fd5b806327ac36c4116101c757806342842e0e1161018b57806342842e0e146104235780634f6ccce71461044357806355f804b31461046357806359bf5d39146104835780636352211e1461049857600080fd5b806327ac36c4146103a45780632f745c59146103b957806334918dfd146103d95780633ccfd60b146103ee5780634256dbe31461040357600080fd5b806309aa3dcf1161020e57806309aa3dcf1461031b57806318160ddd146103305780631f0234d814610345578063233f50661461036457806323b872dd1461038457600080fd5b806301ffc9a71461024b578063022635571461028057806306fdde031461029f578063081812fc146102c1578063095ea7b3146102f9575b600080fd5b34801561025757600080fd5b5061026b61026636600461234e565b61074d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506011545b604051908152602001610277565b3480156102ab57600080fd5b506102b461075e565b6040516102779190612482565b3480156102cd57600080fd5b506102e16102dc3660046123d1565b6107f0565b6040516001600160a01b039091168152602001610277565b34801561030557600080fd5b50610319610314366004612324565b61088a565b005b34801561032757600080fd5b50610291600a81565b34801561033c57600080fd5b50600854610291565b34801561035157600080fd5b50600d5461026b90610100900460ff1681565b34801561037057600080fd5b5061031961037f3660046121e2565b6109a0565b34801561039057600080fd5b5061031961039f366004612230565b6109ee565b3480156103b057600080fd5b50610319610a1f565b3480156103c557600080fd5b506102916103d4366004612324565b610afd565b3480156103e557600080fd5b50610319610b93565b3480156103fa57600080fd5b50610319610bd1565b34801561040f57600080fd5b5061031961041e3660046123d1565b610c2a565b34801561042f57600080fd5b5061031961043e366004612230565b610c59565b34801561044f57600080fd5b5061029161045e3660046123d1565b610c74565b34801561046f57600080fd5b5061031961047e366004612388565b610d07565b34801561048f57600080fd5b50601054610291565b3480156104a457600080fd5b506102e16104b33660046123d1565b610d44565b3480156104c457600080fd5b506102b4610dbb565b3480156104d957600080fd5b506102916104e83660046121e2565b610e49565b3480156104f957600080fd5b50610319610ed0565b6103196105103660046123d1565b610f06565b34801561052157600080fd5b506102916105303660046121e2565b6001600160a01b031660009081526013602052604090205490565b34801561055757600080fd5b50600a546001600160a01b03166102e1565b34801561057557600080fd5b506103196105843660046123d1565b611177565b34801561059557600080fd5b506102b46111a6565b3480156105aa57600080fd5b50600f54610291565b3480156105bf57600080fd5b506103196105ce3660046122e8565b6111b5565b3480156105df57600080fd5b5061026b6105ee3660046121e2565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561061857600080fd5b5061031961062736600461226c565b61127a565b61031961063a3660046123d1565b6112b2565b34801561064b57600080fd5b506102b461065a3660046123d1565b61147c565b34801561066b57600080fd5b5061026b61067a3660046121fd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b457600080fd5b50600d5461026b9060ff1681565b3480156106ce57600080fd5b506103196106dd3660046123d1565b611557565b3480156106ee57600080fd5b50610319611586565b34801561070357600080fd5b506103196107123660046121e2565b6115cd565b34801561072357600080fd5b50610291600c5481565b34801561073957600080fd5b50610319610748366004612388565b611668565b6000610758826116a5565b92915050565b60606000805461076d906125fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610799906125fb565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089582610d44565b9050806001600160a01b0316836001600160a01b031614156109035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610865565b336001600160a01b038216148061091f575061091f813361067a565b6109915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610865565b61099b83836116ca565b505050565b600a546001600160a01b031633146109ca5760405162461bcd60e51b8152600401610865906124e7565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6109f83382611738565b610a145760405162461bcd60e51b81526004016108659061251c565b61099b83838361182f565b600a546001600160a01b03163314610a495760405162461bcd60e51b8152600401610865906124e7565b6000610a5460085490565b9050600c5460105482610a67919061256d565b10610ac25760405162461bcd60e51b815260206004820152602560248201527f5765206861766520616c726561647920686974207468652072657365727665206044820152641b1a5b5a5d60da1b6064820152608401610865565b60005b601054811015610af9576000610ada60085490565b9050610ae633826119da565b5080610af181612636565b915050610ac5565b5050565b6000610b0883610e49565b8210610b6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610865565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610865906124e7565b600d805460ff19811660ff90911615179055565b600a546001600160a01b03163314610bfb5760405162461bcd60e51b8152600401610865906124e7565b6040514790339082156108fc029083906000818181858888f19350505050158015610af9573d6000803e3d6000fd5b600a546001600160a01b03163314610c545760405162461bcd60e51b8152600401610865906124e7565b601055565b61099b8383836040518060200160405280600081525061127a565b6000610c7f60085490565b8210610ce25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610865565b60088281548110610cf557610cf56126a7565b90600052602060002001549050919050565b600a546001600160a01b03163314610d315760405162461bcd60e51b8152600401610865906124e7565b8051610af990600e9060208401906120b7565b6000818152600260205260408120546001600160a01b0316806107585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610865565b600b8054610dc8906125fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610df4906125fb565b8015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b505050505081565b60006001600160a01b038216610eb45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610865565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610efa5760405162461bcd60e51b8152600401610865906124e7565b610f0460006119f4565b565b6000610f1160085490565b600d54909150610100900460ff16610f635760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b6044820152606401610865565b600d5460ff1615610fc25760405162461bcd60e51b815260206004820152602360248201527f546865207075626c69632073616c652068617320616c726561647920737461726044820152621d195960ea1b6064820152608401610865565b3360009081526012602052604090205460ff16151560011461103f5760405162461bcd60e51b815260206004820152603060248201527f546869732061646472657373206973206e6f742077686974656c69737465642060448201526f3337b9103a343290383932b9b0b6329760811b6064820152608401610865565b6011543360009081526013602052604090205461105d90849061256d565b11156110c15760405162461bcd60e51b815260206004820152602d60248201527f4578636565647320737570706c79206f662070726573616c652063617264732060448201526c3cb7ba9031b0b71036b4b73a1760991b6064820152608401610865565b3482600f546110d09190612599565b111561111e5760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e2076616c756520746f6f206c6f772e0000000000006044820152606401610865565b60005b8281101561114e5761113c33611137838561256d565b6119da565b8061114681612636565b915050611121565b50336000908152601360205260408120805484929061116e90849061256d565b90915550505050565b600a546001600160a01b031633146111a15760405162461bcd60e51b8152600401610865906124e7565b600f55565b60606001805461076d906125fb565b6001600160a01b03821633141561120e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610865565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112843383611738565b6112a05760405162461bcd60e51b81526004016108659061251c565b6112ac84848484611a46565b50505050565b600d5460ff1661130f5760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656044820152616e7360f01b6064820152608401610865565b600a8111156113605760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e20707572636861736500000000006044820152606401610865565b600c548161136d60085490565b611377919061256d565b11156113d85760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b6064820152608401610865565b3481600f546113e79190612599565b11156114355760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610865565b60005b81811015610af957600061144b60085490565b9050600c5461145960085490565b10156114695761146933826119da565b508061147481612636565b915050611438565b6000818152600260205260409020546060906001600160a01b03166114fb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610865565b6000611505611a79565b905060008151116115255760405180602001604052806000815250611550565b8061152f84611a88565b604051602001611540929190612416565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115815760405162461bcd60e51b8152600401610865906124e7565b601155565b600a546001600160a01b031633146115b05760405162461bcd60e51b8152600401610865906124e7565b600d805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146115f75760405162461bcd60e51b8152600401610865906124e7565b6001600160a01b03811661165c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610865565b611665816119f4565b50565b600a546001600160a01b031633146116925760405162461bcd60e51b8152600401610865906124e7565b8051610af990600b9060208401906120b7565b60006001600160e01b0319821663780e9d6360e01b1480610758575061075882611b86565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116ff82610d44565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610865565b60006117bc83610d44565b9050806001600160a01b0316846001600160a01b031614806117f75750836001600160a01b03166117ec846107f0565b6001600160a01b0316145b8061182757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184282610d44565b6001600160a01b0316146118aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610865565b6001600160a01b03821661190c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610865565b611917838383611bd6565b6119226000826116ca565b6001600160a01b038316600090815260036020526040812080546001929061194b9084906125b8565b90915550506001600160a01b038216600090815260036020526040812080546001929061197990849061256d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610af9828260405180602001604052806000815250611be1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a5184848461182f565b611a5d84848484611c14565b6112ac5760405162461bcd60e51b815260040161086590612495565b6060600e805461076d906125fb565b606081611aac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ad65780611ac081612636565b9150611acf9050600a83612585565b9150611ab0565b60008167ffffffffffffffff811115611af157611af16126bd565b6040519080825280601f01601f191660200182016040528015611b1b576020820181803683370190505b5090505b841561182757611b306001836125b8565b9150611b3d600a86612651565b611b4890603061256d565b60f81b818381518110611b5d57611b5d6126a7565b60200101906001600160f81b031916908160001a905350611b7f600a86612585565b9450611b1f565b60006001600160e01b031982166380ac58cd60e01b1480611bb757506001600160e01b03198216635b5e139f60e01b145b8061075857506301ffc9a760e01b6001600160e01b0319831614610758565b61099b838383611d21565b611beb8383611dd9565b611bf86000848484611c14565b61099b5760405162461bcd60e51b815260040161086590612495565b60006001600160a01b0384163b15611d1657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c58903390899088908890600401612445565b602060405180830381600087803b158015611c7257600080fd5b505af1925050508015611ca2575060408051601f3d908101601f19168201909252611c9f9181019061236b565b60015b611cfc573d808015611cd0576040519150601f19603f3d011682016040523d82523d6000602084013e611cd5565b606091505b508051611cf45760405162461bcd60e51b815260040161086590612495565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611827565b506001949350505050565b6001600160a01b038316611d7c57611d7781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d9f565b816001600160a01b0316836001600160a01b031614611d9f57611d9f8382611f27565b6001600160a01b038216611db65761099b81611fc4565b826001600160a01b0316826001600160a01b03161461099b5761099b8282612073565b6001600160a01b038216611e2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610865565b6000818152600260205260409020546001600160a01b031615611e945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610865565b611ea060008383611bd6565b6001600160a01b0382166000908152600360205260408120805460019290611ec990849061256d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f3484610e49565b611f3e91906125b8565b600083815260076020526040902054909150808214611f91576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fd6906001906125b8565b60008381526009602052604081205460088054939450909284908110611ffe57611ffe6126a7565b90600052602060002001549050806008838154811061201f5761201f6126a7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205757612057612691565b6001900381819060005260206000200160009055905550505050565b600061207e83610e49565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120c3906125fb565b90600052602060002090601f0160209004810192826120e5576000855561212b565b82601f106120fe57805160ff191683800117855561212b565b8280016001018555821561212b579182015b8281111561212b578251825591602001919060010190612110565b5061213792915061213b565b5090565b5b80821115612137576000815560010161213c565b600067ffffffffffffffff8084111561216b5761216b6126bd565b604051601f8501601f19908116603f01168101908282118183101715612193576121936126bd565b816040528093508581528686860111156121ac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121dd57600080fd5b919050565b6000602082840312156121f457600080fd5b611550826121c6565b6000806040838503121561221057600080fd5b612219836121c6565b9150612227602084016121c6565b90509250929050565b60008060006060848603121561224557600080fd5b61224e846121c6565b925061225c602085016121c6565b9150604084013590509250925092565b6000806000806080858703121561228257600080fd5b61228b856121c6565b9350612299602086016121c6565b925060408501359150606085013567ffffffffffffffff8111156122bc57600080fd5b8501601f810187136122cd57600080fd5b6122dc87823560208401612150565b91505092959194509250565b600080604083850312156122fb57600080fd5b612304836121c6565b91506020830135801515811461231957600080fd5b809150509250929050565b6000806040838503121561233757600080fd5b612340836121c6565b946020939093013593505050565b60006020828403121561236057600080fd5b8135611550816126d3565b60006020828403121561237d57600080fd5b8151611550816126d3565b60006020828403121561239a57600080fd5b813567ffffffffffffffff8111156123b157600080fd5b8201601f810184136123c257600080fd5b61182784823560208401612150565b6000602082840312156123e357600080fd5b5035919050565b600081518084526124028160208601602086016125cf565b601f01601f19169290920160200192915050565b600083516124288184602088016125cf565b83519083019061243c8183602088016125cf565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612478908301846123ea565b9695505050505050565b60208152600061155060208301846123ea565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561258057612580612665565b500190565b6000826125945761259461267b565b500490565b60008160001904831182151516156125b3576125b3612665565b500290565b6000828210156125ca576125ca612665565b500390565b60005b838110156125ea5781810151838201526020016125d2565b838111156112ac5750506000910152565b600181811c9082168061260f57607f821691505b6020821081141561263057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264a5761264a612665565b5060010190565b6000826126605761266061267b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461166557600080fdfea26469706673582212201bcc829dc1dc9666101695ddaccba277194641b48b7a16e80af1dd39422949ef64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636373a6b111610139578063ae8e5ec9116100b6578063eb8d24441161007a578063eb8d2444146106a8578063ee4301b6146106c2578063f0325549146106e2578063f2fde38b146106f7578063f47c84c514610717578063ffe630b51461072d57600080fd5b8063ae8e5ec9146105d3578063b88d4fde1461060c578063c634d0321461062c578063c87b56dd1461063f578063e985e9c51461065f57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461054b57806391b7f5ed1461056957806395d89b411461058957806398d5fdca1461059e578063a22cb465146105b357600080fd5b80636373a6b1146104b857806370a08231146104cd578063715018a6146104ed5780637835c635146105025780638d05c07b1461051557600080fd5b806327ac36c4116101c757806342842e0e1161018b57806342842e0e146104235780634f6ccce71461044357806355f804b31461046357806359bf5d39146104835780636352211e1461049857600080fd5b806327ac36c4146103a45780632f745c59146103b957806334918dfd146103d95780633ccfd60b146103ee5780634256dbe31461040357600080fd5b806309aa3dcf1161020e57806309aa3dcf1461031b57806318160ddd146103305780631f0234d814610345578063233f50661461036457806323b872dd1461038457600080fd5b806301ffc9a71461024b578063022635571461028057806306fdde031461029f578063081812fc146102c1578063095ea7b3146102f9575b600080fd5b34801561025757600080fd5b5061026b61026636600461234e565b61074d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506011545b604051908152602001610277565b3480156102ab57600080fd5b506102b461075e565b6040516102779190612482565b3480156102cd57600080fd5b506102e16102dc3660046123d1565b6107f0565b6040516001600160a01b039091168152602001610277565b34801561030557600080fd5b50610319610314366004612324565b61088a565b005b34801561032757600080fd5b50610291600a81565b34801561033c57600080fd5b50600854610291565b34801561035157600080fd5b50600d5461026b90610100900460ff1681565b34801561037057600080fd5b5061031961037f3660046121e2565b6109a0565b34801561039057600080fd5b5061031961039f366004612230565b6109ee565b3480156103b057600080fd5b50610319610a1f565b3480156103c557600080fd5b506102916103d4366004612324565b610afd565b3480156103e557600080fd5b50610319610b93565b3480156103fa57600080fd5b50610319610bd1565b34801561040f57600080fd5b5061031961041e3660046123d1565b610c2a565b34801561042f57600080fd5b5061031961043e366004612230565b610c59565b34801561044f57600080fd5b5061029161045e3660046123d1565b610c74565b34801561046f57600080fd5b5061031961047e366004612388565b610d07565b34801561048f57600080fd5b50601054610291565b3480156104a457600080fd5b506102e16104b33660046123d1565b610d44565b3480156104c457600080fd5b506102b4610dbb565b3480156104d957600080fd5b506102916104e83660046121e2565b610e49565b3480156104f957600080fd5b50610319610ed0565b6103196105103660046123d1565b610f06565b34801561052157600080fd5b506102916105303660046121e2565b6001600160a01b031660009081526013602052604090205490565b34801561055757600080fd5b50600a546001600160a01b03166102e1565b34801561057557600080fd5b506103196105843660046123d1565b611177565b34801561059557600080fd5b506102b46111a6565b3480156105aa57600080fd5b50600f54610291565b3480156105bf57600080fd5b506103196105ce3660046122e8565b6111b5565b3480156105df57600080fd5b5061026b6105ee3660046121e2565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561061857600080fd5b5061031961062736600461226c565b61127a565b61031961063a3660046123d1565b6112b2565b34801561064b57600080fd5b506102b461065a3660046123d1565b61147c565b34801561066b57600080fd5b5061026b61067a3660046121fd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b457600080fd5b50600d5461026b9060ff1681565b3480156106ce57600080fd5b506103196106dd3660046123d1565b611557565b3480156106ee57600080fd5b50610319611586565b34801561070357600080fd5b506103196107123660046121e2565b6115cd565b34801561072357600080fd5b50610291600c5481565b34801561073957600080fd5b50610319610748366004612388565b611668565b6000610758826116a5565b92915050565b60606000805461076d906125fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610799906125fb565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089582610d44565b9050806001600160a01b0316836001600160a01b031614156109035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610865565b336001600160a01b038216148061091f575061091f813361067a565b6109915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610865565b61099b83836116ca565b505050565b600a546001600160a01b031633146109ca5760405162461bcd60e51b8152600401610865906124e7565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6109f83382611738565b610a145760405162461bcd60e51b81526004016108659061251c565b61099b83838361182f565b600a546001600160a01b03163314610a495760405162461bcd60e51b8152600401610865906124e7565b6000610a5460085490565b9050600c5460105482610a67919061256d565b10610ac25760405162461bcd60e51b815260206004820152602560248201527f5765206861766520616c726561647920686974207468652072657365727665206044820152641b1a5b5a5d60da1b6064820152608401610865565b60005b601054811015610af9576000610ada60085490565b9050610ae633826119da565b5080610af181612636565b915050610ac5565b5050565b6000610b0883610e49565b8210610b6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610865565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610865906124e7565b600d805460ff19811660ff90911615179055565b600a546001600160a01b03163314610bfb5760405162461bcd60e51b8152600401610865906124e7565b6040514790339082156108fc029083906000818181858888f19350505050158015610af9573d6000803e3d6000fd5b600a546001600160a01b03163314610c545760405162461bcd60e51b8152600401610865906124e7565b601055565b61099b8383836040518060200160405280600081525061127a565b6000610c7f60085490565b8210610ce25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610865565b60088281548110610cf557610cf56126a7565b90600052602060002001549050919050565b600a546001600160a01b03163314610d315760405162461bcd60e51b8152600401610865906124e7565b8051610af990600e9060208401906120b7565b6000818152600260205260408120546001600160a01b0316806107585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610865565b600b8054610dc8906125fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610df4906125fb565b8015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b505050505081565b60006001600160a01b038216610eb45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610865565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610efa5760405162461bcd60e51b8152600401610865906124e7565b610f0460006119f4565b565b6000610f1160085490565b600d54909150610100900460ff16610f635760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b6044820152606401610865565b600d5460ff1615610fc25760405162461bcd60e51b815260206004820152602360248201527f546865207075626c69632073616c652068617320616c726561647920737461726044820152621d195960ea1b6064820152608401610865565b3360009081526012602052604090205460ff16151560011461103f5760405162461bcd60e51b815260206004820152603060248201527f546869732061646472657373206973206e6f742077686974656c69737465642060448201526f3337b9103a343290383932b9b0b6329760811b6064820152608401610865565b6011543360009081526013602052604090205461105d90849061256d565b11156110c15760405162461bcd60e51b815260206004820152602d60248201527f4578636565647320737570706c79206f662070726573616c652063617264732060448201526c3cb7ba9031b0b71036b4b73a1760991b6064820152608401610865565b3482600f546110d09190612599565b111561111e5760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e2076616c756520746f6f206c6f772e0000000000006044820152606401610865565b60005b8281101561114e5761113c33611137838561256d565b6119da565b8061114681612636565b915050611121565b50336000908152601360205260408120805484929061116e90849061256d565b90915550505050565b600a546001600160a01b031633146111a15760405162461bcd60e51b8152600401610865906124e7565b600f55565b60606001805461076d906125fb565b6001600160a01b03821633141561120e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610865565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112843383611738565b6112a05760405162461bcd60e51b81526004016108659061251c565b6112ac84848484611a46565b50505050565b600d5460ff1661130f5760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656044820152616e7360f01b6064820152608401610865565b600a8111156113605760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e20707572636861736500000000006044820152606401610865565b600c548161136d60085490565b611377919061256d565b11156113d85760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b6064820152608401610865565b3481600f546113e79190612599565b11156114355760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610865565b60005b81811015610af957600061144b60085490565b9050600c5461145960085490565b10156114695761146933826119da565b508061147481612636565b915050611438565b6000818152600260205260409020546060906001600160a01b03166114fb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610865565b6000611505611a79565b905060008151116115255760405180602001604052806000815250611550565b8061152f84611a88565b604051602001611540929190612416565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115815760405162461bcd60e51b8152600401610865906124e7565b601155565b600a546001600160a01b031633146115b05760405162461bcd60e51b8152600401610865906124e7565b600d805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146115f75760405162461bcd60e51b8152600401610865906124e7565b6001600160a01b03811661165c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610865565b611665816119f4565b50565b600a546001600160a01b031633146116925760405162461bcd60e51b8152600401610865906124e7565b8051610af990600b9060208401906120b7565b60006001600160e01b0319821663780e9d6360e01b1480610758575061075882611b86565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116ff82610d44565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610865565b60006117bc83610d44565b9050806001600160a01b0316846001600160a01b031614806117f75750836001600160a01b03166117ec846107f0565b6001600160a01b0316145b8061182757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184282610d44565b6001600160a01b0316146118aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610865565b6001600160a01b03821661190c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610865565b611917838383611bd6565b6119226000826116ca565b6001600160a01b038316600090815260036020526040812080546001929061194b9084906125b8565b90915550506001600160a01b038216600090815260036020526040812080546001929061197990849061256d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610af9828260405180602001604052806000815250611be1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a5184848461182f565b611a5d84848484611c14565b6112ac5760405162461bcd60e51b815260040161086590612495565b6060600e805461076d906125fb565b606081611aac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ad65780611ac081612636565b9150611acf9050600a83612585565b9150611ab0565b60008167ffffffffffffffff811115611af157611af16126bd565b6040519080825280601f01601f191660200182016040528015611b1b576020820181803683370190505b5090505b841561182757611b306001836125b8565b9150611b3d600a86612651565b611b4890603061256d565b60f81b818381518110611b5d57611b5d6126a7565b60200101906001600160f81b031916908160001a905350611b7f600a86612585565b9450611b1f565b60006001600160e01b031982166380ac58cd60e01b1480611bb757506001600160e01b03198216635b5e139f60e01b145b8061075857506301ffc9a760e01b6001600160e01b0319831614610758565b61099b838383611d21565b611beb8383611dd9565b611bf86000848484611c14565b61099b5760405162461bcd60e51b815260040161086590612495565b60006001600160a01b0384163b15611d1657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c58903390899088908890600401612445565b602060405180830381600087803b158015611c7257600080fd5b505af1925050508015611ca2575060408051601f3d908101601f19168201909252611c9f9181019061236b565b60015b611cfc573d808015611cd0576040519150601f19603f3d011682016040523d82523d6000602084013e611cd5565b606091505b508051611cf45760405162461bcd60e51b815260040161086590612495565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611827565b506001949350505050565b6001600160a01b038316611d7c57611d7781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d9f565b816001600160a01b0316836001600160a01b031614611d9f57611d9f8382611f27565b6001600160a01b038216611db65761099b81611fc4565b826001600160a01b0316826001600160a01b03161461099b5761099b8282612073565b6001600160a01b038216611e2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610865565b6000818152600260205260409020546001600160a01b031615611e945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610865565b611ea060008383611bd6565b6001600160a01b0382166000908152600360205260408120805460019290611ec990849061256d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f3484610e49565b611f3e91906125b8565b600083815260076020526040902054909150808214611f91576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fd6906001906125b8565b60008381526009602052604081205460088054939450909284908110611ffe57611ffe6126a7565b90600052602060002001549050806008838154811061201f5761201f6126a7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205757612057612691565b6001900381819060005260206000200160009055905550505050565b600061207e83610e49565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120c3906125fb565b90600052602060002090601f0160209004810192826120e5576000855561212b565b82601f106120fe57805160ff191683800117855561212b565b8280016001018555821561212b579182015b8281111561212b578251825591602001919060010190612110565b5061213792915061213b565b5090565b5b80821115612137576000815560010161213c565b600067ffffffffffffffff8084111561216b5761216b6126bd565b604051601f8501601f19908116603f01168101908282118183101715612193576121936126bd565b816040528093508581528686860111156121ac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121dd57600080fd5b919050565b6000602082840312156121f457600080fd5b611550826121c6565b6000806040838503121561221057600080fd5b612219836121c6565b9150612227602084016121c6565b90509250929050565b60008060006060848603121561224557600080fd5b61224e846121c6565b925061225c602085016121c6565b9150604084013590509250925092565b6000806000806080858703121561228257600080fd5b61228b856121c6565b9350612299602086016121c6565b925060408501359150606085013567ffffffffffffffff8111156122bc57600080fd5b8501601f810187136122cd57600080fd5b6122dc87823560208401612150565b91505092959194509250565b600080604083850312156122fb57600080fd5b612304836121c6565b91506020830135801515811461231957600080fd5b809150509250929050565b6000806040838503121561233757600080fd5b612340836121c6565b946020939093013593505050565b60006020828403121561236057600080fd5b8135611550816126d3565b60006020828403121561237d57600080fd5b8151611550816126d3565b60006020828403121561239a57600080fd5b813567ffffffffffffffff8111156123b157600080fd5b8201601f810184136123c257600080fd5b61182784823560208401612150565b6000602082840312156123e357600080fd5b5035919050565b600081518084526124028160208601602086016125cf565b601f01601f19169290920160200192915050565b600083516124288184602088016125cf565b83519083019061243c8183602088016125cf565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612478908301846123ea565b9695505050505050565b60208152600061155060208301846123ea565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561258057612580612665565b500190565b6000826125945761259461267b565b500490565b60008160001904831182151516156125b3576125b3612665565b500290565b6000828210156125ca576125ca612665565b500390565b60005b838110156125ea5781810151838201526020016125d2565b838111156112ac5750506000910152565b600181811c9082168061260f57607f821691505b6020821081141561263057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264a5761264a612665565b5060010190565b6000826126605761266061267b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461166557600080fdfea26469706673582212201bcc829dc1dc9666101695ddaccba277194641b48b7a16e80af1dd39422949ef64736f6c63430008070033

Deployed Bytecode Sourcemap

57151:4633:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58030:179;;;;;;;;;;-1:-1:-1;58030:179:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;58030:179:0;;;;;;;;59854:92;;;;;;;;;;-1:-1:-1;59927:11:0;;59854:92;;;17126:25:1;;;17114:2;17099:18;59854:92:0;16980:177:1;23443:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25002:221::-;;;;;;;;;;-1:-1:-1;25002:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;25002:221:0;4780:203:1;24525:411:0;;;;;;;;;;-1:-1:-1;24525:411:0;;;;;:::i;:::-;;:::i;:::-;;57249:42;;;;;;;;;;;;57289:2;57249:42;;39466:113;;;;;;;;;;-1:-1:-1;39554:10:0;:17;39466:113;;57379:35;;;;;;;;;;-1:-1:-1;57379:35:0;;;;;;;;;;;59322:120;;;;;;;;;;-1:-1:-1;59322:120:0;;;;;:::i;:::-;;:::i;25892:339::-;;;;;;;;;;-1:-1:-1;25892:339:0;;;;;:::i;:::-;;:::i;58973:341::-;;;;;;;;;;;;;:::i;39134:256::-;;;;;;;;;;-1:-1:-1;39134:256:0;;;;;:::i;:::-;;:::i;60785:89::-;;;;;;;;;;;;;:::i;61639:140::-;;;;;;;;;;;;;:::i;58866:99::-;;;;;;;;;;-1:-1:-1;58866:99:0;;;;;:::i;:::-;;:::i;26302:185::-;;;;;;;;;;-1:-1:-1;26302:185:0;;;;;:::i;:::-;;:::i;39656:233::-;;;;;;;;;;-1:-1:-1;39656:233:0;;;;;:::i;:::-;;:::i;58217:111::-;;;;;;;;;;-1:-1:-1;58217:111:0;;;;;:::i;:::-;;:::i;58772:86::-;;;;;;;;;;-1:-1:-1;58842:8:0;;58772:86;;23137:239;;;;;;;;;;-1:-1:-1;23137:239:0;;;;;:::i;:::-;;:::i;57216:24::-;;;;;;;;;;;;;:::i;22867:208::-;;;;;;;;;;-1:-1:-1;22867:208:0;;;;;:::i;:::-;;:::i;36272:94::-;;;;;;;;;;;;;:::i;59954:823::-;;;;;;:::i;:::-;;:::i;59587:140::-;;;;;;;;;;-1:-1:-1;59587:140:0;;;;;:::i;:::-;-1:-1:-1;;;;;59681:38:0;59655:7;59681:38;;;:28;:38;;;;;;;59587:140;35621:87;;;;;;;;;;-1:-1:-1;35694:6:0;;-1:-1:-1;;;;;35694:6:0;35621:87;;58667:97;;;;;;;;;;-1:-1:-1;58667:97:0;;;;;:::i;:::-;;:::i;23612:104::-;;;;;;;;;;;;;:::i;58577:82::-;;;;;;;;;;-1:-1:-1;58645:6:0;;58577:82;;25295:295;;;;;;;;;;-1:-1:-1;25295:295:0;;;;;:::i;:::-;;:::i;59450:129::-;;;;;;;;;;-1:-1:-1;59450:129:0;;;;;:::i;:::-;-1:-1:-1;;;;;59540:31:0;59516:4;59540:31;;;:21;:31;;;;;;;;;59450:129;26558:328;;;;;;;;;;-1:-1:-1;26558:328:0;;;;;:::i;:::-;;:::i;60988:643::-;;;;;;:::i;:::-;;:::i;23787:334::-;;;;;;;;;;-1:-1:-1;23787:334:0;;;;;:::i;:::-;;:::i;25661:164::-;;;;;;;;;;-1:-1:-1;25661:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25782:25:0;;;25758:4;25782:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25661:164;57340:32;;;;;;;;;;-1:-1:-1;57340:32:0;;;;;;;;59735:111;;;;;;;;;;-1:-1:-1;59735:111:0;;;;;:::i;:::-;;:::i;60882:98::-;;;;;;;;;;;;;:::i;36521:192::-;;;;;;;;;;-1:-1:-1;36521:192:0;;;;;:::i;:::-;;:::i;57300:33::-;;;;;;;;;;;;;;;;58461:108;;;;;;;;;;-1:-1:-1;58461:108:0;;;;;:::i;:::-;;:::i;58030:179::-;58141:4;58165:36;58189:11;58165:23;:36::i;:::-;58158:43;58030:179;-1:-1:-1;;58030:179:0:o;23443:100::-;23497:13;23530:5;23523:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23443:100;:::o;25002:221::-;25078:7;28485:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28485:16:0;25098:73;;;;-1:-1:-1;;;25098:73:0;;13226:2:1;25098:73:0;;;13208:21:1;13265:2;13245:18;;;13238:30;13304:34;13284:18;;;13277:62;-1:-1:-1;;;13355:18:1;;;13348:42;13407:19;;25098:73:0;;;;;;;;;-1:-1:-1;25191:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25191:24:0;;25002:221::o;24525:411::-;24606:13;24622:23;24637:7;24622:14;:23::i;:::-;24606:39;;24670:5;-1:-1:-1;;;;;24664:11:0;:2;-1:-1:-1;;;;;24664:11:0;;;24656:57;;;;-1:-1:-1;;;24656:57:0;;15243:2:1;24656:57:0;;;15225:21:1;15282:2;15262:18;;;15255:30;15321:34;15301:18;;;15294:62;-1:-1:-1;;;15372:18:1;;;15365:31;15413:19;;24656:57:0;15041:397:1;24656:57:0;17992:10;-1:-1:-1;;;;;24748:21:0;;;;:62;;-1:-1:-1;24773:37:0;24790:5;17992:10;25661:164;:::i;24773:37::-;24726:168;;;;-1:-1:-1;;;24726:168:0;;10804:2:1;24726:168:0;;;10786:21:1;10843:2;10823:18;;;10816:30;10882:34;10862:18;;;10855:62;10953:26;10933:18;;;10926:54;10997:19;;24726:168:0;10602:420:1;24726:168:0;24907:21;24916:2;24920:7;24907:8;:21::i;:::-;24595:341;24525:411;;:::o;59322:120::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59396:31:0::1;;::::0;;;:21:::1;:31;::::0;;;;:38;;-1:-1:-1;;59396:38:0::1;59430:4;59396:38;::::0;;59322:120::o;25892:339::-;26087:41;17992:10;26120:7;26087:18;:41::i;:::-;26079:103;;;;-1:-1:-1;;;26079:103:0;;;;;;;:::i;:::-;26195:28;26205:4;26211:2;26215:7;26195:9;:28::i;58973:341::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;59026:11:::1;59040:13;39554:10:::0;:17;;39466:113;59040:13:::1;59026:27;;59092:10;;59081:8;;59072:6;:17;;;;:::i;:::-;:30;59064:80;;;::::0;-1:-1:-1;;;59064:80:0;;8049:2:1;59064:80:0::1;::::0;::::1;8031:21:1::0;8088:2;8068:18;;;8061:30;8127:34;8107:18;;;8100:62;-1:-1:-1;;;8178:18:1;;;8171:35;8223:19;;59064:80:0::1;7847:401:1::0;59064:80:0::1;59155:6;59172:135;59188:8;;59184:1;:12;59172:135;;;59218:14;59235:13;39554:10:::0;:17;;39466:113;59235:13:::1;59218:30;;59263:32;59273:10;59285:9;59263;:32::i;:::-;-1:-1:-1::0;59198:3:0;::::1;::::0;::::1;:::i;:::-;;;;59172:135;;;59015:299;;58973:341::o:0;39134:256::-;39231:7;39267:23;39284:5;39267:16;:23::i;:::-;39259:5;:31;39251:87;;;;-1:-1:-1;;;39251:87:0;;6454:2:1;39251:87:0;;;6436:21:1;6493:2;6473:18;;;6466:30;6532:34;6512:18;;;6505:62;-1:-1:-1;;;6583:18:1;;;6576:41;6634:19;;39251:87:0;6252:407:1;39251:87:0;-1:-1:-1;;;;;;39356:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39134:256::o;60785:89::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;60854:12:::1;::::0;;-1:-1:-1;;60838:28:0;::::1;60854:12;::::0;;::::1;60853:13;60838:28;::::0;;60785:89::o;61639:140::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;61734:37:::1;::::0;61702:21:::1;::::0;61742:10:::1;::::0;61734:37;::::1;;;::::0;61702:21;;61687:12:::1;61734:37:::0;61687:12;61734:37;61702:21;61742:10;61734:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;58866:99:::0;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;58935:8:::1;:22:::0;58866:99::o;26302:185::-;26440:39;26457:4;26463:2;26467:7;26440:39;;;;;;;;;;;;:16;:39::i;39656:233::-;39731:7;39767:30;39554:10;:17;;39466:113;39767:30;39759:5;:38;39751:95;;;;-1:-1:-1;;;39751:95:0;;16419:2:1;39751:95:0;;;16401:21:1;16458:2;16438:18;;;16431:30;16497:34;16477:18;;;16470:62;-1:-1:-1;;;16548:18:1;;;16541:42;16600:19;;39751:95:0;16217:408:1;39751:95:0;39864:10;39875:5;39864:17;;;;;;;;:::i;:::-;;;;;;;;;39857:24;;39656:233;;;:::o;58217:111::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;58293:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;23137:239::-:0;23209:7;23245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23245:16:0;23280:19;23272:73;;;;-1:-1:-1;;;23272:73:0;;12044:2:1;23272:73:0;;;12026:21:1;12083:2;12063:18;;;12056:30;12122:34;12102:18;;;12095:62;-1:-1:-1;;;12173:18:1;;;12166:39;12222:19;;23272:73:0;11842:405:1;57216:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22867:208::-;22939:7;-1:-1:-1;;;;;22967:19:0;;22959:74;;;;-1:-1:-1;;;22959:74:0;;11633:2:1;22959:74:0;;;11615:21:1;11672:2;11652:18;;;11645:30;11711:34;11691:18;;;11684:62;-1:-1:-1;;;11762:18:1;;;11755:40;11812:19;;22959:74:0;11431:406:1;22959:74:0;-1:-1:-1;;;;;;23051:16:0;;;;;:9;:16;;;;;;;22867:208::o;36272:94::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;36337:21:::1;36355:1;36337:9;:21::i;:::-;36272:94::o:0;59954:823::-;60017:19;60039:13;39554:10;:17;;39466:113;60039:13;60071:15;;60017:35;;-1:-1:-1;60071:15:0;;;;;60063:49;;;;-1:-1:-1;;;60063:49:0;;16832:2:1;60063:49:0;;;16814:21:1;16871:2;16851:18;;;16844:30;-1:-1:-1;;;16890:18:1;;;16883:51;16951:18;;60063:49:0;16630:345:1;60063:49:0;60132:12;;;;60131:13;60123:61;;;;-1:-1:-1;;;60123:61:0;;11229:2:1;60123:61:0;;;11211:21:1;11268:2;11248:18;;;11241:30;11307:34;11287:18;;;11280:62;-1:-1:-1;;;11358:18:1;;;11351:33;11401:19;;60123:61:0;11027:399:1;60123:61:0;60225:10;60203:33;;;;:21;:33;;;;;;;;:41;;:33;:41;60195:102;;;;-1:-1:-1;;;60195:102:0;;13639:2:1;60195:102:0;;;13621:21:1;13678:2;13658:18;;;13651:30;13717:34;13697:18;;;13690:62;-1:-1:-1;;;13768:18:1;;;13761:46;13824:19;;60195:102:0;13437:412:1;60195:102:0;60383:11;;60359:10;60330:40;;;;:28;:40;;;;;;:49;;60373:6;;60330:49;:::i;:::-;:64;;60308:159;;;;-1:-1:-1;;;60308:159:0;;9977:2:1;60308:159:0;;;9959:21:1;10016:2;9996:18;;;9989:30;10055:34;10035:18;;;10028:62;-1:-1:-1;;;10106:18:1;;;10099:43;10159:19;;60308:159:0;9775:409:1;60308:159:0;60505:9;60495:6;60486;;:15;;;;:::i;:::-;:28;;60478:67;;;;-1:-1:-1;;;60478:67:0;;6099:2:1;60478:67:0;;;6081:21:1;6138:2;6118:18;;;6111:30;6177:28;6157:18;;;6150:56;6223:18;;60478:67:0;5897:350:1;60478:67:0;60563:9;60558:98;60578:6;60574:1;:10;60558:98;;;60606:38;60616:10;60628:15;60642:1;60628:11;:15;:::i;:::-;60606:9;:38::i;:::-;60586:3;;;;:::i;:::-;;;;60558:98;;;-1:-1:-1;60748:10:0;60719:40;;;;:28;:40;;;;;:50;;60763:6;;60719:40;:50;;60763:6;;60719:50;:::i;:::-;;;;-1:-1:-1;;;;59954:823:0:o;58667:97::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;58735:6:::1;:21:::0;58667:97::o;23612:104::-;23668:13;23701:7;23694:14;;;;;:::i;25295:295::-;-1:-1:-1;;;;;25398:24:0;;17992:10;25398:24;;25390:62;;;;-1:-1:-1;;;25390:62:0;;8860:2:1;25390:62:0;;;8842:21:1;8899:2;8879:18;;;8872:30;8938:27;8918:18;;;8911:55;8983:18;;25390:62:0;8658:349:1;25390:62:0;17992:10;25465:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25465:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25465:53:0;;;;;;;;;;25534:48;;5621:41:1;;;25465:42:0;;17992:10;25534:48;;5594:18:1;25534:48:0;;;;;;;25295:295;;:::o;26558:328::-;26733:41;17992:10;26766:7;26733:18;:41::i;:::-;26725:103;;;;-1:-1:-1;;;26725:103:0;;;;;;;:::i;:::-;26839:39;26853:4;26859:2;26863:7;26872:5;26839:13;:39::i;:::-;26558:328;;;;:::o;60988:643::-;61062:12;;;;61054:59;;;;-1:-1:-1;;;61054:59:0;;9574:2:1;61054:59:0;;;9556:21:1;9613:2;9593:18;;;9586:30;9652:34;9632:18;;;9625:62;-1:-1:-1;;;9703:18:1;;;9696:32;9745:19;;61054:59:0;9372:398:1;61054:59:0;57289:2;61132:14;:34;;61124:74;;;;-1:-1:-1;;;61124:74:0;;15645:2:1;61124:74:0;;;15627:21:1;15684:2;15664:18;;;15657:30;15723:29;15703:18;;;15696:57;15770:18;;61124:74:0;15443:351:1;61124:74:0;61251:10;;61233:14;61217:13;39554:10;:17;;39466:113;61217:13;:30;;;;:::i;:::-;:44;;61209:99;;;;-1:-1:-1;;;61209:99:0;;12454:2:1;61209:99:0;;;12436:21:1;12493:2;12473:18;;;12466:30;12532:34;12512:18;;;12505:62;-1:-1:-1;;;12583:18:1;;;12576:40;12633:19;;61209:99:0;12252:406:1;61209:99:0;61354:9;61336:14;61327:6;;:23;;;;:::i;:::-;:36;;61319:80;;;;-1:-1:-1;;;61319:80:0;;9214:2:1;61319:80:0;;;9196:21:1;9253:2;9233:18;;;9226:30;9292:33;9272:18;;;9265:61;9343:18;;61319:80:0;9012:355:1;61319:80:0;61417:6;61412:212;61433:14;61429:1;:18;61412:212;;;61469:14;61486:13;39554:10;:17;;39466:113;61486:13;61469:30;;61534:10;;61518:13;39554:10;:17;;39466:113;61518:13;:26;61514:99;;;61565:32;61575:10;61587:9;61565;:32::i;:::-;-1:-1:-1;61449:3:0;;;;:::i;:::-;;;;61412:212;;23787:334;28461:4;28485:16;;;:7;:16;;;;;;23860:13;;-1:-1:-1;;;;;28485:16:0;23886:76;;;;-1:-1:-1;;;23886:76:0;;14827:2:1;23886:76:0;;;14809:21:1;14866:2;14846:18;;;14839:30;14905:34;14885:18;;;14878:62;-1:-1:-1;;;14956:18:1;;;14949:45;15011:19;;23886:76:0;14625:411:1;23886:76:0;23975:21;23999:10;:8;:10::i;:::-;23975:34;;24051:1;24033:7;24027:21;:25;:86;;;;;;;;;;;;;;;;;24079:7;24088:18;:7;:16;:18::i;:::-;24062:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24027:86;24020:93;23787:334;-1:-1:-1;;;23787:334:0:o;59735:111::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;59810:11:::1;:28:::0;59735:111::o;60882:98::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;60957:15:::1;::::0;;-1:-1:-1;;60938:34:0;::::1;60957:15;::::0;;;::::1;;;60956:16;60938:34:::0;;::::1;;::::0;;60882:98::o;36521:192::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36610:22:0;::::1;36602:73;;;::::0;-1:-1:-1;;;36602:73:0;;7285:2:1;36602:73:0::1;::::0;::::1;7267:21:1::0;7324:2;7304:18;;;7297:30;7363:34;7343:18;;;7336:62;-1:-1:-1;;;7414:18:1;;;7407:36;7460:19;;36602:73:0::1;7083:402:1::0;36602:73:0::1;36686:19;36696:8;36686:9;:19::i;:::-;36521:192:::0;:::o;58461:108::-;35694:6;;-1:-1:-1;;;;;35694:6:0;17992:10;35841:23;35833:68;;;;-1:-1:-1;;;35833:68:0;;;;;;;:::i;:::-;58538:23;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;38826:224::-:0;38928:4;-1:-1:-1;;;;;;38952:50:0;;-1:-1:-1;;;38952:50:0;;:90;;;39006:36;39030:11;39006:23;:36::i;32378:174::-;32453:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32453:29:0;-1:-1:-1;;;;;32453:29:0;;;;;;;;:24;;32507:23;32453:24;32507:14;:23::i;:::-;-1:-1:-1;;;;;32498:46:0;;;;;;;;;;;32378:174;;:::o;28690:348::-;28783:4;28485:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28485:16:0;28800:73;;;;-1:-1:-1;;;28800:73:0;;10391:2:1;28800:73:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:34;10449:18;;;10442:62;-1:-1:-1;;;10520:18:1;;;10513:42;10572:19;;28800:73:0;10189:408:1;28800:73:0;28884:13;28900:23;28915:7;28900:14;:23::i;:::-;28884:39;;28953:5;-1:-1:-1;;;;;28942:16:0;:7;-1:-1:-1;;;;;28942:16:0;;:51;;;;28986:7;-1:-1:-1;;;;;28962:31:0;:20;28974:7;28962:11;:20::i;:::-;-1:-1:-1;;;;;28962:31:0;;28942:51;:87;;;-1:-1:-1;;;;;;25782:25:0;;;25758:4;25782:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28997:32;28934:96;28690:348;-1:-1:-1;;;;28690:348:0:o;31682:578::-;31841:4;-1:-1:-1;;;;;31814:31:0;:23;31829:7;31814:14;:23::i;:::-;-1:-1:-1;;;;;31814:31:0;;31806:85;;;;-1:-1:-1;;;31806:85:0;;14417:2:1;31806:85:0;;;14399:21:1;14456:2;14436:18;;;14429:30;14495:34;14475:18;;;14468:62;-1:-1:-1;;;14546:18:1;;;14539:39;14595:19;;31806:85:0;14215:405:1;31806:85:0;-1:-1:-1;;;;;31910:16:0;;31902:65;;;;-1:-1:-1;;;31902:65:0;;8455:2:1;31902:65:0;;;8437:21:1;8494:2;8474:18;;;8467:30;8533:34;8513:18;;;8506:62;-1:-1:-1;;;8584:18:1;;;8577:34;8628:19;;31902:65:0;8253:400:1;31902:65:0;31980:39;32001:4;32007:2;32011:7;31980:20;:39::i;:::-;32084:29;32101:1;32105:7;32084:8;:29::i;:::-;-1:-1:-1;;;;;32126:15:0;;;;;;:9;:15;;;;;:20;;32145:1;;32126:15;:20;;32145:1;;32126:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32157:13:0;;;;;;:9;:13;;;;;:18;;32174:1;;32157:13;:18;;32174:1;;32157:18;:::i;:::-;;;;-1:-1:-1;;32186:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32186:21:0;-1:-1:-1;;;;;32186:21:0;;;;;;;;;32225:27;;32186:16;;32225:27;;;;;;;31682:578;;;:::o;29380:110::-;29456:26;29466:2;29470:7;29456:26;;;;;;;;;;;;:9;:26::i;36721:173::-;36796:6;;;-1:-1:-1;;;;;36813:17:0;;;-1:-1:-1;;;;;;36813:17:0;;;;;;;36846:40;;36796:6;;;36813:17;36796:6;;36846:40;;36777:16;;36846:40;36766:128;36721:173;:::o;27768:315::-;27925:28;27935:4;27941:2;27945:7;27925:9;:28::i;:::-;27972:48;27995:4;28001:2;28005:7;28014:5;27972:22;:48::i;:::-;27964:111;;;;-1:-1:-1;;;27964:111:0;;;;;;;:::i;58336:117::-;58396:13;58429:16;58422:23;;;;;:::i;18441:723::-;18497:13;18718:10;18714:53;;-1:-1:-1;;18745:10:0;;;;;;;;;;;;-1:-1:-1;;;18745:10:0;;;;;18441:723::o;18714:53::-;18792:5;18777:12;18833:78;18840:9;;18833:78;;18866:8;;;;:::i;:::-;;-1:-1:-1;18889:10:0;;-1:-1:-1;18897:2:0;18889:10;;:::i;:::-;;;18833:78;;;18921:19;18953:6;18943:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18943:17:0;;18921:39;;18971:154;18978:10;;18971:154;;19005:11;19015:1;19005:11;;:::i;:::-;;-1:-1:-1;19074:10:0;19082:2;19074:5;:10;:::i;:::-;19061:24;;:2;:24;:::i;:::-;19048:39;;19031:6;19038;19031:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19031:56:0;;;;;;;;-1:-1:-1;19102:11:0;19111:2;19102:11;;:::i;:::-;;;18971:154;;22498:305;22600:4;-1:-1:-1;;;;;;22637:40:0;;-1:-1:-1;;;22637:40:0;;:105;;-1:-1:-1;;;;;;;22694:48:0;;-1:-1:-1;;;22694:48:0;22637:105;:158;;;-1:-1:-1;;;;;;;;;;21109:40:0;;;22759:36;21000:157;57841:181;57969:45;57996:4;58002:2;58006:7;57969:26;:45::i;29717:321::-;29847:18;29853:2;29857:7;29847:5;:18::i;:::-;29898:54;29929:1;29933:2;29937:7;29946:5;29898:22;:54::i;:::-;29876:154;;;;-1:-1:-1;;;29876:154:0;;;;;;;:::i;33117:799::-;33272:4;-1:-1:-1;;;;;33293:13:0;;10275:20;10323:8;33289:620;;33329:72;;-1:-1:-1;;;33329:72:0;;-1:-1:-1;;;;;33329:36:0;;;;;:72;;17992:10;;33380:4;;33386:7;;33395:5;;33329:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33329:72:0;;;;;;;;-1:-1:-1;;33329:72:0;;;;;;;;;;;;:::i;:::-;;;33325:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33571:13:0;;33567:272;;33614:60;;-1:-1:-1;;;33614:60:0;;;;;;;:::i;33567:272::-;33789:6;33783:13;33774:6;33770:2;33766:15;33759:38;33325:529;-1:-1:-1;;;;;;33452:51:0;-1:-1:-1;;;33452:51:0;;-1:-1:-1;33445:58:0;;33289:620;-1:-1:-1;33893:4:0;33117:799;;;;;;:::o;40502:589::-;-1:-1:-1;;;;;40708:18:0;;40704:187;;40743:40;40775:7;41918:10;:17;;41891:24;;;;:15;:24;;;;;:44;;;41946:24;;;;;;;;;;;;41814:164;40743:40;40704:187;;;40813:2;-1:-1:-1;;;;;40805:10:0;:4;-1:-1:-1;;;;;40805:10:0;;40801:90;;40832:47;40865:4;40871:7;40832:32;:47::i;:::-;-1:-1:-1;;;;;40905:16:0;;40901:183;;40938:45;40975:7;40938:36;:45::i;40901:183::-;41011:4;-1:-1:-1;;;;;41005:10:0;:2;-1:-1:-1;;;;;41005:10:0;;41001:83;;41032:40;41060:2;41064:7;41032:27;:40::i;30374:382::-;-1:-1:-1;;;;;30454:16:0;;30446:61;;;;-1:-1:-1;;;30446:61:0;;12865:2:1;30446:61:0;;;12847:21:1;;;12884:18;;;12877:30;12943:34;12923:18;;;12916:62;12995:18;;30446:61:0;12663:356:1;30446:61:0;28461:4;28485:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28485:16:0;:30;30518:58;;;;-1:-1:-1;;;30518:58:0;;7692:2:1;30518:58:0;;;7674:21:1;7731:2;7711:18;;;7704:30;7770;7750:18;;;7743:58;7818:18;;30518:58:0;7490:352:1;30518:58:0;30589:45;30618:1;30622:2;30626:7;30589:20;:45::i;:::-;-1:-1:-1;;;;;30647:13:0;;;;;;:9;:13;;;;;:18;;30664:1;;30647:13;:18;;30664:1;;30647:18;:::i;:::-;;;;-1:-1:-1;;30676:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30676:21:0;-1:-1:-1;;;;;30676:21:0;;;;;;;;30715:33;;30676:16;;;30715:33;;30676:16;;30715:33;30374:382;;:::o;42605:988::-;42871:22;42921:1;42896:22;42913:4;42896:16;:22::i;:::-;:26;;;;:::i;:::-;42933:18;42954:26;;;:17;:26;;;;;;42871:51;;-1:-1:-1;43087:28:0;;;43083:328;;-1:-1:-1;;;;;43154:18:0;;43132:19;43154:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43205:30;;;;;;:44;;;43322:30;;:17;:30;;;;;:43;;;43083:328;-1:-1:-1;43507:26:0;;;;:17;:26;;;;;;;;43500:33;;;-1:-1:-1;;;;;43551:18:0;;;;;:12;:18;;;;;:34;;;;;;;43544:41;42605:988::o;43888:1079::-;44166:10;:17;44141:22;;44166:21;;44186:1;;44166:21;:::i;:::-;44198:18;44219:24;;;:15;:24;;;;;;44592:10;:26;;44141:46;;-1:-1:-1;44219:24:0;;44141:46;;44592:26;;;;;;:::i;:::-;;;;;;;;;44570:48;;44656:11;44631:10;44642;44631:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44736:28;;;:15;:28;;;;;;;:41;;;44908:24;;;;;44901:31;44943:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43959:1008;;;43888:1079;:::o;41392:221::-;41477:14;41494:20;41511:2;41494:16;:20::i;:::-;-1:-1:-1;;;;;41525:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41570:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41392:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6664:414::-;6866:2;6848:21;;;6905:2;6885:18;;;6878:30;6944:34;6939:2;6924:18;;6917:62;-1:-1:-1;;;7010:2:1;6995:18;;6988:48;7068:3;7053:19;;6664:414::o;13854:356::-;14056:2;14038:21;;;14075:18;;;14068:30;14134:34;14129:2;14114:18;;14107:62;14201:2;14186:18;;13854:356::o;15799:413::-;16001:2;15983:21;;;16040:2;16020:18;;;16013:30;16079:34;16074:2;16059:18;;16052:62;-1:-1:-1;;;16145:2:1;16130:18;;16123:47;16202:3;16187:19;;15799:413::o;17162:128::-;17202:3;17233:1;17229:6;17226:1;17223:13;17220:39;;;17239:18;;:::i;:::-;-1:-1:-1;17275:9:1;;17162:128::o;17295:120::-;17335:1;17361;17351:35;;17366:18;;:::i;:::-;-1:-1:-1;17400:9:1;;17295:120::o;17420:168::-;17460:7;17526:1;17522;17518:6;17514:14;17511:1;17508:21;17503:1;17496:9;17489:17;17485:45;17482:71;;;17533:18;;:::i;:::-;-1:-1:-1;17573:9:1;;17420:168::o;17593:125::-;17633:4;17661:1;17658;17655:8;17652:34;;;17666:18;;:::i;:::-;-1:-1:-1;17703:9:1;;17593:125::o;17723:258::-;17795:1;17805:113;17819:6;17816:1;17813:13;17805:113;;;17895:11;;;17889:18;17876:11;;;17869:39;17841:2;17834:10;17805:113;;;17936:6;17933:1;17930:13;17927:48;;;-1:-1:-1;;17971:1:1;17953:16;;17946:27;17723:258::o;17986:380::-;18065:1;18061:12;;;;18108;;;18129:61;;18183:4;18175:6;18171:17;18161:27;;18129:61;18236:2;18228:6;18225:14;18205:18;18202:38;18199:161;;;18282:10;18277:3;18273:20;18270:1;18263:31;18317:4;18314:1;18307:15;18345:4;18342:1;18335:15;18199:161;;17986:380;;;:::o;18371:135::-;18410:3;-1:-1:-1;;18431:17:1;;18428:43;;;18451:18;;:::i;:::-;-1:-1:-1;18498:1:1;18487:13;;18371:135::o;18511:112::-;18543:1;18569;18559:35;;18574:18;;:::i;:::-;-1:-1:-1;18608:9:1;;18511:112::o;18628:127::-;18689:10;18684:3;18680:20;18677:1;18670:31;18720:4;18717:1;18710:15;18744:4;18741:1;18734:15;18760:127;18821:10;18816:3;18812:20;18809:1;18802:31;18852:4;18849:1;18842:15;18876:4;18873:1;18866:15;18892:127;18953:10;18948:3;18944:20;18941:1;18934:31;18984:4;18981:1;18974:15;19008:4;19005:1;18998:15;19024:127;19085:10;19080:3;19076:20;19073:1;19066:31;19116:4;19113:1;19106:15;19140:4;19137:1;19130:15;19156:127;19217:10;19212:3;19208:20;19205:1;19198:31;19248:4;19245:1;19238:15;19272:4;19269:1;19262:15;19288:131;-1:-1:-1;;;;;;19362:32:1;;19352:43;;19342:71;;19409:1;19406;19399:12

Swarm Source

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