ETH Price: $3,442.33 (-0.21%)
Gas: 6 Gwei

Token

Fat Catz (FC)
 

Overview

Max Total Supply

969 FC

Holders

500

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FC
0xfe5fea252a9f98ed8c686f96fb14ce4881267a24
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

969 Genesis Fat Catz on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FatCatz

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-12-17
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
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/IERC721.sol
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/extensions/IERC721Enumerable.sol
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/utils/introspection/ERC165.sol
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/utils/Strings.sol



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/Address.sol



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/token/ERC721/extensions/IERC721Metadata.sol



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/token/ERC721/IERC721Receiver.sol



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/utils/Context.sol
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/token/ERC721/ERC721.sol
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/token/ERC721/extensions/ERC721Enumerable.sol



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/access/Ownable.sol
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);
    }
}

// START CUSTOM FAT CATZ CONTRACT

//         .                  .
//         :"-.            .-";
//         |:`.`.__.--.__.'.';|
//         || :-"        "-; ||
//         :;                :;
//         /  .==.      .==.  \
//        :      _.----._      ;
//        ; .--.' `----' `.--. :
//       :   __;`        ':__   ;
//       ;  '  '-._:--;_.-'  '  :
//       '.       `----'       .'
//        ."-._            _.-".
//      .'     ""--------""     `.
//     /`-                      -'\
//    /`-                        -'\
//   :`-   .'                `.   -';
//   ;    /                    \    :
//  :    :                      ;    ;
//  ;    ;                      :    :
//  ':_:.'                      '.;_;'
//     :_                        _;
//     ; "-._                  -" :`-.     _.._
//     :_          (  )          _;   "--::__. `.
//      \"-                    -"/`._           :
//     .-"-.                   -"-.  ""--..____.'
//    /         .__  ____.         \
//   : / ,       / ""   \       . \ ;
//    "-:___..--"        "--..___;-"

pragma solidity >=0.7.0 <0.9.0;

