ETH Price: $2,978.30 (+2.00%)
Gas: 1 Gwei

Token

The Cells Zone (CELLS)
 

Overview

Max Total Supply

2,980 CELLS

Holders

489

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nodebased.eth
Balance
30 CELLS
0xeD8AE2e67Af00604feff19E0A042CEFd94CB4622
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cells

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/utils/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/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/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/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(to).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/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/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);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol



pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: contracts/ERC721Cells.sol



pragma solidity ^0.8.0;






/**
 * @title ERC721Cells
 * ERC721Cells - ERC721 Contract of The Cells Zone
 */
abstract contract ERC721Cells is ERC721Enumerable, Ownable {
    using ECDSA for bytes32;

    address signerAddress = 0x8E7c6DBdae809c79C9f8Aa0F9ACf05614b4EB548; // The Cells Zone Signer Address
    uint256 private _currentTokenId = 386;
    uint256 private _reservedTokenId = 0;
    uint256 private MAX_RESERVED_ID = 386;
    uint256 public mintedSupply = 0;
    bool public lockingEnabled = false;
    string public baseURI = "https://api.thecellszone.com/json/";
    
    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;
    mapping (uint256 => string) public tokenIdToCellCode;
    mapping (string => uint256) public cellCodeToTokenId;
    mapping (address => mapping(uint => bool)) private lockNonces;

    event CellAllocation(address indexed to, uint256 indexed fromTokenId, uint256 indexed toTokenId, uint256 data, bool isRandom);
    event LockedCell(uint indexed tokenId, address owner, string cellCode, string tokenURI);
    event PermanentURI(string _value, uint256 indexed _id);

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721(_name, _symbol) {
        
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to, uint256 _numItemsAllocated, bool isRandom, uint256 data) public virtual onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        for (uint256 i = 0; i < _numItemsAllocated; i++) {
            _mint(_to, newTokenId + i);
        }
        _incrementTokenId(_numItemsAllocated);
        emit CellAllocation(_to, newTokenId, newTokenId + _numItemsAllocated - 1, data, isRandom);
    }

    function mintCell(address _to, uint256 _numItemsAllocated, bool isRandom, uint256 data) internal virtual {
        uint256 newTokenId = _getNextTokenId();
        for (uint256 i = 0; i < _numItemsAllocated; i++) {
            _mint(_to, newTokenId + i);
        }
        _incrementTokenId(_numItemsAllocated);
        _incrementMintedSupply(_numItemsAllocated);
        emit CellAllocation(_to, newTokenId, newTokenId + _numItemsAllocated - 1, data, isRandom);
    }    

    function reserveTo(address _to, uint256 _numItemsAllocated, bool isRandom, uint256 data) public virtual onlyOwner {
        uint256 newTokenId = _getNextReservedTokenId();
        uint256 newCount = newTokenId + _numItemsAllocated;
        require(newCount <= MAX_RESERVED_ID, "tokenId too high");
        for (uint256 i = 0; i < _numItemsAllocated; i++) {
            _mint(_to, newTokenId + i);
        }
        _incrementReservedTokenId(_numItemsAllocated);
        emit CellAllocation(_to, newTokenId, newTokenId + _numItemsAllocated - 1, data, isRandom);
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId + 1;
    }

    function _getNextReservedTokenId() private view returns (uint256) {
        return _reservedTokenId + 1;
    }    

    function setSignerAddress(address _address) public virtual onlyOwner {
        signerAddress = _address;
    }

    function toggleLocking() public virtual onlyOwner {
        lockingEnabled = !lockingEnabled;
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId(uint256 num) private {
        _currentTokenId += num;
    }

    function _incrementReservedTokenId(uint256 num) private {
        _reservedTokenId += num;
    }

    function _incrementMintedSupply(uint256 num) private {
        mintedSupply += num;
    }

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

    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "invalid token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If exists, return ipfs URI
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked('ipfs://', _tokenURI));
        }
        // If not, return Cells API URI
        return string(abi.encodePacked(base, Strings.toString(tokenId)));
    }

    /*
     * Lock Cell forever
     */ 
    function lockCell(
        bytes memory signature,
        uint256 tokenId, 
        uint256 nonce,
        string memory cellCode,
        string memory _tokenURI
    ) external {
        require(lockingEnabled, "locking disabled");
        require(ownerOf(tokenId) == msg.sender, "not your cell");
        require(bytes(_tokenURIs[tokenId]).length == 0 || !lockNonces[msg.sender][nonce], "already locked");

        bytes32 _hash = keccak256(abi.encode(msg.sender, tokenId, nonce, cellCode, _tokenURI));
        bytes32 messageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _hash));
        address signer = messageHash.recover(signature);
        require(signer == signerAddress, "Signers don't match");

        lockNonces[msg.sender][nonce] = true;
        _setTokenURI(tokenId, _tokenURI);
        _setCellCode(tokenId, cellCode);
        
        emit LockedCell(tokenId, msg.sender, cellCode, _tokenURI);
        emit PermanentURI(_tokenURI, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "invalid token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    function _setCellCode(uint256 tokenId, string memory _cellCode) internal virtual {
        require(_exists(tokenId), "invalid token");
        require(cellCodeToTokenId[_cellCode] == 0, "already set");
        require(bytes(tokenIdToCellCode[tokenId]).length == 0, "already set");
        cellCodeToTokenId[_cellCode] = tokenId;
        tokenIdToCellCode[tokenId] = _cellCode;
    }

}

// File: contracts/Cells.sol



pragma solidity ^0.8.0;


/**
______________ ______________ _________ ___________.____    .____       _________ __________________    _______  ___________
\__    ___/   |   \_   _____/ \_   ___ \\_   _____/|    |   |    |     /   _____/ \____    /\_____  \   \      \ \_   _____/
  |    | /    ~    \    __)_  /    \  \/ |    __)_ |    |   |    |     \_____  \    /     /  /   |   \  /   |   \ |    __)_ 
  |    | \    Y    /        \ \     \____|        \|    |___|    |___  /        \  /     /_ /    |    \/    |    \|        \
  |____|  \___|_  /_______  /  \______  /_______  /|_______ \_______ \/_______  / /_______ \\_______  /\____|__  /_______  /
                \/        \/          \/        \/         \/       \/        \/          \/        \/         \/        \/

**/
interface IERC20 {
   function mint(address to, uint256 amount) external;
   function transfer(address recipient, uint256 amount) external returns (bool);
   function balanceOf(address account) external view returns (uint256);
}

/**
 * @title The Cells Zone
 * 
 */