contract FatCatz is ERC721Enumerable, Ownable {
    using Strings for uint256;

    // Constant variables
    // ------------------------------------------------------------------------
    uint256 public constant TOTAL_SUPPLY = 6969; // Total amount of Fat Catz
    uint256 public constant RESERVED_SUPPLY = 100; // Amount of Fat Catz reserved for the contract (last 100)
    uint256 public constant MAX_SUPPLY = TOTAL_SUPPLY - RESERVED_SUPPLY; // Maximum amount of Fat Catz

    uint256 public constant MAX_PER_TX = 8; // Max amount of Fat Catz per tx (public sale)
    uint256 public constant MAX_PER_WALLET_PUBLIC = 40; // Max amount of Fat Catz per wallet during public sale.

    address private _d1 = 0x59f1AFBD895eFF95d0D61824C16287597AF2D0E7;
    address private _d2 = 0x04d4C99b291b997903cA084099C133258eb17f57;

    // State variables
    // ------------------------------------------------------------------------
    uint256 public publicPrice = 0.069 ether; // Full price
    uint256 public presalePriceOptionA = 0.043 ether; // 30% off 1
    uint256 public presalePriceOptionB = presalePriceOptionA + publicPrice; // 30% off 1st + full price on 2nd
    uint256 public supporterPriceOptionA = 0.043 ether; // 30% off
    uint256 public supporterPriceOptionB = 0.05865 ether; // 15% off

    // Used to toggle the active states of all the sales
    bool public isPresaleActive = false; 
    bool public isPublicSaleActive = false;

    bool public isTeamReserveMinted = false; // True when team reserves the final 100 Fat Catz

    // Presale arrays
    // ------------------------------------------------------------------------

    // Used to keep track of wallets' eligibility for presale
    mapping(address => bool) private _presaleEligibleList;

    // Used to keep track of how many NFTs a wallet has minted on presale
    mapping(address => uint256) private _presaleMintedCountList;

    // Used to keep track of wallets' eligibility for supporter sale
    mapping(address => bool) private _supporterEligibleList;
    
    // Used to keep track of how many NFTs a supporter has minted on these options
    mapping(address => uint256) private _supporterOptionAMintedCountList;
    mapping(address => uint256) private _supporterOptionBMintedCountList; 

    // Used to keep track of how many NFTs a wallet has minted on public sale
    mapping(address => uint256) private _publicMintedCountList;

    // URI variables
    // ------------------------------------------------------------------------
    string private _contractURI;
    string private _baseTokenURI;

    // Events
    // ------------------------------------------------------------------------
    event BaseTokenURIChanged(string baseTokenURI);
    event ContractURIChanged(string contractURI);

    // Constructor
    // ------------------------------------------------------------------------
    constructor() ERC721("Fat Catz", "FC") {}

    // Modifiers
    // ------------------------------------------------------------------------
    modifier onlyPresale() {
        require(isPresaleActive, "PRESALE_NOT_ACTIVE");
        _;
    }

    modifier onlyPublicSale() {
        require(isPublicSaleActive, "PUBLIC_SALE_NOT_ACTIVE");
        _;
    }

    // Presale functions
    // ------------------------------------------------------------------------
    function addToPresaleList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(!_presaleEligibleList[addresses[i]], "DUPLICATE_ENTRY");

            _presaleEligibleList[addresses[i]] = true;
            _presaleMintedCountList[addresses[i]] = 0;
        }
    }

    function removeFromPresaleList(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(_presaleEligibleList[addresses[i]], "NOT_IN_PRESALE");

            _presaleEligibleList[addresses[i]] = false;
        }
    }

    function isEligibleForPresale(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _presaleEligibleList[addr];
    }


    function hasMintedPresale(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _presaleMintedCountList[addr] >= 1;
    }

    function togglePresaleStatus() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    // Supporter Functions
    // ------------------------------------------------------------------------
    function addToSupporterList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(!_supporterEligibleList[addresses[i]], "DUPLICATE_ENTRY");

            _supporterEligibleList[addresses[i]] = true;
            _supporterOptionAMintedCountList[addresses[i]] = 0;
            _supporterOptionBMintedCountList[addresses[i]] = 0;
        }
    }

    function removeFromSupporterList(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(_supporterEligibleList[addresses[i]], "NOT_IN_SUPPORTER");

            _supporterEligibleList[addresses[i]] = false;
        }
    }

    function isEligibleForSupporter(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _supporterEligibleList[addr];
    }

    function hasMintedSupporterOptionA(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _supporterOptionAMintedCountList[addr] >= 2;
    }

    function hasMintedSupporterOptionB(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _supporterOptionBMintedCountList[addr] >= 6;
    }

    // Public sale functions
    // ------------------------------------------------------------------------
    function togglePublicSaleStatus() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    // Mint functions
    // ------------------------------------------------------------------------
    // 100 reserved for the team (only if sellout)
    function mintTeamReserved(address addr)
        external
        onlyOwner
    {
        require(isTeamReserveMinted == false, "RESERVE_ALREADY_MINTED");
        require(totalSupply() < TOTAL_SUPPLY, "SOLD_OUT");
        require(
            totalSupply() + RESERVED_SUPPLY <= TOTAL_SUPPLY,
            "EXCEEDS_TOTAL_SUPPLY"
        );

        for (uint256 i = 0; i < RESERVED_SUPPLY; i++) {
            _safeMint(addr, totalSupply() + 1);
        }

        isTeamReserveMinted = !isTeamReserveMinted;
    }

    // Option A: 1 on presale
    function mintPresaleOptionA() external payable onlyPresale {
        uint256 quantity = 1;

        require(_presaleEligibleList[msg.sender], "NOT_ELIGIBLE");
        require(_presaleMintedCountList[msg.sender] < 1, "ALREADY_MINTED");

        require(totalSupply() < MAX_SUPPLY, "SOLD_OUT");
        require(totalSupply() + quantity <= MAX_SUPPLY, "EXCEEDS_MAX_SUPPLY");
        
        require(presalePriceOptionA == msg.value, "INVALID_ETH_AMOUNT");

        for (uint256 i = 0; i < quantity; i++) {
            _presaleMintedCountList[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // Option B: 2 on presale
    function mintPresaleOptionB() external payable onlyPresale {
        uint256 quantity = 2;

        require(_presaleEligibleList[msg.sender], "NOT_ELIGIBLE");
        require(_presaleMintedCountList[msg.sender] < 1, "ALREADY_MINTED");

        require(totalSupply() < MAX_SUPPLY, "SOLD_OUT");
        require(totalSupply() + quantity <= MAX_SUPPLY, "EXCEEDS_MAX_SUPPLY");

        require(presalePriceOptionB == msg.value, "INVALID_ETH_AMOUNT");

        for (uint256 i = 0; i < quantity; i++) {
            _presaleMintedCountList[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // Supporter presale (╯✧ ∇ ✧)╯ max 2 at 30% off
    function mintSupporterOptionA(uint256 quantity) external payable onlyPresale {
        require(_supporterEligibleList[msg.sender], "NOT_ELIGIBLE");
        require(_supporterOptionAMintedCountList[msg.sender] < 2, "ALREADY_MINTED");
        require(_supporterOptionAMintedCountList[msg.sender] + quantity <= 2, "EXCEEDS_MAX_SUPPLY");

        require(totalSupply() < MAX_SUPPLY, "SOLD_OUT");
        require(quantity > 0, "QUANTITY_CANNOT_BE_ZERO");
        require(quantity <= 2, "EXCEEDS_MAX_SUPPORTER_OPTION_A");
        require(totalSupply() + quantity <= MAX_SUPPLY, "EXCEEDS_MAX_SUPPLY");
        
        require(supporterPriceOptionA * quantity == msg.value, "INVALID_ETH_AMOUNT");

        for (uint256 i = 0; i < quantity; i++) {
            _supporterOptionAMintedCountList[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // Supporter mint (╯✧ ∇ ✧)╯ max 6 at 15% off
    function mintSupporterOptionB(uint256 quantity) external payable onlyPresale {
        require(_supporterEligibleList[msg.sender], "NOT_ELIGIBLE");
        require(_supporterOptionBMintedCountList[msg.sender] < 6, "ALREADY_MINTED");
        require(_supporterOptionBMintedCountList[msg.sender] + quantity <= 6, "EXCEEDS_MAX_SUPPLY");

        require(totalSupply() < MAX_SUPPLY, "SOLD_OUT");
        require(quantity > 0, "QUANTITY_CANNOT_BE_ZERO");
        require(quantity <= 6, "EXCEEDS_MAX_SUPPORTER_OPTION_B");
        require(totalSupply() + quantity <= MAX_SUPPLY, "EXCEEDS_MAX_SUPPLY");

        require(supporterPriceOptionB * quantity == msg.value, "INVALID_ETH_AMOUNT");

        for (uint256 i = 0; i < quantity; i++) {
            _supporterOptionBMintedCountList[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // Public mint
    function mintPublic(uint256 quantity) external payable onlyPublicSale {
        require(totalSupply() < MAX_SUPPLY, "SOLD_OUT");
        require(quantity > 0, "QUANTITY_CANNOT_BE_ZERO");
        require(quantity <= MAX_PER_TX, "EXCEEDS_TX_MAX");
        require(totalSupply() + quantity <= MAX_SUPPLY, "EXCEEDS_MAX_SUPPLY");
        require(!isContract(msg.sender), "CONTRACTS_CANNOT_MINT");

        require(
            _publicMintedCountList[msg.sender] + quantity <= MAX_PER_WALLET_PUBLIC,
            "EXCEEDS_MAX_ALLOWANCE"
        );

        require(publicPrice * quantity == msg.value, "INVALID_ETH_AMOUNT");

        for (uint256 i = 0; i < quantity; i++) {
            _publicMintedCountList[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // More than 11 Fat Catz NFTs cannot be given away
    function gift(address addr)
        external
        payable
        onlyOwner
    {
        require(totalSupply() < 11, "MAX_GIFTED_REACHED");

        _safeMint(addr, totalSupply() + 1);
    }


    // Base URI Functions
    // ------------------------------------------------------------------------
    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
        emit ContractURIChanged(URI);
    }

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

    // Function to set the base token URI. Should be passed the "ipfs://..../" URI to be set correctly.
    function setBaseTokenURI(string calldata URI) external onlyOwner {
        _baseTokenURI = URI;
        emit BaseTokenURIChanged(URI);
    }

    function baseTokenURI() public view returns (string memory) {
        return _baseTokenURI;
    }

    // Sets default baseExtension to .json
    string private baseExtension = ".json";

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");

        return
            string(
                abi.encodePacked(
                    _baseTokenURI,
                    tokenId.toString(),
                    baseExtension
                )
            ); // Set baseTokenURI to end with .json
    }

    // ------------------------------

    // Withdrawal functions
    // -----------------------------------------------------------------------

    function withdrawDonations() external onlyOwner {
        uint _d1amount = address(this).balance * 1/100;
        uint _d2amount = address(this).balance * 15/1000;

        require(payable(_d1).send(_d1amount), "FAILED_TO_SEND_TO_D1");
        require(payable(_d2).send(_d2amount), "FAILED_TO_SEND_TO_D2");
    }

    function withdrawAll() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    
    // Helpers
    // -----------------------------------------------------------------------

    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;
    }
    
    // END CUSTOM SMART CONTRACT
}

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":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"BaseTokenURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractURI","type":"string"}],"name":"ContractURIChanged","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_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToSupporterList","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"gift","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hasMintedPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hasMintedSupporterOptionA","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hasMintedSupporterOptionB","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"addr","type":"address"}],"name":"isEligibleForPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isEligibleForSupporter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTeamReserveMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPresaleOptionA","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPresaleOptionB","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintSupporterOptionA","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintSupporterOptionB","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"mintTeamReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePriceOptionA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePriceOptionB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromSupporterList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supporterPriceOptionA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supporterPriceOptionB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawDonations","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b03199081167359f1afbd895eff95d0d61824c16287597af2d0e717909155600c80549091167304d4c99b291b997903ca084099c133258eb17f5717905566f5232269808000600d8190556698c445ad578000600e81905562000072919062000253565b600f556698c445ad57800060105566d05ddd4013a0006011556012805462ffffff1916905560408051808201909152600580825264173539b7b760d91b6020909201918252620000c591601b91620001ad565b50348015620000d357600080fd5b5060408051808201825260088152672330ba1021b0ba3d60c11b602080830191825283518085019094526002845261464360f01b9084015281519192916200011e91600091620001ad565b50805162000134906001906020840190620001ad565b505050620001516200014b6200015760201b60201c565b6200015b565b620002b7565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001bb906200027a565b90600052602060002090601f016020900481019282620001df57600085556200022a565b82601f10620001fa57805160ff19168380011785556200022a565b828001600101855582156200022a579182015b828111156200022a5782518255916020019190600101906200020d565b50620002389291506200023c565b5090565b5b808211156200023857600081556001016200023d565b600082198211156200027557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200028f57607f821691505b60208210811415620002b157634e487b7160e01b600052602260045260246000fd5b50919050565b613a0f80620002c76000396000f3fe60806040526004361061036a5760003560e01c8063853828b6116101c6578063c477ff45116100f7578063dbaa96b311610095578063ed4cbf741161006f578063ed4cbf7414610933578063efd0cbf914610953578063f2fde38b14610966578063f43a22dc1461098657600080fd5b8063dbaa96b3146108bf578063e8a3d485146108d5578063e985e9c5146108ea57600080fd5b8063cbfc4bce116100d1578063cbfc4bce1461086c578063ce1b088a1461087f578063d4c7f69614610894578063d547cfb7146108aa57600080fd5b8063c477ff4514610816578063c87b56dd14610836578063cb11560d1461085657600080fd5b8063a22cb46511610164578063b1dc19f91161013e578063b1dc19f9146107ab578063b88d4fde146107cb578063b9ad9fde146107eb578063c1b8d74f1461080057600080fd5b8063a22cb46514610755578063a945bf8014610775578063b179e0601461078b57600080fd5b8063902d55a5116101a0578063902d55a5146106ea578063938e3d7b1461070057806395d89b41146107205780639a559e131461073557600080fd5b8063853828b614610697578063876dd5f7146106ac5780638da5cb5b146106cc57600080fd5b80633098cd94116102a057806364affb401161023e578063715018a611610218578063715018a61461063a5780637204a3c91461064f57806373b4d9d81461066f5780637bffb4ce1461068257600080fd5b806364affb40146105e55780636ff2cbc4146105fa57806370a082311461061a57600080fd5b806342842e0e1161027a57806342842e0e1461056b5780634f6ccce71461058b57806360d938dc146105ab5780636352211e146105c557600080fd5b80633098cd941461053957806331a53e9a1461054157806332cb6b0c1461055657600080fd5b806318160ddd1161030d57806323b872dd116102e757806323b872dd146104b9578063295f2343146104d95780632f745c59146104f957806330176e131461051957600080fd5b806318160ddd146104735780631e84c413146104925780631ff06a93146104b157600080fd5b8063081812fc11610349578063081812fc146103e6578063095ea7b31461041e57806313cc3265146104405780631542315d1461046057600080fd5b80625e03601461036f57806301ffc9a7146103a457806306fdde03146103c4575b600080fd5b34801561037b57600080fd5b5061038f61038a3660046131c1565b61099b565b60405190151581526020015b60405180910390f35b3480156103b057600080fd5b5061038f6103bf366004613409565b6109ec565b3480156103d057600080fd5b506103d9610a17565b60405161039b9190613621565b3480156103f257600080fd5b506104066104013660046134a3565b610aa9565b6040516001600160a01b03909116815260200161039b565b34801561042a57600080fd5b5061043e61043936600461336a565b610b3e565b005b34801561044c57600080fd5b5061043e61045b3660046131c1565b610c54565b61043e61046e3660046134a3565b610db2565b34801561047f57600080fd5b506008545b60405190815260200161039b565b34801561049e57600080fd5b5060125461038f90610100900460ff1681565b61043e610fcb565b3480156104c557600080fd5b5061043e6104d4366004613216565b61112b565b3480156104e557600080fd5b5061043e6104f4366004613394565b61115c565b34801561050557600080fd5b5061048461051436600461336a565b611367565b34801561052557600080fd5b5061043e610534366004613443565b6113fd565b61043e611471565b34801561054d57600080fd5b50610484606481565b34801561056257600080fd5b506104846115d1565b34801561057757600080fd5b5061043e610586366004613216565b6115e1565b34801561059757600080fd5b506104846105a63660046134a3565b6115fc565b3480156105b757600080fd5b5060125461038f9060ff1681565b3480156105d157600080fd5b506104066105e03660046134a3565b61168f565b3480156105f157600080fd5b50610484602881565b34801561060657600080fd5b5061038f6106153660046131c1565b611706565b34801561062657600080fd5b506104846106353660046131c1565b61174e565b34801561064657600080fd5b5061043e6117d5565b34801561065b57600080fd5b5061043e61066a366004613394565b61180b565b61043e61067d3660046134a3565b6119c5565b34801561068e57600080fd5b5061043e611bda565b3480156106a357600080fd5b5061043e611c18565b3480156106b857600080fd5b5061038f6106c73660046131c1565b611c71565b3480156106d857600080fd5b50600a546001600160a01b0316610406565b3480156106f657600080fd5b50610484611b3981565b34801561070c57600080fd5b5061043e61071b366004613443565b611cb9565b34801561072c57600080fd5b506103d9611d21565b34801561074157600080fd5b5061038f6107503660046131c1565b611d30565b34801561076157600080fd5b5061043e61077036600461332e565b611d77565b34801561078157600080fd5b50610484600d5481565b34801561079757600080fd5b5061043e6107a6366004613394565b611e3c565b3480156107b757600080fd5b5061043e6107c6366004613394565b611fad565b3480156107d757600080fd5b5061043e6107e6366004613252565b612120565b3480156107f757600080fd5b5061043e612158565b34801561080c57600080fd5b5061048460105481565b34801561082257600080fd5b5061038f6108313660046131c1565b61219f565b34801561084257600080fd5b506103d96108513660046134a3565b6121e6565b34801561086257600080fd5b50610484600e5481565b61043e61087a3660046131c1565b612282565b34801561088b57600080fd5b5061043e612306565b3480156108a057600080fd5b50610484600f5481565b3480156108b657600080fd5b506103d961243e565b3480156108cb57600080fd5b5061048460115481565b3480156108e157600080fd5b506103d961244d565b3480156108f657600080fd5b5061038f6109053660046131e3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093f57600080fd5b5060125461038f9062010000900460ff1681565b61043e6109613660046134a3565b61245c565b34801561097257600080fd5b5061043e6109813660046131c1565b6126a1565b34801561099257600080fd5b50610484600881565b60006001600160a01b0382166109cc5760405162461bcd60e51b81526004016109c390613634565b60405180910390fd5b506001600160a01b03166000908152601460205260409020546001111590565b60006001600160e01b0319821663780e9d6360e01b1480610a115750610a1182612739565b92915050565b606060008054610a26906138eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a52906138eb565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c3565b506000908152600460205260409020546001600160a01b031690565b6000610b498261168f565b9050806001600160a01b0316836001600160a01b03161415610bb75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c3565b336001600160a01b0382161480610bd35750610bd38133610905565b610c455760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c3565b610c4f8383612789565b505050565b600a546001600160a01b03163314610c7e5760405162461bcd60e51b81526004016109c390613726565b60125462010000900460ff1615610cd05760405162461bcd60e51b8152602060048201526016602482015275149154d154959157d053149150511657d3525395115160521b60448201526064016109c3565b611b39610cdc60085490565b10610cf95760405162461bcd60e51b81526004016109c390613704565b611b396064610d0760085490565b610d11919061385d565b1115610d565760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016109c3565b60005b6064811015610d9157610d7f82610d6f60085490565b610d7a90600161385d565b6127f7565b80610d8981613926565b915050610d59565b50506012805462ff0000198116620100009182900460ff1615909102179055565b60125460ff16610dd45760405162461bcd60e51b81526004016109c3906136ac565b3360009081526015602052604090205460ff16610e035760405162461bcd60e51b81526004016109c390613800565b33600090815260176020526040902054600611610e325760405162461bcd60e51b81526004016109c3906137ac565b33600090815260176020526040902054600690610e5090839061385d565b1115610e6e5760405162461bcd60e51b81526004016109c3906136d8565b610e7b6064611b396138a8565b60085410610e9b5760405162461bcd60e51b81526004016109c390613704565b60008111610ebb5760405162461bcd60e51b81526004016109c390613826565b6006811115610f0c5760405162461bcd60e51b815260206004820152601e60248201527f455843454544535f4d41585f535550504f525445525f4f5054494f4e5f42000060448201526064016109c3565b610f196064611b396138a8565b81610f2360085490565b610f2d919061385d565b1115610f4b5760405162461bcd60e51b81526004016109c3906136d8565b3481601154610f5a9190613889565b14610f775760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc757336000908152601760205260408120805460019290610fa290849061385d565b90915550610fb5905033610d6f60085490565b80610fbf81613926565b915050610f7a565b5050565b60125460ff16610fed5760405162461bcd60e51b81526004016109c3906136ac565b3360009081526013602052604090205460029060ff1661101f5760405162461bcd60e51b81526004016109c390613800565b3360009081526014602052604090205460011161104e5760405162461bcd60e51b81526004016109c3906137ac565b61105b6064611b396138a8565b6008541061107b5760405162461bcd60e51b81526004016109c390613704565b6110886064611b396138a8565b8161109260085490565b61109c919061385d565b11156110ba5760405162461bcd60e51b81526004016109c3906136d8565b34600f54146110db5760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc75733600090815260146020526040812080546001929061110690849061385d565b90915550611119905033610d6f60085490565b8061112381613926565b9150506110de565b6111353382612811565b6111515760405162461bcd60e51b81526004016109c39061375b565b610c4f838383612908565b600a546001600160a01b031633146111865760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f5760008383838181106111a5576111a5613997565b90506020020160208101906111ba91906131c1565b6001600160a01b031614156111e15760405162461bcd60e51b81526004016109c390613634565b601560008484848181106111f7576111f7613997565b905060200201602081019061120c91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff16156112685760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016109c3565b60016015600085858581811061128057611280613997565b905060200201602081019061129591906131c1565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556016818585858181106112d5576112d5613997565b90506020020160208101906112ea91906131c1565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060006017600085858581811061132657611326613997565b905060200201602081019061133b91906131c1565b6001600160a01b031681526020810191909152604001600020558061135f81613926565b915050611189565b60006113728361174e565b82106113d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146114275760405162461bcd60e51b81526004016109c390613726565b611433601a838361310c565b507f228a3ac0675af69daeaaa5b8d369fe2faae665e7f340f0b78ccbb84e17b4f69482826040516114659291906135f2565b60405180910390a15050565b60125460ff166114935760405162461bcd60e51b81526004016109c3906136ac565b3360009081526013602052604090205460019060ff166114c55760405162461bcd60e51b81526004016109c390613800565b336000908152601460205260409020546001116114f45760405162461bcd60e51b81526004016109c3906137ac565b6115016064611b396138a8565b600854106115215760405162461bcd60e51b81526004016109c390613704565b61152e6064611b396138a8565b8161153860085490565b611542919061385d565b11156115605760405162461bcd60e51b81526004016109c3906136d8565b34600e54146115815760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc7573360009081526014602052604081208054600192906115ac90849061385d565b909155506115bf905033610d6f60085490565b806115c981613926565b915050611584565b6115de6064611b396138a8565b81565b610c4f83838360405180602001604052806000815250612120565b600061160760085490565b821061166a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c3565b6008828154811061167d5761167d613997565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c3565b60006001600160a01b03821661172e5760405162461bcd60e51b81526004016109c390613634565b506001600160a01b03166000908152601660205260409020546002111590565b60006001600160a01b0382166117b95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117ff5760405162461bcd60e51b81526004016109c390613726565b6118096000612ab3565b565b600a546001600160a01b031633146118355760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f57600083838381811061185457611854613997565b905060200201602081019061186991906131c1565b6001600160a01b031614156118905760405162461bcd60e51b81526004016109c390613634565b601360008484848181106118a6576118a6613997565b90506020020160208101906118bb91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff16156119175760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016109c3565b60016013600085858581811061192f5761192f613997565b905060200201602081019061194491906131c1565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560148185858581811061198457611984613997565b905060200201602081019061199991906131c1565b6001600160a01b03168152602081019190915260400160002055806119bd81613926565b915050611838565b60125460ff166119e75760405162461bcd60e51b81526004016109c3906136ac565b3360009081526015602052604090205460ff16611a165760405162461bcd60e51b81526004016109c390613800565b33600090815260166020526040902054600211611a455760405162461bcd60e51b81526004016109c3906137ac565b33600090815260166020526040902054600290611a6390839061385d565b1115611a815760405162461bcd60e51b81526004016109c3906136d8565b611a8e6064611b396138a8565b60085410611aae5760405162461bcd60e51b81526004016109c390613704565b60008111611ace5760405162461bcd60e51b81526004016109c390613826565b6002811115611b1f5760405162461bcd60e51b815260206004820152601e60248201527f455843454544535f4d41585f535550504f525445525f4f5054494f4e5f41000060448201526064016109c3565b611b2c6064611b396138a8565b81611b3660085490565b611b40919061385d565b1115611b5e5760405162461bcd60e51b81526004016109c3906136d8565b3481601054611b6d9190613889565b14611b8a5760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc757336000908152601660205260408120805460019290611bb590849061385d565b90915550611bc8905033610d6f60085490565b80611bd281613926565b915050611b8d565b600a546001600160a01b03163314611c045760405162461bcd60e51b81526004016109c390613726565b6012805460ff19811660ff90911615179055565b600a546001600160a01b03163314611c425760405162461bcd60e51b81526004016109c390613726565b60405133904780156108fc02916000818181858888f19350505050158015611c6e573d6000803e3d6000fd5b50565b60006001600160a01b038216611c995760405162461bcd60e51b81526004016109c390613634565b506001600160a01b03166000908152601760205260409020546006111590565b600a546001600160a01b03163314611ce35760405162461bcd60e51b81526004016109c390613726565b611cef6019838361310c565b507fd5ee5eaf65263bab5d569890714d123ad48a9e54409d35e71d374f3dd300bba082826040516114659291906135f2565b606060018054610a26906138eb565b60006001600160a01b038216611d585760405162461bcd60e51b81526004016109c390613634565b506001600160a01b031660009081526013602052604090205460ff1690565b6001600160a01b038216331415611dd05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611e665760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f576000838383818110611e8557611e85613997565b9050602002016020810190611e9a91906131c1565b6001600160a01b03161415611ec15760405162461bcd60e51b81526004016109c390613634565b60136000848484818110611ed757611ed7613997565b9050602002016020810190611eec91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff16611f465760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f494e5f50524553414c4560901b60448201526064016109c3565b600060136000858585818110611f5e57611f5e613997565b9050602002016020810190611f7391906131c1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611fa581613926565b915050611e69565b600a546001600160a01b03163314611fd75760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f576000838383818110611ff657611ff6613997565b905060200201602081019061200b91906131c1565b6001600160a01b031614156120325760405162461bcd60e51b81526004016109c390613634565b6015600084848481811061204857612048613997565b905060200201602081019061205d91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff166120b95760405162461bcd60e51b815260206004820152601060248201526f2727aa2fa4a72fa9aaa82827a92a22a960811b60448201526064016109c3565b6000601560008585858181106120d1576120d1613997565b90506020020160208101906120e691906131c1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061211881613926565b915050611fda565b61212a3383612811565b6121465760405162461bcd60e51b81526004016109c39061375b565b61215284848484612b05565b50505050565b600a546001600160a01b031633146121825760405162461bcd60e51b81526004016109c390613726565b6012805461ff001981166101009182900460ff1615909102179055565b60006001600160a01b0382166121c75760405162461bcd60e51b81526004016109c390613634565b506001600160a01b031660009081526015602052604090205460ff1690565b6000818152600260205260409020546060906001600160a01b031661224d5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016109c3565b601a61225883612b38565b601b60405160200161226c93929190613582565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146122ac5760405162461bcd60e51b81526004016109c390613726565b600b6122b760085490565b106122f95760405162461bcd60e51b815260206004820152601260248201527113505617d1d25195115117d4915050d2115160721b60448201526064016109c3565b611c6e81610d6f60085490565b600a546001600160a01b031633146123305760405162461bcd60e51b81526004016109c390613726565b6000606461233f476001613889565b6123499190613875565b905060006103e861235b47600f613889565b6123659190613875565b600b546040519192506001600160a01b03169083156108fc029084906000818181858888f193505050506123d25760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f443160601b60448201526064016109c3565b600c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610fc75760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa21960611b60448201526064016109c3565b6060601a8054610a26906138eb565b606060198054610a26906138eb565b601254610100900460ff166124ac5760405162461bcd60e51b81526020600482015260166024820152755055424c49435f53414c455f4e4f545f41435449564560501b60448201526064016109c3565b6124b96064611b396138a8565b600854106124d95760405162461bcd60e51b81526004016109c390613704565b600081116124f95760405162461bcd60e51b81526004016109c390613826565b600881111561253b5760405162461bcd60e51b815260206004820152600e60248201526d08ab0868a8a88a6bea8b0be9a82b60931b60448201526064016109c3565b6125486064611b396138a8565b8161255260085490565b61255c919061385d565b111561257a5760405162461bcd60e51b81526004016109c3906136d8565b333b156125c15760405162461bcd60e51b815260206004820152601560248201527410d3d395149050d514d7d0d0539393d517d3525395605a1b60448201526064016109c3565b336000908152601860205260409020546028906125df90839061385d565b11156126255760405162461bcd60e51b8152602060048201526015602482015274455843454544535f4d41585f414c4c4f57414e434560581b60448201526064016109c3565b3481600d546126349190613889565b146126515760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc75733600090815260186020526040812080546001929061267c90849061385d565b9091555061268f905033610d6f60085490565b8061269981613926565b915050612654565b600a546001600160a01b031633146126cb5760405162461bcd60e51b81526004016109c390613726565b6001600160a01b0381166127305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c3565b611c6e81612ab3565b60006001600160e01b031982166380ac58cd60e01b148061276a57506001600160e01b03198216635b5e139f60e01b145b80610a1157506301ffc9a760e01b6001600160e01b0319831614610a11565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127be8261168f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610fc7828260405180602001604052806000815250612c36565b6000818152600260205260408120546001600160a01b031661288a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c3565b60006128958361168f565b9050806001600160a01b0316846001600160a01b031614806128d05750836001600160a01b03166128c584610aa9565b6001600160a01b0316145b8061290057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661291b8261168f565b6001600160a01b0316146129835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c3565b6001600160a01b0382166129e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c3565b6129f0838383612c69565b6129fb600082612789565b6001600160a01b0383166000908152600360205260408120805460019290612a249084906138a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a5290849061385d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612b10848484612908565b612b1c84848484612d21565b6121525760405162461bcd60e51b81526004016109c39061365a565b606081612b5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b865780612b7081613926565b9150612b7f9050600a83613875565b9150612b60565b60008167ffffffffffffffff811115612ba157612ba16139ad565b6040519080825280601f01601f191660200182016040528015612bcb576020820181803683370190505b5090505b841561290057612be06001836138a8565b9150612bed600a86613941565b612bf890603061385d565b60f81b818381518110612c0d57612c0d613997565b60200101906001600160f81b031916908160001a905350612c2f600a86613875565b9450612bcf565b612c408383612e2e565b612c4d6000848484612d21565b610c4f5760405162461bcd60e51b81526004016109c39061365a565b6001600160a01b038316612cc457612cbf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ce7565b816001600160a01b0316836001600160a01b031614612ce757612ce78382612f7c565b6001600160a01b038216612cfe57610c4f81613019565b826001600160a01b0316826001600160a01b031614610c4f57610c4f82826130c8565b60006001600160a01b0384163b15612e2357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d659033908990889088906004016135b5565b602060405180830381600087803b158015612d7f57600080fd5b505af1925050508015612daf575060408051601f3d908101601f19168201909252612dac91810190613426565b60015b612e09573d808015612ddd576040519150601f19603f3d011682016040523d82523d6000602084013e612de2565b606091505b508051612e015760405162461bcd60e51b81526004016109c39061365a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612900565b506001949350505050565b6001600160a01b038216612e845760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c3565b6000818152600260205260409020546001600160a01b031615612ee95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c3565b612ef560008383612c69565b6001600160a01b0382166000908152600360205260408120805460019290612f1e90849061385d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612f898461174e565b612f9391906138a8565b600083815260076020526040902054909150808214612fe6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061302b906001906138a8565b6000838152600960205260408120546008805493945090928490811061305357613053613997565b90600052602060002001549050806008838154811061307457613074613997565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130ac576130ac613981565b6001900381819060005260206000200160009055905550505050565b60006130d38361174e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613118906138eb565b90600052602060002090601f01602090048101928261313a5760008555613180565b82601f106131535782800160ff19823516178555613180565b82800160010185558215613180579182015b82811115613180578235825591602001919060010190613165565b5061318c929150613190565b5090565b5b8082111561318c5760008155600101613191565b80356001600160a01b03811681146131bc57600080fd5b919050565b6000602082840312156131d357600080fd5b6131dc826131a5565b9392505050565b600080604083850312156131f657600080fd5b6131ff836131a5565b915061320d602084016131a5565b90509250929050565b60008060006060848603121561322b57600080fd5b613234846131a5565b9250613242602085016131a5565b9150604084013590509250925092565b6000806000806080858703121561326857600080fd5b613271856131a5565b935061327f602086016131a5565b925060408501359150606085013567ffffffffffffffff808211156132a357600080fd5b818701915087601f8301126132b757600080fd5b8135818111156132c9576132c96139ad565b604051601f8201601f19908116603f011681019083821181831017156132f1576132f16139ad565b816040528281528a602084870101111561330a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561334157600080fd5b61334a836131a5565b91506020830135801515811461335f57600080fd5b809150509250929050565b6000806040838503121561337d57600080fd5b613386836131a5565b946020939093013593505050565b600080602083850312156133a757600080fd5b823567ffffffffffffffff808211156133bf57600080fd5b818501915085601f8301126133d357600080fd5b8135818111156133e257600080fd5b8660208260051b85010111156133f757600080fd5b60209290920196919550909350505050565b60006020828403121561341b57600080fd5b81356131dc816139c3565b60006020828403121561343857600080fd5b81516131dc816139c3565b6000806020838503121561345657600080fd5b823567ffffffffffffffff8082111561346e57600080fd5b818501915085601f83011261348257600080fd5b81358181111561349157600080fd5b8660208285010111156133f757600080fd5b6000602082840312156134b557600080fd5b5035919050565b600081518084526134d48160208601602086016138bf565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061350257607f831692505b602080841082141561352457634e487b7160e01b600052602260045260246000fd5b818015613538576001811461354957613576565b60ff19861689528489019650613576565b60008881526020902060005b8681101561356e5781548b820152908501908301613555565b505084890196505b50505050505092915050565b600061358e82866134e8565b845161359e8183602089016138bf565b6135aa818301866134e8565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135e8908301846134bc565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006131dc60208301846134bc565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526012908201527150524553414c455f4e4f545f41435449564560701b604082015260600190565b602080825260129082015271455843454544535f4d41585f535550504c5960701b604082015260600190565b60208082526008908201526714d3d31117d3d55560c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600e908201526d1053149150511657d3525395115160921b604082015260600190565b6020808252601290820152711253959053125117d1551217d05353d5539560721b604082015260600190565b6020808252600c908201526b4e4f545f454c494749424c4560a01b604082015260600190565b60208082526017908201527f5155414e544954595f43414e4e4f545f42455f5a45524f000000000000000000604082015260600190565b6000821982111561387057613870613955565b500190565b6000826138845761388461396b565b500490565b60008160001904831182151516156138a3576138a3613955565b500290565b6000828210156138ba576138ba613955565b500390565b60005b838110156138da5781810151838201526020016138c2565b838111156121525750506000910152565b600181811c908216806138ff57607f821691505b6020821081141561392057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561393a5761393a613955565b5060010190565b6000826139505761395061396b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c6e57600080fdfea26469706673582212203fb6639ed1f9f6e258c7d02f1d5ed22fae50e783c20f17daac717d6e24c2732464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061036a5760003560e01c8063853828b6116101c6578063c477ff45116100f7578063dbaa96b311610095578063ed4cbf741161006f578063ed4cbf7414610933578063efd0cbf914610953578063f2fde38b14610966578063f43a22dc1461098657600080fd5b8063dbaa96b3146108bf578063e8a3d485146108d5578063e985e9c5146108ea57600080fd5b8063cbfc4bce116100d1578063cbfc4bce1461086c578063ce1b088a1461087f578063d4c7f69614610894578063d547cfb7146108aa57600080fd5b8063c477ff4514610816578063c87b56dd14610836578063cb11560d1461085657600080fd5b8063a22cb46511610164578063b1dc19f91161013e578063b1dc19f9146107ab578063b88d4fde146107cb578063b9ad9fde146107eb578063c1b8d74f1461080057600080fd5b8063a22cb46514610755578063a945bf8014610775578063b179e0601461078b57600080fd5b8063902d55a5116101a0578063902d55a5146106ea578063938e3d7b1461070057806395d89b41146107205780639a559e131461073557600080fd5b8063853828b614610697578063876dd5f7146106ac5780638da5cb5b146106cc57600080fd5b80633098cd94116102a057806364affb401161023e578063715018a611610218578063715018a61461063a5780637204a3c91461064f57806373b4d9d81461066f5780637bffb4ce1461068257600080fd5b806364affb40146105e55780636ff2cbc4146105fa57806370a082311461061a57600080fd5b806342842e0e1161027a57806342842e0e1461056b5780634f6ccce71461058b57806360d938dc146105ab5780636352211e146105c557600080fd5b80633098cd941461053957806331a53e9a1461054157806332cb6b0c1461055657600080fd5b806318160ddd1161030d57806323b872dd116102e757806323b872dd146104b9578063295f2343146104d95780632f745c59146104f957806330176e131461051957600080fd5b806318160ddd146104735780631e84c413146104925780631ff06a93146104b157600080fd5b8063081812fc11610349578063081812fc146103e6578063095ea7b31461041e57806313cc3265146104405780631542315d1461046057600080fd5b80625e03601461036f57806301ffc9a7146103a457806306fdde03146103c4575b600080fd5b34801561037b57600080fd5b5061038f61038a3660046131c1565b61099b565b60405190151581526020015b60405180910390f35b3480156103b057600080fd5b5061038f6103bf366004613409565b6109ec565b3480156103d057600080fd5b506103d9610a17565b60405161039b9190613621565b3480156103f257600080fd5b506104066104013660046134a3565b610aa9565b6040516001600160a01b03909116815260200161039b565b34801561042a57600080fd5b5061043e61043936600461336a565b610b3e565b005b34801561044c57600080fd5b5061043e61045b3660046131c1565b610c54565b61043e61046e3660046134a3565b610db2565b34801561047f57600080fd5b506008545b60405190815260200161039b565b34801561049e57600080fd5b5060125461038f90610100900460ff1681565b61043e610fcb565b3480156104c557600080fd5b5061043e6104d4366004613216565b61112b565b3480156104e557600080fd5b5061043e6104f4366004613394565b61115c565b34801561050557600080fd5b5061048461051436600461336a565b611367565b34801561052557600080fd5b5061043e610534366004613443565b6113fd565b61043e611471565b34801561054d57600080fd5b50610484606481565b34801561056257600080fd5b506104846115d1565b34801561057757600080fd5b5061043e610586366004613216565b6115e1565b34801561059757600080fd5b506104846105a63660046134a3565b6115fc565b3480156105b757600080fd5b5060125461038f9060ff1681565b3480156105d157600080fd5b506104066105e03660046134a3565b61168f565b3480156105f157600080fd5b50610484602881565b34801561060657600080fd5b5061038f6106153660046131c1565b611706565b34801561062657600080fd5b506104846106353660046131c1565b61174e565b34801561064657600080fd5b5061043e6117d5565b34801561065b57600080fd5b5061043e61066a366004613394565b61180b565b61043e61067d3660046134a3565b6119c5565b34801561068e57600080fd5b5061043e611bda565b3480156106a357600080fd5b5061043e611c18565b3480156106b857600080fd5b5061038f6106c73660046131c1565b611c71565b3480156106d857600080fd5b50600a546001600160a01b0316610406565b3480156106f657600080fd5b50610484611b3981565b34801561070c57600080fd5b5061043e61071b366004613443565b611cb9565b34801561072c57600080fd5b506103d9611d21565b34801561074157600080fd5b5061038f6107503660046131c1565b611d30565b34801561076157600080fd5b5061043e61077036600461332e565b611d77565b34801561078157600080fd5b50610484600d5481565b34801561079757600080fd5b5061043e6107a6366004613394565b611e3c565b3480156107b757600080fd5b5061043e6107c6366004613394565b611fad565b3480156107d757600080fd5b5061043e6107e6366004613252565b612120565b3480156107f757600080fd5b5061043e612158565b34801561080c57600080fd5b5061048460105481565b34801561082257600080fd5b5061038f6108313660046131c1565b61219f565b34801561084257600080fd5b506103d96108513660046134a3565b6121e6565b34801561086257600080fd5b50610484600e5481565b61043e61087a3660046131c1565b612282565b34801561088b57600080fd5b5061043e612306565b3480156108a057600080fd5b50610484600f5481565b3480156108b657600080fd5b506103d961243e565b3480156108cb57600080fd5b5061048460115481565b3480156108e157600080fd5b506103d961244d565b3480156108f657600080fd5b5061038f6109053660046131e3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093f57600080fd5b5060125461038f9062010000900460ff1681565b61043e6109613660046134a3565b61245c565b34801561097257600080fd5b5061043e6109813660046131c1565b6126a1565b34801561099257600080fd5b50610484600881565b60006001600160a01b0382166109cc5760405162461bcd60e51b81526004016109c390613634565b60405180910390fd5b506001600160a01b03166000908152601460205260409020546001111590565b60006001600160e01b0319821663780e9d6360e01b1480610a115750610a1182612739565b92915050565b606060008054610a26906138eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a52906138eb565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c3565b506000908152600460205260409020546001600160a01b031690565b6000610b498261168f565b9050806001600160a01b0316836001600160a01b03161415610bb75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c3565b336001600160a01b0382161480610bd35750610bd38133610905565b610c455760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c3565b610c4f8383612789565b505050565b600a546001600160a01b03163314610c7e5760405162461bcd60e51b81526004016109c390613726565b60125462010000900460ff1615610cd05760405162461bcd60e51b8152602060048201526016602482015275149154d154959157d053149150511657d3525395115160521b60448201526064016109c3565b611b39610cdc60085490565b10610cf95760405162461bcd60e51b81526004016109c390613704565b611b396064610d0760085490565b610d11919061385d565b1115610d565760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016109c3565b60005b6064811015610d9157610d7f82610d6f60085490565b610d7a90600161385d565b6127f7565b80610d8981613926565b915050610d59565b50506012805462ff0000198116620100009182900460ff1615909102179055565b60125460ff16610dd45760405162461bcd60e51b81526004016109c3906136ac565b3360009081526015602052604090205460ff16610e035760405162461bcd60e51b81526004016109c390613800565b33600090815260176020526040902054600611610e325760405162461bcd60e51b81526004016109c3906137ac565b33600090815260176020526040902054600690610e5090839061385d565b1115610e6e5760405162461bcd60e51b81526004016109c3906136d8565b610e7b6064611b396138a8565b60085410610e9b5760405162461bcd60e51b81526004016109c390613704565b60008111610ebb5760405162461bcd60e51b81526004016109c390613826565b6006811115610f0c5760405162461bcd60e51b815260206004820152601e60248201527f455843454544535f4d41585f535550504f525445525f4f5054494f4e5f42000060448201526064016109c3565b610f196064611b396138a8565b81610f2360085490565b610f2d919061385d565b1115610f4b5760405162461bcd60e51b81526004016109c3906136d8565b3481601154610f5a9190613889565b14610f775760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc757336000908152601760205260408120805460019290610fa290849061385d565b90915550610fb5905033610d6f60085490565b80610fbf81613926565b915050610f7a565b5050565b60125460ff16610fed5760405162461bcd60e51b81526004016109c3906136ac565b3360009081526013602052604090205460029060ff1661101f5760405162461bcd60e51b81526004016109c390613800565b3360009081526014602052604090205460011161104e5760405162461bcd60e51b81526004016109c3906137ac565b61105b6064611b396138a8565b6008541061107b5760405162461bcd60e51b81526004016109c390613704565b6110886064611b396138a8565b8161109260085490565b61109c919061385d565b11156110ba5760405162461bcd60e51b81526004016109c3906136d8565b34600f54146110db5760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc75733600090815260146020526040812080546001929061110690849061385d565b90915550611119905033610d6f60085490565b8061112381613926565b9150506110de565b6111353382612811565b6111515760405162461bcd60e51b81526004016109c39061375b565b610c4f838383612908565b600a546001600160a01b031633146111865760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f5760008383838181106111a5576111a5613997565b90506020020160208101906111ba91906131c1565b6001600160a01b031614156111e15760405162461bcd60e51b81526004016109c390613634565b601560008484848181106111f7576111f7613997565b905060200201602081019061120c91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff16156112685760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016109c3565b60016015600085858581811061128057611280613997565b905060200201602081019061129591906131c1565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556016818585858181106112d5576112d5613997565b90506020020160208101906112ea91906131c1565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060006017600085858581811061132657611326613997565b905060200201602081019061133b91906131c1565b6001600160a01b031681526020810191909152604001600020558061135f81613926565b915050611189565b60006113728361174e565b82106113d45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146114275760405162461bcd60e51b81526004016109c390613726565b611433601a838361310c565b507f228a3ac0675af69daeaaa5b8d369fe2faae665e7f340f0b78ccbb84e17b4f69482826040516114659291906135f2565b60405180910390a15050565b60125460ff166114935760405162461bcd60e51b81526004016109c3906136ac565b3360009081526013602052604090205460019060ff166114c55760405162461bcd60e51b81526004016109c390613800565b336000908152601460205260409020546001116114f45760405162461bcd60e51b81526004016109c3906137ac565b6115016064611b396138a8565b600854106115215760405162461bcd60e51b81526004016109c390613704565b61152e6064611b396138a8565b8161153860085490565b611542919061385d565b11156115605760405162461bcd60e51b81526004016109c3906136d8565b34600e54146115815760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc7573360009081526014602052604081208054600192906115ac90849061385d565b909155506115bf905033610d6f60085490565b806115c981613926565b915050611584565b6115de6064611b396138a8565b81565b610c4f83838360405180602001604052806000815250612120565b600061160760085490565b821061166a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c3565b6008828154811061167d5761167d613997565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c3565b60006001600160a01b03821661172e5760405162461bcd60e51b81526004016109c390613634565b506001600160a01b03166000908152601660205260409020546002111590565b60006001600160a01b0382166117b95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117ff5760405162461bcd60e51b81526004016109c390613726565b6118096000612ab3565b565b600a546001600160a01b031633146118355760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f57600083838381811061185457611854613997565b905060200201602081019061186991906131c1565b6001600160a01b031614156118905760405162461bcd60e51b81526004016109c390613634565b601360008484848181106118a6576118a6613997565b90506020020160208101906118bb91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff16156119175760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016109c3565b60016013600085858581811061192f5761192f613997565b905060200201602081019061194491906131c1565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560148185858581811061198457611984613997565b905060200201602081019061199991906131c1565b6001600160a01b03168152602081019190915260400160002055806119bd81613926565b915050611838565b60125460ff166119e75760405162461bcd60e51b81526004016109c3906136ac565b3360009081526015602052604090205460ff16611a165760405162461bcd60e51b81526004016109c390613800565b33600090815260166020526040902054600211611a455760405162461bcd60e51b81526004016109c3906137ac565b33600090815260166020526040902054600290611a6390839061385d565b1115611a815760405162461bcd60e51b81526004016109c3906136d8565b611a8e6064611b396138a8565b60085410611aae5760405162461bcd60e51b81526004016109c390613704565b60008111611ace5760405162461bcd60e51b81526004016109c390613826565b6002811115611b1f5760405162461bcd60e51b815260206004820152601e60248201527f455843454544535f4d41585f535550504f525445525f4f5054494f4e5f41000060448201526064016109c3565b611b2c6064611b396138a8565b81611b3660085490565b611b40919061385d565b1115611b5e5760405162461bcd60e51b81526004016109c3906136d8565b3481601054611b6d9190613889565b14611b8a5760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc757336000908152601660205260408120805460019290611bb590849061385d565b90915550611bc8905033610d6f60085490565b80611bd281613926565b915050611b8d565b600a546001600160a01b03163314611c045760405162461bcd60e51b81526004016109c390613726565b6012805460ff19811660ff90911615179055565b600a546001600160a01b03163314611c425760405162461bcd60e51b81526004016109c390613726565b60405133904780156108fc02916000818181858888f19350505050158015611c6e573d6000803e3d6000fd5b50565b60006001600160a01b038216611c995760405162461bcd60e51b81526004016109c390613634565b506001600160a01b03166000908152601760205260409020546006111590565b600a546001600160a01b03163314611ce35760405162461bcd60e51b81526004016109c390613726565b611cef6019838361310c565b507fd5ee5eaf65263bab5d569890714d123ad48a9e54409d35e71d374f3dd300bba082826040516114659291906135f2565b606060018054610a26906138eb565b60006001600160a01b038216611d585760405162461bcd60e51b81526004016109c390613634565b506001600160a01b031660009081526013602052604090205460ff1690565b6001600160a01b038216331415611dd05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611e665760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f576000838383818110611e8557611e85613997565b9050602002016020810190611e9a91906131c1565b6001600160a01b03161415611ec15760405162461bcd60e51b81526004016109c390613634565b60136000848484818110611ed757611ed7613997565b9050602002016020810190611eec91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff16611f465760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f494e5f50524553414c4560901b60448201526064016109c3565b600060136000858585818110611f5e57611f5e613997565b9050602002016020810190611f7391906131c1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611fa581613926565b915050611e69565b600a546001600160a01b03163314611fd75760405162461bcd60e51b81526004016109c390613726565b60005b81811015610c4f576000838383818110611ff657611ff6613997565b905060200201602081019061200b91906131c1565b6001600160a01b031614156120325760405162461bcd60e51b81526004016109c390613634565b6015600084848481811061204857612048613997565b905060200201602081019061205d91906131c1565b6001600160a01b0316815260208101919091526040016000205460ff166120b95760405162461bcd60e51b815260206004820152601060248201526f2727aa2fa4a72fa9aaa82827a92a22a960811b60448201526064016109c3565b6000601560008585858181106120d1576120d1613997565b90506020020160208101906120e691906131c1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061211881613926565b915050611fda565b61212a3383612811565b6121465760405162461bcd60e51b81526004016109c39061375b565b61215284848484612b05565b50505050565b600a546001600160a01b031633146121825760405162461bcd60e51b81526004016109c390613726565b6012805461ff001981166101009182900460ff1615909102179055565b60006001600160a01b0382166121c75760405162461bcd60e51b81526004016109c390613634565b506001600160a01b031660009081526015602052604090205460ff1690565b6000818152600260205260409020546060906001600160a01b031661224d5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016109c3565b601a61225883612b38565b601b60405160200161226c93929190613582565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146122ac5760405162461bcd60e51b81526004016109c390613726565b600b6122b760085490565b106122f95760405162461bcd60e51b815260206004820152601260248201527113505617d1d25195115117d4915050d2115160721b60448201526064016109c3565b611c6e81610d6f60085490565b600a546001600160a01b031633146123305760405162461bcd60e51b81526004016109c390613726565b6000606461233f476001613889565b6123499190613875565b905060006103e861235b47600f613889565b6123659190613875565b600b546040519192506001600160a01b03169083156108fc029084906000818181858888f193505050506123d25760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f443160601b60448201526064016109c3565b600c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610fc75760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa21960611b60448201526064016109c3565b6060601a8054610a26906138eb565b606060198054610a26906138eb565b601254610100900460ff166124ac5760405162461bcd60e51b81526020600482015260166024820152755055424c49435f53414c455f4e4f545f41435449564560501b60448201526064016109c3565b6124b96064611b396138a8565b600854106124d95760405162461bcd60e51b81526004016109c390613704565b600081116124f95760405162461bcd60e51b81526004016109c390613826565b600881111561253b5760405162461bcd60e51b815260206004820152600e60248201526d08ab0868a8a88a6bea8b0be9a82b60931b60448201526064016109c3565b6125486064611b396138a8565b8161255260085490565b61255c919061385d565b111561257a5760405162461bcd60e51b81526004016109c3906136d8565b333b156125c15760405162461bcd60e51b815260206004820152601560248201527410d3d395149050d514d7d0d0539393d517d3525395605a1b60448201526064016109c3565b336000908152601860205260409020546028906125df90839061385d565b11156126255760405162461bcd60e51b8152602060048201526015602482015274455843454544535f4d41585f414c4c4f57414e434560581b60448201526064016109c3565b3481600d546126349190613889565b146126515760405162461bcd60e51b81526004016109c3906137d4565b60005b81811015610fc75733600090815260186020526040812080546001929061267c90849061385d565b9091555061268f905033610d6f60085490565b8061269981613926565b915050612654565b600a546001600160a01b031633146126cb5760405162461bcd60e51b81526004016109c390613726565b6001600160a01b0381166127305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c3565b611c6e81612ab3565b60006001600160e01b031982166380ac58cd60e01b148061276a57506001600160e01b03198216635b5e139f60e01b145b80610a1157506301ffc9a760e01b6001600160e01b0319831614610a11565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127be8261168f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610fc7828260405180602001604052806000815250612c36565b6000818152600260205260408120546001600160a01b031661288a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c3565b60006128958361168f565b9050806001600160a01b0316846001600160a01b031614806128d05750836001600160a01b03166128c584610aa9565b6001600160a01b0316145b8061290057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661291b8261168f565b6001600160a01b0316146129835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c3565b6001600160a01b0382166129e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c3565b6129f0838383612c69565b6129fb600082612789565b6001600160a01b0383166000908152600360205260408120805460019290612a249084906138a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a5290849061385d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612b10848484612908565b612b1c84848484612d21565b6121525760405162461bcd60e51b81526004016109c39061365a565b606081612b5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b865780612b7081613926565b9150612b7f9050600a83613875565b9150612b60565b60008167ffffffffffffffff811115612ba157612ba16139ad565b6040519080825280601f01601f191660200182016040528015612bcb576020820181803683370190505b5090505b841561290057612be06001836138a8565b9150612bed600a86613941565b612bf890603061385d565b60f81b818381518110612c0d57612c0d613997565b60200101906001600160f81b031916908160001a905350612c2f600a86613875565b9450612bcf565b612c408383612e2e565b612c4d6000848484612d21565b610c4f5760405162461bcd60e51b81526004016109c39061365a565b6001600160a01b038316612cc457612cbf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ce7565b816001600160a01b0316836001600160a01b031614612ce757612ce78382612f7c565b6001600160a01b038216612cfe57610c4f81613019565b826001600160a01b0316826001600160a01b031614610c4f57610c4f82826130c8565b60006001600160a01b0384163b15612e2357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d659033908990889088906004016135b5565b602060405180830381600087803b158015612d7f57600080fd5b505af1925050508015612daf575060408051601f3d908101601f19168201909252612dac91810190613426565b60015b612e09573d808015612ddd576040519150601f19603f3d011682016040523d82523d6000602084013e612de2565b606091505b508051612e015760405162461bcd60e51b81526004016109c39061365a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612900565b506001949350505050565b6001600160a01b038216612e845760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c3565b6000818152600260205260409020546001600160a01b031615612ee95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c3565b612ef560008383612c69565b6001600160a01b0382166000908152600360205260408120805460019290612f1e90849061385d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612f898461174e565b612f9391906138a8565b600083815260076020526040902054909150808214612fe6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061302b906001906138a8565b6000838152600960205260408120546008805493945090928490811061305357613053613997565b90600052602060002001549050806008838154811061307457613074613997565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130ac576130ac613981565b6001900381819060005260206000200160009055905550505050565b60006130d38361174e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613118906138eb565b90600052602060002090601f01602090048101928261313a5760008555613180565b82601f106131535782800160ff19823516178555613180565b82800160010185558215613180579182015b82811115613180578235825591602001919060010190613165565b5061318c929150613190565b5090565b5b8082111561318c5760008155600101613191565b80356001600160a01b03811681146131bc57600080fd5b919050565b6000602082840312156131d357600080fd5b6131dc826131a5565b9392505050565b600080604083850312156131f657600080fd5b6131ff836131a5565b915061320d602084016131a5565b90509250929050565b60008060006060848603121561322b57600080fd5b613234846131a5565b9250613242602085016131a5565b9150604084013590509250925092565b6000806000806080858703121561326857600080fd5b613271856131a5565b935061327f602086016131a5565b925060408501359150606085013567ffffffffffffffff808211156132a357600080fd5b818701915087601f8301126132b757600080fd5b8135818111156132c9576132c96139ad565b604051601f8201601f19908116603f011681019083821181831017156132f1576132f16139ad565b816040528281528a602084870101111561330a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561334157600080fd5b61334a836131a5565b91506020830135801515811461335f57600080fd5b809150509250929050565b6000806040838503121561337d57600080fd5b613386836131a5565b946020939093013593505050565b600080602083850312156133a757600080fd5b823567ffffffffffffffff808211156133bf57600080fd5b818501915085601f8301126133d357600080fd5b8135818111156133e257600080fd5b8660208260051b85010111156133f757600080fd5b60209290920196919550909350505050565b60006020828403121561341b57600080fd5b81356131dc816139c3565b60006020828403121561343857600080fd5b81516131dc816139c3565b6000806020838503121561345657600080fd5b823567ffffffffffffffff8082111561346e57600080fd5b818501915085601f83011261348257600080fd5b81358181111561349157600080fd5b8660208285010111156133f757600080fd5b6000602082840312156134b557600080fd5b5035919050565b600081518084526134d48160208601602086016138bf565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061350257607f831692505b602080841082141561352457634e487b7160e01b600052602260045260246000fd5b818015613538576001811461354957613576565b60ff19861689528489019650613576565b60008881526020902060005b8681101561356e5781548b820152908501908301613555565b505084890196505b50505050505092915050565b600061358e82866134e8565b845161359e8183602089016138bf565b6135aa818301866134e8565b979650505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135e8908301846134bc565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6020815260006131dc60208301846134bc565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526012908201527150524553414c455f4e4f545f41435449564560701b604082015260600190565b602080825260129082015271455843454544535f4d41585f535550504c5960701b604082015260600190565b60208082526008908201526714d3d31117d3d55560c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600e908201526d1053149150511657d3525395115160921b604082015260600190565b6020808252601290820152711253959053125117d1551217d05353d5539560721b604082015260600190565b6020808252600c908201526b4e4f545f454c494749424c4560a01b604082015260600190565b60208082526017908201527f5155414e544954595f43414e4e4f545f42455f5a45524f000000000000000000604082015260600190565b6000821982111561387057613870613955565b500190565b6000826138845761388461396b565b500490565b60008160001904831182151516156138a3576138a3613955565b500290565b6000828210156138ba576138ba613955565b500390565b60005b838110156138da5781810151838201526020016138c2565b838111156121525750506000910152565b600181811c908216806138ff57607f821691505b6020821081141561392057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561393a5761393a613955565b5060010190565b6000826139505761395061396b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c6e57600080fdfea26469706673582212203fb6639ed1f9f6e258c7d02f1d5ed22fae50e783c20f17daac717d6e24c2732464736f6c63430008070033

Deployed Bytecode Sourcemap

44222:14058:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48647:185;;;;;;;;;;-1:-1:-1;48647:185:0;;;;;:::i;:::-;;:::i;:::-;;;7208:14:1;;7201:22;7183:41;;7171:2;7156:18;48647:185:0;;;;;;;;34662:224;;;;;;;;;;-1:-1:-1;34662:224:0;;;;;:::i;:::-;;:::i;22554:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24113:221::-;;;;;;;;;;-1:-1:-1;24113:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6506:32:1;;;6488:51;;6476:2;6461:18;24113:221:0;6342:203:1;23636:411:0;;;;;;;;;;-1:-1:-1;23636:411:0;;;;;:::i;:::-;;:::i;:::-;;50957:526;;;;;;;;;;-1:-1:-1;50957:526:0;;;;;:::i;:::-;;:::i;53864:880::-;;;;;;:::i;:::-;;:::i;35302:113::-;;;;;;;;;;-1:-1:-1;35390:10:0;:17;35302:113;;;22794:25:1;;;22782:2;22767:18;35302:113:0;22648:177:1;45651:38:0;;;;;;;;;;-1:-1:-1;45651:38:0;;;;;;;;;;;52203:634;;;:::i;25003:339::-;;;;;;;;;;-1:-1:-1;25003:339:0;;;;;:::i;:::-;;:::i;49060:490::-;;;;;;;;;;-1:-1:-1;49060:490:0;;;;;:::i;:::-;;:::i;34970:256::-;;;;;;;;;;-1:-1:-1;34970:256:0;;;;;:::i;:::-;;:::i;56322:143::-;;;;;;;;;;-1:-1:-1;56322:143:0;;;;;:::i;:::-;;:::i;51522:642::-;;;:::i;44495:45::-;;;;;;;;;;;;44537:3;44495:45;;44606:67;;;;;;;;;;;;;:::i;25413:185::-;;;;;;;;;;-1:-1:-1;25413:185:0;;;;;:::i;:::-;;:::i;35492:233::-;;;;;;;;;;-1:-1:-1;35492:233:0;;;;;:::i;:::-;;:::i;45608:35::-;;;;;;;;;;-1:-1:-1;45608:35:0;;;;;;;;22248:239;;;;;;;;;;-1:-1:-1;22248:239:0;;;;;:::i;:::-;;:::i;44804:50::-;;;;;;;;;;;;44852:2;44804:50;;50148:203;;;;;;;;;;-1:-1:-1;50148:203:0;;;;;:::i;:::-;;:::i;21978:208::-;;;;;;;;;;-1:-1:-1;21978:208:0;;;;;:::i;:::-;;:::i;42451:94::-;;;;;;;;;;;;;:::i;47649:410::-;;;;;;;;;;-1:-1:-1;47649:410:0;;;;;:::i;:::-;;:::i;52908:888::-;;;;;;:::i;:::-;;:::i;48840:103::-;;;;;;;;;;;;;:::i;57624:112::-;;;;;;;;;;;;;:::i;50359:203::-;;;;;;;;;;-1:-1:-1;50359:203:0;;;;;:::i;:::-;;:::i;41800:87::-;;;;;;;;;;-1:-1:-1;41873:6:0;;-1:-1:-1;;;;;41873:6:0;41800:87;;44417:43;;;;;;;;;;;;44456:4;44417:43;;55964:140;;;;;;;;;;-1:-1:-1;55964:140:0;;;;;:::i;:::-;;:::i;22723:104::-;;;;;;;;;;;;;:::i;48456:181::-;;;;;;;;;;-1:-1:-1;48456:181:0;;;;;:::i;:::-;;:::i;24406:295::-;;;;;;;;;;-1:-1:-1;24406:295:0;;;;;:::i;:::-;;:::i;45169:40::-;;;;;;;;;;;;;;;;48067:381;;;;;;;;;;-1:-1:-1;48067:381:0;;;;;:::i;:::-;;:::i;49558:389::-;;;;;;;;;;-1:-1:-1;49558:389:0;;;;;:::i;:::-;;:::i;25669:328::-;;;;;;;;;;-1:-1:-1;25669:328:0;;;;;:::i;:::-;;:::i;50681:112::-;;;;;;;;;;;;;:::i;45410:50::-;;;;;;;;;;;;;;;;49955:185;;;;;;;;;;-1:-1:-1;49955:185:0;;;;;:::i;:::-;;:::i;56671:467::-;;;;;;;;;;-1:-1:-1;56671:467:0;;;;;:::i;:::-;;:::i;45230:48::-;;;;;;;;;;;;;;;;55644:202;;;;;;:::i;:::-;;:::i;57298:318::-;;;;;;;;;;;;;:::i;45298:70::-;;;;;;;;;;;;;;;;56473:99;;;;;;;;;;;;;:::i;45478:52::-;;;;;;;;;;;;;;;;56112:97;;;;;;;;;;;;;:::i;24772:164::-;;;;;;;;;;-1:-1:-1;24772:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24893:25:0;;;24869:4;24893:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24772:164;45698:39;;;;;;;;;;-1:-1:-1;45698:39:0;;;;;;;;;;;54772:808;;;;;;:::i;:::-;;:::i;42700:192::-;;;;;;;;;;-1:-1:-1;42700:192:0;;;;;:::i;:::-;;:::i;44712:38::-;;;;;;;;;;;;44749:1;44712:38;;48647:185;48710:4;-1:-1:-1;;;;;48735:18:0;;48727:43;;;;-1:-1:-1;;;48727:43:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;48790:29:0;;;;;:23;:29;;;;;;48823:1;-1:-1:-1;48790:34:0;;48647:185::o;34662:224::-;34764:4;-1:-1:-1;;;;;;34788:50:0;;-1:-1:-1;;;34788:50:0;;:90;;;34842:36;34866:11;34842:23;:36::i;:::-;34781:97;34662:224;-1:-1:-1;;34662:224:0:o;22554:100::-;22608:13;22641:5;22634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22554:100;:::o;24113:221::-;24189:7;27596:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27596:16:0;24209:73;;;;-1:-1:-1;;;24209:73:0;;17302:2:1;24209:73:0;;;17284:21:1;17341:2;17321:18;;;17314:30;17380:34;17360:18;;;17353:62;-1:-1:-1;;;17431:18:1;;;17424:42;17483:19;;24209:73:0;17100:408:1;24209:73:0;-1:-1:-1;24302:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24302:24:0;;24113:221::o;23636:411::-;23717:13;23733:23;23748:7;23733:14;:23::i;:::-;23717:39;;23781:5;-1:-1:-1;;;;;23775:11:0;:2;-1:-1:-1;;;;;23775:11:0;;;23767:57;;;;-1:-1:-1;;;23767:57:0;;19197:2:1;23767:57:0;;;19179:21:1;19236:2;19216:18;;;19209:30;19275:34;19255:18;;;19248:62;-1:-1:-1;;;19326:18:1;;;19319:31;19367:19;;23767:57:0;18995:397:1;23767:57:0;20163:10;-1:-1:-1;;;;;23859:21:0;;;;:62;;-1:-1:-1;23884:37:0;23901:5;20163:10;24772:164;:::i;23884:37::-;23837:168;;;;-1:-1:-1;;;23837:168:0;;13270:2:1;23837:168:0;;;13252:21:1;13309:2;13289:18;;;13282:30;13348:34;13328:18;;;13321:62;13419:26;13399:18;;;13392:54;13463:19;;23837:168:0;13068:420:1;23837:168:0;24018:21;24027:2;24031:7;24018:8;:21::i;:::-;23706:341;23636:411;;:::o;50957:526::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;51058:19:::1;::::0;;;::::1;;;:28;51050:63;;;::::0;-1:-1:-1;;;51050:63:0;;15891:2:1;51050:63:0::1;::::0;::::1;15873:21:1::0;15930:2;15910:18;;;15903:30;-1:-1:-1;;;15949:18:1;;;15942:52;16011:18;;51050:63:0::1;15689:346:1::0;51050:63:0::1;44456:4;51132:13;35390:10:::0;:17;;35302:113;51132:13:::1;:28;51124:49;;;;-1:-1:-1::0;;;51124:49:0::1;;;;;;;:::i;:::-;44456:4;44537:3;51206:13;35390:10:::0;:17;;35302:113;51206:13:::1;:31;;;;:::i;:::-;:47;;51184:117;;;::::0;-1:-1:-1;;;51184:117:0;;16242:2:1;51184:117:0::1;::::0;::::1;16224:21:1::0;16281:2;16261:18;;;16254:30;-1:-1:-1;;;16300:18:1;;;16293:50;16360:18;;51184:117:0::1;16040:344:1::0;51184:117:0::1;51319:9;51314:107;44537:3;51334:1;:19;51314:107;;;51375:34;51385:4;51391:13;35390:10:::0;:17;;35302:113;51391:13:::1;:17;::::0;51407:1:::1;51391:17;:::i;:::-;51375:9;:34::i;:::-;51355:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51314:107;;;-1:-1:-1::0;;51456:19:0::1;::::0;;-1:-1:-1;;51433:42:0;::::1;51456:19:::0;;;;::::1;;;51455:20;51433:42:::0;;::::1;;::::0;;50957:526::o;53864:880::-;47358:15;;;;47350:46;;;;-1:-1:-1;;;47350:46:0;;;;;;;:::i;:::-;53983:10:::1;53960:34;::::0;;;:22:::1;:34;::::0;;;;;::::1;;53952:59;;;;-1:-1:-1::0;;;53952:59:0::1;;;;;;;:::i;:::-;54063:10;54030:44;::::0;;;:32:::1;:44;::::0;;;;;54077:1:::1;-1:-1:-1::0;54022:75:0::1;;;;-1:-1:-1::0;;;54022:75:0::1;;;;;;;:::i;:::-;54149:10;54116:44;::::0;;;:32:::1;:44;::::0;;;;;54175:1:::1;::::0;54116:55:::1;::::0;54163:8;;54116:55:::1;:::i;:::-;:60;;54108:91;;;;-1:-1:-1::0;;;54108:91:0::1;;;;;;;:::i;:::-;44643:30;44537:3;44456:4;44643:30;:::i;:::-;35390:10:::0;:17;54220:26:::1;54212:47;;;;-1:-1:-1::0;;;54212:47:0::1;;;;;;;:::i;:::-;54289:1;54278:8;:12;54270:48;;;;-1:-1:-1::0;;;54270:48:0::1;;;;;;;:::i;:::-;54349:1;54337:8;:13;;54329:56;;;::::0;-1:-1:-1;;;54329:56:0;;11445:2:1;54329:56:0::1;::::0;::::1;11427:21:1::0;11484:2;11464:18;;;11457:30;11523:32;11503:18;;;11496:60;11573:18;;54329:56:0::1;11243:354:1::0;54329:56:0::1;44643:30;44537:3;44456:4;44643:30;:::i;:::-;54420:8;54404:13;35390:10:::0;:17;;35302:113;54404:13:::1;:24;;;;:::i;:::-;:38;;54396:69;;;;-1:-1:-1::0;;;54396:69:0::1;;;;;;;:::i;:::-;54522:9;54510:8;54486:21;;:32;;;;:::i;:::-;:45;54478:76;;;;-1:-1:-1::0;;;54478:76:0::1;;;;;;;:::i;:::-;54572:9;54567:170;54591:8;54587:1;:12;54567:170;;;54654:10;54621:44;::::0;;;:32:::1;:44;::::0;;;;:49;;54669:1:::1;::::0;54621:44;:49:::1;::::0;54669:1;;54621:49:::1;:::i;:::-;::::0;;;-1:-1:-1;54685:40:0::1;::::0;-1:-1:-1;54695:10:0::1;54707:13;35390:10:::0;:17;;35302:113;54685:40:::1;54601:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54567:170;;;;53864:880:::0;:::o;52203:634::-;47358:15;;;;47350:46;;;;-1:-1:-1;;;47350:46:0;;;;;;;:::i;:::-;52335:10:::1;52273:16;52314:32:::0;;;:20:::1;:32;::::0;;;;;52292:1:::1;::::0;52314:32:::1;;52306:57;;;;-1:-1:-1::0;;;52306:57:0::1;;;;;;;:::i;:::-;52406:10;52382:35;::::0;;;:23:::1;:35;::::0;;;;;52420:1:::1;-1:-1:-1::0;52374:66:0::1;;;;-1:-1:-1::0;;;52374:66:0::1;;;;;;;:::i;:::-;44643:30;44537:3;44456:4;44643:30;:::i;:::-;35390:10:::0;:17;52461:26:::1;52453:47;;;;-1:-1:-1::0;;;52453:47:0::1;;;;;;;:::i;:::-;44643:30;44537:3;44456:4;44643:30;:::i;:::-;52535:8;52519:13;35390:10:::0;:17;;35302:113;52519:13:::1;:24;;;;:::i;:::-;:38;;52511:69;;;;-1:-1:-1::0;;;52511:69:0::1;;;;;;;:::i;:::-;52624:9;52601:19;;:32;52593:63;;;;-1:-1:-1::0;;;52593:63:0::1;;;;;;;:::i;:::-;52674:9;52669:161;52693:8;52689:1;:12;52669:161;;;52747:10;52723:35;::::0;;;:23:::1;:35;::::0;;;;:40;;52762:1:::1;::::0;52723:35;:40:::1;::::0;52762:1;;52723:40:::1;:::i;:::-;::::0;;;-1:-1:-1;52778:40:0::1;::::0;-1:-1:-1;52788:10:0::1;52800:13;35390:10:::0;:17;;35302:113;52778:40:::1;52703:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52669:161;;25003:339:::0;25198:41;20163:10;25231:7;25198:18;:41::i;:::-;25190:103;;;;-1:-1:-1;;;25190:103:0;;;;;;;:::i;:::-;25306:28;25316:4;25322:2;25326:7;25306:9;:28::i;49060:490::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;49153:9:::1;49148:395;49168:20:::0;;::::1;49148:395;;;49242:1;49218:9:::0;;49228:1;49218:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49218:26:0::1;;;49210:51;;;;-1:-1:-1::0;;;49210:51:0::1;;;;;;;:::i;:::-;49285:22;:36;49308:9;;49318:1;49308:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49285:36:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49285:36:0;;::::1;;49284:37;49276:65;;;::::0;-1:-1:-1;;;49276:65:0;;12567:2:1;49276:65:0::1;::::0;::::1;12549:21:1::0;12606:2;12586:18;;;12579:30;-1:-1:-1;;;12625:18:1;;;12618:45;12680:18;;49276:65:0::1;12365:339:1::0;49276:65:0::1;49397:4;49358:22;:36;49381:9;;49391:1;49381:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49358:36:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49358:36:0;;;:43;;-1:-1:-1;;49358:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;49416:32:::1;-1:-1:-1::0;49449:9:0;;49459:1;49449:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49416:46:0::1;-1:-1:-1::0;;;;;49416:46:0::1;;;;;;;;;;;;:50;;;;49530:1;49481:32;:46;49514:9;;49524:1;49514:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49481:46:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49481:46:0;:50;49190:3;::::1;::::0;::::1;:::i;:::-;;;;49148:395;;34970:256:::0;35067:7;35103:23;35120:5;35103:16;:23::i;:::-;35095:5;:31;35087:87;;;;-1:-1:-1;;;35087:87:0;;8397:2:1;35087:87:0;;;8379:21:1;8436:2;8416:18;;;8409:30;8475:34;8455:18;;;8448:62;-1:-1:-1;;;8526:18:1;;;8519:41;8577:19;;35087:87:0;8195:407:1;35087:87:0;-1:-1:-1;;;;;;35192:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34970:256::o;56322:143::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;56398:19:::1;:13;56414:3:::0;;56398:19:::1;:::i;:::-;;56433:24;56453:3;;56433:24;;;;;;;:::i;:::-;;;;;;;;56322:143:::0;;:::o;51522:642::-;47358:15;;;;47350:46;;;;-1:-1:-1;;;47350:46:0;;;;;;;:::i;:::-;51654:10:::1;51592:16;51633:32:::0;;;:20:::1;:32;::::0;;;;;51611:1:::1;::::0;51633:32:::1;;51625:57;;;;-1:-1:-1::0;;;51625:57:0::1;;;;;;;:::i;:::-;51725:10;51701:35;::::0;;;:23:::1;:35;::::0;;;;;51739:1:::1;-1:-1:-1::0;51693:66:0::1;;;;-1:-1:-1::0;;;51693:66:0::1;;;;;;;:::i;:::-;44643:30;44537:3;44456:4;44643:30;:::i;:::-;35390:10:::0;:17;51780:26:::1;51772:47;;;;-1:-1:-1::0;;;51772:47:0::1;;;;;;;:::i;:::-;44643:30;44537:3;44456:4;44643:30;:::i;:::-;51854:8;51838:13;35390:10:::0;:17;;35302:113;51838:13:::1;:24;;;;:::i;:::-;:38;;51830:69;;;;-1:-1:-1::0;;;51830:69:0::1;;;;;;;:::i;:::-;51951:9;51928:19;;:32;51920:63;;;;-1:-1:-1::0;;;51920:63:0::1;;;;;;;:::i;:::-;52001:9;51996:161;52020:8;52016:1;:12;51996:161;;;52074:10;52050:35;::::0;;;:23:::1;:35;::::0;;;;:40;;52089:1:::1;::::0;52050:35;:40:::1;::::0;52089:1;;52050:40:::1;:::i;:::-;::::0;;;-1:-1:-1;52105:40:0::1;::::0;-1:-1:-1;52115:10:0::1;52127:13;35390:10:::0;:17;;35302:113;52105:40:::1;52030:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51996:161;;44606:67:::0;44643:30;44537:3;44456:4;44643:30;:::i;:::-;44606:67;:::o;25413:185::-;25551:39;25568:4;25574:2;25578:7;25551:39;;;;;;;;;;;;:16;:39::i;35492:233::-;35567:7;35603:30;35390:10;:17;;35302:113;35603:30;35595:5;:38;35587:95;;;;-1:-1:-1;;;35587:95:0;;20366:2:1;35587:95:0;;;20348:21:1;20405:2;20385:18;;;20378:30;20444:34;20424:18;;;20417:62;-1:-1:-1;;;20495:18:1;;;20488:42;20547:19;;35587:95:0;20164:408:1;35587:95:0;35700:10;35711:5;35700:17;;;;;;;;:::i;:::-;;;;;;;;;35693:24;;35492:233;;;:::o;22248:239::-;22320:7;22356:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22356:16:0;22391:19;22383:73;;;;-1:-1:-1;;;22383:73:0;;14106:2:1;22383:73:0;;;14088:21:1;14145:2;14125:18;;;14118:30;14184:34;14164:18;;;14157:62;-1:-1:-1;;;14235:18:1;;;14228:39;14284:19;;22383:73:0;13904:405:1;50148:203:0;50220:4;-1:-1:-1;;;;;50245:18:0;;50237:43;;;;-1:-1:-1;;;50237:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;50300:38:0;;;;;:32;:38;;;;;;50342:1;-1:-1:-1;50300:43:0;;50148:203::o;21978:208::-;22050:7;-1:-1:-1;;;;;22078:19:0;;22070:74;;;;-1:-1:-1;;;22070:74:0;;13695:2:1;22070:74:0;;;13677:21:1;13734:2;13714:18;;;13707:30;13773:34;13753:18;;;13746:62;-1:-1:-1;;;13824:18:1;;;13817:40;13874:19;;22070:74:0;13493:406:1;22070:74:0;-1:-1:-1;;;;;;22162:16:0;;;;;:9;:16;;;;;;;21978:208::o;42451:94::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;42516:21:::1;42534:1;42516:9;:21::i;:::-;42451:94::o:0;47649:410::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;47740:9:::1;47735:317;47755:20:::0;;::::1;47735:317;;;47829:1;47805:9:::0;;47815:1;47805:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47805:26:0::1;;;47797:51;;;;-1:-1:-1::0;;;47797:51:0::1;;;;;;;:::i;:::-;47872:20;:34;47893:9;;47903:1;47893:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47872:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47872:34:0;;::::1;;47871:35;47863:63;;;::::0;-1:-1:-1;;;47863:63:0;;12567:2:1;47863:63:0::1;::::0;::::1;12549:21:1::0;12606:2;12586:18;;;12579:30;-1:-1:-1;;;12625:18:1;;;12618:45;12680:18;;47863:63:0::1;12365:339:1::0;47863:63:0::1;47980:4;47943:20;:34;47964:9;;47974:1;47964:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47943:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47943:34:0;;;:41;;-1:-1:-1;;47943:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;47999:23:::1;-1:-1:-1::0;48023:9:0;;48033:1;48023:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47999:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47999:37:0;:41;47777:3;::::1;::::0;::::1;:::i;:::-;;;;47735:317;;52908:888:::0;47358:15;;;;47350:46;;;;-1:-1:-1;;;47350:46:0;;;;;;;:::i;:::-;53027:10:::1;53004:34;::::0;;;:22:::1;:34;::::0;;;;;::::1;;52996:59;;;;-1:-1:-1::0;;;52996:59:0::1;;;;;;;:::i;:::-;53107:10;53074:44;::::0;;;:32:::1;:44;::::0;;;;;53121:1:::1;-1:-1:-1::0;53066:75:0::1;;;;-1:-1:-1::0;;;53066:75:0::1;;;;;;;:::i;:::-;53193:10;53160:44;::::0;;;:32:::1;:44;::::0;;;;;53219:1:::1;::::0;53160:55:::1;::::0;53207:8;;53160:55:::1;:::i;:::-;:60;;53152:91;;;;-1:-1:-1::0;;;53152:91:0::1;;;;;;;:::i;:::-;44643:30;44537:3;44456:4;44643:30;:::i;:::-;35390:10:::0;:17;53264:26:::1;53256:47;;;;-1:-1:-1::0;;;53256:47:0::1;;;;;;;:::i;:::-;53333:1;53322:8;:12;53314:48;;;;-1:-1:-1::0;;;53314:48:0::1;;;;;;;:::i;:::-;53393:1;53381:8;:13;;53373:56;;;::::0;-1:-1:-1;;;53373:56:0;;12911:2:1;53373:56:0::1;::::0;::::1;12893:21:1::0;12950:2;12930:18;;;12923:30;12989:32;12969:18;;;12962:60;13039:18;;53373:56:0::1;12709:354:1::0;53373:56:0::1;44643:30;44537:3;44456:4;44643:30;:::i;:::-;53464:8;53448:13;35390:10:::0;:17;;35302:113;53448:13:::1;:24;;;;:::i;:::-;:38;;53440:69;;;;-1:-1:-1::0;;;53440:69:0::1;;;;;;;:::i;:::-;53574:9;53562:8;53538:21;;:32;;;;:::i;:::-;:45;53530:76;;;;-1:-1:-1::0;;;53530:76:0::1;;;;;;;:::i;:::-;53624:9;53619:170;53643:8;53639:1;:12;53619:170;;;53706:10;53673:44;::::0;;;:32:::1;:44;::::0;;;;:49;;53721:1:::1;::::0;53673:44;:49:::1;::::0;53721:1;;53673:49:::1;:::i;:::-;::::0;;;-1:-1:-1;53737:40:0::1;::::0;-1:-1:-1;53747:10:0::1;53759:13;35390:10:::0;:17;;35302:113;53737:40:::1;53653:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53619:170;;48840:103:::0;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;48920:15:::1;::::0;;-1:-1:-1;;48901:34:0;::::1;48920:15;::::0;;::::1;48919:16;48901:34;::::0;;48840:103::o;57624:112::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;57677:51:::1;::::0;57685:10:::1;::::0;57706:21:::1;57677:51:::0;::::1;;;::::0;::::1;::::0;;;57706:21;57685:10;57677:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57624:112::o:0;50359:203::-;50431:4;-1:-1:-1;;;;;50456:18:0;;50448:43;;;;-1:-1:-1;;;50448:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;50511:38:0;;;;;:32;:38;;;;;;50553:1;-1:-1:-1;50511:43:0;;50359:203::o;55964:140::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;56039:18:::1;:12;56054:3:::0;;56039:18:::1;:::i;:::-;;56073:23;56092:3;;56073:23;;;;;;;:::i;22723:104::-:0;22779:13;22812:7;22805:14;;;;;:::i;48456:181::-;48523:4;-1:-1:-1;;;;;48548:18:0;;48540:43;;;;-1:-1:-1;;;48540:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;48603:26:0;;;;;:20;:26;;;;;;;;;48456:181::o;24406:295::-;-1:-1:-1;;;;;24509:24:0;;20163:10;24509:24;;24501:62;;;;-1:-1:-1;;;24501:62:0;;10744:2:1;24501:62:0;;;10726:21:1;10783:2;10763:18;;;10756:30;10822:27;10802:18;;;10795:55;10867:18;;24501:62:0;10542:349:1;24501:62:0;20163:10;24576:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24576:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24576:53:0;;;;;;;;;;24645:48;;7183:41:1;;;24576:42:0;;20163:10;24645:48;;7156:18:1;24645:48:0;;;;;;;24406:295;;:::o;48067:381::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;48186:9:::1;48181:260;48201:20:::0;;::::1;48181:260;;;48275:1;48251:9:::0;;48261:1;48251:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48251:26:0::1;;;48243:51;;;;-1:-1:-1::0;;;48243:51:0::1;;;;;;;:::i;:::-;48317:20;:34;48338:9;;48348:1;48338:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48317:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48317:34:0;;::::1;;48309:61;;;::::0;-1:-1:-1;;;48309:61:0;;21810:2:1;48309:61:0::1;::::0;::::1;21792:21:1::0;21849:2;21829:18;;;21822:30;-1:-1:-1;;;21868:18:1;;;21861:44;21922:18;;48309:61:0::1;21608:338:1::0;48309:61:0::1;48424:5;48387:20;:34;48408:9;;48418:1;48408:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48387:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48387:34:0;:42;;-1:-1:-1;;48387:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48223:3;::::1;::::0;::::1;:::i;:::-;;;;48181:260;;49558:389:::0;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;49679:9:::1;49674:266;49694:20:::0;;::::1;49674:266;;;49768:1;49744:9:::0;;49754:1;49744:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49744:26:0::1;;;49736:51;;;;-1:-1:-1::0;;;49736:51:0::1;;;;;;;:::i;:::-;49810:22;:36;49833:9;;49843:1;49833:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49810:36:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49810:36:0;;::::1;;49802:65;;;::::0;-1:-1:-1;;;49802:65:0;;22153:2:1;49802:65:0::1;::::0;::::1;22135:21:1::0;22192:2;22172:18;;;22165:30;-1:-1:-1;;;22211:18:1;;;22204:46;22267:18;;49802:65:0::1;21951:340:1::0;49802:65:0::1;49923:5;49884:22;:36;49907:9;;49917:1;49907:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49884:36:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49884:36:0;:44;;-1:-1:-1;;49884:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49716:3;::::1;::::0;::::1;:::i;:::-;;;;49674:266;;25669:328:::0;25844:41;20163:10;25877:7;25844:18;:41::i;:::-;25836:103;;;;-1:-1:-1;;;25836:103:0;;;;;;;:::i;:::-;25950:39;25964:4;25970:2;25974:7;25983:5;25950:13;:39::i;:::-;25669:328;;;;:::o;50681:112::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;50767:18:::1;::::0;;-1:-1:-1;;50745:40:0;::::1;50767:18;::::0;;;::::1;;;50766:19;50745:40:::0;;::::1;;::::0;;50681:112::o;49955:185::-;50024:4;-1:-1:-1;;;;;50049:18:0;;50041:43;;;;-1:-1:-1;;;50041:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;50104:28:0;;;;;:22;:28;;;;;;;;;49955:185::o;56671:467::-;27572:4;27596:16;;;:7;:16;;;;;;56780:13;;-1:-1:-1;;;;;27596:16:0;56811:60;;;;-1:-1:-1;;;56811:60:0;;18486:2:1;56811:60:0;;;18468:21:1;18525:2;18505:18;;;18498:30;18564:33;18544:18;;;18537:61;18615:18;;56811:60:0;18284:355:1;56811:60:0;56968:13;57004:18;:7;:16;:18::i;:::-;57045:13;56929:148;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56884:208;;56671:467;;;:::o;55644:202::-;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;55766:2:::1;55750:13;35390:10:::0;:17;;35302:113;55750:13:::1;:18;55742:49;;;::::0;-1:-1:-1;;;55742:49:0;;11098:2:1;55742:49:0::1;::::0;::::1;11080:21:1::0;11137:2;11117:18;;;11110:30;-1:-1:-1;;;11156:18:1;;;11149:48;11214:18;;55742:49:0::1;10896:342:1::0;55742:49:0::1;55804:34;55814:4;55820:13;35390:10:::0;:17;;35302:113;57298:318;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;57357:14:::1;57400:3;57374:25;:21;57398:1;57374:25;:::i;:::-;:29;;;;:::i;:::-;57357:46:::0;-1:-1:-1;57414:14:0::1;57458:4;57431:26;:21;57455:2;57431:26;:::i;:::-;:31;;;;:::i;:::-;57491:3;::::0;57483:28:::1;::::0;57414:48;;-1:-1:-1;;;;;;57491:3:0::1;::::0;57483:28;::::1;;;::::0;57501:9;;57491:3:::1;57483:28:::0;57491:3;57483:28;57501:9;57491:3;57483:28;::::1;;;;;;57475:61;;;::::0;-1:-1:-1;;;57475:61:0;;19599:2:1;57475:61:0::1;::::0;::::1;19581:21:1::0;19638:2;19618:18;;;19611:30;-1:-1:-1;;;19657:18:1;;;19650:50;19717:18;;57475:61:0::1;19397:344:1::0;57475:61:0::1;57563:3;::::0;57555:28:::1;::::0;-1:-1:-1;;;;;57563:3:0;;::::1;::::0;57555:28;::::1;;;::::0;57573:9;;57563:3:::1;57555:28:::0;57563:3;57555:28;57573:9;57563:3;57555:28;::::1;;;;;;57547:61;;;::::0;-1:-1:-1;;;57547:61:0;;14859:2:1;57547:61:0::1;::::0;::::1;14841:21:1::0;14898:2;14878:18;;;14871:30;-1:-1:-1;;;14917:18:1;;;14910:50;14977:18;;57547:61:0::1;14657:344:1::0;56473:99:0;56518:13;56551;56544:20;;;;;:::i;56112:97::-;56156:13;56189:12;56182:19;;;;;:::i;54772:808::-;47469:18;;;;;;;47461:53;;;;-1:-1:-1;;;47461:53:0;;18846:2:1;47461:53:0;;;18828:21:1;18885:2;18865:18;;;18858:30;-1:-1:-1;;;18904:18:1;;;18897:52;18966:18;;47461:53:0;18644:346:1;47461:53:0;44643:30:::1;44537:3;44456:4;44643:30;:::i;:::-;35390:10:::0;:17;54861:26:::1;54853:47;;;;-1:-1:-1::0;;;54853:47:0::1;;;;;;;:::i;:::-;54930:1;54919:8;:12;54911:48;;;;-1:-1:-1::0;;;54911:48:0::1;;;;;;;:::i;:::-;44749:1;54978:8;:22;;54970:49;;;::::0;-1:-1:-1;;;54970:49:0;;14516:2:1;54970:49:0::1;::::0;::::1;14498:21:1::0;14555:2;14535:18;;;14528:30;-1:-1:-1;;;14574:18:1;;;14567:44;14628:18;;54970:49:0::1;14314:338:1::0;54970:49:0::1;44643:30;44537:3;44456:4;44643:30;:::i;:::-;55054:8;55038:13;35390:10:::0;:17;;35302:113;55038:13:::1;:24;;;;:::i;:::-;:38;;55030:69;;;;-1:-1:-1::0;;;55030:69:0::1;;;;;;;:::i;:::-;55130:10;58171:20:::0;58221:8;55110:57:::1;;;::::0;-1:-1:-1;;;55110:57:0;;16591:2:1;55110:57:0::1;::::0;::::1;16573:21:1::0;16630:2;16610:18;;;16603:30;-1:-1:-1;;;16649:18:1;;;16642:51;16710:18;;55110:57:0::1;16389:345:1::0;55110:57:0::1;55225:10;55202:34;::::0;;;:22:::1;:34;::::0;;;;;44852:2:::1;::::0;55202:45:::1;::::0;55239:8;;55202:45:::1;:::i;:::-;:70;;55180:141;;;::::0;-1:-1:-1;;;55180:141:0;;11804:2:1;55180:141:0::1;::::0;::::1;11786:21:1::0;11843:2;11823:18;;;11816:30;-1:-1:-1;;;11862:18:1;;;11855:51;11923:18;;55180:141:0::1;11602:345:1::0;55180:141:0::1;55368:9;55356:8;55342:11;;:22;;;;:::i;:::-;:35;55334:66;;;;-1:-1:-1::0;;;55334:66:0::1;;;;;;;:::i;:::-;55418:9;55413:160;55437:8;55433:1;:12;55413:160;;;55490:10;55467:34;::::0;;;:22:::1;:34;::::0;;;;:39;;55505:1:::1;::::0;55467:34;:39:::1;::::0;55505:1;;55467:39:::1;:::i;:::-;::::0;;;-1:-1:-1;55521:40:0::1;::::0;-1:-1:-1;55531:10:0::1;55543:13;35390:10:::0;:17;;35302:113;55521:40:::1;55447:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55413:160;;42700:192:::0;41873:6;;-1:-1:-1;;;;;41873:6:0;20163:10;42020:23;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42789:22:0;::::1;42781:73;;;::::0;-1:-1:-1;;;42781:73:0;;9228:2:1;42781:73:0::1;::::0;::::1;9210:21:1::0;9267:2;9247:18;;;9240:30;9306:34;9286:18;;;9279:62;-1:-1:-1;;;9357:18:1;;;9350:36;9403:19;;42781:73:0::1;9026:402:1::0;42781:73:0::1;42865:19;42875:8;42865:9;:19::i;21609:305::-:0;21711:4;-1:-1:-1;;;;;;21748:40:0;;-1:-1:-1;;;21748:40:0;;:105;;-1:-1:-1;;;;;;;21805:48:0;;-1:-1:-1;;;21805:48:0;21748:105;:158;;;-1:-1:-1;;;;;;;;;;7549:40:0;;;21870:36;7440:157;31489:174;31564:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31564:29:0;-1:-1:-1;;;;;31564:29:0;;;;;;;;:24;;31618:23;31564:24;31618:14;:23::i;:::-;-1:-1:-1;;;;;31609:46:0;;;;;;;;;;;31489:174;;:::o;28491:110::-;28567:26;28577:2;28581:7;28567:26;;;;;;;;;;;;:9;:26::i;27801:348::-;27894:4;27596:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27596:16:0;27911:73;;;;-1:-1:-1;;;27911:73:0;;12154:2:1;27911:73:0;;;12136:21:1;12193:2;12173:18;;;12166:30;12232:34;12212:18;;;12205:62;-1:-1:-1;;;12283:18:1;;;12276:42;12335:19;;27911:73:0;11952:408:1;27911:73:0;27995:13;28011:23;28026:7;28011:14;:23::i;:::-;27995:39;;28064:5;-1:-1:-1;;;;;28053:16:0;:7;-1:-1:-1;;;;;28053:16:0;;:51;;;;28097:7;-1:-1:-1;;;;;28073:31:0;:20;28085:7;28073:11;:20::i;:::-;-1:-1:-1;;;;;28073:31:0;;28053:51;:87;;;-1:-1:-1;;;;;;24893:25:0;;;24869:4;24893:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28108:32;28045:96;27801:348;-1:-1:-1;;;;27801:348:0:o;30793:578::-;30952:4;-1:-1:-1;;;;;30925:31:0;:23;30940:7;30925:14;:23::i;:::-;-1:-1:-1;;;;;30925:31:0;;30917:85;;;;-1:-1:-1;;;30917:85:0;;18076:2:1;30917:85:0;;;18058:21:1;18115:2;18095:18;;;18088:30;18154:34;18134:18;;;18127:62;-1:-1:-1;;;18205:18:1;;;18198:39;18254:19;;30917:85:0;17874:405:1;30917:85:0;-1:-1:-1;;;;;31021:16:0;;31013:65;;;;-1:-1:-1;;;31013:65:0;;10339:2:1;31013:65:0;;;10321:21:1;10378:2;10358:18;;;10351:30;10417:34;10397:18;;;10390:62;-1:-1:-1;;;10468:18:1;;;10461:34;10512:19;;31013:65:0;10137:400:1;31013:65:0;31091:39;31112:4;31118:2;31122:7;31091:20;:39::i;:::-;31195:29;31212:1;31216:7;31195:8;:29::i;:::-;-1:-1:-1;;;;;31237:15:0;;;;;;:9;:15;;;;;:20;;31256:1;;31237:15;:20;;31256:1;;31237:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31268:13:0;;;;;;:9;:13;;;;;:18;;31285:1;;31268:13;:18;;31285:1;;31268:18;:::i;:::-;;;;-1:-1:-1;;31297:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31297:21:0;-1:-1:-1;;;;;31297:21:0;;;;;;;;;31336:27;;31297:16;;31336:27;;;;;;;30793:578;;;:::o;42900:173::-;42975:6;;;-1:-1:-1;;;;;42992:17:0;;;-1:-1:-1;;;;;;42992:17:0;;;;;;;43025:40;;42975:6;;;42992:17;42975:6;;43025:40;;42956:16;;43025:40;42945:128;42900:173;:::o;26879:315::-;27036:28;27046:4;27052:2;27056:7;27036:9;:28::i;:::-;27083:48;27106:4;27112:2;27116:7;27125:5;27083:22;:48::i;:::-;27075:111;;;;-1:-1:-1;;;27075:111:0;;;;;;;:::i;7915:723::-;7971:13;8192:10;8188:53;;-1:-1:-1;;8219:10:0;;;;;;;;;;;;-1:-1:-1;;;8219:10:0;;;;;7915:723::o;8188:53::-;8266:5;8251:12;8307:78;8314:9;;8307:78;;8340:8;;;;:::i;:::-;;-1:-1:-1;8363:10:0;;-1:-1:-1;8371:2:0;8363:10;;:::i;:::-;;;8307:78;;;8395:19;8427:6;8417:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8417:17:0;;8395:39;;8445:154;8452:10;;8445:154;;8479:11;8489:1;8479:11;;:::i;:::-;;-1:-1:-1;8548:10:0;8556:2;8548:5;:10;:::i;:::-;8535:24;;:2;:24;:::i;:::-;8522:39;;8505:6;8512;8505:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8505:56:0;;;;;;;;-1:-1:-1;8576:11:0;8585:2;8576:11;;:::i;:::-;;;8445:154;;28828:321;28958:18;28964:2;28968:7;28958:5;:18::i;:::-;29009:54;29040:1;29044:2;29048:7;29057:5;29009:22;:54::i;:::-;28987:154;;;;-1:-1:-1;;;28987:154:0;;;;;;;:::i;36338:589::-;-1:-1:-1;;;;;36544:18:0;;36540:187;;36579:40;36611:7;37754:10;:17;;37727:24;;;;:15;:24;;;;;:44;;;37782:24;;;;;;;;;;;;37650:164;36579:40;36540:187;;;36649:2;-1:-1:-1;;;;;36641:10:0;:4;-1:-1:-1;;;;;36641:10:0;;36637:90;;36668:47;36701:4;36707:7;36668:32;:47::i;:::-;-1:-1:-1;;;;;36741:16:0;;36737:183;;36774:45;36811:7;36774:36;:45::i;36737:183::-;36847:4;-1:-1:-1;;;;;36841:10:0;:2;-1:-1:-1;;;;;36841:10:0;;36837:83;;36868:40;36896:2;36900:7;36868:27;:40::i;32228:799::-;32383:4;-1:-1:-1;;;;;32404:13:0;;58171:20;58221:8;32400:620;;32440:72;;-1:-1:-1;;;32440:72:0;;-1:-1:-1;;;;;32440:36:0;;;;;:72;;20163:10;;32491:4;;32497:7;;32506:5;;32440:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32440:72:0;;;;;;;;-1:-1:-1;;32440:72:0;;;;;;;;;;;;:::i;:::-;;;32436:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32682:13:0;;32678:272;;32725:60;;-1:-1:-1;;;32725:60:0;;;;;;;:::i;32678:272::-;32900:6;32894:13;32885:6;32881:2;32877:15;32870:38;32436:529;-1:-1:-1;;;;;;32563:51:0;-1:-1:-1;;;32563:51:0;;-1:-1:-1;32556:58:0;;32400:620;-1:-1:-1;33004:4:0;32228:799;;;;;;:::o;29485:382::-;-1:-1:-1;;;;;29565:16:0;;29557:61;;;;-1:-1:-1;;;29557:61:0;;16941:2:1;29557:61:0;;;16923:21:1;;;16960:18;;;16953:30;17019:34;16999:18;;;16992:62;17071:18;;29557:61:0;16739:356:1;29557:61:0;27572:4;27596:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27596:16:0;:30;29629:58;;;;-1:-1:-1;;;29629:58:0;;9635:2:1;29629:58:0;;;9617:21:1;9674:2;9654:18;;;9647:30;9713;9693:18;;;9686:58;9761:18;;29629:58:0;9433:352:1;29629:58:0;29700:45;29729:1;29733:2;29737:7;29700:20;:45::i;:::-;-1:-1:-1;;;;;29758:13:0;;;;;;:9;:13;;;;;:18;;29775:1;;29758:13;:18;;29775:1;;29758:18;:::i;:::-;;;;-1:-1:-1;;29787:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29787:21:0;-1:-1:-1;;;;;29787:21:0;;;;;;;;29826:33;;29787:16;;;29826:33;;29787:16;;29826:33;29485:382;;:::o;38441:988::-;38707:22;38757:1;38732:22;38749:4;38732:16;:22::i;:::-;:26;;;;:::i;:::-;38769:18;38790:26;;;:17;:26;;;;;;38707:51;;-1:-1:-1;38923:28:0;;;38919:328;;-1:-1:-1;;;;;38990:18:0;;38968:19;38990:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39041:30;;;;;;:44;;;39158:30;;:17;:30;;;;;:43;;;38919:328;-1:-1:-1;39343:26:0;;;;:17;:26;;;;;;;;39336:33;;;-1:-1:-1;;;;;39387:18:0;;;;;:12;:18;;;;;:34;;;;;;;39380:41;38441:988::o;39724:1079::-;40002:10;:17;39977:22;;40002:21;;40022:1;;40002:21;:::i;:::-;40034:18;40055:24;;;:15;:24;;;;;;40428:10;:26;;39977:46;;-1:-1:-1;40055:24:0;;39977:46;;40428:26;;;;;;:::i;:::-;;;;;;;;;40406:48;;40492:11;40467:10;40478;40467:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40572:28;;;:15;:28;;;;;;;:41;;;40744:24;;;;;40737:31;40779:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39795:1008;;;39724:1079;:::o;37228:221::-;37313:14;37330:20;37347:2;37330:16;:20::i;:::-;-1:-1:-1;;;;;37361:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37406:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37228:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:615::-;2821:6;2829;2882:2;2870:9;2861:7;2857:23;2853:32;2850:52;;;2898:1;2895;2888:12;2850:52;2938:9;2925:23;2967:18;3008:2;3000:6;2997:14;2994:34;;;3024:1;3021;3014:12;2994:34;3062:6;3051:9;3047:22;3037:32;;3107:7;3100:4;3096:2;3092:13;3088:27;3078:55;;3129:1;3126;3119:12;3078:55;3169:2;3156:16;3195:2;3187:6;3184:14;3181:34;;;3211:1;3208;3201:12;3181:34;3264:7;3259:2;3249:6;3246:1;3242:14;3238:2;3234:23;3230:32;3227:45;3224:65;;;3285:1;3282;3275:12;3224:65;3316:2;3308:11;;;;;3338:6;;-1:-1:-1;2735:615:1;;-1:-1:-1;;;;2735:615:1:o;3355:245::-;3413:6;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3521:9;3508:23;3540:30;3564:5;3540:30;:::i;3605:249::-;3674:6;3727:2;3715:9;3706:7;3702:23;3698:32;3695:52;;;3743:1;3740;3733:12;3695:52;3775:9;3769:16;3794:30;3818:5;3794:30;:::i;3859:592::-;3930:6;3938;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4047:9;4034:23;4076:18;4117:2;4109:6;4106:14;4103:34;;;4133:1;4130;4123:12;4103:34;4171:6;4160:9;4156:22;4146:32;;4216:7;4209:4;4205:2;4201:13;4197:27;4187:55;;4238:1;4235;4228:12;4187:55;4278:2;4265:16;4304:2;4296:6;4293:14;4290:34;;;4320:1;4317;4310:12;4290:34;4365:7;4360:2;4351:6;4347:2;4343:15;4339:24;4336:37;4333:57;;;4386:1;4383;4376:12;4456:180;4515:6;4568:2;4556:9;4547:7;4543:23;4539:32;4536:52;;;4584:1;4581;4574:12;4536:52;-1:-1:-1;4607:23:1;;4456:180;-1:-1:-1;4456:180:1:o;4641:257::-;4682:3;4720:5;4714:12;4747:6;4742:3;4735:19;4763:63;4819:6;4812:4;4807:3;4803:14;4796:4;4789:5;4785:16;4763:63;:::i;:::-;4880:2;4859:15;-1:-1:-1;;4855:29:1;4846:39;;;;4887:4;4842:50;;4641:257;-1:-1:-1;;4641:257:1:o;4903:973::-;4988:12;;4953:3;;5043:1;5063:18;;;;5116;;;;5143:61;;5197:4;5189:6;5185:17;5175:27;;5143:61;5223:2;5271;5263:6;5260:14;5240:18;5237:38;5234:161;;;5317:10;5312:3;5308:20;5305:1;5298:31;5352:4;5349:1;5342:15;5380:4;5377:1;5370:15;5234:161;5411:18;5438:104;;;;5556:1;5551:319;;;;5404:466;;5438:104;-1:-1:-1;;5471:24:1;;5459:37;;5516:16;;;;-1:-1:-1;5438:104:1;;5551:319;22903:1;22896:14;;;22940:4;22927:18;;5645:1;5659:165;5673:6;5670:1;5667:13;5659:165;;;5751:14;;5738:11;;;5731:35;5794:16;;;;5688:10;;5659:165;;;5663:3;;5853:6;5848:3;5844:16;5837:23;;5404:466;;;;;;;4903:973;;;;:::o;5881:456::-;6102:3;6130:38;6164:3;6156:6;6130:38;:::i;:::-;6197:6;6191:13;6213:52;6258:6;6254:2;6247:4;6239:6;6235:17;6213:52;:::i;:::-;6281:50;6323:6;6319:2;6315:15;6307:6;6281:50;:::i;:::-;6274:57;5881:456;-1:-1:-1;;;;;;;5881:456:1:o;6550:488::-;-1:-1:-1;;;;;6819:15:1;;;6801:34;;6871:15;;6866:2;6851:18;;6844:43;6918:2;6903:18;;6896:34;;;6966:3;6961:2;6946:18;;6939:31;;;6744:4;;6987:45;;7012:19;;7004:6;6987:45;:::i;:::-;6979:53;6550:488;-1:-1:-1;;;;;;6550:488:1:o;7235:390::-;7394:2;7383:9;7376:21;7433:6;7428:2;7417:9;7413:18;7406:34;7490:6;7482;7477:2;7466:9;7462:18;7449:48;7546:1;7517:22;;;7541:2;7513:31;;;7506:42;;;;7609:2;7588:15;;;-1:-1:-1;;7584:29:1;7569:45;7565:54;;7235:390;-1:-1:-1;7235:390:1:o;7630:219::-;7779:2;7768:9;7761:21;7742:4;7799:44;7839:2;7828:9;7824:18;7816:6;7799:44;:::i;7854:336::-;8056:2;8038:21;;;8095:2;8075:18;;;8068:30;-1:-1:-1;;;8129:2:1;8114:18;;8107:42;8181:2;8166:18;;7854:336::o;8607:414::-;8809:2;8791:21;;;8848:2;8828:18;;;8821:30;8887:34;8882:2;8867:18;;8860:62;-1:-1:-1;;;8953:2:1;8938:18;;8931:48;9011:3;8996:19;;8607:414::o;9790:342::-;9992:2;9974:21;;;10031:2;10011:18;;;10004:30;-1:-1:-1;;;10065:2:1;10050:18;;10043:48;10123:2;10108:18;;9790:342::o;15006:::-;15208:2;15190:21;;;15247:2;15227:18;;;15220:30;-1:-1:-1;;;15281:2:1;15266:18;;15259:48;15339:2;15324:18;;15006:342::o;15353:331::-;15555:2;15537:21;;;15594:1;15574:18;;;15567:29;-1:-1:-1;;;15627:2:1;15612:18;;15605:38;15675:2;15660:18;;15353:331::o;17513:356::-;17715:2;17697:21;;;17734:18;;;17727:30;17793:34;17788:2;17773:18;;17766:62;17860:2;17845:18;;17513:356::o;19746:413::-;19948:2;19930:21;;;19987:2;19967:18;;;19960:30;20026:34;20021:2;20006:18;;19999:62;-1:-1:-1;;;20092:2:1;20077:18;;20070:47;20149:3;20134:19;;19746:413::o;20577:338::-;20779:2;20761:21;;;20818:2;20798:18;;;20791:30;-1:-1:-1;;;20852:2:1;20837:18;;20830:44;20906:2;20891:18;;20577:338::o;20920:342::-;21122:2;21104:21;;;21161:2;21141:18;;;21134:30;-1:-1:-1;;;21195:2:1;21180:18;;21173:48;21253:2;21238:18;;20920:342::o;21267:336::-;21469:2;21451:21;;;21508:2;21488:18;;;21481:30;-1:-1:-1;;;21542:2:1;21527:18;;21520:42;21594:2;21579:18;;21267:336::o;22296:347::-;22498:2;22480:21;;;22537:2;22517:18;;;22510:30;22576:25;22571:2;22556:18;;22549:53;22634:2;22619:18;;22296:347::o;22956:128::-;22996:3;23027:1;23023:6;23020:1;23017:13;23014:39;;;23033:18;;:::i;:::-;-1:-1:-1;23069:9:1;;22956:128::o;23089:120::-;23129:1;23155;23145:35;;23160:18;;:::i;:::-;-1:-1:-1;23194:9:1;;23089:120::o;23214:168::-;23254:7;23320:1;23316;23312:6;23308:14;23305:1;23302:21;23297:1;23290:9;23283:17;23279:45;23276:71;;;23327:18;;:::i;:::-;-1:-1:-1;23367:9:1;;23214:168::o;23387:125::-;23427:4;23455:1;23452;23449:8;23446:34;;;23460:18;;:::i;:::-;-1:-1:-1;23497:9:1;;23387:125::o;23517:258::-;23589:1;23599:113;23613:6;23610:1;23607:13;23599:113;;;23689:11;;;23683:18;23670:11;;;23663:39;23635:2;23628:10;23599:113;;;23730:6;23727:1;23724:13;23721:48;;;-1:-1:-1;;23765:1:1;23747:16;;23740:27;23517:258::o;23780:380::-;23859:1;23855:12;;;;23902;;;23923:61;;23977:4;23969:6;23965:17;23955:27;;23923:61;24030:2;24022:6;24019:14;23999:18;23996:38;23993:161;;;24076:10;24071:3;24067:20;24064:1;24057:31;24111:4;24108:1;24101:15;24139:4;24136:1;24129:15;23993:161;;23780:380;;;:::o;24165:135::-;24204:3;-1:-1:-1;;24225:17:1;;24222:43;;;24245:18;;:::i;:::-;-1:-1:-1;24292:1:1;24281:13;;24165:135::o;24305:112::-;24337:1;24363;24353:35;;24368:18;;:::i;:::-;-1:-1:-1;24402:9:1;;24305:112::o;24422:127::-;24483:10;24478:3;24474:20;24471:1;24464:31;24514:4;24511:1;24504:15;24538:4;24535:1;24528:15;24554:127;24615:10;24610:3;24606:20;24603:1;24596:31;24646:4;24643:1;24636:15;24670:4;24667:1;24660:15;24686:127;24747:10;24742:3;24738:20;24735:1;24728:31;24778:4;24775:1;24768:15;24802:4;24799:1;24792:15;24818:127;24879:10;24874:3;24870:20;24867:1;24860:31;24910:4;24907:1;24900:15;24934:4;24931:1;24924:15;24950:127;25011:10;25006:3;25002:20;24999:1;24992:31;25042:4;25039:1;25032:15;25066:4;25063:1;25056:15;25082:131;-1:-1:-1;;;;;;25156:32:1;;25146:43;;25136:71;;25203:1;25200;25193:12

Swarm Source

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