contract Cells is ERC721Cells {
    using ECDSA for bytes32;

    bool public directMint = false;
    bool public randomMint = true;
    bool public packMint = false;
    bool public signatureMint = true;
    bool public bonusCoins = true;
    uint256 public constant MAX_CELLS_PURCHASE = 25;
    uint256 public constant MAX_CELLS = 29886;
    uint256 public minMintable = 1;
    uint256 public maxMintable = 29000;
    uint256 public cellPrice = 0.025 ether;
    uint256 public bonusCoinsAmount = 200;
    IERC20 public celdaContract;

    mapping (uint256 => uint256) public packPrices;
    mapping (address => mapping(uint => bool)) private mintNonces;

    constructor(address _erc20Address)
        ERC721Cells("The Cells Zone", "CELLS") 
    {
        celdaContract = IERC20(_erc20Address);
        packPrices[0] = 0.02 ether;
        packPrices[1] = 0.015 ether;
        packPrices[2] = 0.01 ether;
    }

    function contractURI() public pure returns (string memory) {
        return "https://api.thecellszone.com/contract/";
    }

    function toggleDirectMint() public onlyOwner {
        directMint = !directMint;
    }    

    function toggleRandomMint() public onlyOwner {
        randomMint = !randomMint;
    }

    function togglePackMint() public onlyOwner {
        packMint = !packMint;
    }

    function toggleSignatureMint() public onlyOwner {
        signatureMint = !signatureMint;
    }

    function toggleBonusCoins() public onlyOwner {
        bonusCoins = !bonusCoins;
    }

    function setBonusCoinsAmount(uint amount) public onlyOwner {
        bonusCoinsAmount = amount;
    }    

    function setCellPrice(uint256 newPrice) public onlyOwner {
        cellPrice = newPrice;
    }

    function setPackPrice(uint packId, uint256 newPrice) public onlyOwner {
        packPrices[packId] = newPrice;
    }    

    function setMinMintable(uint quantity) public onlyOwner {
        minMintable = quantity;
    }    

    function setMaxMintable(uint quantity) public onlyOwner {
        maxMintable = quantity;
    }    

    function reserveCells(uint number, bool isRandom, uint256 data) public onlyOwner {
        reserveTo(msg.sender, number, isRandom, data);
    }
    
    /**
    * Mint Cells
    */
    function mintCells(uint amount) public payable {
        require(directMint, "Direct mint is not active");
        require(amount >= minMintable, "Quantity too low");        
        require(amount <= MAX_CELLS_PURCHASE || mintedSupply + amount <= maxMintable || totalSupply() + amount <= MAX_CELLS, "Quantity too high");
        require(cellPrice * amount <= msg.value, "Ether value sent is not correct");
        
        mintCell(msg.sender, amount, randomMint, 0);
        if (bonusCoins) {
            sendBonusCoins(msg.sender, amount);
        }
    }

    /**
    * Batch Mint Cells
    */
    function mintCellPack(uint amount) public payable {
        require(packMint, "Pack mint is not active");
        require(amount >= minMintable, "Quantity too low");        
        require(amount <= MAX_CELLS_PURCHASE || mintedSupply + amount <= maxMintable || totalSupply() + amount <= MAX_CELLS, "Quantity too high");
        require(getPackPrice(amount) * amount <= msg.value, "Ether value sent is not correct");
        
        mintCell(msg.sender, amount, randomMint, 0);
        if (bonusCoins) {
            sendBonusCoins(msg.sender, amount);
        }
    }

    /**
    * Authorized Mint
    */
    function verifyAndMint(bytes memory signature, uint amount, uint nonce, uint mintPrice, uint data) public payable {
        require(signatureMint, "Signature mint is not active");
        require(amount >= minMintable, "Quantity too low");        
        require(amount <= MAX_CELLS_PURCHASE || mintedSupply + amount <= maxMintable || totalSupply() + amount <= MAX_CELLS, "Quantity too high");
        require(!mintNonces[msg.sender][nonce], "Nonce already used");

        uint price;
        if (mintPrice == 1) {
            price = getPackPrice(amount);
        } else if (mintPrice == 2) {
            price = cellPrice;
        } else {
            price = mintPrice;
        }
        
        require(price * amount <= msg.value, "Ether value sent is not correct");
        
        bytes32 hash = keccak256(abi.encode(msg.sender, amount, nonce, mintPrice, data));
        bytes32 messageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
        address signer = messageHash.recover(signature);
        require(signer == signerAddress, "Signers don't match");

        mintNonces[msg.sender][nonce] = true;
        mintCell(msg.sender, amount, randomMint, data);
        if (bonusCoins) {
            sendBonusCoins(msg.sender, amount);
        }
    }

    function getPackPrice(uint256 _amount) internal view returns (uint256) {
        uint256 price;
        
        if (_amount < 3) {
            price = cellPrice;
        } else if (_amount < 10) {
            price = packPrices[0];
        } else if (_amount < 25) {
            price = packPrices[1];
        } else {
            price = packPrices[2];
        }

        return price;
    }

    function sendBonusCoins(address _to, uint256 _amount) internal {
        celdaContract.mint(_to, _amount * bonusCoinsAmount * 10**18);
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

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

	function reclaimToken(IERC20 token) public onlyOwner {
		require(address(token) != address(0));
		uint256 balance = token.balanceOf(address(this));
		token.transfer(msg.sender, balance);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_erc20Address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"data","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isRandom","type":"bool"}],"name":"CellAllocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"cellCode","type":"string"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"LockedCell","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":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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_CELLS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CELLS_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusCoins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusCoinsAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"celdaContract","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"cellCodeToTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cellPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"directMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"string","name":"cellCode","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"lockCell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintCellPack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintCells","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numItemsAllocated","type":"uint256"},{"internalType":"bool","name":"isRandom","type":"bool"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"packMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"packPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"bool","name":"isRandom","type":"bool"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"reserveCells","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numItemsAllocated","type":"uint256"},{"internalType":"bool","name":"isRandom","type":"bool"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"reserveTo","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setBonusCoinsAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setCellPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMinMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"packId","type":"uint256"},{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPackPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signatureMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"toggleBonusCoins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDirectMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleLocking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePackMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRandomMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSignatureMint","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":"uint256","name":"","type":"uint256"}],"name":"tokenIdToCellCode","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"verifyAndMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b80546001600160a01b031916738e7c6dbdae809c79c9f8aa0f9acf05614b4eb548179055610182600c8190556000600d819055600e91909155600f556010805460ff1916905560e0604052602260808181529062003feb60a0398051620000719160119160209091019062000262565b506016805464ffffffffff191664010100010017905560016017556171486018556658d15e1762800060195560c8601a55348015620000af57600080fd5b506040516200400d3803806200400d833981016040819052620000d29162000308565b604080518082018252600e81526d5468652043656c6c73205a6f6e6560901b60208083019182528351808501909452600584526443454c4c5360d81b90840152815191929183918391620001299160009162000262565b5080516200013f90600190602084019062000262565b5050506200015c620001566200020c60201b60201c565b62000210565b5050601b80546001600160a01b0319166001600160a01b0392909216919091179055601c60205266470de4df8200007fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f8495566354a6ba7a180007f6de76108811faf2f94afbe5ac6c98e8393206cd093932de1fbfd61bbeec43a02556002600052662386f26fc100007ff5b6e61a0c14f171ef1c86f003900ef0305e4159fff3317e4fb7c351f2050c875562000377565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000270906200033a565b90600052602060002090601f016020900481019282620002945760008555620002df565b82601f10620002af57805160ff1916838001178555620002df565b82800160010185558215620002df579182015b82811115620002df578251825591602001919060010190620002c2565b50620002ed929150620002f1565b5090565b5b80821115620002ed5760008155600101620002f2565b6000602082840312156200031b57600080fd5b81516001600160a01b03811681146200033357600080fd5b9392505050565b600181811c908216806200034f57607f821691505b602082108114156200037157634e487b7160e01b600052602260045260246000fd5b50919050565b613c6480620003876000396000f3fe6080604052600436106103a25760003560e01c806370a08231116101e7578063b88d4fde1161010d578063dacac82b116100a0578063e8a3d4851161006f578063e8a3d48514610a4e578063e985e9c514610a63578063f2fde38b14610aac578063f8335f1214610acc57600080fd5b8063dacac82b146109e4578063db1ca7a8146109f9578063dc374f5514610a0e578063e33ac8b614610a2e57600080fd5b8063c8cb3003116100dc578063c8cb300314610985578063d625165414610998578063d8fa66d1146109ae578063da39564e146109c457600080fd5b8063b88d4fde1461090f578063c1bd8cf91461092f578063c83f171f14610945578063c87b56dd1461096557600080fd5b8063937c913011610185578063a28ab64311610154578063a28ab643146108af578063a3dd4572146108c4578063aee1ce19146108da578063af188cbc146108fa57600080fd5b8063937c91301461084d57806395d89b4114610867578063a19496411461087c578063a22cb4651461088f57600080fd5b80637c24c87f116101c15780637c24c87f146107b85780637e1eaabf146107d8578063886b9bb2146107f75780638da5cb5b1461082f57600080fd5b806370a0823114610756578063715018a61461077657806377cedd241461078b57600080fd5b80632f745c59116102cc5780634f6ccce71161026a5780636090c95d116102395780636090c95d146106e15780636352211e146107015780636c0360eb146107215780636f8dab441461073657600080fd5b80634f6ccce71461066157806355f804b3146106815780635879cbf1146106a15780635e47fa75146106c157600080fd5b806342842e0e116102a657806342842e0e146105dc578063438b6300146105fc57806344daaee114610629578063456c01b91461064b57600080fd5b80632f745c59146105925780632ffcecf3146105b25780633ccfd60b146105c757600080fd5b806317ffc3201161034457806323b872dd1161031357806323b872dd1461052357806325d387b51461054357806327146b6e146105635780632b4d84d31461057d57600080fd5b806317ffc320146104ad57806318160ddd146104cd5780631defbba9146104ec5780632154dc391461050d57600080fd5b806306fdde031161038057806306fdde0314610413578063079f80d514610435578063081812fc1461046d578063095ea7b31461048d57600080fd5b806301af29f3146103a757806301ffc9a7146103be578063046dc166146103f3575b600080fd5b3480156103b357600080fd5b506103bc610adf565b005b3480156103ca57600080fd5b506103de6103d9366004613581565b610b31565b60405190151581526020015b60405180910390f35b3480156103ff57600080fd5b506103bc61040e3660046133b8565b610b5c565b34801561041f57600080fd5b50610428610ba8565b6040516103ea9190613902565b34801561044157600080fd5b50601b54610455906001600160a01b031681565b6040516001600160a01b0390911681526020016103ea565b34801561047957600080fd5b506104556104883660046136e9565b610c3a565b34801561049957600080fd5b506103bc6104a83660046134f0565b610cc2565b3480156104b957600080fd5b506103bc6104c83660046133b8565b610dd8565b3480156104d957600080fd5b506008545b6040519081526020016103ea565b3480156104f857600080fd5b506016546103de906301000000900460ff1681565b34801561051957600080fd5b506104de60185481565b34801561052f57600080fd5b506103bc61053e366004613415565b610f12565b34801561054f57600080fd5b506103bc61055e3660046136e9565b610f43565b34801561056f57600080fd5b506016546103de9060ff1681565b34801561058957600080fd5b506103bc610f72565b34801561059e57600080fd5b506104de6105ad3660046134f0565b610fb9565b3480156105be57600080fd5b506104de601981565b3480156105d357600080fd5b506103bc61104f565b3480156105e857600080fd5b506103bc6105f7366004613415565b6110aa565b34801561060857600080fd5b5061061c6106173660046133b8565b6110c5565b6040516103ea91906138be565b34801561063557600080fd5b506016546103de90640100000000900460ff1681565b34801561065757600080fd5b506104de60195481565b34801561066d57600080fd5b506104de61067c3660046136e9565b611167565b34801561068d57600080fd5b506103bc61069c3660046136b4565b6111fa565b3480156106ad57600080fd5b506103bc6106bc36600461351c565b61123b565b3480156106cd57600080fd5b506104286106dc3660046136e9565b61130f565b3480156106ed57600080fd5b506103bc6106fc3660046136e9565b6113a9565b34801561070d57600080fd5b5061045561071c3660046136e9565b6113d8565b34801561072d57600080fd5b5061042861144f565b34801561074257600080fd5b506016546103de9062010000900460ff1681565b34801561076257600080fd5b506104de6107713660046133b8565b61145c565b34801561078257600080fd5b506103bc6114e3565b34801561079757600080fd5b506104de6107a63660046136e9565b601c6020526000908152604090205481565b3480156107c457600080fd5b506103bc6107d33660046135bb565b611519565b3480156107e457600080fd5b506016546103de90610100900460ff1681565b34801561080357600080fd5b506104de6108123660046136b4565b805160208183018101805160148252928201919093012091525481565b34801561083b57600080fd5b50600a546001600160a01b0316610455565b34801561085957600080fd5b506010546103de9060ff1681565b34801561087357600080fd5b506104286117d2565b6103bc61088a3660046136e9565b6117e1565b34801561089b57600080fd5b506103bc6108aa3660046134c2565b611955565b3480156108bb57600080fd5b506103bc611a1a565b3480156108d057600080fd5b506104de60175481565b3480156108e657600080fd5b506103bc6108f5366004613742565b611a58565b34801561090657600080fd5b506103bc611a94565b34801561091b57600080fd5b506103bc61092a366004613456565b611adf565b34801561093b57600080fd5b506104de600f5481565b34801561095157600080fd5b506103bc6109603660046136e9565b611b17565b34801561097157600080fd5b506104286109803660046136e9565b611b46565b6103bc610993366004613657565b611c5e565b3480156109a457600080fd5b506104de601a5481565b3480156109ba57600080fd5b506104de6174be81565b3480156109d057600080fd5b506103bc6109df36600461351c565b611f80565b3480156109f057600080fd5b506103bc6120a3565b348015610a0557600080fd5b506103bc6120e1565b348015610a1a57600080fd5b506103bc610a2936600461371b565b61212e565b348015610a3a57600080fd5b506103bc610a493660046136e9565b612164565b348015610a5a57600080fd5b50610428612193565b348015610a6f57600080fd5b506103de610a7e3660046133dc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ab857600080fd5b506103bc610ac73660046133b8565b6121b3565b6103bc610ada3660046136e9565b61224b565b600a546001600160a01b03163314610b125760405162461bcd60e51b8152600401610b09906139b8565b60405180910390fd5b6016805462ff0000198116620100009182900460ff1615909102179055565b60006001600160e01b0319821663780e9d6360e01b1480610b565750610b5682612329565b92915050565b600a546001600160a01b03163314610b865760405162461bcd60e51b8152600401610b09906139b8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610bb790613af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390613af7565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050905090565b6000610c4582612379565b610ca65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b09565b506000908152600460205260409020546001600160a01b031690565b6000610ccd826113d8565b9050806001600160a01b0316836001600160a01b03161415610d3b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b09565b336001600160a01b0382161480610d575750610d578133610a7e565b610dc95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b09565b610dd38383612396565b505050565b600a546001600160a01b03163314610e025760405162461bcd60e51b8152600401610b09906139b8565b6001600160a01b038116610e1557600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610e5757600080fd5b505afa158015610e6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8f9190613702565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610eda57600080fd5b505af1158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd39190613564565b610f1c3382612404565b610f385760405162461bcd60e51b8152600401610b0990613a18565b610dd38383836124ee565b600a546001600160a01b03163314610f6d5760405162461bcd60e51b8152600401610b09906139b8565b601855565b600a546001600160a01b03163314610f9c5760405162461bcd60e51b8152600401610b09906139b8565b6016805461ff001981166101009182900460ff1615909102179055565b6000610fc48361145c565b82106110265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b09565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146110795760405162461bcd60e51b8152600401610b09906139b8565b60405147903390819083156108fc029084906000818181858888f19350505050158015610dd3573d6000803e3d6000fd5b610dd383838360405180602001604052806000815250611adf565b606060006110d28361145c565b905060008167ffffffffffffffff8111156110ef576110ef613bb9565b604051908082528060200260200182016040528015611118578160200160208202803683370190505b50905060005b8281101561115f576111308582610fb9565b82828151811061114257611142613ba3565b60209081029190910101528061115781613b32565b91505061111e565b509392505050565b600061117260085490565b82106111d55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b09565b600882815481106111e8576111e8613ba3565b90600052602060002001549050919050565b600a546001600160a01b031633146112245760405162461bcd60e51b8152600401610b09906139b8565b8051611237906011906020840190613292565b5050565b600a546001600160a01b031633146112655760405162461bcd60e51b8152600401610b09906139b8565b600061126f612699565b905060005b848110156112a15761128f8661128a8385613a69565b6126af565b8061129981613b32565b915050611274565b506112ab846127ee565b60016112b78583613a69565b6112c19190613ab4565b60408051848152851515602082015283916001600160a01b038916917f3c3b6a3f8221ac8e629dda1e0febee52e952221b8cf2795b5a83456717a5cf99910160405180910390a45050505050565b6013602052600090815260409020805461132890613af7565b80601f016020809104026020016040519081016040528092919081815260200182805461135490613af7565b80156113a15780601f10611376576101008083540402835291602001916113a1565b820191906000526020600020905b81548152906001019060200180831161138457829003601f168201915b505050505081565b600a546001600160a01b031633146113d35760405162461bcd60e51b8152600401610b09906139b8565b601755565b6000818152600260205260408120546001600160a01b031680610b565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b09565b6011805461132890613af7565b60006001600160a01b0382166114c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b09565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461150d5760405162461bcd60e51b8152600401610b09906139b8565b6115176000612808565b565b60105460ff1661155e5760405162461bcd60e51b815260206004820152601060248201526f1b1bd8dada5b99c8191a5cd8589b195960821b6044820152606401610b09565b33611568856113d8565b6001600160a01b0316146115ae5760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081e5bdd5c8818d95b1b609a1b6044820152606401610b09565b600084815260126020526040902080546115c790613af7565b159050806115f0575033600090815260156020908152604080832086845290915290205460ff16155b61162d5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b1bd8dad95960921b6044820152606401610b09565b60003385858585604051602001611648959493929190613873565b60405160208183030381529060405280519060200120905060008160405160200161169f91907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181529190528051602090910120905060006116c5828961285a565b600b549091506001600160a01b0380831691161461171b5760405162461bcd60e51b81526020600482015260136024820152720a6d2cedccae4e640c8dedc4ee840dac2e8c6d606b1b6044820152606401610b09565b3360009081526015602090815260408083208984529091529020805460ff1916600117905561174a87856128fe565b6117548786612942565b867fd07b5ee05ddb93dcb56f83a25af3bf3799aee7029c42cf69fa186a5e3ec19ef73387876040516117889392919061383d565b60405180910390a2867fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207856040516117c09190613902565b60405180910390a25050505050505050565b606060018054610bb790613af7565b60165462010000900460ff166118395760405162461bcd60e51b815260206004820152601760248201527f5061636b206d696e74206973206e6f74206163746976650000000000000000006044820152606401610b09565b60175481101561185b5760405162461bcd60e51b8152600401610b099061398e565b60198111158061187a575060185481600f546118779190613a69565b11155b8061189a57506174be8161188d60085490565b6118979190613a69565b11155b6118b65760405162461bcd60e51b8152600401610b09906139ed565b34816118c183612a5a565b6118cb9190613a95565b11156119195760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610b09565b6119353382601660019054906101000a900460ff166000612b16565b601654640100000000900460ff1615611952576119523382612b60565b50565b6001600160a01b0382163314156119ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b09565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a445760405162461bcd60e51b8152600401610b09906139b8565b6016805460ff19811660ff90911615179055565b600a546001600160a01b03163314611a825760405162461bcd60e51b8152600401610b09906139b8565b6000918252601c602052604090912055565b600a546001600160a01b03163314611abe5760405162461bcd60e51b8152600401610b09906139b8565b6016805463ff00000019811663010000009182900460ff1615909102179055565b611ae93383612404565b611b055760405162461bcd60e51b8152600401610b0990613a18565b611b1184848484612bf8565b50505050565b600a546001600160a01b03163314611b415760405162461bcd60e51b8152600401610b09906139b8565b601955565b6060611b5182612379565b611b6d5760405162461bcd60e51b8152600401610b0990613967565b60008281526012602052604081208054611b8690613af7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb290613af7565b8015611bff5780601f10611bd457610100808354040283529160200191611bff565b820191906000526020600020905b815481529060010190602001808311611be257829003601f168201915b505050505090506000611c10612c2b565b825190915015611c435781604051602001611c2b91906137db565b60405160208183030381529060405292505050919050565b80611c4d85612c3a565b604051602001611c2b9291906137ac565b6016546301000000900460ff16611cb75760405162461bcd60e51b815260206004820152601c60248201527f5369676e6174757265206d696e74206973206e6f7420616374697665000000006044820152606401610b09565b601754841015611cd95760405162461bcd60e51b8152600401610b099061398e565b601984111580611cf8575060185484600f54611cf59190613a69565b11155b80611d1857506174be84611d0b60085490565b611d159190613a69565b11155b611d345760405162461bcd60e51b8152600401610b09906139ed565b336000908152601d6020908152604080832086845290915290205460ff1615611d945760405162461bcd60e51b8152602060048201526012602482015271139bdb98d948185b1c9958591e481d5cd95960721b6044820152606401610b09565b60008260011415611daf57611da885612a5a565b9050611dc4565b8260021415611dc15750601954611dc4565b50815b34611dcf8683613a95565b1115611e1d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610b09565b60408051336020820152908101869052606081018590526080810184905260a0810183905260009060c001604051602081830303815290604052805190602001209050600081604051602001611e9f91907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f19818403018152919052805160209091012090506000611ec5828a61285a565b600b549091506001600160a01b03808316911614611f1b5760405162461bcd60e51b81526020600482015260136024820152720a6d2cedccae4e640c8dedc4ee840dac2e8c6d606b1b6044820152606401610b09565b336000818152601d602090815260408083208b84529091529020805460ff19166001179055601654611f5891908a90610100900460ff1688612b16565b601654640100000000900460ff1615611f7557611f753389612b60565b505050505050505050565b600a546001600160a01b03163314611faa5760405162461bcd60e51b8152600401610b09906139b8565b6000611fb4612d38565b90506000611fc28583613a69565b9050600e548111156120095760405162461bcd60e51b815260206004820152601060248201526f0e8ded6cadc92c840e8dede40d0d2ced60831b6044820152606401610b09565b60005b85811015612034576120228761128a8386613a69565b8061202c81613b32565b91505061200c565b5061203e85612d49565b600161204a8684613a69565b6120549190613ab4565b60408051858152861515602082015284916001600160a01b038a16917f3c3b6a3f8221ac8e629dda1e0febee52e952221b8cf2795b5a83456717a5cf99910160405180910390a4505050505050565b600a546001600160a01b031633146120cd5760405162461bcd60e51b8152600401610b09906139b8565b6010805460ff19811660ff90911615179055565b600a546001600160a01b0316331461210b5760405162461bcd60e51b8152600401610b09906139b8565b6016805464ff000000001981166401000000009182900460ff1615909102179055565b600a546001600160a01b031633146121585760405162461bcd60e51b8152600401610b09906139b8565b610dd333848484611f80565b600a546001600160a01b0316331461218e5760405162461bcd60e51b8152600401610b09906139b8565b601a55565b6060604051806060016040528060268152602001613c0960269139905090565b600a546001600160a01b031633146121dd5760405162461bcd60e51b8152600401610b09906139b8565b6001600160a01b0381166122425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b09565b61195281612808565b60165460ff1661229d5760405162461bcd60e51b815260206004820152601960248201527f446972656374206d696e74206973206e6f7420616374697665000000000000006044820152606401610b09565b6017548110156122bf5760405162461bcd60e51b8152600401610b099061398e565b6019811115806122de575060185481600f546122db9190613a69565b11155b806122fe57506174be816122f160085490565b6122fb9190613a69565b11155b61231a5760405162461bcd60e51b8152600401610b09906139ed565b34816019546118cb9190613a95565b60006001600160e01b031982166380ac58cd60e01b148061235a57506001600160e01b03198216635b5e139f60e01b145b80610b5657506301ffc9a760e01b6001600160e01b0319831614610b56565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123cb826113d8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061240f82612379565b6124705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b09565b600061247b836113d8565b9050806001600160a01b0316846001600160a01b031614806124b65750836001600160a01b03166124ab84610c3a565b6001600160a01b0316145b806124e657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612501826113d8565b6001600160a01b0316146125695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b09565b6001600160a01b0382166125cb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b09565b6125d6838383612d5b565b6125e1600082612396565b6001600160a01b038316600090815260036020526040812080546001929061260a908490613ab4565b90915550506001600160a01b0382166000908152600360205260408120805460019290612638908490613a69565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000600c5460016126aa9190613a69565b905090565b6001600160a01b0382166127055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b09565b61270e81612379565b1561275b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b09565b61276760008383612d5b565b6001600160a01b0382166000908152600360205260408120805460019290612790908490613a69565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80600c60008282546128009190613a69565b909155505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081516041141561288e5760208201516040830151606084015160001a61288486828585612e13565b9350505050610b56565b8151604014156128b657602082015160408301516128ad858383612fbc565b92505050610b56565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b09565b61290782612379565b6129235760405162461bcd60e51b8152600401610b0990613967565b60008281526012602090815260409091208251610dd392840190613292565b61294b82612379565b6129675760405162461bcd60e51b8152600401610b0990613967565b6014816040516129779190613790565b9081526020016040518091039020546000146129c35760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b6044820152606401610b09565b600082815260136020526040902080546129dc90613af7565b159050612a195760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b6044820152606401610b09565b81601482604051612a2a9190613790565b908152604080516020928190038301902092909255600084815260138252919091208251610dd392840190613292565b6000806003831015612a6f5750601954610b56565b600a831015612aa9575060008052601c6020527fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f84954610b56565b6019831015612ae457506001600052601c6020527f6de76108811faf2f94afbe5ac6c98e8393206cd093932de1fbfd61bbeec43a0254610b56565b5050600260005250601c6020527ff5b6e61a0c14f171ef1c86f003900ef0305e4159fff3317e4fb7c351f2050c875490565b6000612b20612699565b905060005b84811015612b4d57612b3b8661128a8385613a69565b80612b4581613b32565b915050612b25565b50612b57846127ee565b6112ab84612fe6565b601b54601a546001600160a01b03909116906340c10f19908490612b849085613a95565b612b9690670de0b6b3a7640000613a95565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612bdc57600080fd5b505af1158015612bf0573d6000803e3d6000fd5b505050505050565b612c038484846124ee565b612c0f84848484612ff8565b611b115760405162461bcd60e51b8152600401610b0990613915565b606060118054610bb790613af7565b606081612c5e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c885780612c7281613b32565b9150612c819050600a83613a81565b9150612c62565b60008167ffffffffffffffff811115612ca357612ca3613bb9565b6040519080825280601f01601f191660200182016040528015612ccd576020820181803683370190505b5090505b84156124e657612ce2600183613ab4565b9150612cef600a86613b4d565b612cfa906030613a69565b60f81b818381518110612d0f57612d0f613ba3565b60200101906001600160f81b031916908160001a905350612d31600a86613a81565b9450612cd1565b6000600d5460016126aa9190613a69565b80600d60008282546128009190613a69565b6001600160a01b038316612db657612db181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612dd9565b816001600160a01b0316836001600160a01b031614612dd957612dd98382613102565b6001600160a01b038216612df057610dd38161319f565b826001600160a01b0316826001600160a01b031614610dd357610dd3828261324e565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612e905760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b09565b8360ff16601b1480612ea557508360ff16601c145b612efc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b09565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612f50573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612fb35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b09565b95945050505050565b60006001600160ff1b03821660ff83901c601b01612fdc86828785612e13565b9695505050505050565b80600f60008282546128009190613a69565b60006001600160a01b0384163b156130fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061303c90339089908890889060040161380a565b602060405180830381600087803b15801561305657600080fd5b505af1925050508015613086575060408051601f3d908101601f191682019092526130839181019061359e565b60015b6130e0573d8080156130b4576040519150601f19603f3d011682016040523d82523d6000602084013e6130b9565b606091505b5080516130d85760405162461bcd60e51b8152600401610b0990613915565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124e6565b5060016124e6565b6000600161310f8461145c565b6131199190613ab4565b60008381526007602052604090205490915080821461316c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906131b190600190613ab4565b600083815260096020526040812054600880549394509092849081106131d9576131d9613ba3565b9060005260206000200154905080600883815481106131fa576131fa613ba3565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061323257613232613b8d565b6001900381819060005260206000200160009055905550505050565b60006132598361145c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461329e90613af7565b90600052602060002090601f0160209004810192826132c05760008555613306565b82601f106132d957805160ff1916838001178555613306565b82800160010185558215613306579182015b828111156133065782518255916020019190600101906132eb565b50613312929150613316565b5090565b5b808211156133125760008155600101613317565b600082601f83011261333c57600080fd5b813567ffffffffffffffff8082111561335757613357613bb9565b604051601f8301601f19908116603f0116810190828211818310171561337f5761337f613bb9565b8160405283815286602085880101111561339857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156133ca57600080fd5b81356133d581613bcf565b9392505050565b600080604083850312156133ef57600080fd5b82356133fa81613bcf565b9150602083013561340a81613bcf565b809150509250929050565b60008060006060848603121561342a57600080fd5b833561343581613bcf565b9250602084013561344581613bcf565b929592945050506040919091013590565b6000806000806080858703121561346c57600080fd5b843561347781613bcf565b9350602085013561348781613bcf565b925060408501359150606085013567ffffffffffffffff8111156134aa57600080fd5b6134b68782880161332b565b91505092959194509250565b600080604083850312156134d557600080fd5b82356134e081613bcf565b9150602083013561340a81613be4565b6000806040838503121561350357600080fd5b823561350e81613bcf565b946020939093013593505050565b6000806000806080858703121561353257600080fd5b843561353d81613bcf565b935060208501359250604085013561355481613be4565b9396929550929360600135925050565b60006020828403121561357657600080fd5b81516133d581613be4565b60006020828403121561359357600080fd5b81356133d581613bf2565b6000602082840312156135b057600080fd5b81516133d581613bf2565b600080600080600060a086880312156135d357600080fd5b853567ffffffffffffffff808211156135eb57600080fd5b6135f789838a0161332b565b96506020880135955060408801359450606088013591508082111561361b57600080fd5b61362789838a0161332b565b9350608088013591508082111561363d57600080fd5b5061364a8882890161332b565b9150509295509295909350565b600080600080600060a0868803121561366f57600080fd5b853567ffffffffffffffff81111561368657600080fd5b6136928882890161332b565b9860208801359850604088013597606081013597506080013595509350505050565b6000602082840312156136c657600080fd5b813567ffffffffffffffff8111156136dd57600080fd5b6124e68482850161332b565b6000602082840312156136fb57600080fd5b5035919050565b60006020828403121561371457600080fd5b5051919050565b60008060006060848603121561373057600080fd5b83359250602084013561344581613be4565b6000806040838503121561375557600080fd5b50508035926020909101359150565b6000815180845261377c816020860160208601613acb565b601f01601f19169290920160200192915050565b600082516137a2818460208701613acb565b9190910192915050565b600083516137be818460208801613acb565b8351908301906137d2818360208801613acb565b01949350505050565b66697066733a2f2f60c81b8152600082516137fd816007850160208701613acb565b9190910160070192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fdc90830184613764565b6001600160a01b038416815260606020820181905260009061386190830185613764565b8281036040840152612fdc8185613764565b60018060a01b038616815284602082015283604082015260a0606082015260006138a060a0830185613764565b82810360808401526138b28185613764565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156138f6578351835292840192918401916001016138da565b50909695505050505050565b6020815260006133d56020830184613764565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c34b73b30b634b2103a37b5b2b760991b604082015260600190565b60208082526010908201526f5175616e7469747920746f6f206c6f7760801b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613a7c57613a7c613b61565b500190565b600082613a9057613a90613b77565b500490565b6000816000190483118215151615613aaf57613aaf613b61565b500290565b600082821015613ac657613ac6613b61565b500390565b60005b83811015613ae6578181015183820152602001613ace565b83811115611b115750506000910152565b600181811c90821680613b0b57607f821691505b60208210811415613b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b4657613b46613b61565b5060010190565b600082613b5c57613b5c613b77565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461195257600080fd5b801515811461195257600080fd5b6001600160e01b03198116811461195257600080fdfe68747470733a2f2f6170692e74686563656c6c737a6f6e652e636f6d2f636f6e74726163742fa2646970667358221220f70ab146eb7dcd53e32f1d9b9fb82863f12a52baaf90f2a2c12188baa1366fb764736f6c6343000807003368747470733a2f2f6170692e74686563656c6c737a6f6e652e636f6d2f6a736f6e2f00000000000000000000000002e5bbdf753a2e8603a0e332e31a1a2397263e7a

Deployed Bytecode

0x6080604052600436106103a25760003560e01c806370a08231116101e7578063b88d4fde1161010d578063dacac82b116100a0578063e8a3d4851161006f578063e8a3d48514610a4e578063e985e9c514610a63578063f2fde38b14610aac578063f8335f1214610acc57600080fd5b8063dacac82b146109e4578063db1ca7a8146109f9578063dc374f5514610a0e578063e33ac8b614610a2e57600080fd5b8063c8cb3003116100dc578063c8cb300314610985578063d625165414610998578063d8fa66d1146109ae578063da39564e146109c457600080fd5b8063b88d4fde1461090f578063c1bd8cf91461092f578063c83f171f14610945578063c87b56dd1461096557600080fd5b8063937c913011610185578063a28ab64311610154578063a28ab643146108af578063a3dd4572146108c4578063aee1ce19146108da578063af188cbc146108fa57600080fd5b8063937c91301461084d57806395d89b4114610867578063a19496411461087c578063a22cb4651461088f57600080fd5b80637c24c87f116101c15780637c24c87f146107b85780637e1eaabf146107d8578063886b9bb2146107f75780638da5cb5b1461082f57600080fd5b806370a0823114610756578063715018a61461077657806377cedd241461078b57600080fd5b80632f745c59116102cc5780634f6ccce71161026a5780636090c95d116102395780636090c95d146106e15780636352211e146107015780636c0360eb146107215780636f8dab441461073657600080fd5b80634f6ccce71461066157806355f804b3146106815780635879cbf1146106a15780635e47fa75146106c157600080fd5b806342842e0e116102a657806342842e0e146105dc578063438b6300146105fc57806344daaee114610629578063456c01b91461064b57600080fd5b80632f745c59146105925780632ffcecf3146105b25780633ccfd60b146105c757600080fd5b806317ffc3201161034457806323b872dd1161031357806323b872dd1461052357806325d387b51461054357806327146b6e146105635780632b4d84d31461057d57600080fd5b806317ffc320146104ad57806318160ddd146104cd5780631defbba9146104ec5780632154dc391461050d57600080fd5b806306fdde031161038057806306fdde0314610413578063079f80d514610435578063081812fc1461046d578063095ea7b31461048d57600080fd5b806301af29f3146103a757806301ffc9a7146103be578063046dc166146103f3575b600080fd5b3480156103b357600080fd5b506103bc610adf565b005b3480156103ca57600080fd5b506103de6103d9366004613581565b610b31565b60405190151581526020015b60405180910390f35b3480156103ff57600080fd5b506103bc61040e3660046133b8565b610b5c565b34801561041f57600080fd5b50610428610ba8565b6040516103ea9190613902565b34801561044157600080fd5b50601b54610455906001600160a01b031681565b6040516001600160a01b0390911681526020016103ea565b34801561047957600080fd5b506104556104883660046136e9565b610c3a565b34801561049957600080fd5b506103bc6104a83660046134f0565b610cc2565b3480156104b957600080fd5b506103bc6104c83660046133b8565b610dd8565b3480156104d957600080fd5b506008545b6040519081526020016103ea565b3480156104f857600080fd5b506016546103de906301000000900460ff1681565b34801561051957600080fd5b506104de60185481565b34801561052f57600080fd5b506103bc61053e366004613415565b610f12565b34801561054f57600080fd5b506103bc61055e3660046136e9565b610f43565b34801561056f57600080fd5b506016546103de9060ff1681565b34801561058957600080fd5b506103bc610f72565b34801561059e57600080fd5b506104de6105ad3660046134f0565b610fb9565b3480156105be57600080fd5b506104de601981565b3480156105d357600080fd5b506103bc61104f565b3480156105e857600080fd5b506103bc6105f7366004613415565b6110aa565b34801561060857600080fd5b5061061c6106173660046133b8565b6110c5565b6040516103ea91906138be565b34801561063557600080fd5b506016546103de90640100000000900460ff1681565b34801561065757600080fd5b506104de60195481565b34801561066d57600080fd5b506104de61067c3660046136e9565b611167565b34801561068d57600080fd5b506103bc61069c3660046136b4565b6111fa565b3480156106ad57600080fd5b506103bc6106bc36600461351c565b61123b565b3480156106cd57600080fd5b506104286106dc3660046136e9565b61130f565b3480156106ed57600080fd5b506103bc6106fc3660046136e9565b6113a9565b34801561070d57600080fd5b5061045561071c3660046136e9565b6113d8565b34801561072d57600080fd5b5061042861144f565b34801561074257600080fd5b506016546103de9062010000900460ff1681565b34801561076257600080fd5b506104de6107713660046133b8565b61145c565b34801561078257600080fd5b506103bc6114e3565b34801561079757600080fd5b506104de6107a63660046136e9565b601c6020526000908152604090205481565b3480156107c457600080fd5b506103bc6107d33660046135bb565b611519565b3480156107e457600080fd5b506016546103de90610100900460ff1681565b34801561080357600080fd5b506104de6108123660046136b4565b805160208183018101805160148252928201919093012091525481565b34801561083b57600080fd5b50600a546001600160a01b0316610455565b34801561085957600080fd5b506010546103de9060ff1681565b34801561087357600080fd5b506104286117d2565b6103bc61088a3660046136e9565b6117e1565b34801561089b57600080fd5b506103bc6108aa3660046134c2565b611955565b3480156108bb57600080fd5b506103bc611a1a565b3480156108d057600080fd5b506104de60175481565b3480156108e657600080fd5b506103bc6108f5366004613742565b611a58565b34801561090657600080fd5b506103bc611a94565b34801561091b57600080fd5b506103bc61092a366004613456565b611adf565b34801561093b57600080fd5b506104de600f5481565b34801561095157600080fd5b506103bc6109603660046136e9565b611b17565b34801561097157600080fd5b506104286109803660046136e9565b611b46565b6103bc610993366004613657565b611c5e565b3480156109a457600080fd5b506104de601a5481565b3480156109ba57600080fd5b506104de6174be81565b3480156109d057600080fd5b506103bc6109df36600461351c565b611f80565b3480156109f057600080fd5b506103bc6120a3565b348015610a0557600080fd5b506103bc6120e1565b348015610a1a57600080fd5b506103bc610a2936600461371b565b61212e565b348015610a3a57600080fd5b506103bc610a493660046136e9565b612164565b348015610a5a57600080fd5b50610428612193565b348015610a6f57600080fd5b506103de610a7e3660046133dc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ab857600080fd5b506103bc610ac73660046133b8565b6121b3565b6103bc610ada3660046136e9565b61224b565b600a546001600160a01b03163314610b125760405162461bcd60e51b8152600401610b09906139b8565b60405180910390fd5b6016805462ff0000198116620100009182900460ff1615909102179055565b60006001600160e01b0319821663780e9d6360e01b1480610b565750610b5682612329565b92915050565b600a546001600160a01b03163314610b865760405162461bcd60e51b8152600401610b09906139b8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610bb790613af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390613af7565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050905090565b6000610c4582612379565b610ca65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b09565b506000908152600460205260409020546001600160a01b031690565b6000610ccd826113d8565b9050806001600160a01b0316836001600160a01b03161415610d3b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b09565b336001600160a01b0382161480610d575750610d578133610a7e565b610dc95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b09565b610dd38383612396565b505050565b600a546001600160a01b03163314610e025760405162461bcd60e51b8152600401610b09906139b8565b6001600160a01b038116610e1557600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610e5757600080fd5b505afa158015610e6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8f9190613702565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610eda57600080fd5b505af1158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd39190613564565b610f1c3382612404565b610f385760405162461bcd60e51b8152600401610b0990613a18565b610dd38383836124ee565b600a546001600160a01b03163314610f6d5760405162461bcd60e51b8152600401610b09906139b8565b601855565b600a546001600160a01b03163314610f9c5760405162461bcd60e51b8152600401610b09906139b8565b6016805461ff001981166101009182900460ff1615909102179055565b6000610fc48361145c565b82106110265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b09565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146110795760405162461bcd60e51b8152600401610b09906139b8565b60405147903390819083156108fc029084906000818181858888f19350505050158015610dd3573d6000803e3d6000fd5b610dd383838360405180602001604052806000815250611adf565b606060006110d28361145c565b905060008167ffffffffffffffff8111156110ef576110ef613bb9565b604051908082528060200260200182016040528015611118578160200160208202803683370190505b50905060005b8281101561115f576111308582610fb9565b82828151811061114257611142613ba3565b60209081029190910101528061115781613b32565b91505061111e565b509392505050565b600061117260085490565b82106111d55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b09565b600882815481106111e8576111e8613ba3565b90600052602060002001549050919050565b600a546001600160a01b031633146112245760405162461bcd60e51b8152600401610b09906139b8565b8051611237906011906020840190613292565b5050565b600a546001600160a01b031633146112655760405162461bcd60e51b8152600401610b09906139b8565b600061126f612699565b905060005b848110156112a15761128f8661128a8385613a69565b6126af565b8061129981613b32565b915050611274565b506112ab846127ee565b60016112b78583613a69565b6112c19190613ab4565b60408051848152851515602082015283916001600160a01b038916917f3c3b6a3f8221ac8e629dda1e0febee52e952221b8cf2795b5a83456717a5cf99910160405180910390a45050505050565b6013602052600090815260409020805461132890613af7565b80601f016020809104026020016040519081016040528092919081815260200182805461135490613af7565b80156113a15780601f10611376576101008083540402835291602001916113a1565b820191906000526020600020905b81548152906001019060200180831161138457829003601f168201915b505050505081565b600a546001600160a01b031633146113d35760405162461bcd60e51b8152600401610b09906139b8565b601755565b6000818152600260205260408120546001600160a01b031680610b565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b09565b6011805461132890613af7565b60006001600160a01b0382166114c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b09565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461150d5760405162461bcd60e51b8152600401610b09906139b8565b6115176000612808565b565b60105460ff1661155e5760405162461bcd60e51b815260206004820152601060248201526f1b1bd8dada5b99c8191a5cd8589b195960821b6044820152606401610b09565b33611568856113d8565b6001600160a01b0316146115ae5760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081e5bdd5c8818d95b1b609a1b6044820152606401610b09565b600084815260126020526040902080546115c790613af7565b159050806115f0575033600090815260156020908152604080832086845290915290205460ff16155b61162d5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b1bd8dad95960921b6044820152606401610b09565b60003385858585604051602001611648959493929190613873565b60405160208183030381529060405280519060200120905060008160405160200161169f91907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181529190528051602090910120905060006116c5828961285a565b600b549091506001600160a01b0380831691161461171b5760405162461bcd60e51b81526020600482015260136024820152720a6d2cedccae4e640c8dedc4ee840dac2e8c6d606b1b6044820152606401610b09565b3360009081526015602090815260408083208984529091529020805460ff1916600117905561174a87856128fe565b6117548786612942565b867fd07b5ee05ddb93dcb56f83a25af3bf3799aee7029c42cf69fa186a5e3ec19ef73387876040516117889392919061383d565b60405180910390a2867fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207856040516117c09190613902565b60405180910390a25050505050505050565b606060018054610bb790613af7565b60165462010000900460ff166118395760405162461bcd60e51b815260206004820152601760248201527f5061636b206d696e74206973206e6f74206163746976650000000000000000006044820152606401610b09565b60175481101561185b5760405162461bcd60e51b8152600401610b099061398e565b60198111158061187a575060185481600f546118779190613a69565b11155b8061189a57506174be8161188d60085490565b6118979190613a69565b11155b6118b65760405162461bcd60e51b8152600401610b09906139ed565b34816118c183612a5a565b6118cb9190613a95565b11156119195760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610b09565b6119353382601660019054906101000a900460ff166000612b16565b601654640100000000900460ff1615611952576119523382612b60565b50565b6001600160a01b0382163314156119ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b09565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a445760405162461bcd60e51b8152600401610b09906139b8565b6016805460ff19811660ff90911615179055565b600a546001600160a01b03163314611a825760405162461bcd60e51b8152600401610b09906139b8565b6000918252601c602052604090912055565b600a546001600160a01b03163314611abe5760405162461bcd60e51b8152600401610b09906139b8565b6016805463ff00000019811663010000009182900460ff1615909102179055565b611ae93383612404565b611b055760405162461bcd60e51b8152600401610b0990613a18565b611b1184848484612bf8565b50505050565b600a546001600160a01b03163314611b415760405162461bcd60e51b8152600401610b09906139b8565b601955565b6060611b5182612379565b611b6d5760405162461bcd60e51b8152600401610b0990613967565b60008281526012602052604081208054611b8690613af7565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb290613af7565b8015611bff5780601f10611bd457610100808354040283529160200191611bff565b820191906000526020600020905b815481529060010190602001808311611be257829003601f168201915b505050505090506000611c10612c2b565b825190915015611c435781604051602001611c2b91906137db565b60405160208183030381529060405292505050919050565b80611c4d85612c3a565b604051602001611c2b9291906137ac565b6016546301000000900460ff16611cb75760405162461bcd60e51b815260206004820152601c60248201527f5369676e6174757265206d696e74206973206e6f7420616374697665000000006044820152606401610b09565b601754841015611cd95760405162461bcd60e51b8152600401610b099061398e565b601984111580611cf8575060185484600f54611cf59190613a69565b11155b80611d1857506174be84611d0b60085490565b611d159190613a69565b11155b611d345760405162461bcd60e51b8152600401610b09906139ed565b336000908152601d6020908152604080832086845290915290205460ff1615611d945760405162461bcd60e51b8152602060048201526012602482015271139bdb98d948185b1c9958591e481d5cd95960721b6044820152606401610b09565b60008260011415611daf57611da885612a5a565b9050611dc4565b8260021415611dc15750601954611dc4565b50815b34611dcf8683613a95565b1115611e1d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610b09565b60408051336020820152908101869052606081018590526080810184905260a0810183905260009060c001604051602081830303815290604052805190602001209050600081604051602001611e9f91907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f19818403018152919052805160209091012090506000611ec5828a61285a565b600b549091506001600160a01b03808316911614611f1b5760405162461bcd60e51b81526020600482015260136024820152720a6d2cedccae4e640c8dedc4ee840dac2e8c6d606b1b6044820152606401610b09565b336000818152601d602090815260408083208b84529091529020805460ff19166001179055601654611f5891908a90610100900460ff1688612b16565b601654640100000000900460ff1615611f7557611f753389612b60565b505050505050505050565b600a546001600160a01b03163314611faa5760405162461bcd60e51b8152600401610b09906139b8565b6000611fb4612d38565b90506000611fc28583613a69565b9050600e548111156120095760405162461bcd60e51b815260206004820152601060248201526f0e8ded6cadc92c840e8dede40d0d2ced60831b6044820152606401610b09565b60005b85811015612034576120228761128a8386613a69565b8061202c81613b32565b91505061200c565b5061203e85612d49565b600161204a8684613a69565b6120549190613ab4565b60408051858152861515602082015284916001600160a01b038a16917f3c3b6a3f8221ac8e629dda1e0febee52e952221b8cf2795b5a83456717a5cf99910160405180910390a4505050505050565b600a546001600160a01b031633146120cd5760405162461bcd60e51b8152600401610b09906139b8565b6010805460ff19811660ff90911615179055565b600a546001600160a01b0316331461210b5760405162461bcd60e51b8152600401610b09906139b8565b6016805464ff000000001981166401000000009182900460ff1615909102179055565b600a546001600160a01b031633146121585760405162461bcd60e51b8152600401610b09906139b8565b610dd333848484611f80565b600a546001600160a01b0316331461218e5760405162461bcd60e51b8152600401610b09906139b8565b601a55565b6060604051806060016040528060268152602001613c0960269139905090565b600a546001600160a01b031633146121dd5760405162461bcd60e51b8152600401610b09906139b8565b6001600160a01b0381166122425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b09565b61195281612808565b60165460ff1661229d5760405162461bcd60e51b815260206004820152601960248201527f446972656374206d696e74206973206e6f7420616374697665000000000000006044820152606401610b09565b6017548110156122bf5760405162461bcd60e51b8152600401610b099061398e565b6019811115806122de575060185481600f546122db9190613a69565b11155b806122fe57506174be816122f160085490565b6122fb9190613a69565b11155b61231a5760405162461bcd60e51b8152600401610b09906139ed565b34816019546118cb9190613a95565b60006001600160e01b031982166380ac58cd60e01b148061235a57506001600160e01b03198216635b5e139f60e01b145b80610b5657506301ffc9a760e01b6001600160e01b0319831614610b56565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123cb826113d8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061240f82612379565b6124705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b09565b600061247b836113d8565b9050806001600160a01b0316846001600160a01b031614806124b65750836001600160a01b03166124ab84610c3a565b6001600160a01b0316145b806124e657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612501826113d8565b6001600160a01b0316146125695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b09565b6001600160a01b0382166125cb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b09565b6125d6838383612d5b565b6125e1600082612396565b6001600160a01b038316600090815260036020526040812080546001929061260a908490613ab4565b90915550506001600160a01b0382166000908152600360205260408120805460019290612638908490613a69565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000600c5460016126aa9190613a69565b905090565b6001600160a01b0382166127055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b09565b61270e81612379565b1561275b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b09565b61276760008383612d5b565b6001600160a01b0382166000908152600360205260408120805460019290612790908490613a69565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80600c60008282546128009190613a69565b909155505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081516041141561288e5760208201516040830151606084015160001a61288486828585612e13565b9350505050610b56565b8151604014156128b657602082015160408301516128ad858383612fbc565b92505050610b56565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610b09565b61290782612379565b6129235760405162461bcd60e51b8152600401610b0990613967565b60008281526012602090815260409091208251610dd392840190613292565b61294b82612379565b6129675760405162461bcd60e51b8152600401610b0990613967565b6014816040516129779190613790565b9081526020016040518091039020546000146129c35760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b6044820152606401610b09565b600082815260136020526040902080546129dc90613af7565b159050612a195760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b6044820152606401610b09565b81601482604051612a2a9190613790565b908152604080516020928190038301902092909255600084815260138252919091208251610dd392840190613292565b6000806003831015612a6f5750601954610b56565b600a831015612aa9575060008052601c6020527fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f84954610b56565b6019831015612ae457506001600052601c6020527f6de76108811faf2f94afbe5ac6c98e8393206cd093932de1fbfd61bbeec43a0254610b56565b5050600260005250601c6020527ff5b6e61a0c14f171ef1c86f003900ef0305e4159fff3317e4fb7c351f2050c875490565b6000612b20612699565b905060005b84811015612b4d57612b3b8661128a8385613a69565b80612b4581613b32565b915050612b25565b50612b57846127ee565b6112ab84612fe6565b601b54601a546001600160a01b03909116906340c10f19908490612b849085613a95565b612b9690670de0b6b3a7640000613a95565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612bdc57600080fd5b505af1158015612bf0573d6000803e3d6000fd5b505050505050565b612c038484846124ee565b612c0f84848484612ff8565b611b115760405162461bcd60e51b8152600401610b0990613915565b606060118054610bb790613af7565b606081612c5e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c885780612c7281613b32565b9150612c819050600a83613a81565b9150612c62565b60008167ffffffffffffffff811115612ca357612ca3613bb9565b6040519080825280601f01601f191660200182016040528015612ccd576020820181803683370190505b5090505b84156124e657612ce2600183613ab4565b9150612cef600a86613b4d565b612cfa906030613a69565b60f81b818381518110612d0f57612d0f613ba3565b60200101906001600160f81b031916908160001a905350612d31600a86613a81565b9450612cd1565b6000600d5460016126aa9190613a69565b80600d60008282546128009190613a69565b6001600160a01b038316612db657612db181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612dd9565b816001600160a01b0316836001600160a01b031614612dd957612dd98382613102565b6001600160a01b038216612df057610dd38161319f565b826001600160a01b0316826001600160a01b031614610dd357610dd3828261324e565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612e905760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610b09565b8360ff16601b1480612ea557508360ff16601c145b612efc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610b09565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612f50573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612fb35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610b09565b95945050505050565b60006001600160ff1b03821660ff83901c601b01612fdc86828785612e13565b9695505050505050565b80600f60008282546128009190613a69565b60006001600160a01b0384163b156130fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061303c90339089908890889060040161380a565b602060405180830381600087803b15801561305657600080fd5b505af1925050508015613086575060408051601f3d908101601f191682019092526130839181019061359e565b60015b6130e0573d8080156130b4576040519150601f19603f3d011682016040523d82523d6000602084013e6130b9565b606091505b5080516130d85760405162461bcd60e51b8152600401610b0990613915565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506124e6565b5060016124e6565b6000600161310f8461145c565b6131199190613ab4565b60008381526007602052604090205490915080821461316c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906131b190600190613ab4565b600083815260096020526040812054600880549394509092849081106131d9576131d9613ba3565b9060005260206000200154905080600883815481106131fa576131fa613ba3565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061323257613232613b8d565b6001900381819060005260206000200160009055905550505050565b60006132598361145c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461329e90613af7565b90600052602060002090601f0160209004810192826132c05760008555613306565b82601f106132d957805160ff1916838001178555613306565b82800160010185558215613306579182015b828111156133065782518255916020019190600101906132eb565b50613312929150613316565b5090565b5b808211156133125760008155600101613317565b600082601f83011261333c57600080fd5b813567ffffffffffffffff8082111561335757613357613bb9565b604051601f8301601f19908116603f0116810190828211818310171561337f5761337f613bb9565b8160405283815286602085880101111561339857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156133ca57600080fd5b81356133d581613bcf565b9392505050565b600080604083850312156133ef57600080fd5b82356133fa81613bcf565b9150602083013561340a81613bcf565b809150509250929050565b60008060006060848603121561342a57600080fd5b833561343581613bcf565b9250602084013561344581613bcf565b929592945050506040919091013590565b6000806000806080858703121561346c57600080fd5b843561347781613bcf565b9350602085013561348781613bcf565b925060408501359150606085013567ffffffffffffffff8111156134aa57600080fd5b6134b68782880161332b565b91505092959194509250565b600080604083850312156134d557600080fd5b82356134e081613bcf565b9150602083013561340a81613be4565b6000806040838503121561350357600080fd5b823561350e81613bcf565b946020939093013593505050565b6000806000806080858703121561353257600080fd5b843561353d81613bcf565b935060208501359250604085013561355481613be4565b9396929550929360600135925050565b60006020828403121561357657600080fd5b81516133d581613be4565b60006020828403121561359357600080fd5b81356133d581613bf2565b6000602082840312156135b057600080fd5b81516133d581613bf2565b600080600080600060a086880312156135d357600080fd5b853567ffffffffffffffff808211156135eb57600080fd5b6135f789838a0161332b565b96506020880135955060408801359450606088013591508082111561361b57600080fd5b61362789838a0161332b565b9350608088013591508082111561363d57600080fd5b5061364a8882890161332b565b9150509295509295909350565b600080600080600060a0868803121561366f57600080fd5b853567ffffffffffffffff81111561368657600080fd5b6136928882890161332b565b9860208801359850604088013597606081013597506080013595509350505050565b6000602082840312156136c657600080fd5b813567ffffffffffffffff8111156136dd57600080fd5b6124e68482850161332b565b6000602082840312156136fb57600080fd5b5035919050565b60006020828403121561371457600080fd5b5051919050565b60008060006060848603121561373057600080fd5b83359250602084013561344581613be4565b6000806040838503121561375557600080fd5b50508035926020909101359150565b6000815180845261377c816020860160208601613acb565b601f01601f19169290920160200192915050565b600082516137a2818460208701613acb565b9190910192915050565b600083516137be818460208801613acb565b8351908301906137d2818360208801613acb565b01949350505050565b66697066733a2f2f60c81b8152600082516137fd816007850160208701613acb565b9190910160070192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fdc90830184613764565b6001600160a01b038416815260606020820181905260009061386190830185613764565b8281036040840152612fdc8185613764565b60018060a01b038616815284602082015283604082015260a0606082015260006138a060a0830185613764565b82810360808401526138b28185613764565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156138f6578351835292840192918401916001016138da565b50909695505050505050565b6020815260006133d56020830184613764565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c34b73b30b634b2103a37b5b2b760991b604082015260600190565b60208082526010908201526f5175616e7469747920746f6f206c6f7760801b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115613a7c57613a7c613b61565b500190565b600082613a9057613a90613b77565b500490565b6000816000190483118215151615613aaf57613aaf613b61565b500290565b600082821015613ac657613ac6613b61565b500390565b60005b83811015613ae6578181015183820152602001613ace565b83811115611b115750506000910152565b600181811c90821680613b0b57607f821691505b60208210811415613b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b4657613b46613b61565b5060010190565b600082613b5c57613b5c613b77565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461195257600080fd5b801515811461195257600080fd5b6001600160e01b03198116811461195257600080fdfe68747470733a2f2f6170692e74686563656c6c737a6f6e652e636f6d2f636f6e74726163742fa2646970667358221220f70ab146eb7dcd53e32f1d9b9fb82863f12a52baaf90f2a2c12188baa1366fb764736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000002e5bbdf753a2e8603a0e332e31a1a2397263e7a

-----Decoded View---------------
Arg [0] : _erc20Address (address): 0x02E5bBdf753A2E8603A0E332E31a1a2397263E7a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000002e5bbdf753a2e8603a0e332e31a1a2397263e7a


Deployed Bytecode Sourcemap

56586:6193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57860:82;;;;;;;;;;;;;:::i;:::-;;34506:224;;;;;;;;;;-1:-1:-1;34506:224:0;;;;;:::i;:::-;;:::i;:::-;;;12800:14:1;;12793:22;12775:41;;12763:2;12748:18;34506:224:0;;;;;;;;52317:112;;;;;;;;;;-1:-1:-1;52317:112:0;;;;;:::i;:::-;;:::i;21403:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57107:27::-;;;;;;;;;;-1:-1:-1;57107:27:0;;;;-1:-1:-1;;;;;57107:27:0;;;;;;-1:-1:-1;;;;;9577:32:1;;;9559:51;;9547:2;9532:18;57107:27:0;9413:203:1;22962:221:0;;;;;;;;;;-1:-1:-1;22962:221:0;;;;;:::i;:::-;;:::i;22485:411::-;;;;;;;;;;-1:-1:-1;22485:411:0;;;;;:::i;:::-;;:::i;62583:193::-;;;;;;;;;;-1:-1:-1;62583:193:0;;;;;:::i;:::-;;:::i;35146:113::-;;;;;;;;;;-1:-1:-1;35234:10:0;:17;35146:113;;;26999:25:1;;;26987:2;26972:18;35146:113:0;26853:177:1;56763:32:0;;;;;;;;;;-1:-1:-1;56763:32:0;;;;;;;;;;;56977:34;;;;;;;;;;;;;;;;23852:339;;;;;;;;;;-1:-1:-1;23852:339:0;;;;;:::i;:::-;;:::i;58609:97::-;;;;;;;;;;-1:-1:-1;58609:97:0;;;;;:::i;:::-;;:::i;56655:30::-;;;;;;;;;;-1:-1:-1;56655:30:0;;;;;;;;57764:88;;;;;;;;;;;;;:::i;34814:256::-;;;;;;;;;;-1:-1:-1;34814:256:0;;;;;:::i;:::-;;:::i;56838:47::-;;;;;;;;;;;;56883:2;56838:47;;62392:182;;;;;;;;;;;;;:::i;24262:185::-;;;;;;;;;;-1:-1:-1;24262:185:0;;;;;:::i;:::-;;:::i;62042:342::-;;;;;;;;;;-1:-1:-1;62042:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56802:29::-;;;;;;;;;;-1:-1:-1;56802:29:0;;;;;;;;;;;57018:38;;;;;;;;;;;;;;;;35336:233;;;;;;;;;;-1:-1:-1;35336:233:0;;;;;:::i;:::-;;:::i;53035:94::-;;;;;;;;;;-1:-1:-1;53035:94:0;;;;;:::i;:::-;;:::i;50436:428::-;;;;;;;;;;-1:-1:-1;50436:428:0;;;;;:::i;:::-;;:::i;49693:52::-;;;;;;;;;;-1:-1:-1;49693:52:0;;;;;:::i;:::-;;:::i;58500:97::-;;;;;;;;;;-1:-1:-1;58500:97:0;;;;;:::i;:::-;;:::i;21097:239::-;;;;;;;;;;-1:-1:-1;21097:239:0;;;;;:::i;:::-;;:::i;49527:60::-;;;;;;;;;;;;;:::i;56728:28::-;;;;;;;;;;-1:-1:-1;56728:28:0;;;;;;;;;;;20827:208;;;;;;;;;;-1:-1:-1;20827:208:0;;;;;:::i;:::-;;:::i;42303:94::-;;;;;;;;;;;;;:::i;57143:46::-;;;;;;;;;;-1:-1:-1;57143:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;53722:1010;;;;;;;;;;-1:-1:-1;53722:1010:0;;;;;:::i;:::-;;:::i;56692:29::-;;;;;;;;;;-1:-1:-1;56692:29:0;;;;;;;;;;;49752:52;;;;;;;;;;-1:-1:-1;49752:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;41652:87;;;;;;;;;;-1:-1:-1;41725:6:0;;-1:-1:-1;;;;;41725:6:0;41652:87;;49486:34;;;;;;;;;;-1:-1:-1;49486:34:0;;;;;;;;21572:104;;;;;;;;;;;;;:::i;59527:578::-;;;;;;:::i;:::-;;:::i;23255:295::-;;;;;;;;;;-1:-1:-1;23255:295:0;;;;;:::i;:::-;;:::i;57664:88::-;;;;;;;;;;;;;:::i;56940:30::-;;;;;;;;;;;;;;;;58370:118;;;;;;;;;;-1:-1:-1;58370:118:0;;;;;:::i;:::-;;:::i;57950:97::-;;;;;;;;;;;;;:::i;24518:328::-;;;;;;;;;;-1:-1:-1;24518:328:0;;;;;:::i;:::-;;:::i;49448:31::-;;;;;;;;;;;;;;;;58266:96;;;;;;;;;;-1:-1:-1;58266:96:0;;;;;:::i;:::-;;:::i;53141:529::-;;;;;;;;;;-1:-1:-1;53141:529:0;;;;;:::i;:::-;;:::i;60153:1316::-;;;;;;:::i;:::-;;:::i;57063:37::-;;;;;;;;;;;;;;;;56892:41;;;;;;;;;;;;56928:5;56892:41;;51359:575;;;;;;;;;;-1:-1:-1;51359:575:0;;;;;:::i;:::-;;:::i;52437:101::-;;;;;;;;;;;;;:::i;58055:88::-;;;;;;;;;;;;;:::i;58718:145::-;;;;;;;;;;-1:-1:-1;58718:145:0;;;;;:::i;:::-;;:::i;58151:103::-;;;;;;;;;;-1:-1:-1;58151:103:0;;;;;:::i;:::-;;:::i;57531:125::-;;;;;;;;;;;;;:::i;23621:164::-;;;;;;;;;;-1:-1:-1;23621:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23742:25:0;;;23718:4;23742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23621:164;42552:192;;;;;;;;;;-1:-1:-1;42552:192:0;;;;;:::i;:::-;;:::i;58910:568::-;;;;;;:::i;:::-;;:::i;57860:82::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;;;;;;;;;57926:8:::1;::::0;;-1:-1:-1;;57914:20:0;::::1;57926:8:::0;;;;::::1;;;57925:9;57914:20:::0;;::::1;;::::0;;57860:82::o;34506:224::-;34608:4;-1:-1:-1;;;;;;34632:50:0;;-1:-1:-1;;;34632:50:0;;:90;;;34686:36;34710:11;34686:23;:36::i;:::-;34625:97;34506:224;-1:-1:-1;;34506:224:0:o;52317:112::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;52397:13:::1;:24:::0;;-1:-1:-1;;;;;;52397:24:0::1;-1:-1:-1::0;;;;;52397:24:0;;;::::1;::::0;;;::::1;::::0;;52317:112::o;21403:100::-;21457:13;21490:5;21483:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21403:100;:::o;22962:221::-;23038:7;23066:16;23074:7;23066;:16::i;:::-;23058:73;;;;-1:-1:-1;;;23058:73:0;;21508:2:1;23058:73:0;;;21490:21:1;21547:2;21527:18;;;21520:30;21586:34;21566:18;;;21559:62;-1:-1:-1;;;21637:18:1;;;21630:42;21689:19;;23058:73:0;21306:408:1;23058:73:0;-1:-1:-1;23151:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23151:24:0;;22962:221::o;22485:411::-;22566:13;22582:23;22597:7;22582:14;:23::i;:::-;22566:39;;22630:5;-1:-1:-1;;;;;22624:11:0;:2;-1:-1:-1;;;;;22624:11:0;;;22616:57;;;;-1:-1:-1;;;22616:57:0;;23748:2:1;22616:57:0;;;23730:21:1;23787:2;23767:18;;;23760:30;23826:34;23806:18;;;23799:62;-1:-1:-1;;;23877:18:1;;;23870:31;23918:19;;22616:57:0;23546:397:1;22616:57:0;15960:10;-1:-1:-1;;;;;22708:21:0;;;;:62;;-1:-1:-1;22733:37:0;22750:5;15960:10;23621:164;:::i;22733:37::-;22686:168;;;;-1:-1:-1;;;22686:168:0;;18809:2:1;22686:168:0;;;18791:21:1;18848:2;18828:18;;;18821:30;18887:34;18867:18;;;18860:62;18958:26;18938:18;;;18931:54;19002:19;;22686:168:0;18607:420:1;22686:168:0;22867:21;22876:2;22880:7;22867:8;:21::i;:::-;22555:341;22485:411;;:::o;62583:193::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;62649:28:0;::::1;62641:37;;;::::0;::::1;;62701:30;::::0;-1:-1:-1;;;62701:30:0;;62725:4:::1;62701:30;::::0;::::1;9559:51:1::0;62683:15:0::1;::::0;-1:-1:-1;;;;;62701:15:0;::::1;::::0;::::1;::::0;9532:18:1;;62701:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62736:35;::::0;-1:-1:-1;;;62736:35:0;;62751:10:::1;62736:35;::::0;::::1;10771:51:1::0;10838:18;;;10831:34;;;62683:48:0;;-1:-1:-1;;;;;;62736:14:0;::::1;::::0;::::1;::::0;10744:18:1;;62736:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23852:339::-:0;24047:41;15960:10;24080:7;24047:18;:41::i;:::-;24039:103;;;;-1:-1:-1;;;24039:103:0;;;;;;;:::i;:::-;24155:28;24165:4;24171:2;24175:7;24155:9;:28::i;58609:97::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58676:11:::1;:22:::0;58609:97::o;57764:88::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;57834:10:::1;::::0;;-1:-1:-1;;57820:24:0;::::1;57834:10;::::0;;;::::1;;;57833:11;57820:24:::0;;::::1;;::::0;;57764:88::o;34814:256::-;34911:7;34947:23;34964:5;34947:16;:23::i;:::-;34939:5;:31;34931:87;;;;-1:-1:-1;;;34931:87:0;;14592:2:1;34931:87:0;;;14574:21:1;14631:2;14611:18;;;14604:30;14670:34;14650:18;;;14643:62;-1:-1:-1;;;14721:18:1;;;14714:41;14772:19;;34931:87:0;14390:407:1;34931:87:0;-1:-1:-1;;;;;;35036:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34814:256::o;62392:182::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;62542:24:::1;::::0;62455:21:::1;::::0;62520:10:::1;::::0;;;62542:24;::::1;;;::::0;62455:21;;62440:12:::1;62542:24:::0;62440:12;62542:24;62455:21;62520:10;62542:24;::::1;;;;;;;;;;;;;::::0;::::1;;;;24262:185:::0;24400:39;24417:4;24423:2;24427:7;24400:39;;;;;;;;;;;;:16;:39::i;62042:342::-;62101:16;62130:18;62151:17;62161:6;62151:9;:17::i;:::-;62130:38;;62181:25;62223:10;62209:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62209:25:0;;62181:53;;62249:9;62245:106;62264:10;62260:1;:14;62245:106;;;62309:30;62329:6;62337:1;62309:19;:30::i;:::-;62295:8;62304:1;62295:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;62276:3;;;;:::i;:::-;;;;62245:106;;;-1:-1:-1;62368:8:0;62042:342;-1:-1:-1;;;62042:342:0:o;35336:233::-;35411:7;35447:30;35234:10;:17;;35146:113;35447:30;35439:5;:38;35431:95;;;;-1:-1:-1;;;35431:95:0;;25257:2:1;35431:95:0;;;25239:21:1;25296:2;25276:18;;;25269:30;25335:34;25315:18;;;25308:62;-1:-1:-1;;;25386:18:1;;;25379:42;25438:19;;35431:95:0;25055:408:1;35431:95:0;35544:10;35555:5;35544:17;;;;;;;;:::i;:::-;;;;;;;;;35537:24;;35336:233;;;:::o;53035:94::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;53105:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53035:94:::0;:::o;50436:428::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;50558:18:::1;50579:17;:15;:17::i;:::-;50558:38;;50612:9;50607:102;50631:18;50627:1;:22;50607:102;;;50671:26;50677:3:::0;50682:14:::1;50695:1:::0;50682:10;:14:::1;:::i;:::-;50671:5;:26::i;:::-;50651:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50607:102;;;;50719:37;50737:18;50719:17;:37::i;:::-;50838:1;50804:31;50817:18:::0;50804:10;:31:::1;:::i;:::-;:35;;;;:::i;:::-;50772:84;::::0;;27203:25:1;;;27271:14;;27264:22;27259:2;27244:18;;27237:50;50792:10:0;;-1:-1:-1;;;;;50772:84:0;::::1;::::0;::::1;::::0;27176:18:1;50772:84:0::1;;;;;;;50547:317;50436:428:::0;;;;:::o;49693:52::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58500:97::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58567:11:::1;:22:::0;58500:97::o;21097:239::-;21169:7;21205:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21205:16:0;21240:19;21232:73;;;;-1:-1:-1;;;21232:73:0;;19645:2:1;21232:73:0;;;19627:21:1;19684:2;19664:18;;;19657:30;19723:34;19703:18;;;19696:62;-1:-1:-1;;;19774:18:1;;;19767:39;19823:19;;21232:73:0;19443:405:1;49527:60:0;;;;;;;:::i;20827:208::-;20899:7;-1:-1:-1;;;;;20927:19:0;;20919:74;;;;-1:-1:-1;;;20919:74:0;;19234:2:1;20919:74:0;;;19216:21:1;19273:2;19253:18;;;19246:30;19312:34;19292:18;;;19285:62;-1:-1:-1;;;19363:18:1;;;19356:40;19413:19;;20919:74:0;19032:406:1;20919:74:0;-1:-1:-1;;;;;;21011:16:0;;;;;:9;:16;;;;;;;20827:208::o;42303:94::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;42368:21:::1;42386:1;42368:9;:21::i;:::-;42303:94::o:0;53722:1010::-;53926:14;;;;53918:43;;;;-1:-1:-1;;;53918:43:0;;17709:2:1;53918:43:0;;;17691:21:1;17748:2;17728:18;;;17721:30;-1:-1:-1;;;17767:18:1;;;17760:46;17823:18;;53918:43:0;17507:340:1;53918:43:0;54000:10;53980:16;53988:7;53980;:16::i;:::-;-1:-1:-1;;;;;53980:30:0;;53972:56;;;;-1:-1:-1;;;53972:56:0;;18467:2:1;53972:56:0;;;18449:21:1;18506:2;18486:18;;;18479:30;-1:-1:-1;;;18525:18:1;;;18518:43;18578:18;;53972:56:0;18265:337:1;53972:56:0;54053:19;;;;:10;:19;;;;;54047:33;;;;;:::i;:::-;:38;;-1:-1:-1;54047:38:0;:72;;-1:-1:-1;54101:10:0;54090:22;;;;:10;:22;;;;;;;;:29;;;;;;;;;;;54089:30;54047:72;54039:99;;;;-1:-1:-1;;;54039:99:0;;24914:2:1;54039:99:0;;;24896:21:1;24953:2;24933:18;;;24926:30;-1:-1:-1;;;24972:18:1;;;24965:44;25026:18;;54039:99:0;24712:338:1;54039:99:0;54151:13;54188:10;54200:7;54209:5;54216:8;54226:9;54177:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54167:70;;;;;;54151:86;;54248:19;54333:5;54280:59;;;;;;;8841:66:1;8829:79;;8933:2;8924:12;;8917:28;;;;8970:2;8961:12;;8599:380;54280:59:0;;;;-1:-1:-1;;54280:59:0;;;;;;;;;54270:70;;54280:59;54270:70;;;;;-1:-1:-1;54351:14:0;54368:30;54270:70;54388:9;54368:19;:30::i;:::-;54427:13;;54351:47;;-1:-1:-1;;;;;;54417:23:0;;;54427:13;;54417:23;54409:55;;;;-1:-1:-1;;;54409:55:0;;26367:2:1;54409:55:0;;;26349:21:1;26406:2;26386:18;;;26379:30;-1:-1:-1;;;26425:18:1;;;26418:49;26484:18;;54409:55:0;26165:343:1;54409:55:0;54488:10;54477:22;;;;:10;:22;;;;;;;;:29;;;;;;;;:36;;-1:-1:-1;;54477:36:0;54509:4;54477:36;;;54524:32;54537:7;54546:9;54524:12;:32::i;:::-;54567:31;54580:7;54589:8;54567:12;:31::i;:::-;54635:7;54624:52;54644:10;54656:8;54666:9;54624:52;;;;;;;;:::i;:::-;;;;;;;;54716:7;54692:32;54705:9;54692:32;;;;;;:::i;:::-;;;;;;;;53907:825;;;53722:1010;;;;;:::o;21572:104::-;21628:13;21661:7;21654:14;;;;;:::i;59527:578::-;59596:8;;;;;;;59588:44;;;;-1:-1:-1;;;59588:44:0;;26015:2:1;59588:44:0;;;25997:21:1;26054:2;26034:18;;;26027:30;26093:25;26073:18;;;26066:53;26136:18;;59588:44:0;25813:347:1;59588:44:0;59661:11;;59651:6;:21;;59643:50;;;;-1:-1:-1;;;59643:50:0;;;;;;;:::i;:::-;56883:2;59720:6;:28;;:68;;;;59777:11;;59767:6;59752:12;;:21;;;;:::i;:::-;:36;;59720:68;:107;;;;56928:5;59808:6;59792:13;35234:10;:17;;35146:113;59792:13;:22;;;;:::i;:::-;:35;;59720:107;59712:137;;;;-1:-1:-1;;;59712:137:0;;;;;;;:::i;:::-;59901:9;59891:6;59868:20;59881:6;59868:12;:20::i;:::-;:29;;;;:::i;:::-;:42;;59860:86;;;;-1:-1:-1;;;59860:86:0;;16946:2:1;59860:86:0;;;16928:21:1;16985:2;16965:18;;;16958:30;17024:33;17004:18;;;16997:61;17075:18;;59860:86:0;16744:355:1;59860:86:0;59967:43;59976:10;59988:6;59996:10;;;;;;;;;;;60008:1;59967:8;:43::i;:::-;60025:10;;;;;;;60021:77;;;60052:34;60067:10;60079:6;60052:14;:34::i;:::-;59527:578;:::o;23255:295::-;-1:-1:-1;;;;;23358:24:0;;15960:10;23358:24;;23350:62;;;;-1:-1:-1;;;23350:62:0;;16592:2:1;23350:62:0;;;16574:21:1;16631:2;16611:18;;;16604:30;16670:27;16650:18;;;16643:55;16715:18;;23350:62:0;16390:349:1;23350:62:0;15960:10;23425:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23425:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23425:53:0;;;;;;;;;;23494:48;;12775:41:1;;;23425:42:0;;15960:10;23494:48;;12748:18:1;23494:48:0;;;;;;;23255:295;;:::o;57664:88::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;57734:10:::1;::::0;;-1:-1:-1;;57720:24:0;::::1;57734:10;::::0;;::::1;57733:11;57720:24;::::0;;57664:88::o;58370:118::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58451:18:::1;::::0;;;:10:::1;:18;::::0;;;;;:29;58370:118::o;57950:97::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58026:13:::1;::::0;;-1:-1:-1;;58009:30:0;::::1;58026:13:::0;;;;::::1;;;58025:14;58009:30:::0;;::::1;;::::0;;57950:97::o;24518:328::-;24693:41;15960:10;24726:7;24693:18;:41::i;:::-;24685:103;;;;-1:-1:-1;;;24685:103:0;;;;;;;:::i;:::-;24799:39;24813:4;24819:2;24823:7;24832:5;24799:13;:39::i;:::-;24518:328;;;;:::o;58266:96::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58334:9:::1;:20:::0;58266:96::o;53141:529::-;53214:13;53248:16;53256:7;53248;:16::i;:::-;53240:42;;;;-1:-1:-1;;;53240:42:0;;;;;;;:::i;:::-;53295:23;53321:19;;;:10;:19;;;;;53295:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53351:18;53372:10;:8;:10::i;:::-;53438:23;;53351:31;;-1:-1:-1;53438:27:0;53434:113;;53524:9;53496:38;;;;;;;;:::i;:::-;;;;;;;;;;;;;53482:53;;;;53141:529;;;:::o;53434:113::-;53629:4;53635:25;53652:7;53635:16;:25::i;:::-;53612:49;;;;;;;;;:::i;60153:1316::-;60286:13;;;;;;;60278:54;;;;-1:-1:-1;;;60278:54:0;;23037:2:1;60278:54:0;;;23019:21:1;23076:2;23056:18;;;23049:30;23115;23095:18;;;23088:58;23163:18;;60278:54:0;22835:352:1;60278:54:0;60361:11;;60351:6;:21;;60343:50;;;;-1:-1:-1;;;60343:50:0;;;;;;;:::i;:::-;56883:2;60420:6;:28;;:68;;;;60477:11;;60467:6;60452:12;;:21;;;;:::i;:::-;:36;;60420:68;:107;;;;56928:5;60508:6;60492:13;35234:10;:17;;35146:113;60492:13;:22;;;;:::i;:::-;:35;;60420:107;60412:137;;;;-1:-1:-1;;;60412:137:0;;;;;;;:::i;:::-;60580:10;60569:22;;;;:10;:22;;;;;;;;:29;;;;;;;;;;;60568:30;60560:61;;;;-1:-1:-1;;;60560:61:0;;21161:2:1;60560:61:0;;;21143:21:1;21200:2;21180:18;;;21173:30;-1:-1:-1;;;21219:18:1;;;21212:48;21277:18;;60560:61:0;20959:342:1;60560:61:0;60634:10;60659:9;60672:1;60659:14;60655:195;;;60698:20;60711:6;60698:12;:20::i;:::-;60690:28;;60655:195;;;60740:9;60753:1;60740:14;60736:114;;;-1:-1:-1;60779:9:0;;60736:114;;;-1:-1:-1;60829:9:0;60736:114;60896:9;60878:14;60886:6;60878:5;:14;:::i;:::-;:27;;60870:71;;;;-1:-1:-1;;;60870:71:0;;16946:2:1;60870:71:0;;;16928:21:1;16985:2;16965:18;;;16958:30;17024:33;17004:18;;;16997:61;17075:18;;60870:71:0;16744:355:1;60870:71:0;60987:54;;;60998:10;60987:54;;;11763:51:1;11830:18;;;11823:34;;;11873:18;;;11866:34;;;11916:18;;;11909:34;;;11959:19;;;11952:35;;;60962:12:0;;11735:19:1;;60987:54:0;;;;;;;;;;;;60977:65;;;;;;60962:80;;61053:19;61138:4;61085:58;;;;;;;8841:66:1;8829:79;;8933:2;8924:12;;8917:28;;;;8970:2;8961:12;;8599:380;61085:58:0;;;;-1:-1:-1;;61085:58:0;;;;;;;;;61075:69;;61085:58;61075:69;;;;;-1:-1:-1;61155:14:0;61172:30;61075:69;61192:9;61172:19;:30::i;:::-;61231:13;;61155:47;;-1:-1:-1;;;;;;61221:23:0;;;61231:13;;61221:23;61213:55;;;;-1:-1:-1;;;61213:55:0;;26367:2:1;61213:55:0;;;26349:21:1;26406:2;26386:18;;;26379:30;-1:-1:-1;;;26425:18:1;;;26418:49;26484:18;;61213:55:0;26165:343:1;61213:55:0;61292:10;61281:22;;;;:10;:22;;;;;;;;:29;;;;;;;;:36;;-1:-1:-1;;61281:36:0;61313:4;61281:36;;;61357:10;;61328:46;;61292:10;61349:6;;61281:36;61357:10;;61281:36;61357:10;61369:4;61328:8;:46::i;:::-;61389:10;;;;;;;61385:77;;;61416:34;61431:10;61443:6;61416:14;:34::i;:::-;60267:1202;;;;60153:1316;;;;;:::o;51359:575::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;51484:18:::1;51505:25;:23;:25::i;:::-;51484:46:::0;-1:-1:-1;51541:16:0::1;51560:31;51573:18:::0;51484:46;51560:31:::1;:::i;:::-;51541:50;;51622:15;;51610:8;:27;;51602:56;;;::::0;-1:-1:-1;;;51602:56:0;;25670:2:1;51602:56:0::1;::::0;::::1;25652:21:1::0;25709:2;25689:18;;;25682:30;-1:-1:-1;;;25728:18:1;;;25721:46;25784:18;;51602:56:0::1;25468:340:1::0;51602:56:0::1;51674:9;51669:102;51693:18;51689:1;:22;51669:102;;;51733:26;51739:3:::0;51744:14:::1;51757:1:::0;51744:10;:14:::1;:::i;51733:26::-;51713:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51669:102;;;;51781:45;51807:18;51781:25;:45::i;:::-;51908:1;51874:31;51887:18:::0;51874:10;:31:::1;:::i;:::-;:35;;;;:::i;:::-;51842:84;::::0;;27203:25:1;;;27271:14;;27264:22;27259:2;27244:18;;27237:50;51862:10:0;;-1:-1:-1;;;;;51842:84:0;::::1;::::0;::::1;::::0;27176:18:1;51842:84:0::1;;;;;;;51473:461;;51359:575:::0;;;;:::o;52437:101::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;52516:14:::1;::::0;;-1:-1:-1;;52498:32:0;::::1;52516:14;::::0;;::::1;52515:15;52498:32;::::0;;52437:101::o;58055:88::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58125:10:::1;::::0;;-1:-1:-1;;58111:24:0;::::1;58125:10:::0;;;;::::1;;;58124:11;58111:24:::0;;::::1;;::::0;;58055:88::o;58718:145::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58810:45:::1;58820:10;58832:6;58840:8;58850:4;58810:9;:45::i;58151:103::-:0;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;58221:16:::1;:25:::0;58151:103::o;57531:125::-;57575:13;57601:47;;;;;;;;;;;;;;;;;;;57531:125;:::o;42552:192::-;41725:6;;-1:-1:-1;;;;;41725:6:0;15960:10;41872:23;41864:68;;;;-1:-1:-1;;;41864:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42641:22:0;::::1;42633:73;;;::::0;-1:-1:-1;;;42633:73:0;;15423:2:1;42633:73:0::1;::::0;::::1;15405:21:1::0;15462:2;15442:18;;;15435:30;15501:34;15481:18;;;15474:62;-1:-1:-1;;;15552:18:1;;;15545:36;15598:19;;42633:73:0::1;15221:402:1::0;42633:73:0::1;42717:19;42727:8;42717:9;:19::i;58910:568::-:0;58976:10;;;;58968:48;;;;-1:-1:-1;;;58968:48:0;;23394:2:1;58968:48:0;;;23376:21:1;23433:2;23413:18;;;23406:30;23472:27;23452:18;;;23445:55;23517:18;;58968:48:0;23192:349:1;58968:48:0;59045:11;;59035:6;:21;;59027:50;;;;-1:-1:-1;;;59027:50:0;;;;;;;:::i;:::-;56883:2;59104:6;:28;;:68;;;;59161:11;;59151:6;59136:12;;:21;;;;:::i;:::-;:36;;59104:68;:107;;;;56928:5;59192:6;59176:13;35234:10;:17;;35146:113;59176:13;:22;;;;:::i;:::-;:35;;59104:107;59096:137;;;;-1:-1:-1;;;59096:137:0;;;;;;;:::i;:::-;59274:9;59264:6;59252:9;;:18;;;;:::i;20458:305::-;20560:4;-1:-1:-1;;;;;;20597:40:0;;-1:-1:-1;;;20597:40:0;;:105;;-1:-1:-1;;;;;;;20654:48:0;;-1:-1:-1;;;20654:48:0;20597:105;:158;;;-1:-1:-1;;;;;;;;;;19071:40:0;;;20719:36;18962:157;26356:127;26421:4;26445:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26445:16:0;:30;;;26356:127::o;30338:174::-;30413:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30413:29:0;-1:-1:-1;;;;;30413:29:0;;;;;;;;:24;;30467:23;30413:24;30467:14;:23::i;:::-;-1:-1:-1;;;;;30458:46:0;;;;;;;;;;;30338:174;;:::o;26650:348::-;26743:4;26768:16;26776:7;26768;:16::i;:::-;26760:73;;;;-1:-1:-1;;;26760:73:0;;18054:2:1;26760:73:0;;;18036:21:1;18093:2;18073:18;;;18066:30;18132:34;18112:18;;;18105:62;-1:-1:-1;;;18183:18:1;;;18176:42;18235:19;;26760:73:0;17852:408:1;26760:73:0;26844:13;26860:23;26875:7;26860:14;:23::i;:::-;26844:39;;26913:5;-1:-1:-1;;;;;26902:16:0;:7;-1:-1:-1;;;;;26902:16:0;;:51;;;;26946:7;-1:-1:-1;;;;;26922:31:0;:20;26934:7;26922:11;:20::i;:::-;-1:-1:-1;;;;;26922:31:0;;26902:51;:87;;;-1:-1:-1;;;;;;23742:25:0;;;23718:4;23742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26957:32;26894:96;26650:348;-1:-1:-1;;;;26650:348:0:o;29642:578::-;29801:4;-1:-1:-1;;;;;29774:31:0;:23;29789:7;29774:14;:23::i;:::-;-1:-1:-1;;;;;29774:31:0;;29766:85;;;;-1:-1:-1;;;29766:85:0;;22627:2:1;29766:85:0;;;22609:21:1;22666:2;22646:18;;;22639:30;22705:34;22685:18;;;22678:62;-1:-1:-1;;;22756:18:1;;;22749:39;22805:19;;29766:85:0;22425:405:1;29766:85:0;-1:-1:-1;;;;;29870:16:0;;29862:65;;;;-1:-1:-1;;;29862:65:0;;16187:2:1;29862:65:0;;;16169:21:1;16226:2;16206:18;;;16199:30;16265:34;16245:18;;;16238:62;-1:-1:-1;;;16316:18:1;;;16309:34;16360:19;;29862:65:0;15985:400:1;29862:65:0;29940:39;29961:4;29967:2;29971:7;29940:20;:39::i;:::-;30044:29;30061:1;30065:7;30044:8;:29::i;:::-;-1:-1:-1;;;;;30086:15:0;;;;;;:9;:15;;;;;:20;;30105:1;;30086:15;:20;;30105:1;;30086:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30117:13:0;;;;;;:9;:13;;;;;:18;;30134:1;;30117:13;:18;;30134:1;;30117:18;:::i;:::-;;;;-1:-1:-1;;30146:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30146:21:0;-1:-1:-1;;;;;30146:21:0;;;;;;;;;30185:27;;30146:16;;30185:27;;;;;;;29642:578;;;:::o;52082:103::-;52131:7;52158:15;;52176:1;52158:19;;;;:::i;:::-;52151:26;;52082:103;:::o;28334:382::-;-1:-1:-1;;;;;28414:16:0;;28406:61;;;;-1:-1:-1;;;28406:61:0;;20458:2:1;28406:61:0;;;20440:21:1;;;20477:18;;;20470:30;20536:34;20516:18;;;20509:62;20588:18;;28406:61:0;20256:356:1;28406:61:0;28487:16;28495:7;28487;:16::i;:::-;28486:17;28478:58;;;;-1:-1:-1;;;28478:58:0;;15830:2:1;28478:58:0;;;15812:21:1;15869:2;15849:18;;;15842:30;15908;15888:18;;;15881:58;15956:18;;28478:58:0;15628:352:1;28478:58:0;28549:45;28578:1;28582:2;28586:7;28549:20;:45::i;:::-;-1:-1:-1;;;;;28607:13:0;;;;;;:9;:13;;;;;:18;;28624:1;;28607:13;:18;;28624:1;;28607:18;:::i;:::-;;;;-1:-1:-1;;28636:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28636:21:0;-1:-1:-1;;;;;28636:21:0;;;;;;;;28675:33;;28636:16;;;28675:33;;28636:16;;28675:33;28334:382;;:::o;52617:89::-;52695:3;52676:15;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;52617:89:0:o;42752:173::-;42827:6;;;-1:-1:-1;;;;;42844:17:0;;;-1:-1:-1;;;;;;42844:17:0;;;;;;;42877:40;;42827:6;;;42844:17;42827:6;;42877:40;;42808:16;;42877:40;42797:128;42752:173;:::o;44283:1270::-;44361:7;44581:9;:16;44601:2;44581:22;44577:969;;;44877:4;44862:20;;44856:27;44927:4;44912:20;;44906:27;44985:4;44970:20;;44964:27;44620:9;44956:36;45028:22;45036:4;44956:36;44856:27;44906;45028:7;:22::i;:::-;45021:29;;;;;;;44577:969;45072:9;:16;45092:2;45072:22;45068:478;;;45347:4;45332:20;;45326:27;45398:4;45383:20;;45377:27;45440:20;45448:4;45326:27;45377;45440:7;:20::i;:::-;45433:27;;;;;;45068:478;45493:41;;-1:-1:-1;;;45493:41:0;;14232:2:1;45493:41:0;;;14214:21:1;14271:2;14251:18;;;14244:30;14310:33;14290:18;;;14283:61;14361:18;;45493:41:0;14030:355:1;54888:184:0;54988:16;54996:7;54988;:16::i;:::-;54980:42;;;;-1:-1:-1;;;54980:42:0;;;;;;;:::i;:::-;55033:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;55080:388::-;55180:16;55188:7;55180;:16::i;:::-;55172:42;;;;-1:-1:-1;;;55172:42:0;;;;;;;:::i;:::-;55233:17;55251:9;55233:28;;;;;;:::i;:::-;;;;;;;;;;;;;;55265:1;55233:33;55225:57;;;;-1:-1:-1;;;55225:57:0;;26715:2:1;55225:57:0;;;26697:21:1;26754:2;26734:18;;;26727:30;-1:-1:-1;;;26773:18:1;;;26766:41;26824:18;;55225:57:0;26513:335:1;55225:57:0;55307:26;;;;:17;:26;;;;;55301:40;;;;;:::i;:::-;:45;;-1:-1:-1;55293:69:0;;;;-1:-1:-1;;;55293:69:0;;26715:2:1;55293:69:0;;;26697:21:1;26754:2;26734:18;;;26727:30;-1:-1:-1;;;26773:18:1;;;26766:41;26824:18;;55293:69:0;26513:335:1;55293:69:0;55404:7;55373:17;55391:9;55373:28;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:38;;;;55422:26;;;;:17;:26;;;;;;:38;;;;;;;;:::i;61477:407::-;61539:7;61559:13;61607:1;61597:7;:11;61593:259;;;-1:-1:-1;61633:9:0;;61593:259;;;61674:2;61664:7;:12;61660:192;;;-1:-1:-1;61701:13:0;;;:10;:13;;;;61660:192;;;61746:2;61736:7;:12;61732:120;;;-1:-1:-1;61784:1:0;61773:13;;:10;:13;;;;61732:120;;;-1:-1:-1;;61838:1:0;61827:13;;-1:-1:-1;61827:10:0;:13;;;;;61477:407::o;50872:475::-;50988:18;51009:17;:15;:17::i;:::-;50988:38;;51042:9;51037:102;51061:18;51057:1;:22;51037:102;;;51101:26;51107:3;51112:14;51125:1;51112:10;:14;:::i;51101:26::-;51081:3;;;;:::i;:::-;;;;51037:102;;;;51149:37;51167:18;51149:17;:37::i;:::-;51197:42;51220:18;51197:22;:42::i;61892:142::-;61966:13;;62000:16;;-1:-1:-1;;;;;61966:13:0;;;;:18;;61985:3;;61990:26;;:7;:26;:::i;:::-;:35;;62019:6;61990:35;:::i;:::-;61966:60;;-1:-1:-1;;;;;;61966:60:0;;;;;;;-1:-1:-1;;;;;10789:32:1;;;61966:60:0;;;10771:51:1;10838:18;;;10831:34;10744:18;;61966:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61892:142;;:::o;25728:315::-;25885:28;25895:4;25901:2;25905:7;25885:9;:28::i;:::-;25932:48;25955:4;25961:2;25965:7;25974:5;25932:22;:48::i;:::-;25924:111;;;;-1:-1:-1;;;25924:111:0;;;;;;;:::i;52919:108::-;52979:13;53012:7;53005:14;;;;;:::i;16405:723::-;16461:13;16682:10;16678:53;;-1:-1:-1;;16709:10:0;;;;;;;;;;;;-1:-1:-1;;;16709:10:0;;;;;16405:723::o;16678:53::-;16756:5;16741:12;16797:78;16804:9;;16797:78;;16830:8;;;;:::i;:::-;;-1:-1:-1;16853:10:0;;-1:-1:-1;16861:2:0;16853:10;;:::i;:::-;;;16797:78;;;16885:19;16917:6;16907:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16907:17:0;;16885:39;;16935:154;16942:10;;16935:154;;16969:11;16979:1;16969:11;;:::i;:::-;;-1:-1:-1;17038:10:0;17046:2;17038:5;:10;:::i;:::-;17025:24;;:2;:24;:::i;:::-;17012:39;;16995:6;17002;16995:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16995:56:0;;;;;;;;-1:-1:-1;17066:11:0;17075:2;17066:11;;:::i;:::-;;;16935:154;;52193:112;52250:7;52277:16;;52296:1;52277:20;;;;:::i;52714:98::-;52801:3;52781:16;;:23;;;;;;;:::i;36182:589::-;-1:-1:-1;;;;;36388:18:0;;36384:187;;36423:40;36455:7;37598:10;:17;;37571:24;;;;:15;:24;;;;;:44;;;37626:24;;;;;;;;;;;;37494:164;36423:40;36384:187;;;36493:2;-1:-1:-1;;;;;36485:10:0;:4;-1:-1:-1;;;;;36485:10:0;;36481:90;;36512:47;36545:4;36551:7;36512:32;:47::i;:::-;-1:-1:-1;;;;;36585:16:0;;36581:183;;36618:45;36655:7;36618:36;:45::i;36581:183::-;36691:4;-1:-1:-1;;;;;36685:10:0;:2;-1:-1:-1;;;;;36685:10:0;;36681:83;;36712:40;36740:2;36744:7;36712:27;:40::i;46315:1512::-;46443:7;47382:66;47368:80;;;47346:164;;;;-1:-1:-1;;;47346:164:0;;17306:2:1;47346:164:0;;;17288:21:1;17345:2;17325:18;;;17318:30;17384:34;17364:18;;;17357:62;-1:-1:-1;;;17435:18:1;;;17428:32;17477:19;;47346:164:0;17104:398:1;47346:164:0;47529:1;:7;;47534:2;47529:7;:18;;;;47540:1;:7;;47545:2;47540:7;47529:18;47521:65;;;;-1:-1:-1;;;47521:65:0;;20055:2:1;47521:65:0;;;20037:21:1;20094:2;20074:18;;;20067:30;20133:34;20113:18;;;20106:62;-1:-1:-1;;;20184:18:1;;;20177:32;20226:19;;47521:65:0;19853:398:1;47521:65:0;47701:24;;;47684:14;47701:24;;;;;;;;;13054:25:1;;;13127:4;13115:17;;13095:18;;;13088:45;;;;13149:18;;;13142:34;;;13192:18;;;13185:34;;;47701:24:0;;13026:19:1;;47701:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47701:24:0;;-1:-1:-1;;47701:24:0;;;-1:-1:-1;;;;;;;47744:20:0;;47736:57;;;;-1:-1:-1;;;47736:57:0;;13879:2:1;47736:57:0;;;13861:21:1;13918:2;13898:18;;;13891:30;13957:26;13937:18;;;13930:54;14001:18;;47736:57:0;13677:348:1;47736:57:0;47813:6;46315:1512;-1:-1:-1;;;;;46315:1512:0:o;45813:371::-;45924:7;-1:-1:-1;;;;;46011:75:0;;46113:3;46109:12;;;46123:2;46105:21;46154:22;46162:4;46105:21;46171:1;46011:75;46154:7;:22::i;:::-;46147:29;45813:371;-1:-1:-1;;;;;;45813:371:0:o;52820:91::-;52900:3;52884:12;;:19;;;;;;;:::i;31077:803::-;31232:4;-1:-1:-1;;;;;31253:13:0;;8465:20;8513:8;31249:624;;31289:72;;-1:-1:-1;;;31289:72:0;;-1:-1:-1;;;;;31289:36:0;;;;;:72;;15960:10;;31340:4;;31346:7;;31355:5;;31289:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31289:72:0;;;;;;;;-1:-1:-1;;31289:72:0;;;;;;;;;;;;:::i;:::-;;;31285:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31535:13:0;;31531:272;;31578:60;;-1:-1:-1;;;31578:60:0;;;;;;;:::i;31531:272::-;31753:6;31747:13;31738:6;31734:2;31730:15;31723:38;31285:533;-1:-1:-1;;;;;;31412:55:0;-1:-1:-1;;;31412:55:0;;-1:-1:-1;31405:62:0;;31249:624;-1:-1:-1;31857:4:0;31850:11;;38285:988;38551:22;38601:1;38576:22;38593:4;38576:16;:22::i;:::-;:26;;;;:::i;:::-;38613:18;38634:26;;;:17;:26;;;;;;38551:51;;-1:-1:-1;38767:28:0;;;38763:328;;-1:-1:-1;;;;;38834:18:0;;38812:19;38834:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38885:30;;;;;;:44;;;39002:30;;:17;:30;;;;;:43;;;38763:328;-1:-1:-1;39187:26:0;;;;:17;:26;;;;;;;;39180:33;;;-1:-1:-1;;;;;39231:18:0;;;;;:12;:18;;;;;:34;;;;;;;39224:41;38285:988::o;39568:1079::-;39846:10;:17;39821:22;;39846:21;;39866:1;;39846:21;:::i;:::-;39878:18;39899:24;;;:15;:24;;;;;;40272:10;:26;;39821:46;;-1:-1:-1;39899:24:0;;39821:46;;40272:26;;;;;;:::i;:::-;;;;;;;;;40250:48;;40336:11;40311:10;40322;40311:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40416:28;;;:15;:28;;;;;;;:41;;;40588:24;;;;;40581:31;40623:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39639:1008;;;39568:1079;:::o;37072:221::-;37157:14;37174:20;37191:2;37174:16;:20::i;:::-;-1:-1:-1;;;;;37205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37072:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:718:1;56:5;109:3;102:4;94:6;90:17;86:27;76:55;;127:1;124;117:12;76:55;163:6;150:20;189:18;226:2;222;219:10;216:36;;;232:18;;:::i;:::-;307:2;301:9;275:2;361:13;;-1:-1:-1;;357:22:1;;;381:2;353:31;349:40;337:53;;;405:18;;;425:22;;;402:46;399:72;;;451:18;;:::i;:::-;491:10;487:2;480:22;526:2;518:6;511:18;572:3;565:4;560:2;552:6;548:15;544:26;541:35;538:55;;;589:1;586;579:12;538:55;653:2;646:4;638:6;634:17;627:4;619:6;615:17;602:54;700:1;693:4;688:2;680:6;676:15;672:26;665:37;720:6;711:15;;;;;;14:718;;;;:::o;737:247::-;796:6;849:2;837:9;828:7;824:23;820:32;817:52;;;865:1;862;855:12;817:52;904:9;891:23;923:31;948:5;923:31;:::i;:::-;973:5;737:247;-1:-1:-1;;;737:247:1:o;989:388::-;1057:6;1065;1118:2;1106:9;1097:7;1093:23;1089:32;1086:52;;;1134:1;1131;1124:12;1086:52;1173:9;1160:23;1192:31;1217:5;1192:31;:::i;:::-;1242:5;-1:-1:-1;1299:2:1;1284:18;;1271:32;1312:33;1271:32;1312:33;:::i;:::-;1364:7;1354:17;;;989:388;;;;;:::o;1382:456::-;1459:6;1467;1475;1528:2;1516:9;1507:7;1503:23;1499:32;1496:52;;;1544:1;1541;1534:12;1496:52;1583:9;1570:23;1602:31;1627:5;1602:31;:::i;:::-;1652:5;-1:-1:-1;1709:2:1;1694:18;;1681:32;1722:33;1681:32;1722:33;:::i;:::-;1382:456;;1774:7;;-1:-1:-1;;;1828:2:1;1813:18;;;;1800:32;;1382:456::o;1843:665::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2071:9;2058:23;2090:31;2115:5;2090:31;:::i;:::-;2140:5;-1:-1:-1;2197:2:1;2182:18;;2169:32;2210:33;2169:32;2210:33;:::i;:::-;2262:7;-1:-1:-1;2316:2:1;2301:18;;2288:32;;-1:-1:-1;2371:2:1;2356:18;;2343:32;2398:18;2387:30;;2384:50;;;2430:1;2427;2420:12;2384:50;2453:49;2494:7;2485:6;2474:9;2470:22;2453:49;:::i;:::-;2443:59;;;1843:665;;;;;;;:::o;2513:382::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:52;;;2655:1;2652;2645:12;2607:52;2694:9;2681:23;2713:31;2738:5;2713:31;:::i;:::-;2763:5;-1:-1:-1;2820:2:1;2805:18;;2792:32;2833:30;2792:32;2833:30;:::i;2900:315::-;2968:6;2976;3029:2;3017:9;3008:7;3004:23;3000:32;2997:52;;;3045:1;3042;3035:12;2997:52;3084:9;3071:23;3103:31;3128:5;3103:31;:::i;:::-;3153:5;3205:2;3190:18;;;;3177:32;;-1:-1:-1;;;2900:315:1:o;3220:519::-;3303:6;3311;3319;3327;3380:3;3368:9;3359:7;3355:23;3351:33;3348:53;;;3397:1;3394;3387:12;3348:53;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3557:2:1;3542:18;;3529:32;;-1:-1:-1;3613:2:1;3598:18;;3585:32;3626:30;3585:32;3626:30;:::i;:::-;3220:519;;;;-1:-1:-1;3675:7:1;;3729:2;3714:18;3701:32;;-1:-1:-1;;3220:519:1:o;3744:245::-;3811:6;3864:2;3852:9;3843:7;3839:23;3835:32;3832:52;;;3880:1;3877;3870:12;3832:52;3912:9;3906:16;3931:28;3953:5;3931:28;:::i;3994:245::-;4052:6;4105:2;4093:9;4084:7;4080:23;4076:32;4073:52;;;4121:1;4118;4111:12;4073:52;4160:9;4147:23;4179:30;4203:5;4179:30;:::i;4244:249::-;4313:6;4366:2;4354:9;4345:7;4341:23;4337:32;4334:52;;;4382:1;4379;4372:12;4334:52;4414:9;4408:16;4433:30;4457:5;4433:30;:::i;4498:877::-;4622:6;4630;4638;4646;4654;4707:3;4695:9;4686:7;4682:23;4678:33;4675:53;;;4724:1;4721;4714:12;4675:53;4764:9;4751:23;4793:18;4834:2;4826:6;4823:14;4820:34;;;4850:1;4847;4840:12;4820:34;4873:49;4914:7;4905:6;4894:9;4890:22;4873:49;:::i;:::-;4863:59;;4969:2;4958:9;4954:18;4941:32;4931:42;;5020:2;5009:9;5005:18;4992:32;4982:42;;5077:2;5066:9;5062:18;5049:32;5033:48;;5106:2;5096:8;5093:16;5090:36;;;5122:1;5119;5112:12;5090:36;5145:51;5188:7;5177:8;5166:9;5162:24;5145:51;:::i;:::-;5135:61;;5249:3;5238:9;5234:19;5221:33;5205:49;;5279:2;5269:8;5266:16;5263:36;;;5295:1;5292;5285:12;5263:36;;5318:51;5361:7;5350:8;5339:9;5335:24;5318:51;:::i;:::-;5308:61;;;4498:877;;;;;;;;:::o;5380:594::-;5484:6;5492;5500;5508;5516;5569:3;5557:9;5548:7;5544:23;5540:33;5537:53;;;5586:1;5583;5576:12;5537:53;5626:9;5613:23;5659:18;5651:6;5648:30;5645:50;;;5691:1;5688;5681:12;5645:50;5714:49;5755:7;5746:6;5735:9;5731:22;5714:49;:::i;:::-;5704:59;5810:2;5795:18;;5782:32;;-1:-1:-1;5861:2:1;5846:18;;5833:32;;5912:2;5897:18;;5884:32;;-1:-1:-1;5963:3:1;5948:19;5935:33;;-1:-1:-1;5380:594:1;-1:-1:-1;;;;5380:594:1:o;6246:321::-;6315:6;6368:2;6356:9;6347:7;6343:23;6339:32;6336:52;;;6384:1;6381;6374:12;6336:52;6424:9;6411:23;6457:18;6449:6;6446:30;6443:50;;;6489:1;6486;6479:12;6443:50;6512:49;6553:7;6544:6;6533:9;6529:22;6512:49;:::i;6572:180::-;6631:6;6684:2;6672:9;6663:7;6659:23;6655:32;6652:52;;;6700:1;6697;6690:12;6652:52;-1:-1:-1;6723:23:1;;6572:180;-1:-1:-1;6572:180:1:o;6757:184::-;6827:6;6880:2;6868:9;6859:7;6855:23;6851:32;6848:52;;;6896:1;6893;6886:12;6848:52;-1:-1:-1;6919:16:1;;6757:184;-1:-1:-1;6757:184:1:o;6946:377::-;7020:6;7028;7036;7089:2;7077:9;7068:7;7064:23;7060:32;7057:52;;;7105:1;7102;7095:12;7057:52;7141:9;7128:23;7118:33;;7201:2;7190:9;7186:18;7173:32;7214:28;7236:5;7214:28;:::i;7328:248::-;7396:6;7404;7457:2;7445:9;7436:7;7432:23;7428:32;7425:52;;;7473:1;7470;7463:12;7425:52;-1:-1:-1;;7496:23:1;;;7566:2;7551:18;;;7538:32;;-1:-1:-1;7328:248:1:o;7581:257::-;7622:3;7660:5;7654:12;7687:6;7682:3;7675:19;7703:63;7759:6;7752:4;7747:3;7743:14;7736:4;7729:5;7725:16;7703:63;:::i;:::-;7820:2;7799:15;-1:-1:-1;;7795:29:1;7786:39;;;;7827:4;7782:50;;7581:257;-1:-1:-1;;7581:257:1:o;7843:276::-;7974:3;8012:6;8006:13;8028:53;8074:6;8069:3;8062:4;8054:6;8050:17;8028:53;:::i;:::-;8097:16;;;;;7843:276;-1:-1:-1;;7843:276:1:o;8124:470::-;8303:3;8341:6;8335:13;8357:53;8403:6;8398:3;8391:4;8383:6;8379:17;8357:53;:::i;:::-;8473:13;;8432:16;;;;8495:57;8473:13;8432:16;8529:4;8517:17;;8495:57;:::i;:::-;8568:20;;8124:470;-1:-1:-1;;;;8124:470:1:o;8984:424::-;-1:-1:-1;;;9241:3:1;9234:22;9216:3;9285:6;9279:13;9301:61;9355:6;9351:1;9346:3;9342:11;9335:4;9327:6;9323:17;9301:61;:::i;:::-;9382:16;;;;9400:1;9378:24;;8984:424;-1:-1:-1;;8984:424:1:o;9621:488::-;-1:-1:-1;;;;;9890:15:1;;;9872:34;;9942:15;;9937:2;9922:18;;9915:43;9989:2;9974:18;;9967:34;;;10037:3;10032:2;10017:18;;10010:31;;;9815:4;;10058:45;;10083:19;;10075:6;10058:45;:::i;10114:478::-;-1:-1:-1;;;;;10339:32:1;;10321:51;;10408:2;10403;10388:18;;10381:30;;;-1:-1:-1;;10434:44:1;;10459:18;;10451:6;10434:44;:::i;:::-;10526:9;10518:6;10514:22;10509:2;10498:9;10494:18;10487:50;10554:32;10579:6;10571;10554:32;:::i;10876:623::-;11186:1;11182;11177:3;11173:11;11169:19;11161:6;11157:32;11146:9;11139:51;11226:6;11221:2;11210:9;11206:18;11199:34;11269:6;11264:2;11253:9;11249:18;11242:34;11312:3;11307:2;11296:9;11292:18;11285:31;11120:4;11339:45;11379:3;11368:9;11364:19;11356:6;11339:45;:::i;:::-;11433:9;11425:6;11421:22;11415:3;11404:9;11400:19;11393:51;11461:32;11486:6;11478;11461:32;:::i;:::-;11453:40;10876:623;-1:-1:-1;;;;;;;;10876:623:1:o;11998:632::-;12169:2;12221:21;;;12291:13;;12194:18;;;12313:22;;;12140:4;;12169:2;12392:15;;;;12366:2;12351:18;;;12140:4;12435:169;12449:6;12446:1;12443:13;12435:169;;;12510:13;;12498:26;;12579:15;;;;12544:12;;;;12471:1;12464:9;12435:169;;;-1:-1:-1;12621:3:1;;11998:632;-1:-1:-1;;;;;;11998:632:1:o;13453:219::-;13602:2;13591:9;13584:21;13565:4;13622:44;13662:2;13651:9;13647:18;13639:6;13622:44;:::i;14802:414::-;15004:2;14986:21;;;15043:2;15023:18;;;15016:30;15082:34;15077:2;15062:18;;15055:62;-1:-1:-1;;;15148:2:1;15133:18;;15126:48;15206:3;15191:19;;14802:414::o;20617:337::-;20819:2;20801:21;;;20858:2;20838:18;;;20831:30;-1:-1:-1;;;20892:2:1;20877:18;;20870:43;20945:2;20930:18;;20617:337::o;21719:340::-;21921:2;21903:21;;;21960:2;21940:18;;;21933:30;-1:-1:-1;;;21994:2:1;21979:18;;21972:46;22050:2;22035:18;;21719:340::o;22064:356::-;22266:2;22248:21;;;22285:18;;;22278:30;22344:34;22339:2;22324:18;;22317:62;22411:2;22396:18;;22064:356::o;23948:341::-;24150:2;24132:21;;;24189:2;24169:18;;;24162:30;-1:-1:-1;;;24223:2:1;24208:18;;24201:47;24280:2;24265:18;;23948:341::o;24294:413::-;24496:2;24478:21;;;24535:2;24515:18;;;24508:30;24574:34;24569:2;24554:18;;24547:62;-1:-1:-1;;;24640:2:1;24625:18;;24618:47;24697:3;24682:19;;24294:413::o;27298:128::-;27338:3;27369:1;27365:6;27362:1;27359:13;27356:39;;;27375:18;;:::i;:::-;-1:-1:-1;27411:9:1;;27298:128::o;27431:120::-;27471:1;27497;27487:35;;27502:18;;:::i;:::-;-1:-1:-1;27536:9:1;;27431:120::o;27556:168::-;27596:7;27662:1;27658;27654:6;27650:14;27647:1;27644:21;27639:1;27632:9;27625:17;27621:45;27618:71;;;27669:18;;:::i;:::-;-1:-1:-1;27709:9:1;;27556:168::o;27729:125::-;27769:4;27797:1;27794;27791:8;27788:34;;;27802:18;;:::i;:::-;-1:-1:-1;27839:9:1;;27729:125::o;27859:258::-;27931:1;27941:113;27955:6;27952:1;27949:13;27941:113;;;28031:11;;;28025:18;28012:11;;;28005:39;27977:2;27970:10;27941:113;;;28072:6;28069:1;28066:13;28063:48;;;-1:-1:-1;;28107:1:1;28089:16;;28082:27;27859:258::o;28122:380::-;28201:1;28197:12;;;;28244;;;28265:61;;28319:4;28311:6;28307:17;28297:27;;28265:61;28372:2;28364:6;28361:14;28341:18;28338:38;28335:161;;;28418:10;28413:3;28409:20;28406:1;28399:31;28453:4;28450:1;28443:15;28481:4;28478:1;28471:15;28335:161;;28122:380;;;:::o;28507:135::-;28546:3;-1:-1:-1;;28567:17:1;;28564:43;;;28587:18;;:::i;:::-;-1:-1:-1;28634:1:1;28623:13;;28507:135::o;28647:112::-;28679:1;28705;28695:35;;28710:18;;:::i;:::-;-1:-1:-1;28744:9:1;;28647:112::o;28764:127::-;28825:10;28820:3;28816:20;28813:1;28806:31;28856:4;28853:1;28846:15;28880:4;28877:1;28870:15;28896:127;28957:10;28952:3;28948:20;28945:1;28938:31;28988:4;28985:1;28978:15;29012:4;29009:1;29002:15;29028:127;29089:10;29084:3;29080:20;29077:1;29070:31;29120:4;29117:1;29110:15;29144:4;29141:1;29134:15;29160:127;29221:10;29216:3;29212:20;29209:1;29202:31;29252:4;29249:1;29242:15;29276:4;29273:1;29266:15;29292:127;29353:10;29348:3;29344:20;29341:1;29334:31;29384:4;29381:1;29374:15;29408:4;29405:1;29398:15;29424:131;-1:-1:-1;;;;;29499:31:1;;29489:42;;29479:70;;29545:1;29542;29535:12;29560:118;29646:5;29639:13;29632:21;29625:5;29622:32;29612:60;;29668:1;29665;29658:12;29683:131;-1:-1:-1;;;;;;29757:32:1;;29747:43;;29737:71;;29804:1;29801;29794:12

Swarm Source

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