ETH Price: $3,248.24 (+2.06%)
Gas: 2 Gwei

Token

Message to Martians (MARTIAN)
 

Overview

Max Total Supply

590 MARTIAN

Holders

368

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
iheartart.eth
Balance
1 MARTIAN
0x050EE024a0fFd8b9bd383271835b27Dd66c3feC3
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:
MessageToMartians

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

//SPDX-License-Identifier: MIT
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;
    }
}


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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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




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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

interface iFont {
    function fontBase64() external view returns (string memory);
}

interface iMoonbags {
    function getMoonBag(address to_, uint tokenId_) external;
}

interface iTransponders {
    function mintTransponder(address to_, uint tokenId) external;
}

contract MessageToMartians is ERC721Enumerable, Ownable {
    
    uint public maxTokens = 8888;
    uint public mintingCost = 0.1 ether;
    bool public mintingEnabled = false;
    uint public maxMintsPerTx = 20;

    address public moonBagsAddress;
    address public transpondersAddress;
    
    string public messageToMartians;
    uint public maxStringLength = 20;
    address public fontAddress;
    
    bool public allowSpaces = false;

    uint public maxSupplies = 8888;
    uint public suppliesMinted = 0;
    
    mapping(uint => string) words;
    mapping(uint => uint) transpondersUsed;
    
    event MintSupplies(address to, uint tokenId);
    event Mint(address to, uint tokenId);

    constructor() ERC721("Message to Martians", "MARTIAN") {}

    function fontBase64() internal view returns (string memory) {
        return iFont(fontAddress).fontBase64();
    }
    
    // modifiers
    modifier onlySender() {
        require(msg.sender == tx.origin, "Sender must be origin!");
        _;
    }
    modifier publicMinting() {
        require(mintingEnabled == true, "Public Minting is not available!");
        _;
    }
    
    // owner tools
    function ownerWithdrawEther() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    function setMintingCost(uint mintingCost_) external onlyOwner {
        mintingCost = mintingCost_;
    }
    function setMintingStatus(bool bool_) external onlyOwner {
        mintingEnabled = bool_;
    }
    function setMaxStringLength(uint maxLength_) external onlyOwner {
        maxStringLength = maxLength_;
    }
    function setAllowSpaces(bool bool_) external onlyOwner {
        allowSpaces = bool_;
    }
    function setMoonBagsAddress(address address_) external onlyOwner { 
        moonBagsAddress = address_;
    }
    function setTranspondersAddress(address address_) external onlyOwner {
        transpondersAddress = address_;
    }
    function setFontAddress(address address_) external onlyOwner {
        fontAddress = address_;
    }
    function setMaxMintsPerTx(uint uint_) external onlyOwner {
        maxMintsPerTx = uint_;
    }
    
    // internal workers
    function stringLength(string memory string_) public pure returns (uint) {
        return bytes(string_).length;
    }
    function onlyAllowedCharacters(string memory string_) public view returns (bool) {
        bytes memory _strBytes = bytes(string_);
        uint _strLen = _strBytes.length;
        for (uint i = 0; i < _strLen; i++) {
            bytes1 _letterBytes1 = _strBytes[i];
            bytes1 _bottomBytes;
            
            if (allowSpaces) {
                _bottomBytes = 0x20;
            } else {
                _bottomBytes = 0x21;
            }
            
            if (_letterBytes1 < _bottomBytes || _letterBytes1 > 0x7A || _letterBytes1 == 0x26 || _letterBytes1 == 0x22 || _letterBytes1 == 0x3C || _letterBytes1 == 0x3E) {
                    return false;
            }     
        }
        return true;
    }
    function addToString(string memory string_, string memory add_) internal pure returns (string memory) {
        string memory _add = string(abi.encodePacked(add_, " "));
        return string(abi.encodePacked(string_, _add));
    }

    function getTransponderStatus(uint tokenId_) public view returns (bool) {
        return (transpondersUsed[tokenId_] == 0);
    }

    function ownerMintSupplies(uint amount_) external onlyOwner {
        require(suppliesMinted + amount_ <= maxSupplies, "Not enough supplies.");
        require(amount_ <= maxMintsPerTx, "Over Max Mints per TX.");
        for (uint i = 0; i < amount_; i++) {
            uint _tokenId = suppliesMinted;
            suppliesMinted++; // add supplies minted count
            iTransponders(transpondersAddress).mintTransponder(msg.sender, _tokenId); 
            iMoonbags(moonBagsAddress).getMoonBag(msg.sender, _tokenId); // mint capsule
            emit MintSupplies(msg.sender, _tokenId);
        }
    }

    function mintSupplies(uint amount_) payable external onlySender publicMinting {
        require(suppliesMinted + amount_ <= maxSupplies, "Not enough supplies.");
        require(amount_ <= maxMintsPerTx, "Over Max Mints per TX.");
        require(msg.value == (mintingCost * amount_), "Invalid value.");
        for (uint i = 0; i < amount_; i++) {
            uint _tokenId = suppliesMinted;
            suppliesMinted++; // add supplies minted count
            iTransponders(transpondersAddress).mintTransponder(msg.sender, _tokenId); 
            iMoonbags(moonBagsAddress).getMoonBag(msg.sender, _tokenId); // mint capsule
            emit MintSupplies(msg.sender, _tokenId);
        }
    }

    function writeMessage(uint transponderId_, string memory word_) external onlySender {
        // require(totalSupply() + 1 <= maxTokens, "No more broadcasts remaining.");
        require(IERC721(transpondersAddress).ownerOf(transponderId_) == msg.sender, "You don't own this transponder.");
        require(transpondersUsed[transponderId_] == 0, "Transponder already used to write.");
        require(stringLength(word_) <= maxStringLength, "Phrase is too long!");
        require(onlyAllowedCharacters(word_), "Phrase contains unallowed characters!");
        transpondersUsed[transponderId_]++;
        messageToMartians = addToString(messageToMartians, word_);
        uint _tokenId = totalSupply();
        words[_tokenId] = word_;
        _mint(msg.sender, _tokenId);
        emit Mint(msg.sender, _tokenId);
    }

    function getTokensOfAddress(address address_) public view returns (uint[] memory) {
        uint _tokenBalance = balanceOf(address_);
        uint[] memory _tokenIds = new uint[](_tokenBalance);
        for (uint i = 0; i < _tokenBalance; i++) {
            _tokenIds[i] = tokenOfOwnerByIndex(address_, i);
        }
        return _tokenIds;
    }

    // function testMint(uint amount_) external {
    //     require(suppliesMinted + amount_ <= maxSupplies, "Not enough supplies.");
    //     for (uint i = 0; i < amount_; i ++) {
    //         uint _tokenId = suppliesMinted;
    //         suppliesMinted++;
    //         iTransponders(transpondersAddress).mintTransponder(msg.sender, _tokenId); 
    //         iMoonbags(moonBagsAddress).getMoonBag(msg.sender, _tokenId); // mint capsule
    //         emit MintSupplies(msg.sender, _tokenId);
    //     }
    // }
    
    // function testMint(string memory word_) external {
    //     require(totalSupply() + 1 <= maxTokens, "No phrases remaining!"); 
    //     require(stringLength(word_) <= maxStringLength, "Phrase is too long!");
    //     require(onlyAllowedCharacters(word_), "Phrase contains unallowed characters!");
    //     messageToMartians = addToString(messageToMartians, word_);
    //     words[totalSupply()] = word_;
    //     emit Mint(msg.sender, totalSupply());
    //     _mint(msg.sender, totalSupply());
    // }
    
    // // owner functions
    // function ownerWriteWord(address to_, string memory word_) external onlyOwner {
    //     require(totalSupply() + 1 <= maxTokens, "No phrases remaining!"); 
    //     require(stringLength(word_) <= maxStringLength, "Phrase is too long!");
    //     require(onlyAllowedCharacters(word_), "Phrase contains unallowed characters!");
    //     messageToMartians = addToString(messageToMartians, word_);
    //     words[totalSupply()] = word_;
    //     emit Mint(to_, totalSupply());
    //     iMoonbags(moonBagsAddress).getMoonBag(to_, totalSupply());
    //     _mint(to_, totalSupply());
    // }
    
    // // external functions
    // function writeWord(string memory word_) payable external onlySender publicMinting {
    //     require(totalSupply() + 1 <= maxTokens, "No phrases remaining!"); 
    //     require(stringLength(word_) <= maxStringLength, "Phrase is too long!");
    //     require(onlyAllowedCharacters(word_), "Phrase contains unallowed characters!");
    //     require(msg.value == mintingCost, "Invalid value!");
    //     messageToMartians = addToString(messageToMartians, word_);
    //     words[totalSupply()] = word_;
    //     emit Mint(msg.sender, totalSupply());
    //     iMoonbags(moonBagsAddress).getMoonBag(msg.sender, totalSupply());
    //     _mint(msg.sender, totalSupply());
    // }
    
    // public view functions
    function readMessage() public view returns (string memory) {
        return messageToMartians;
    }
    function readWord(uint tokenId_) public view returns (string memory) {
        return words[tokenId_];
    }

    string public tokenName = "Message to Martians";
    string public tokenDescription = "Message to Martians is a message stored in the ethereum blockchain, awaiting the future Martians to read one day. As a token of appreciation, writers of our message receive an NFT of their written word as well as a Space Capsule containing their Martian gear. https://messagetomartians.com";
    string public tokenExternalUrl = "https://messagetomartians.com";

    function setTokenName(string memory tokenName_) external onlyOwner {
        tokenName = tokenName_;
    }
    function setTokenDescription(string memory tokenDescription_) external onlyOwner {
        tokenDescription = tokenDescription_;
    }
    function setTokenExternalUrl(string memory tokenExternalUrl_) external onlyOwner {
        tokenExternalUrl = tokenExternalUrl_;
    }

    function tokenURI(uint tokenId_) public view override returns (string memory) {
        string memory _word = readWord(tokenId_);
        string memory _type = "word";
        string memory _wordString = _word;
        uint _wordLength = bytes(_word).length;
        string memory _header = string(abi.encodePacked('data:application/json;utf8, '));
        string memory _name = string(abi.encodePacked('{"name": "', tokenName, ' #', Strings.toString(tokenId_), '",'));
        string memory _image = string(abi.encodePacked('"image":', '"data:image/svg+xml;utf8, ', "<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500' style='background-color:#000000'><style>@font-face{font-family:'Minecraft'; src:url('data:application/octet-stream;base64,", fontBase64() ,"');</style><text fill='#00fff2' font-family='Minecraft' x='50%' y='50%' dominant-baseline='middle' text-anchor='middle' font-size='32px'>",_wordString,'</text></svg>",'));
        string memory _external_url = string(abi.encodePacked('"external_url": "', tokenExternalUrl ,'",'));
        string memory _description = string(abi.encodePacked('"description": "', tokenDescription ,'",'));
        string memory _attributes = string(abi.encodePacked('"attributes":[{"trait_type": "type", "value": "', _type, '"}, {"trait_type": "phrase", "value": "', _wordString, '"}, '));
        _attributes = string(abi.encodePacked(_attributes, '{"trait_type": "length", "value": "', Strings.toString(_wordLength), '"}, {"trait_type": "message position", "value": "', Strings.toString(tokenId_ + 1), '"}]}'));
        string memory _metadata = string(abi.encodePacked(_header, _name, _image, _external_url, _description, _attributes));
        return _metadata;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MintSupplies","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowSpaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"fontAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address_","type":"address"}],"name":"getTokensOfAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"getTransponderStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStringLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"messageToMartians","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mintSupplies","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moonBagsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"string_","type":"string"}],"name":"onlyAllowedCharacters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"ownerMintSupplies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWithdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"readMessage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"readWord","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setAllowSpaces","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":"address","name":"address_","type":"address"}],"name":"setFontAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"uint_","type":"uint256"}],"name":"setMaxMintsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxLength_","type":"uint256"}],"name":"setMaxStringLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintingCost_","type":"uint256"}],"name":"setMintingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setMoonBagsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenDescription_","type":"string"}],"name":"setTokenDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenExternalUrl_","type":"string"}],"name":"setTokenExternalUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenName_","type":"string"}],"name":"setTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setTranspondersAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"string_","type":"string"}],"name":"stringLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"suppliesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenExternalUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","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":[],"name":"transpondersAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"transponderId_","type":"uint256"},{"internalType":"string","name":"word_","type":"string"}],"name":"writeMessage","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6122b8600b81905567016345785d8a0000600c55600d805460ff191690556014600e81905560128190556013805460ff60a01b19168155919055600060155560c06040526080819052724d65737361676520746f204d61727469616e7360681b60a0908152620000739160189190620001e6565b50604051806101600160405280610121815260200162003b9d61012191398051620000a791601991602090910190620001e6565b5060408051808201909152601d8082527f68747470733a2f2f6d657373616765746f6d61727469616e732e636f6d0000006020909201918252620000ee91601a91620001e6565b50348015620000fc57600080fd5b5060408051808201825260138152724d65737361676520746f204d61727469616e7360681b60208083019182528351808501909452600784526626a0a92a24a0a760c91b9084015281519192916200015791600091620001e6565b5080516200016d906001906020840190620001e6565b5050506200018a620001846200019060201b60201c565b62000194565b620002c9565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001f4906200028c565b90600052602060002090601f01602090048101928262000218576000855562000263565b82601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b5b8082111562000271576000815560010162000276565b600181811c90821680620002a157607f821691505b60208210811415620002c357634e487b7160e01b600052602260045260246000fd5b50919050565b6138c480620002d96000396000f3fe60806040526004361061034e5760003560e01c80636c02a931116101c6578063b88d4fde116100f7578063e1829d2d11610095578063e985e9c51161006f578063e985e9c514610963578063ebf98abf146109ac578063ee0b4c35146109c2578063f2fde38b146109e257600080fd5b8063e1829d2d1461090d578063e4c79e451461092d578063e83157421461094d57600080fd5b8063c7af751a116100d1578063c7af751a146108a1578063c87b56dd146108b7578063da084fd0146108d7578063dc30158b146108f757600080fd5b8063b88d4fde1461084e578063bc11a4d61461086e578063c2e90b6a1461088e57600080fd5b806395d89b41116101645780639fd6db121161013e5780639fd6db12146107d5578063a22cb465146107ef578063a4f29aad1461080f578063b118060e1461082f57600080fd5b806395d89b411461078a57806397dbfcfb1461079f5780639b898477146107bf57600080fd5b80637420aa36116101a05780637420aa361461070c57806375535fb71461072c578063871cd69a1461074c5780638da5cb5b1461076c57600080fd5b80636c02a931146106c257806370a08231146106d7578063715018a6146106f757600080fd5b806325e6f516116102a05780635648051c1161023e5780636128e136116102185780636128e136146106415780636285abf4146106615780636352211e1461068157806369ab4315146106a157600080fd5b80635648051c146105f75780635895e44a1461060c57806358964dc21461062157600080fd5b806342842e0e1161027a57806342842e0e1461058157806348076aae146105a15780634f6ccce7146105b757806352332c18146105d757600080fd5b806325e6f5161461052c5780632f745c5914610541578063394d88d41461056157600080fd5b8063081812fc1161030d578063174da4a2116102e7578063174da4a21461049f57806318160ddd146104bf5780631db5b77b146104de57806323b872dd1461050c57600080fd5b8063081812fc1461041a578063095ea7b31461045257806314de39191461047257600080fd5b8062bad0d314610353578062d5da021461037e57806301ffc9a7146103a0578063031d5d01146103d057806304dd44dd146103e557806306fdde0314610405575b600080fd5b34801561035f57600080fd5b50610368610a02565b60405161037591906135b9565b60405180910390f35b34801561038a57600080fd5b5061039e610399366004612e31565b610a90565b005b3480156103ac57600080fd5b506103c06103bb366004612df7565b610ada565b6040519015158152602001610375565b3480156103dc57600080fd5b50610368610b05565b3480156103f157600080fd5b5061039e610400366004612c47565b610b97565b34801561041157600080fd5b50610368610be3565b34801561042657600080fd5b5061043a610435366004612edd565b610bf2565b6040516001600160a01b039091168152602001610375565b34801561045e57600080fd5b5061039e61046d366004612db0565b610c87565b34801561047e57600080fd5b5061049261048d366004612c47565b610d9d565b6040516103759190613575565b3480156104ab57600080fd5b5061039e6104ba366004612edd565b610e3f565b3480156104cb57600080fd5b506008545b604051908152602001610375565b3480156104ea57600080fd5b506103c06104f9366004612edd565b6000908152601760205260409020541590565b34801561051857600080fd5b5061039e610527366004612cba565b610e6e565b34801561053857600080fd5b50610368610e9f565b34801561054d57600080fd5b506104d061055c366004612db0565b610eac565b34801561056d57600080fd5b5060135461043a906001600160a01b031681565b34801561058d57600080fd5b5061039e61059c366004612cba565b610f42565b3480156105ad57600080fd5b506104d060145481565b3480156105c357600080fd5b506104d06105d2366004612edd565b610f5d565b3480156105e357600080fd5b5061039e6105f2366004612edd565b610ff0565b34801561060357600080fd5b5061036861101f565b34801561061857600080fd5b5061039e61102c565b34801561062d57600080fd5b5060105461043a906001600160a01b031681565b34801561064d57600080fd5b5061039e61065c366004612c47565b611085565b34801561066d57600080fd5b5061039e61067c366004612ddc565b6110d1565b34801561068d57600080fd5b5061043a61069c366004612edd565b611119565b3480156106ad57600080fd5b506013546103c090600160a01b900460ff1681565b3480156106ce57600080fd5b50610368611190565b3480156106e357600080fd5b506104d06106f2366004612c47565b61119d565b34801561070357600080fd5b5061039e611224565b34801561071857600080fd5b5061039e610727366004612ddc565b61125a565b34801561073857600080fd5b50610368610747366004612edd565b611297565b34801561075857600080fd5b5061039e610767366004612edd565b611339565b34801561077857600080fd5b50600a546001600160a01b031661043a565b34801561079657600080fd5b5061036861153b565b3480156107ab57600080fd5b50600f5461043a906001600160a01b031681565b3480156107cb57600080fd5b506104d060125481565b3480156107e157600080fd5b50600d546103c09060ff1681565b3480156107fb57600080fd5b5061039e61080a366004612d7b565b61154a565b34801561081b57600080fd5b5061039e61082a366004612e31565b61160f565b34801561083b57600080fd5b506104d061084a366004612e31565b5190565b34801561085a57600080fd5b5061039e610869366004612cfb565b61164c565b34801561087a57600080fd5b5061039e610889366004612e31565b611684565b61039e61089c366004612edd565b6116c1565b3480156108ad57600080fd5b506104d060155481565b3480156108c357600080fd5b506103686108d2366004612edd565b611985565b3480156108e357600080fd5b5061039e6108f2366004612ef6565b611b48565b34801561090357600080fd5b506104d0600e5481565b34801561091957600080fd5b506103c0610928366004612e31565b611eb5565b34801561093957600080fd5b5061039e610948366004612c47565b611fcf565b34801561095957600080fd5b506104d0600b5481565b34801561096f57600080fd5b506103c061097e366004612c81565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109b857600080fd5b506104d0600c5481565b3480156109ce57600080fd5b5061039e6109dd366004612edd565b61201b565b3480156109ee57600080fd5b5061039e6109fd366004612c47565b61204a565b60118054610a0f9061378b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b9061378b565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b505050505081565b600a546001600160a01b03163314610ac35760405162461bcd60e51b8152600401610aba9061361e565b60405180910390fd5b8051610ad6906019906020840190612b34565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610aff5750610aff826120e2565b92915050565b606060118054610b149061378b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b409061378b565b8015610b8d5780601f10610b6257610100808354040283529160200191610b8d565b820191906000526020600020905b815481529060010190602001808311610b7057829003601f168201915b5050505050905090565b600a546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610aba9061361e565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610b149061378b565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aba565b506000908152600460205260409020546001600160a01b031690565b6000610c9282611119565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610aba565b336001600160a01b0382161480610d1c5750610d1c813361097e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aba565b610d988383612132565b505050565b60606000610daa8361119d565b905060008167ffffffffffffffff811115610dc757610dc761384d565b604051908082528060200260200182016040528015610df0578160200160208202803683370190505b50905060005b82811015610e3757610e088582610eac565b828281518110610e1a57610e1a613837565b602090810291909101015280610e2f816137c6565b915050610df6565b509392505050565b600a546001600160a01b03163314610e695760405162461bcd60e51b8152600401610aba9061361e565b600e55565b610e7833826121a0565b610e945760405162461bcd60e51b8152600401610aba90613653565b610d98838383612297565b60198054610a0f9061378b565b6000610eb78361119d565b8210610f195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610aba565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d988383836040518060200160405280600081525061164c565b6000610f6860085490565b8210610fcb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610aba565b60088281548110610fde57610fde613837565b90600052602060002001549050919050565b600a546001600160a01b0316331461101a5760405162461bcd60e51b8152600401610aba9061361e565b601255565b601a8054610a0f9061378b565b600a546001600160a01b031633146110565760405162461bcd60e51b8152600401610aba9061361e565b60405133904780156108fc02916000818181858888f19350505050158015611082573d6000803e3d6000fd5b50565b600a546001600160a01b031633146110af5760405162461bcd60e51b8152600401610aba9061361e565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610aba9061361e565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260408120546001600160a01b031680610aff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610aba565b60188054610a0f9061378b565b60006001600160a01b0382166112085760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610aba565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610aba9061361e565b6112586000612442565b565b600a546001600160a01b031633146112845760405162461bcd60e51b8152600401610aba9061361e565b600d805460ff1916911515919091179055565b60008181526016602052604090208054606091906112b49061378b565b80601f01602080910402602001604051908101604052809291908181526020018280546112e09061378b565b801561132d5780601f106113025761010080835404028352916020019161132d565b820191906000526020600020905b81548152906001019060200180831161131057829003601f168201915b50505050509050919050565b600a546001600160a01b031633146113635760405162461bcd60e51b8152600401610aba9061361e565b6014548160155461137491906136fd565b11156113b95760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41039bab8383634b2b99760611b6044820152606401610aba565b600e548111156114045760405162461bcd60e51b815260206004820152601660248201527527bb32b91026b0bc1026b4b73a39903832b9102a2c1760511b6044820152606401610aba565b60005b81811015610ad657601580549081906000611421836137c6565b909155505060105460405163276d855f60e11b8152336004820152602481018390526001600160a01b0390911690634edb0abe90604401600060405180830381600087803b15801561147257600080fd5b505af1158015611486573d6000803e3d6000fd5b5050600f5460405163503d47bb60e11b8152336004820152602481018590526001600160a01b03909116925063a07a8f769150604401600060405180830381600087803b1580156114d657600080fd5b505af11580156114ea573d6000803e3d6000fd5b505060408051338152602081018590527f58c56899438364ac5ae60466110ad7032b2c0184d6d5e86814984bfefd6a1406935001905060405180910390a15080611533816137c6565b915050611407565b606060018054610b149061378b565b6001600160a01b0382163314156115a35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aba565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146116395760405162461bcd60e51b8152600401610aba9061361e565b8051610ad6906018906020840190612b34565b61165633836121a0565b6116725760405162461bcd60e51b8152600401610aba90613653565b61167e84848484612494565b50505050565b600a546001600160a01b031633146116ae5760405162461bcd60e51b8152600401610aba9061361e565b8051610ad690601a906020840190612b34565b3332146117095760405162461bcd60e51b815260206004820152601660248201527553656e646572206d757374206265206f726967696e2160501b6044820152606401610aba565b600d5460ff1615156001146117605760405162461bcd60e51b815260206004820181905260248201527f5075626c6963204d696e74696e67206973206e6f7420617661696c61626c65216044820152606401610aba565b6014548160155461177191906136fd565b11156117b65760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41039bab8383634b2b99760611b6044820152606401610aba565b600e548111156118015760405162461bcd60e51b815260206004820152601660248201527527bb32b91026b0bc1026b4b73a39903832b9102a2c1760511b6044820152606401610aba565b80600c5461180f9190613729565b341461184e5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b2103b30b63ab29760911b6044820152606401610aba565b60005b81811015610ad65760158054908190600061186b836137c6565b909155505060105460405163276d855f60e11b8152336004820152602481018390526001600160a01b0390911690634edb0abe90604401600060405180830381600087803b1580156118bc57600080fd5b505af11580156118d0573d6000803e3d6000fd5b5050600f5460405163503d47bb60e11b8152336004820152602481018590526001600160a01b03909116925063a07a8f769150604401600060405180830381600087803b15801561192057600080fd5b505af1158015611934573d6000803e3d6000fd5b505060408051338152602081018590527f58c56899438364ac5ae60466110ad7032b2c0184d6d5e86814984bfefd6a1406935001905060405180910390a1508061197d816137c6565b915050611851565b6060600061199283611297565b60408051808201825260048152631ddbdc9960e21b6020808301919091528351925193945090928492916000916119ed91017f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c20000000008152601c0190565b604051602081830303815290604052905060006018611a0b896124c7565b604051602001611a1c9291906134e3565b60405160208183030381529060405290506000611a376125c5565b85604051602001611a499291906131c1565b60405160208183030381529060405290506000601a604051602001611a6e9190613486565b604051602081830303815290604052905060006019604051602001611a9391906134be565b604051602081830303815290604052905060008888604051602001611ab99291906133cc565b604051602081830303815290604052905080611ad4886124c7565b611ae7611ae28f60016136fd565b6124c7565b604051602001611af9939291906130f2565b60405160208183030381529060405290506000868686868686604051602001611b279695949392919061304e565b60408051601f198184030181529190529d9c50505050505050505050505050565b333214611b905760405162461bcd60e51b815260206004820152601660248201527553656e646572206d757374206265206f726967696e2160501b6044820152606401610aba565b6010546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015611bd457600080fd5b505afa158015611be8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0c9190612c64565b6001600160a01b031614611c625760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f6e2774206f776e2074686973207472616e73706f6e6465722e006044820152606401610aba565b60008281526017602052604090205415611cc95760405162461bcd60e51b815260206004820152602260248201527f5472616e73706f6e64657220616c7265616479207573656420746f2077726974604482015261329760f11b6064820152608401610aba565b60125481511115611d125760405162461bcd60e51b815260206004820152601360248201527250687261736520697320746f6f206c6f6e672160681b6044820152606401610aba565b611d1b81611eb5565b611d755760405162461bcd60e51b815260206004820152602560248201527f50687261736520636f6e7461696e7320756e616c6c6f77656420636861726163604482015264746572732160d81b6064820152608401610aba565b6000828152601760205260408120805491611d8f836137c6565b9190505550611e2860118054611da49061378b565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd09061378b565b8015611e1d5780601f10611df257610100808354040283529160200191611e1d565b820191906000526020600020905b815481529060010190602001808311611e0057829003601f168201915b50505050508261264b565b8051611e3c91601191602090910190612b34565b506000611e4860085490565b60008181526016602090815260409091208451929350611e6c929091850190612b34565b50611e77338261269c565b60408051338152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a1505050565b80516000908290825b81811015611fc4576000838281518110611eda57611eda613837565b01602001516013546001600160f81b0319909116915060009060ff600160a01b9091041615611f0e5750600160fd1b611f15565b50602160f81b5b6001600160f81b03198082169083161080611f3d5750603d60f91b6001600160f81b03198316115b80611f555750601360f91b6001600160f81b03198316145b80611f6d5750601160f91b6001600160f81b03198316145b80611f855750600f60fa1b6001600160f81b03198316145b80611f9d5750601f60f91b6001600160f81b03198316145b15611faf575060009695505050505050565b50508080611fbc906137c6565b915050611ebe565b506001949350505050565b600a546001600160a01b03163314611ff95760405162461bcd60e51b8152600401610aba9061361e565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146120455760405162461bcd60e51b8152600401610aba9061361e565b600c55565b600a546001600160a01b031633146120745760405162461bcd60e51b8152600401610aba9061361e565b6001600160a01b0381166120d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aba565b61108281612442565b60006001600160e01b031982166380ac58cd60e01b148061211357506001600160e01b03198216635b5e139f60e01b145b80610aff57506301ffc9a760e01b6001600160e01b0319831614610aff565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061216782611119565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122195760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aba565b600061222483611119565b9050806001600160a01b0316846001600160a01b0316148061225f5750836001600160a01b031661225484610bf2565b6001600160a01b0316145b8061228f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166122aa82611119565b6001600160a01b0316146123125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610aba565b6001600160a01b0382166123745760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610aba565b61237f8383836127ea565b61238a600082612132565b6001600160a01b03831660009081526003602052604081208054600192906123b3908490613748565b90915550506001600160a01b03821660009081526003602052604081208054600192906123e19084906136fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61249f848484612297565b6124ab848484846128a2565b61167e5760405162461bcd60e51b8152600401610aba906135cc565b6060816124eb5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561251557806124ff816137c6565b915061250e9050600a83613715565b91506124ef565b60008167ffffffffffffffff8111156125305761253061384d565b6040519080825280601f01601f19166020018201604052801561255a576020820181803683370190505b5090505b841561228f5761256f600183613748565b915061257c600a866137e1565b6125879060306136fd565b60f81b81838151811061259c5761259c613837565b60200101906001600160f81b031916908160001a9053506125be600a86613715565b945061255e565b60135460408051631d2a763560e21b815290516060926001600160a01b0316916374a9d8d4916004808301926000929190829003018186803b15801561260a57600080fd5b505afa15801561261e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126469190810190612e66565b905090565b606060008260405160200161266091906130cd565b6040516020818303038152906040529050838160405160200161268492919061301f565b60405160208183030381529060405291505092915050565b6001600160a01b0382166126f25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aba565b6000818152600260205260409020546001600160a01b0316156127575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aba565b612763600083836127ea565b6001600160a01b038216600090815260036020526040812080546001929061278c9084906136fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166128455761284081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612868565b816001600160a01b0316836001600160a01b0316146128685761286883826129a4565b6001600160a01b03821661287f57610d9881612a41565b826001600160a01b0316826001600160a01b031614610d9857610d988282612af0565b60006001600160a01b0384163b15611fc457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128e6903390899088908890600401613538565b602060405180830381600087803b15801561290057600080fd5b505af1925050508015612930575060408051601f3d908101601f1916820190925261292d91810190612e14565b60015b61298a573d80801561295e576040519150601f19603f3d011682016040523d82523d6000602084013e612963565b606091505b5080516129825760405162461bcd60e51b8152600401610aba906135cc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061228f565b600060016129b18461119d565b6129bb9190613748565b600083815260076020526040902054909150808214612a0e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a5390600190613748565b60008381526009602052604081205460088054939450909284908110612a7b57612a7b613837565b906000526020600020015490508060088381548110612a9c57612a9c613837565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ad457612ad4613821565b6001900381819060005260206000200160009055905550505050565b6000612afb8361119d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b409061378b565b90600052602060002090601f016020900481019282612b625760008555612ba8565b82601f10612b7b57805160ff1916838001178555612ba8565b82800160010185558215612ba8579182015b82811115612ba8578251825591602001919060010190612b8d565b50612bb4929150612bb8565b5090565b5b80821115612bb45760008155600101612bb9565b6000612be0612bdb846136d5565b6136a4565b9050828152838383011115612bf457600080fd5b828260208301376000602084830101529392505050565b80358015158114612c1b57600080fd5b919050565b600082601f830112612c3157600080fd5b612c4083833560208501612bcd565b9392505050565b600060208284031215612c5957600080fd5b8135612c4081613863565b600060208284031215612c7657600080fd5b8151612c4081613863565b60008060408385031215612c9457600080fd5b8235612c9f81613863565b91506020830135612caf81613863565b809150509250929050565b600080600060608486031215612ccf57600080fd5b8335612cda81613863565b92506020840135612cea81613863565b929592945050506040919091013590565b60008060008060808587031215612d1157600080fd5b8435612d1c81613863565b93506020850135612d2c81613863565b925060408501359150606085013567ffffffffffffffff811115612d4f57600080fd5b8501601f81018713612d6057600080fd5b612d6f87823560208401612bcd565b91505092959194509250565b60008060408385031215612d8e57600080fd5b8235612d9981613863565b9150612da760208401612c0b565b90509250929050565b60008060408385031215612dc357600080fd5b8235612dce81613863565b946020939093013593505050565b600060208284031215612dee57600080fd5b612c4082612c0b565b600060208284031215612e0957600080fd5b8135612c4081613878565b600060208284031215612e2657600080fd5b8151612c4081613878565b600060208284031215612e4357600080fd5b813567ffffffffffffffff811115612e5a57600080fd5b61228f84828501612c20565b600060208284031215612e7857600080fd5b815167ffffffffffffffff811115612e8f57600080fd5b8201601f81018413612ea057600080fd5b8051612eae612bdb826136d5565b818152856020838501011115612ec357600080fd5b612ed482602083016020860161375f565b95945050505050565b600060208284031215612eef57600080fd5b5035919050565b60008060408385031215612f0957600080fd5b82359150602083013567ffffffffffffffff811115612f2757600080fd5b612f3385828601612c20565b9150509250929050565b60008151808452612f5581602086016020860161375f565b601f01601f19169290920160200192915050565b60008151612f7b81856020860161375f565b9290920192915050565b8054600090600181811c9080831680612f9f57607f831692505b6020808410821415612fc157634e487b7160e01b600052602260045260246000fd5b818015612fd55760018114612fe657613013565b60ff19861689528489019650613013565b60008881526020902060005b8681101561300b5781548b820152908501908301612ff2565b505084890196505b50505050505092915050565b6000835161303181846020880161375f565b83519083019061304581836020880161375f565b01949350505050565b6000875160206130618285838d0161375f565b8851918401916130748184848d0161375f565b88519201916130868184848c0161375f565b87519201916130988184848b0161375f565b86519201916130aa8184848a0161375f565b85519201916130bc818484890161375f565b919091019998505050505050505050565b600082516130df81846020870161375f565b600160fd1b920191825250600101919050565b6000845161310481846020890161375f565b80830190507f7b2274726169745f74797065223a20226c656e677468222c202276616c7565228152621d101160e91b6020820152845161314b81602384016020890161375f565b7f227d2c207b2274726169745f74797065223a20226d65737361676520706f736960239290910191820152703a34b7b7111610113b30b63ab2911d101160791b604382015283516131a381605484016020880161375f565b63227d5d7d60e01b6054929091019182015260580195945050505050565b671134b6b0b3b2911d60c11b81527f22646174613a696d6167652f7376672b786d6c3b757466382c2000000000000060088201527f3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323060228201527f30302f737667272077696474683d2735303027206865696768743d273530302760428201527f207374796c653d276261636b67726f756e642d636f6c6f723a2330303030303060628201527f273e3c7374796c653e40666f6e742d666163657b666f6e742d66616d696c793a60828201527f274d696e656372616674273b207372633a75726c2827646174613a6170706c6960a28201527f636174696f6e2f6f637465742d73747265616d3b6261736536342c000000000060c282015282516000906132ef8160dd85016020880161375f565b7f27293b3c2f7374796c653e3c746578742066696c6c3d2723303066666632272060dd918401918201527f666f6e742d66616d696c793d274d696e6563726166742720783d27353025272060fd8201527f793d273530252720646f6d696e616e742d626173656c696e653d276d6964646c61011d8201527f652720746578742d616e63686f723d276d6964646c652720666f6e742d73697a61013d82015268329e939999383c139f60b91b61015d820152612ed46133b1610166830186612f69565b6e0f0bdd195e1d0f8f0bdcdd99cf888b608a1b8152600f0190565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2022747981526e3832911610113b30b63ab2911d101160891b60208201526000835161341c81602f85016020880161375f565b7f227d2c207b2274726169745f74797065223a2022706872617365222c20227661602f9184019182015266363ab2911d101160c91b604f820152835161346981605684016020880161375f565b630113e96160e51b60569290910191820152605a01949350505050565b701132bc3a32b93730b62fbab936111d101160791b815260006134ac6011830184612f85565b61088b60f21b81526002019392505050565b6f113232b9b1b934b83a34b7b7111d101160811b815260006134ac6010830184612f85565b693d913730b6b2911d101160b11b81526000613502600a830185612f85565b61202360f01b8152835161351d81600284016020880161375f565b61088b60f21b60029290910191820152600401949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061356b90830184612f3d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135ad57835183529284019291840191600101613591565b50909695505050505050565b602081526000612c406020830184612f3d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156136cd576136cd61384d565b604052919050565b600067ffffffffffffffff8211156136ef576136ef61384d565b50601f01601f191660200190565b60008219821115613710576137106137f5565b500190565b6000826137245761372461380b565b500490565b6000816000190483118215151615613743576137436137f5565b500290565b60008282101561375a5761375a6137f5565b500390565b60005b8381101561377a578181015183820152602001613762565b8381111561167e5750506000910152565b600181811c9082168061379f57607f821691505b602082108114156137c057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137da576137da6137f5565b5060010190565b6000826137f0576137f061380b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461108257600080fd5b6001600160e01b03198116811461108257600080fdfea2646970667358221220da2d35714edf9cc9f0a096197ffee246f30a06a17a41730dd8d1cf9aba7a0f3964736f6c634300080700334d65737361676520746f204d61727469616e732069732061206d6573736167652073746f72656420696e2074686520657468657265756d20626c6f636b636861696e2c206177616974696e672074686520667574757265204d61727469616e7320746f2072656164206f6e65206461792e204173206120746f6b656e206f6620617070726563696174696f6e2c2077726974657273206f66206f7572206d657373616765207265636569766520616e204e4654206f66207468656972207772697474656e20776f72642061732077656c6c20617320612053706163652043617073756c6520636f6e7461696e696e67207468656972204d61727469616e20676561722e2068747470733a2f2f6d657373616765746f6d61727469616e732e636f6d

Deployed Bytecode

0x60806040526004361061034e5760003560e01c80636c02a931116101c6578063b88d4fde116100f7578063e1829d2d11610095578063e985e9c51161006f578063e985e9c514610963578063ebf98abf146109ac578063ee0b4c35146109c2578063f2fde38b146109e257600080fd5b8063e1829d2d1461090d578063e4c79e451461092d578063e83157421461094d57600080fd5b8063c7af751a116100d1578063c7af751a146108a1578063c87b56dd146108b7578063da084fd0146108d7578063dc30158b146108f757600080fd5b8063b88d4fde1461084e578063bc11a4d61461086e578063c2e90b6a1461088e57600080fd5b806395d89b41116101645780639fd6db121161013e5780639fd6db12146107d5578063a22cb465146107ef578063a4f29aad1461080f578063b118060e1461082f57600080fd5b806395d89b411461078a57806397dbfcfb1461079f5780639b898477146107bf57600080fd5b80637420aa36116101a05780637420aa361461070c57806375535fb71461072c578063871cd69a1461074c5780638da5cb5b1461076c57600080fd5b80636c02a931146106c257806370a08231146106d7578063715018a6146106f757600080fd5b806325e6f516116102a05780635648051c1161023e5780636128e136116102185780636128e136146106415780636285abf4146106615780636352211e1461068157806369ab4315146106a157600080fd5b80635648051c146105f75780635895e44a1461060c57806358964dc21461062157600080fd5b806342842e0e1161027a57806342842e0e1461058157806348076aae146105a15780634f6ccce7146105b757806352332c18146105d757600080fd5b806325e6f5161461052c5780632f745c5914610541578063394d88d41461056157600080fd5b8063081812fc1161030d578063174da4a2116102e7578063174da4a21461049f57806318160ddd146104bf5780631db5b77b146104de57806323b872dd1461050c57600080fd5b8063081812fc1461041a578063095ea7b31461045257806314de39191461047257600080fd5b8062bad0d314610353578062d5da021461037e57806301ffc9a7146103a0578063031d5d01146103d057806304dd44dd146103e557806306fdde0314610405575b600080fd5b34801561035f57600080fd5b50610368610a02565b60405161037591906135b9565b60405180910390f35b34801561038a57600080fd5b5061039e610399366004612e31565b610a90565b005b3480156103ac57600080fd5b506103c06103bb366004612df7565b610ada565b6040519015158152602001610375565b3480156103dc57600080fd5b50610368610b05565b3480156103f157600080fd5b5061039e610400366004612c47565b610b97565b34801561041157600080fd5b50610368610be3565b34801561042657600080fd5b5061043a610435366004612edd565b610bf2565b6040516001600160a01b039091168152602001610375565b34801561045e57600080fd5b5061039e61046d366004612db0565b610c87565b34801561047e57600080fd5b5061049261048d366004612c47565b610d9d565b6040516103759190613575565b3480156104ab57600080fd5b5061039e6104ba366004612edd565b610e3f565b3480156104cb57600080fd5b506008545b604051908152602001610375565b3480156104ea57600080fd5b506103c06104f9366004612edd565b6000908152601760205260409020541590565b34801561051857600080fd5b5061039e610527366004612cba565b610e6e565b34801561053857600080fd5b50610368610e9f565b34801561054d57600080fd5b506104d061055c366004612db0565b610eac565b34801561056d57600080fd5b5060135461043a906001600160a01b031681565b34801561058d57600080fd5b5061039e61059c366004612cba565b610f42565b3480156105ad57600080fd5b506104d060145481565b3480156105c357600080fd5b506104d06105d2366004612edd565b610f5d565b3480156105e357600080fd5b5061039e6105f2366004612edd565b610ff0565b34801561060357600080fd5b5061036861101f565b34801561061857600080fd5b5061039e61102c565b34801561062d57600080fd5b5060105461043a906001600160a01b031681565b34801561064d57600080fd5b5061039e61065c366004612c47565b611085565b34801561066d57600080fd5b5061039e61067c366004612ddc565b6110d1565b34801561068d57600080fd5b5061043a61069c366004612edd565b611119565b3480156106ad57600080fd5b506013546103c090600160a01b900460ff1681565b3480156106ce57600080fd5b50610368611190565b3480156106e357600080fd5b506104d06106f2366004612c47565b61119d565b34801561070357600080fd5b5061039e611224565b34801561071857600080fd5b5061039e610727366004612ddc565b61125a565b34801561073857600080fd5b50610368610747366004612edd565b611297565b34801561075857600080fd5b5061039e610767366004612edd565b611339565b34801561077857600080fd5b50600a546001600160a01b031661043a565b34801561079657600080fd5b5061036861153b565b3480156107ab57600080fd5b50600f5461043a906001600160a01b031681565b3480156107cb57600080fd5b506104d060125481565b3480156107e157600080fd5b50600d546103c09060ff1681565b3480156107fb57600080fd5b5061039e61080a366004612d7b565b61154a565b34801561081b57600080fd5b5061039e61082a366004612e31565b61160f565b34801561083b57600080fd5b506104d061084a366004612e31565b5190565b34801561085a57600080fd5b5061039e610869366004612cfb565b61164c565b34801561087a57600080fd5b5061039e610889366004612e31565b611684565b61039e61089c366004612edd565b6116c1565b3480156108ad57600080fd5b506104d060155481565b3480156108c357600080fd5b506103686108d2366004612edd565b611985565b3480156108e357600080fd5b5061039e6108f2366004612ef6565b611b48565b34801561090357600080fd5b506104d0600e5481565b34801561091957600080fd5b506103c0610928366004612e31565b611eb5565b34801561093957600080fd5b5061039e610948366004612c47565b611fcf565b34801561095957600080fd5b506104d0600b5481565b34801561096f57600080fd5b506103c061097e366004612c81565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109b857600080fd5b506104d0600c5481565b3480156109ce57600080fd5b5061039e6109dd366004612edd565b61201b565b3480156109ee57600080fd5b5061039e6109fd366004612c47565b61204a565b60118054610a0f9061378b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b9061378b565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b505050505081565b600a546001600160a01b03163314610ac35760405162461bcd60e51b8152600401610aba9061361e565b60405180910390fd5b8051610ad6906019906020840190612b34565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610aff5750610aff826120e2565b92915050565b606060118054610b149061378b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b409061378b565b8015610b8d5780601f10610b6257610100808354040283529160200191610b8d565b820191906000526020600020905b815481529060010190602001808311610b7057829003601f168201915b5050505050905090565b600a546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610aba9061361e565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610b149061378b565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aba565b506000908152600460205260409020546001600160a01b031690565b6000610c9282611119565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610aba565b336001600160a01b0382161480610d1c5750610d1c813361097e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aba565b610d988383612132565b505050565b60606000610daa8361119d565b905060008167ffffffffffffffff811115610dc757610dc761384d565b604051908082528060200260200182016040528015610df0578160200160208202803683370190505b50905060005b82811015610e3757610e088582610eac565b828281518110610e1a57610e1a613837565b602090810291909101015280610e2f816137c6565b915050610df6565b509392505050565b600a546001600160a01b03163314610e695760405162461bcd60e51b8152600401610aba9061361e565b600e55565b610e7833826121a0565b610e945760405162461bcd60e51b8152600401610aba90613653565b610d98838383612297565b60198054610a0f9061378b565b6000610eb78361119d565b8210610f195760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610aba565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d988383836040518060200160405280600081525061164c565b6000610f6860085490565b8210610fcb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610aba565b60088281548110610fde57610fde613837565b90600052602060002001549050919050565b600a546001600160a01b0316331461101a5760405162461bcd60e51b8152600401610aba9061361e565b601255565b601a8054610a0f9061378b565b600a546001600160a01b031633146110565760405162461bcd60e51b8152600401610aba9061361e565b60405133904780156108fc02916000818181858888f19350505050158015611082573d6000803e3d6000fd5b50565b600a546001600160a01b031633146110af5760405162461bcd60e51b8152600401610aba9061361e565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146110fb5760405162461bcd60e51b8152600401610aba9061361e565b60138054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260408120546001600160a01b031680610aff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610aba565b60188054610a0f9061378b565b60006001600160a01b0382166112085760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610aba565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461124e5760405162461bcd60e51b8152600401610aba9061361e565b6112586000612442565b565b600a546001600160a01b031633146112845760405162461bcd60e51b8152600401610aba9061361e565b600d805460ff1916911515919091179055565b60008181526016602052604090208054606091906112b49061378b565b80601f01602080910402602001604051908101604052809291908181526020018280546112e09061378b565b801561132d5780601f106113025761010080835404028352916020019161132d565b820191906000526020600020905b81548152906001019060200180831161131057829003601f168201915b50505050509050919050565b600a546001600160a01b031633146113635760405162461bcd60e51b8152600401610aba9061361e565b6014548160155461137491906136fd565b11156113b95760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41039bab8383634b2b99760611b6044820152606401610aba565b600e548111156114045760405162461bcd60e51b815260206004820152601660248201527527bb32b91026b0bc1026b4b73a39903832b9102a2c1760511b6044820152606401610aba565b60005b81811015610ad657601580549081906000611421836137c6565b909155505060105460405163276d855f60e11b8152336004820152602481018390526001600160a01b0390911690634edb0abe90604401600060405180830381600087803b15801561147257600080fd5b505af1158015611486573d6000803e3d6000fd5b5050600f5460405163503d47bb60e11b8152336004820152602481018590526001600160a01b03909116925063a07a8f769150604401600060405180830381600087803b1580156114d657600080fd5b505af11580156114ea573d6000803e3d6000fd5b505060408051338152602081018590527f58c56899438364ac5ae60466110ad7032b2c0184d6d5e86814984bfefd6a1406935001905060405180910390a15080611533816137c6565b915050611407565b606060018054610b149061378b565b6001600160a01b0382163314156115a35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aba565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146116395760405162461bcd60e51b8152600401610aba9061361e565b8051610ad6906018906020840190612b34565b61165633836121a0565b6116725760405162461bcd60e51b8152600401610aba90613653565b61167e84848484612494565b50505050565b600a546001600160a01b031633146116ae5760405162461bcd60e51b8152600401610aba9061361e565b8051610ad690601a906020840190612b34565b3332146117095760405162461bcd60e51b815260206004820152601660248201527553656e646572206d757374206265206f726967696e2160501b6044820152606401610aba565b600d5460ff1615156001146117605760405162461bcd60e51b815260206004820181905260248201527f5075626c6963204d696e74696e67206973206e6f7420617661696c61626c65216044820152606401610aba565b6014548160155461177191906136fd565b11156117b65760405162461bcd60e51b81526020600482015260146024820152732737ba1032b737bab3b41039bab8383634b2b99760611b6044820152606401610aba565b600e548111156118015760405162461bcd60e51b815260206004820152601660248201527527bb32b91026b0bc1026b4b73a39903832b9102a2c1760511b6044820152606401610aba565b80600c5461180f9190613729565b341461184e5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b2103b30b63ab29760911b6044820152606401610aba565b60005b81811015610ad65760158054908190600061186b836137c6565b909155505060105460405163276d855f60e11b8152336004820152602481018390526001600160a01b0390911690634edb0abe90604401600060405180830381600087803b1580156118bc57600080fd5b505af11580156118d0573d6000803e3d6000fd5b5050600f5460405163503d47bb60e11b8152336004820152602481018590526001600160a01b03909116925063a07a8f769150604401600060405180830381600087803b15801561192057600080fd5b505af1158015611934573d6000803e3d6000fd5b505060408051338152602081018590527f58c56899438364ac5ae60466110ad7032b2c0184d6d5e86814984bfefd6a1406935001905060405180910390a1508061197d816137c6565b915050611851565b6060600061199283611297565b60408051808201825260048152631ddbdc9960e21b6020808301919091528351925193945090928492916000916119ed91017f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c20000000008152601c0190565b604051602081830303815290604052905060006018611a0b896124c7565b604051602001611a1c9291906134e3565b60405160208183030381529060405290506000611a376125c5565b85604051602001611a499291906131c1565b60405160208183030381529060405290506000601a604051602001611a6e9190613486565b604051602081830303815290604052905060006019604051602001611a9391906134be565b604051602081830303815290604052905060008888604051602001611ab99291906133cc565b604051602081830303815290604052905080611ad4886124c7565b611ae7611ae28f60016136fd565b6124c7565b604051602001611af9939291906130f2565b60405160208183030381529060405290506000868686868686604051602001611b279695949392919061304e565b60408051601f198184030181529190529d9c50505050505050505050505050565b333214611b905760405162461bcd60e51b815260206004820152601660248201527553656e646572206d757374206265206f726967696e2160501b6044820152606401610aba565b6010546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015611bd457600080fd5b505afa158015611be8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0c9190612c64565b6001600160a01b031614611c625760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f6e2774206f776e2074686973207472616e73706f6e6465722e006044820152606401610aba565b60008281526017602052604090205415611cc95760405162461bcd60e51b815260206004820152602260248201527f5472616e73706f6e64657220616c7265616479207573656420746f2077726974604482015261329760f11b6064820152608401610aba565b60125481511115611d125760405162461bcd60e51b815260206004820152601360248201527250687261736520697320746f6f206c6f6e672160681b6044820152606401610aba565b611d1b81611eb5565b611d755760405162461bcd60e51b815260206004820152602560248201527f50687261736520636f6e7461696e7320756e616c6c6f77656420636861726163604482015264746572732160d81b6064820152608401610aba565b6000828152601760205260408120805491611d8f836137c6565b9190505550611e2860118054611da49061378b565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd09061378b565b8015611e1d5780601f10611df257610100808354040283529160200191611e1d565b820191906000526020600020905b815481529060010190602001808311611e0057829003601f168201915b50505050508261264b565b8051611e3c91601191602090910190612b34565b506000611e4860085490565b60008181526016602090815260409091208451929350611e6c929091850190612b34565b50611e77338261269c565b60408051338152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a1505050565b80516000908290825b81811015611fc4576000838281518110611eda57611eda613837565b01602001516013546001600160f81b0319909116915060009060ff600160a01b9091041615611f0e5750600160fd1b611f15565b50602160f81b5b6001600160f81b03198082169083161080611f3d5750603d60f91b6001600160f81b03198316115b80611f555750601360f91b6001600160f81b03198316145b80611f6d5750601160f91b6001600160f81b03198316145b80611f855750600f60fa1b6001600160f81b03198316145b80611f9d5750601f60f91b6001600160f81b03198316145b15611faf575060009695505050505050565b50508080611fbc906137c6565b915050611ebe565b506001949350505050565b600a546001600160a01b03163314611ff95760405162461bcd60e51b8152600401610aba9061361e565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146120455760405162461bcd60e51b8152600401610aba9061361e565b600c55565b600a546001600160a01b031633146120745760405162461bcd60e51b8152600401610aba9061361e565b6001600160a01b0381166120d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aba565b61108281612442565b60006001600160e01b031982166380ac58cd60e01b148061211357506001600160e01b03198216635b5e139f60e01b145b80610aff57506301ffc9a760e01b6001600160e01b0319831614610aff565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061216782611119565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122195760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aba565b600061222483611119565b9050806001600160a01b0316846001600160a01b0316148061225f5750836001600160a01b031661225484610bf2565b6001600160a01b0316145b8061228f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166122aa82611119565b6001600160a01b0316146123125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610aba565b6001600160a01b0382166123745760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610aba565b61237f8383836127ea565b61238a600082612132565b6001600160a01b03831660009081526003602052604081208054600192906123b3908490613748565b90915550506001600160a01b03821660009081526003602052604081208054600192906123e19084906136fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61249f848484612297565b6124ab848484846128a2565b61167e5760405162461bcd60e51b8152600401610aba906135cc565b6060816124eb5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561251557806124ff816137c6565b915061250e9050600a83613715565b91506124ef565b60008167ffffffffffffffff8111156125305761253061384d565b6040519080825280601f01601f19166020018201604052801561255a576020820181803683370190505b5090505b841561228f5761256f600183613748565b915061257c600a866137e1565b6125879060306136fd565b60f81b81838151811061259c5761259c613837565b60200101906001600160f81b031916908160001a9053506125be600a86613715565b945061255e565b60135460408051631d2a763560e21b815290516060926001600160a01b0316916374a9d8d4916004808301926000929190829003018186803b15801561260a57600080fd5b505afa15801561261e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126469190810190612e66565b905090565b606060008260405160200161266091906130cd565b6040516020818303038152906040529050838160405160200161268492919061301f565b60405160208183030381529060405291505092915050565b6001600160a01b0382166126f25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aba565b6000818152600260205260409020546001600160a01b0316156127575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aba565b612763600083836127ea565b6001600160a01b038216600090815260036020526040812080546001929061278c9084906136fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166128455761284081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612868565b816001600160a01b0316836001600160a01b0316146128685761286883826129a4565b6001600160a01b03821661287f57610d9881612a41565b826001600160a01b0316826001600160a01b031614610d9857610d988282612af0565b60006001600160a01b0384163b15611fc457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128e6903390899088908890600401613538565b602060405180830381600087803b15801561290057600080fd5b505af1925050508015612930575060408051601f3d908101601f1916820190925261292d91810190612e14565b60015b61298a573d80801561295e576040519150601f19603f3d011682016040523d82523d6000602084013e612963565b606091505b5080516129825760405162461bcd60e51b8152600401610aba906135cc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061228f565b600060016129b18461119d565b6129bb9190613748565b600083815260076020526040902054909150808214612a0e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a5390600190613748565b60008381526009602052604081205460088054939450909284908110612a7b57612a7b613837565b906000526020600020015490508060088381548110612a9c57612a9c613837565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ad457612ad4613821565b6001900381819060005260206000200160009055905550505050565b6000612afb8361119d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b409061378b565b90600052602060002090601f016020900481019282612b625760008555612ba8565b82601f10612b7b57805160ff1916838001178555612ba8565b82800160010185558215612ba8579182015b82811115612ba8578251825591602001919060010190612b8d565b50612bb4929150612bb8565b5090565b5b80821115612bb45760008155600101612bb9565b6000612be0612bdb846136d5565b6136a4565b9050828152838383011115612bf457600080fd5b828260208301376000602084830101529392505050565b80358015158114612c1b57600080fd5b919050565b600082601f830112612c3157600080fd5b612c4083833560208501612bcd565b9392505050565b600060208284031215612c5957600080fd5b8135612c4081613863565b600060208284031215612c7657600080fd5b8151612c4081613863565b60008060408385031215612c9457600080fd5b8235612c9f81613863565b91506020830135612caf81613863565b809150509250929050565b600080600060608486031215612ccf57600080fd5b8335612cda81613863565b92506020840135612cea81613863565b929592945050506040919091013590565b60008060008060808587031215612d1157600080fd5b8435612d1c81613863565b93506020850135612d2c81613863565b925060408501359150606085013567ffffffffffffffff811115612d4f57600080fd5b8501601f81018713612d6057600080fd5b612d6f87823560208401612bcd565b91505092959194509250565b60008060408385031215612d8e57600080fd5b8235612d9981613863565b9150612da760208401612c0b565b90509250929050565b60008060408385031215612dc357600080fd5b8235612dce81613863565b946020939093013593505050565b600060208284031215612dee57600080fd5b612c4082612c0b565b600060208284031215612e0957600080fd5b8135612c4081613878565b600060208284031215612e2657600080fd5b8151612c4081613878565b600060208284031215612e4357600080fd5b813567ffffffffffffffff811115612e5a57600080fd5b61228f84828501612c20565b600060208284031215612e7857600080fd5b815167ffffffffffffffff811115612e8f57600080fd5b8201601f81018413612ea057600080fd5b8051612eae612bdb826136d5565b818152856020838501011115612ec357600080fd5b612ed482602083016020860161375f565b95945050505050565b600060208284031215612eef57600080fd5b5035919050565b60008060408385031215612f0957600080fd5b82359150602083013567ffffffffffffffff811115612f2757600080fd5b612f3385828601612c20565b9150509250929050565b60008151808452612f5581602086016020860161375f565b601f01601f19169290920160200192915050565b60008151612f7b81856020860161375f565b9290920192915050565b8054600090600181811c9080831680612f9f57607f831692505b6020808410821415612fc157634e487b7160e01b600052602260045260246000fd5b818015612fd55760018114612fe657613013565b60ff19861689528489019650613013565b60008881526020902060005b8681101561300b5781548b820152908501908301612ff2565b505084890196505b50505050505092915050565b6000835161303181846020880161375f565b83519083019061304581836020880161375f565b01949350505050565b6000875160206130618285838d0161375f565b8851918401916130748184848d0161375f565b88519201916130868184848c0161375f565b87519201916130988184848b0161375f565b86519201916130aa8184848a0161375f565b85519201916130bc818484890161375f565b919091019998505050505050505050565b600082516130df81846020870161375f565b600160fd1b920191825250600101919050565b6000845161310481846020890161375f565b80830190507f7b2274726169745f74797065223a20226c656e677468222c202276616c7565228152621d101160e91b6020820152845161314b81602384016020890161375f565b7f227d2c207b2274726169745f74797065223a20226d65737361676520706f736960239290910191820152703a34b7b7111610113b30b63ab2911d101160791b604382015283516131a381605484016020880161375f565b63227d5d7d60e01b6054929091019182015260580195945050505050565b671134b6b0b3b2911d60c11b81527f22646174613a696d6167652f7376672b786d6c3b757466382c2000000000000060088201527f3c73766720786d6c6e733d27687474703a2f2f7777772e77332e6f72672f323060228201527f30302f737667272077696474683d2735303027206865696768743d273530302760428201527f207374796c653d276261636b67726f756e642d636f6c6f723a2330303030303060628201527f273e3c7374796c653e40666f6e742d666163657b666f6e742d66616d696c793a60828201527f274d696e656372616674273b207372633a75726c2827646174613a6170706c6960a28201527f636174696f6e2f6f637465742d73747265616d3b6261736536342c000000000060c282015282516000906132ef8160dd85016020880161375f565b7f27293b3c2f7374796c653e3c746578742066696c6c3d2723303066666632272060dd918401918201527f666f6e742d66616d696c793d274d696e6563726166742720783d27353025272060fd8201527f793d273530252720646f6d696e616e742d626173656c696e653d276d6964646c61011d8201527f652720746578742d616e63686f723d276d6964646c652720666f6e742d73697a61013d82015268329e939999383c139f60b91b61015d820152612ed46133b1610166830186612f69565b6e0f0bdd195e1d0f8f0bdcdd99cf888b608a1b8152600f0190565b7f2261747472696275746573223a5b7b2274726169745f74797065223a2022747981526e3832911610113b30b63ab2911d101160891b60208201526000835161341c81602f85016020880161375f565b7f227d2c207b2274726169745f74797065223a2022706872617365222c20227661602f9184019182015266363ab2911d101160c91b604f820152835161346981605684016020880161375f565b630113e96160e51b60569290910191820152605a01949350505050565b701132bc3a32b93730b62fbab936111d101160791b815260006134ac6011830184612f85565b61088b60f21b81526002019392505050565b6f113232b9b1b934b83a34b7b7111d101160811b815260006134ac6010830184612f85565b693d913730b6b2911d101160b11b81526000613502600a830185612f85565b61202360f01b8152835161351d81600284016020880161375f565b61088b60f21b60029290910191820152600401949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061356b90830184612f3d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135ad57835183529284019291840191600101613591565b50909695505050505050565b602081526000612c406020830184612f3d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156136cd576136cd61384d565b604052919050565b600067ffffffffffffffff8211156136ef576136ef61384d565b50601f01601f191660200190565b60008219821115613710576137106137f5565b500190565b6000826137245761372461380b565b500490565b6000816000190483118215151615613743576137436137f5565b500290565b60008282101561375a5761375a6137f5565b500390565b60005b8381101561377a578181015183820152602001613762565b8381111561167e5750506000910152565b600181811c9082168061379f57607f821691505b602082108114156137c057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137da576137da6137f5565b5060010190565b6000826137f0576137f061380b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461108257600080fd5b6001600160e01b03198116811461108257600080fdfea2646970667358221220da2d35714edf9cc9f0a096197ffee246f30a06a17a41730dd8d1cf9aba7a0f3964736f6c63430008070033

Deployed Bytecode Sourcemap

42082:11382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42392:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51435:136;;;;;;;;;;-1:-1:-1;51435:136:0;;;;;:::i;:::-;;:::i;:::-;;35654:224;;;;;;;;;;-1:-1:-1;35654:224:0;;;;;:::i;:::-;;:::i;:::-;;;17877:14:1;;17870:22;17852:41;;17840:2;17825:18;35654:224:0;17712:187:1;50637:102:0;;;;;;;;;;;;;:::i;43970:118::-;;;;;;;;;;-1:-1:-1;43970:118:0;;;;;:::i;:::-;;:::i;22991:100::-;;;;;;;;;;;;;:::i;24550:221::-;;;;;;;;;;-1:-1:-1;24550:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;16259:32:1;;;16241:51;;16229:2;16214:18;24550:221:0;16095:203:1;24073:411:0;;;;;;;;;;-1:-1:-1;24073:411:0;;;;;:::i;:::-;;:::i;47770:355::-;;;;;;;;;;-1:-1:-1;47770:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44202:97::-;;;;;;;;;;-1:-1:-1;44202:97:0;;;;;:::i;:::-;;:::i;36294:113::-;;;;;;;;;;-1:-1:-1;36382:10:0;:17;36294:113;;;28337:25:1;;;28325:2;28310:18;36294:113:0;28191:177:1;45454:131:0;;;;;;;;;;-1:-1:-1;45454:131:0;;;;;:::i;:::-;45520:4;45545:26;;;:16;:26;;;;;;:31;;45454:131;25440:339;;;;;;;;;;-1:-1:-1;25440:339:0;;;;;:::i;:::-;;:::i;50917:324::-;;;;;;;;;;;;;:::i;35962:256::-;;;;;;;;;;-1:-1:-1;35962:256:0;;;;;:::i;:::-;;:::i;42469:26::-;;;;;;;;;;-1:-1:-1;42469:26:0;;;;-1:-1:-1;;;;;42469:26:0;;;25850:185;;;;;;;;;;-1:-1:-1;25850:185:0;;;;;:::i;:::-;;:::i;42548:30::-;;;;;;;;;;;;;;;;36484:233;;;;;;;;;;-1:-1:-1;36484:233:0;;;;;:::i;:::-;;:::i;43637:111::-;;;;;;;;;;-1:-1:-1;43637:111:0;;;;;:::i;:::-;;:::i;51248:64::-;;;;;;;;;;;;;:::i;43295:119::-;;;;;;;;;;;;;:::i;42345:34::-;;;;;;;;;;-1:-1:-1;42345:34:0;;;;-1:-1:-1;;;;;42345:34:0;;;44094:102;;;;;;;;;;-1:-1:-1;44094:102:0;;;;;:::i;:::-;;:::i;43754:93::-;;;;;;;;;;-1:-1:-1;43754:93:0;;;;;:::i;:::-;;:::i;22685:239::-;;;;;;;;;;-1:-1:-1;22685:239:0;;;;;:::i;:::-;;:::i;42508:31::-;;;;;;;;;;-1:-1:-1;42508:31:0;;;;-1:-1:-1;;;42508:31:0;;;;;;50863:47;;;;;;;;;;;;;:::i;22415:208::-;;;;;;;;;;-1:-1:-1;22415:208:0;;;;;:::i;:::-;;:::i;2376:94::-;;;;;;;;;;;;;:::i;43533:98::-;;;;;;;;;;-1:-1:-1;43533:98:0;;;;;:::i;:::-;;:::i;50745:110::-;;;;;;;;;;-1:-1:-1;50745:110:0;;;;;:::i;:::-;;:::i;45593:615::-;;;;;;;;;;-1:-1:-1;45593:615:0;;;;;:::i;:::-;;:::i;1725:87::-;;;;;;;;;;-1:-1:-1;1798:6:0;;-1:-1:-1;;;;;1798:6:0;1725:87;;23160:104;;;;;;;;;;;;;:::i;42308:30::-;;;;;;;;;;-1:-1:-1;42308:30:0;;;;-1:-1:-1;;;;;42308:30:0;;;42430:32;;;;;;;;;;;;;;;;42228:34;;;;;;;;;;-1:-1:-1;42228:34:0;;;;;;;;24843:295;;;;;;;;;;-1:-1:-1;24843:295:0;;;;;:::i;:::-;;:::i;51321:108::-;;;;;;;;;;-1:-1:-1;51321:108:0;;;;;:::i;:::-;;:::i;44336:119::-;;;;;;;;;;-1:-1:-1;44336:119:0;;;;;:::i;:::-;44426:21;;44336:119;26106:328;;;;;;;;;;-1:-1:-1;26106:328:0;;;;;:::i;:::-;;:::i;51577:136::-;;;;;;;;;;-1:-1:-1;51577:136:0;;;;;:::i;:::-;;:::i;46216:707::-;;;;;;:::i;:::-;;:::i;42585:30::-;;;;;;;;;;;;;;;;51721:1740;;;;;;;;;;-1:-1:-1;51721:1740:0;;;;;:::i;:::-;;:::i;46931:831::-;;;;;;;;;;-1:-1:-1;46931:831:0;;;;;:::i;:::-;;:::i;42269:30::-;;;;;;;;;;;;;;;;44461:745;;;;;;;;;;-1:-1:-1;44461:745:0;;;;;:::i;:::-;;:::i;43853:111::-;;;;;;;;;;-1:-1:-1;43853:111:0;;;;;:::i;:::-;;:::i;42151:28::-;;;;;;;;;;;;;;;;25209:164;;;;;;;;;;-1:-1:-1;25209:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25330:25:0;;;25306:4;25330:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25209:164;42186:35;;;;;;;;;;;;;;;;43420:107;;;;;;;;;;-1:-1:-1;43420:107:0;;;;;:::i;:::-;;:::i;2625:192::-;;;;;;;;;;-1:-1:-1;2625:192:0;;;;;:::i;:::-;;:::i;42392:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51435:136::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;;;;;;;;;51527:36;;::::1;::::0;:16:::1;::::0;:36:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51435:136:::0;:::o;35654:224::-;35756:4;-1:-1:-1;;;;;;35780:50:0;;-1:-1:-1;;;35780:50:0;;:90;;;35834:36;35858:11;35834:23;:36::i;:::-;35773:97;35654:224;-1:-1:-1;;35654:224:0:o;50637:102::-;50681:13;50714:17;50707:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50637:102;:::o;43970:118::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44050:19:::1;:30:::0;;-1:-1:-1;;;;;;44050:30:0::1;-1:-1:-1::0;;;;;44050:30:0;;;::::1;::::0;;;::::1;::::0;;43970:118::o;22991:100::-;23045:13;23078:5;23071:12;;;;;:::i;24550:221::-;24626:7;28033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28033:16:0;24646:73;;;;-1:-1:-1;;;24646:73:0;;24509:2:1;24646:73:0;;;24491:21:1;24548:2;24528:18;;;24521:30;24587:34;24567:18;;;24560:62;-1:-1:-1;;;24638:18:1;;;24631:42;24690:19;;24646:73:0;24307:408:1;24646:73:0;-1:-1:-1;24739:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24739:24:0;;24550:221::o;24073:411::-;24154:13;24170:23;24185:7;24170:14;:23::i;:::-;24154:39;;24218:5;-1:-1:-1;;;;;24212:11:0;:2;-1:-1:-1;;;;;24212:11:0;;;24204:57;;;;-1:-1:-1;;;24204:57:0;;25693:2:1;24204:57:0;;;25675:21:1;25732:2;25712:18;;;25705:30;25771:34;25751:18;;;25744:62;-1:-1:-1;;;25822:18:1;;;25815:31;25863:19;;24204:57:0;25491:397:1;24204:57:0;679:10;-1:-1:-1;;;;;24296:21:0;;;;:62;;-1:-1:-1;24321:37:0;24338:5;679:10;25209:164;:::i;24321:37::-;24274:168;;;;-1:-1:-1;;;24274:168:0;;21805:2:1;24274:168:0;;;21787:21:1;21844:2;21824:18;;;21817:30;21883:34;21863:18;;;21856:62;21954:26;21934:18;;;21927:54;21998:19;;24274:168:0;21603:420:1;24274:168:0;24455:21;24464:2;24468:7;24455:8;:21::i;:::-;24143:341;24073:411;;:::o;47770:355::-;47837:13;47863:18;47884:19;47894:8;47884:9;:19::i;:::-;47863:40;;47914:23;47951:13;47940:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47940:25:0;;47914:51;;47981:6;47976:115;47997:13;47993:1;:17;47976:115;;;48047:32;48067:8;48077:1;48047:19;:32::i;:::-;48032:9;48042:1;48032:12;;;;;;;;:::i;:::-;;;;;;;;;;:47;48012:3;;;;:::i;:::-;;;;47976:115;;;-1:-1:-1;48108:9:0;47770:355;-1:-1:-1;;;47770:355:0:o;44202:97::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44270:13:::1;:21:::0;44202:97::o;25440:339::-;25635:41;679:10;25668:7;25635:18;:41::i;:::-;25627:103;;;;-1:-1:-1;;;25627:103:0;;;;;;;:::i;:::-;25743:28;25753:4;25759:2;25763:7;25743:9;:28::i;50917:324::-;;;;;;;:::i;35962:256::-;36059:7;36095:23;36112:5;36095:16;:23::i;:::-;36087:5;:31;36079:87;;;;-1:-1:-1;;;36079:87:0;;18330:2:1;36079:87:0;;;18312:21:1;18369:2;18349:18;;;18342:30;18408:34;18388:18;;;18381:62;-1:-1:-1;;;18459:18:1;;;18452:41;18510:19;;36079:87:0;18128:407:1;36079:87:0;-1:-1:-1;;;;;;36184:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35962:256::o;25850:185::-;25988:39;26005:4;26011:2;26015:7;25988:39;;;;;;;;;;;;:16;:39::i;36484:233::-;36559:7;36595:30;36382:10;:17;;36294:113;36595:30;36587:5;:38;36579:95;;;;-1:-1:-1;;;36579:95:0;;26513:2:1;36579:95:0;;;26495:21:1;26552:2;26532:18;;;26525:30;26591:34;26571:18;;;26564:62;-1:-1:-1;;;26642:18:1;;;26635:42;26694:19;;36579:95:0;26311:408:1;36579:95:0;36692:10;36703:5;36692:17;;;;;;;;:::i;:::-;;;;;;;;;36685:24;;36484:233;;;:::o;43637:111::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;43712:15:::1;:28:::0;43637:111::o;51248:64::-;;;;;;;:::i;43295:119::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;43355:51:::1;::::0;43363:10:::1;::::0;43384:21:::1;43355:51:::0;::::1;;;::::0;::::1;::::0;;;43384:21;43363:10;43355:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43295:119::o:0;44094:102::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44166:11:::1;:22:::0;;-1:-1:-1;;;;;;44166:22:0::1;-1:-1:-1::0;;;;;44166:22:0;;;::::1;::::0;;;::::1;::::0;;44094:102::o;43754:93::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;43820:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;43820:19:0::1;-1:-1:-1::0;;;;43820:19:0;;::::1;::::0;;;::::1;::::0;;43754:93::o;22685:239::-;22757:7;22793:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22793:16:0;22828:19;22820:73;;;;-1:-1:-1;;;22820:73:0;;22641:2:1;22820:73:0;;;22623:21:1;22680:2;22660:18;;;22653:30;22719:34;22699:18;;;22692:62;-1:-1:-1;;;22770:18:1;;;22763:39;22819:19;;22820:73:0;22439:405:1;50863:47:0;;;;;;;:::i;22415:208::-;22487:7;-1:-1:-1;;;;;22515:19:0;;22507:74;;;;-1:-1:-1;;;22507:74:0;;22230:2:1;22507:74:0;;;22212:21:1;22269:2;22249:18;;;22242:30;22308:34;22288:18;;;22281:62;-1:-1:-1;;;22359:18:1;;;22352:40;22409:19;;22507:74:0;22028:406:1;22507:74:0;-1:-1:-1;;;;;;22599:16:0;;;;;:9;:16;;;;;;;22415:208::o;2376:94::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;2441:21:::1;2459:1;2441:9;:21::i;:::-;2376:94::o:0;43533:98::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;43601:14:::1;:22:::0;;-1:-1:-1;;43601:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43533:98::o;50745:110::-;50832:15;;;;:5;:15;;;;;50825:22;;50799:13;;50832:15;50825:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50745:110;;;:::o;45593:615::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;45700:11:::1;;45689:7;45672:14;;:24;;;;:::i;:::-;:39;;45664:72;;;::::0;-1:-1:-1;;;45664:72:0;;27287:2:1;45664:72:0::1;::::0;::::1;27269:21:1::0;27326:2;27306:18;;;27299:30;-1:-1:-1;;;27345:18:1;;;27338:50;27405:18;;45664:72:0::1;27085:344:1::0;45664:72:0::1;45766:13;;45755:7;:24;;45747:59;;;::::0;-1:-1:-1;;;45747:59:0;;27636:2:1;45747:59:0::1;::::0;::::1;27618:21:1::0;27675:2;27655:18;;;27648:30;-1:-1:-1;;;27694:18:1;;;27687:52;27756:18;;45747:59:0::1;27434:346:1::0;45747:59:0::1;45822:6;45817:384;45838:7;45834:1;:11;45817:384;;;45883:14;::::0;;;;;45867:13:::1;45912:16;45883:14:::0;45912:16:::1;:::i;:::-;::::0;;;-1:-1:-1;;45986:19:0::1;::::0;45972:72:::1;::::0;-1:-1:-1;;;45972:72:0;;46023:10:::1;45972:72;::::0;::::1;16970:51:1::0;17037:18;;;17030:34;;;-1:-1:-1;;;;;45986:19:0;;::::1;::::0;45972:50:::1;::::0;16943:18:1;;45972:72:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;46070:15:0::1;::::0;46060:59:::1;::::0;-1:-1:-1;;;46060:59:0;;46098:10:::1;46060:59;::::0;::::1;16970:51:1::0;17037:18;;;17030:34;;;-1:-1:-1;;;;;46070:15:0;;::::1;::::0;-1:-1:-1;46060:37:0::1;::::0;-1:-1:-1;16943:18:1;;46060:59:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;46155:34:0::1;::::0;;46168:10:::1;16970:51:1::0;;17052:2;17037:18;;17030:34;;;46155::0::1;::::0;-1:-1:-1;16943:18:1;;-1:-1:-1;46155:34:0::1;;;;;;;-1:-1:-1::0;45847:3:0;::::1;::::0;::::1;:::i;:::-;;;;45817:384;;23160:104:::0;23216:13;23249:7;23242:14;;;;;:::i;24843:295::-;-1:-1:-1;;;;;24946:24:0;;679:10;24946:24;;24938:62;;;;-1:-1:-1;;;24938:62:0;;21038:2:1;24938:62:0;;;21020:21:1;21077:2;21057:18;;;21050:30;21116:27;21096:18;;;21089:55;21161:18;;24938:62:0;20836:349:1;24938:62:0;679:10;25013:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25013:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25013:53:0;;;;;;;;;;25082:48;;17852:41:1;;;25013:42:0;;679:10;25082:48;;17825:18:1;25082:48:0;;;;;;;24843:295;;:::o;51321:108::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;51399:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26106:328::-:0;26281:41;679:10;26314:7;26281:18;:41::i;:::-;26273:103;;;;-1:-1:-1;;;26273:103:0;;;;;;;:::i;:::-;26387:39;26401:4;26407:2;26411:7;26420:5;26387:13;:39::i;:::-;26106:328;;;;:::o;51577:136::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;51669:36;;::::1;::::0;:16:::1;::::0;:36:::1;::::0;::::1;::::0;::::1;:::i;46216:707::-:0;43064:10;43078:9;43064:23;43056:58;;;;-1:-1:-1;;;43056:58:0;;23051:2:1;43056:58:0;;;23033:21:1;23090:2;23070:18;;;23063:30;-1:-1:-1;;;23109:18:1;;;23102:52;23171:18;;43056:58:0;22849:346:1;43056:58:0;43184:14:::1;::::0;::::1;;:22;;:14:::0;:22:::1;43176:67;;;::::0;-1:-1:-1;;;43176:67:0;;26926:2:1;43176:67:0::1;::::0;::::1;26908:21:1::0;;;26945:18;;;26938:30;27004:34;26984:18;;;26977:62;27056:18;;43176:67:0::1;26724:356:1::0;43176:67:0::1;46341:11:::2;;46330:7;46313:14;;:24;;;;:::i;:::-;:39;;46305:72;;;::::0;-1:-1:-1;;;46305:72:0;;27287:2:1;46305:72:0::2;::::0;::::2;27269:21:1::0;27326:2;27306:18;;;27299:30;-1:-1:-1;;;27345:18:1;;;27338:50;27405:18;;46305:72:0::2;27085:344:1::0;46305:72:0::2;46407:13;;46396:7;:24;;46388:59;;;::::0;-1:-1:-1;;;46388:59:0;;27636:2:1;46388:59:0::2;::::0;::::2;27618:21:1::0;27675:2;27655:18;;;27648:30;-1:-1:-1;;;27694:18:1;;;27687:52;27756:18;;46388:59:0::2;27434:346:1::0;46388:59:0::2;46494:7;46480:11;;:21;;;;:::i;:::-;46466:9;:36;46458:63;;;::::0;-1:-1:-1;;;46458:63:0;;24166:2:1;46458:63:0::2;::::0;::::2;24148:21:1::0;24205:2;24185:18;;;24178:30;-1:-1:-1;;;24224:18:1;;;24217:44;24278:18;;46458:63:0::2;23964:338:1::0;46458:63:0::2;46537:6;46532:384;46553:7;46549:1;:11;46532:384;;;46598:14;::::0;;;;;46582:13:::2;46627:16;46598:14:::0;46627:16:::2;:::i;:::-;::::0;;;-1:-1:-1;;46701:19:0::2;::::0;46687:72:::2;::::0;-1:-1:-1;;;46687:72:0;;46738:10:::2;46687:72;::::0;::::2;16970:51:1::0;17037:18;;;17030:34;;;-1:-1:-1;;;;;46701:19:0;;::::2;::::0;46687:50:::2;::::0;16943:18:1;;46687:72:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;46785:15:0::2;::::0;46775:59:::2;::::0;-1:-1:-1;;;46775:59:0;;46813:10:::2;46775:59;::::0;::::2;16970:51:1::0;17037:18;;;17030:34;;;-1:-1:-1;;;;;46785:15:0;;::::2;::::0;-1:-1:-1;46775:37:0::2;::::0;-1:-1:-1;16943:18:1;;46775:59:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;46870:34:0::2;::::0;;46883:10:::2;16970:51:1::0;;17052:2;17037:18;;17030:34;;;46870::0::2;::::0;-1:-1:-1;16943:18:1;;-1:-1:-1;46870:34:0::2;;;;;;;-1:-1:-1::0;46562:3:0;::::2;::::0;::::2;:::i;:::-;;;;46532:384;;51721:1740:::0;51784:13;51810:19;51832:18;51841:8;51832;:18::i;:::-;51861:28;;;;;;;;;;;-1:-1:-1;;;51861:28:0;;;;;;;;51963:19;;52024:48;;51810:40;;-1:-1:-1;51861:28:0;;51810:40;;51963:19;51861;;52024:48;;;12909:30:1;12897:43;;12965:2;12956:12;;12695:279;52024:48:0;;;;;;;;;;;;;51993:80;;52084:19;52144:9;52161:26;52178:8;52161:16;:26::i;:::-;52113:81;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52084:111;;52206:20;52486:12;:10;:12::i;:::-;52640:11;52236:434;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52206:465;;52682:27;52757:16;52719:61;;;;;;;;:::i;:::-;;;;;;;;;;;;;52682:99;;52792:26;52865:16;52828:60;;;;;;;;:::i;:::-;;;;;;;;;;;;;52792:97;;52900:25;53003:5;53053:11;52935:138;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52900:174;;53123:11;53175:29;53192:11;53175:16;:29::i;:::-;53259:30;53276:12;:8;53287:1;53276:12;:::i;:::-;53259:16;:30::i;:::-;53106:192;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53085:214;;53310:23;53360:7;53369:5;53376:6;53384:13;53399:12;53413:11;53343:82;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53343:82:0;;;;;;;;;;51721:1740;-1:-1:-1;;;;;;;;;;;;;51721:1740:0:o;46931:831::-;43064:10;43078:9;43064:23;43056:58;;;;-1:-1:-1;;;43056:58:0;;23051:2:1;43056:58:0;;;23033:21:1;23090:2;23070:18;;;23063:30;-1:-1:-1;;;23109:18:1;;;23102:52;23171:18;;43056:58:0;22849:346:1;43056:58:0;47128:19:::1;::::0;47120:52:::1;::::0;-1:-1:-1;;;47120:52:0;;::::1;::::0;::::1;28337:25:1::0;;;47176:10:0::1;::::0;-1:-1:-1;;;;;47128:19:0::1;::::0;47120:36:::1;::::0;28310:18:1;;47120:52:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47120:66:0::1;;47112:110;;;::::0;-1:-1:-1;;;47112:110:0;;20273:2:1;47112:110:0::1;::::0;::::1;20255:21:1::0;20312:2;20292:18;;;20285:30;20351:33;20331:18;;;20324:61;20402:18;;47112:110:0::1;20071:355:1::0;47112:110:0::1;47241:32;::::0;;;:16:::1;:32;::::0;;;;;:37;47233:84:::1;;;::::0;-1:-1:-1;;;47233:84:0;;23763:2:1;47233:84:0::1;::::0;::::1;23745:21:1::0;23802:2;23782:18;;;23775:30;23841:34;23821:18;;;23814:62;-1:-1:-1;;;23892:18:1;;;23885:32;23934:19;;47233:84:0::1;23561:398:1::0;47233:84:0::1;47359:15;::::0;44426:21;;47336:38:::1;;47328:70;;;::::0;-1:-1:-1;;;47328:70:0;;19925:2:1;47328:70:0::1;::::0;::::1;19907:21:1::0;19964:2;19944:18;;;19937:30;-1:-1:-1;;;19983:18:1;;;19976:49;20042:18;;47328:70:0::1;19723:343:1::0;47328:70:0::1;47417:28;47439:5;47417:21;:28::i;:::-;47409:78;;;::::0;-1:-1:-1;;;47409:78:0;;27987:2:1;47409:78:0::1;::::0;::::1;27969:21:1::0;28026:2;28006:18;;;27999:30;28065:34;28045:18;;;28038:62;-1:-1:-1;;;28116:18:1;;;28109:35;28161:19;;47409:78:0::1;27785:401:1::0;47409:78:0::1;47498:32;::::0;;;:16:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;;;;;;47563:37;47575:17;47563:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47594:5;47563:11;:37::i;:::-;47543:57:::0;;::::1;::::0;:17:::1;::::0;:57:::1;::::0;;::::1;::::0;::::1;:::i;:::-;;47611:13;47627;36382:10:::0;:17;;36294:113;47627:13:::1;47651:15;::::0;;;:5:::1;:15;::::0;;;;;;;:23;;47611:29;;-1:-1:-1;47651:23:0::1;::::0;:15;;:23;::::1;::::0;::::1;:::i;:::-;;47685:27;47691:10;47703:8;47685:5;:27::i;:::-;47728:26;::::0;;47733:10:::1;16970:51:1::0;;17052:2;17037:18;;17030:34;;;47728:26:0::1;::::0;16943:18:1;47728:26:0::1;;;;;;;47015:747;46931:831:::0;;:::o;44461:745::-;44618:16;;44536:4;;44584:7;;44536:4;44645:532;44666:7;44662:1;:11;44645:532;;;44695:20;44718:9;44728:1;44718:12;;;;;;;;:::i;:::-;;;;;44797:11;;-1:-1:-1;;;;;;44718:12:0;;;;-1:-1:-1;44745:19:0;;44797:11;-1:-1:-1;;;44797:11:0;;;;44793:131;;;-1:-1:-1;;;;44793:131:0;;;-1:-1:-1;;;;44793:131:0;-1:-1:-1;;;;;;44956:28:0;;;;;;;;:52;;-1:-1:-1;;;;;;;;;;44988:20:0;;;44956:52;:77;;;-1:-1:-1;;;;;;;;;;45012:21:0;;;44956:77;:102;;;-1:-1:-1;;;;;;;;;;45037:21:0;;;44956:102;:127;;;-1:-1:-1;;;;;;;;;;45062:21:0;;;44956:127;:152;;;-1:-1:-1;;;;;;;;;;45087:21:0;;;44956:152;44952:209;;;-1:-1:-1;45140:5:0;;44461:745;-1:-1:-1;;;;;;44461:745:0:o;44952:209::-;44680:497;;44675:3;;;;;:::i;:::-;;;;44645:532;;;-1:-1:-1;45194:4:0;;44461:745;-1:-1:-1;;;;44461:745:0:o;43853:111::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;43930:15:::1;:26:::0;;-1:-1:-1;;;;;;43930:26:0::1;-1:-1:-1::0;;;;;43930:26:0;;;::::1;::::0;;;::::1;::::0;;43853:111::o;43420:107::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;43493:11:::1;:26:::0;43420:107::o;2625:192::-;1798:6;;-1:-1:-1;;;;;1798:6:0;679:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2714:22:0;::::1;2706:73;;;::::0;-1:-1:-1;;;2706:73:0;;19161:2:1;2706:73:0::1;::::0;::::1;19143:21:1::0;19200:2;19180:18;;;19173:30;19239:34;19219:18;;;19212:62;-1:-1:-1;;;19290:18:1;;;19283:36;19336:19;;2706:73:0::1;18959:402:1::0;2706:73:0::1;2790:19;2800:8;2790:9;:19::i;22046:305::-:0;22148:4;-1:-1:-1;;;;;;22185:40:0;;-1:-1:-1;;;22185:40:0;;:105;;-1:-1:-1;;;;;;;22242:48:0;;-1:-1:-1;;;22242:48:0;22185:105;:158;;;-1:-1:-1;;;;;;;;;;4562:40:0;;;22307:36;4453:157;31926:174;32001:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32001:29:0;-1:-1:-1;;;;;32001:29:0;;;;;;;;:24;;32055:23;32001:24;32055:14;:23::i;:::-;-1:-1:-1;;;;;32046:46:0;;;;;;;;;;;31926:174;;:::o;28238:348::-;28331:4;28033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28033:16:0;28348:73;;;;-1:-1:-1;;;28348:73:0;;21392:2:1;28348:73:0;;;21374:21:1;21431:2;21411:18;;;21404:30;21470:34;21450:18;;;21443:62;-1:-1:-1;;;21521:18:1;;;21514:42;21573:19;;28348:73:0;21190:408:1;28348:73:0;28432:13;28448:23;28463:7;28448:14;:23::i;:::-;28432:39;;28501:5;-1:-1:-1;;;;;28490:16:0;:7;-1:-1:-1;;;;;28490:16:0;;:51;;;;28534:7;-1:-1:-1;;;;;28510:31:0;:20;28522:7;28510:11;:20::i;:::-;-1:-1:-1;;;;;28510:31:0;;28490:51;:87;;;-1:-1:-1;;;;;;25330:25:0;;;25306:4;25330:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28545:32;28482:96;28238:348;-1:-1:-1;;;;28238:348:0:o;31230:578::-;31389:4;-1:-1:-1;;;;;31362:31:0;:23;31377:7;31362:14;:23::i;:::-;-1:-1:-1;;;;;31362:31:0;;31354:85;;;;-1:-1:-1;;;31354:85:0;;25283:2:1;31354:85:0;;;25265:21:1;25322:2;25302:18;;;25295:30;25361:34;25341:18;;;25334:62;-1:-1:-1;;;25412:18:1;;;25405:39;25461:19;;31354:85:0;25081:405:1;31354:85:0;-1:-1:-1;;;;;31458:16:0;;31450:65;;;;-1:-1:-1;;;31450:65:0;;20633:2:1;31450:65:0;;;20615:21:1;20672:2;20652:18;;;20645:30;20711:34;20691:18;;;20684:62;-1:-1:-1;;;20762:18:1;;;20755:34;20806:19;;31450:65:0;20431:400:1;31450:65:0;31528:39;31549:4;31555:2;31559:7;31528:20;:39::i;:::-;31632:29;31649:1;31653:7;31632:8;:29::i;:::-;-1:-1:-1;;;;;31674:15:0;;;;;;:9;:15;;;;;:20;;31693:1;;31674:15;:20;;31693:1;;31674:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31705:13:0;;;;;;:9;:13;;;;;:18;;31722:1;;31705:13;:18;;31722:1;;31705:18;:::i;:::-;;;;-1:-1:-1;;31734:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31734:21:0;-1:-1:-1;;;;;31734:21:0;;;;;;;;;31773:27;;31734:16;;31773:27;;;;;;;31230:578;;;:::o;2825:173::-;2900:6;;;-1:-1:-1;;;;;2917:17:0;;;-1:-1:-1;;;;;;2917:17:0;;;;;;;2950:40;;2900:6;;;2917:17;2900:6;;2950:40;;2881:16;;2950:40;2870:128;2825:173;:::o;27316:315::-;27473:28;27483:4;27489:2;27493:7;27473:9;:28::i;:::-;27520:48;27543:4;27549:2;27553:7;27562:5;27520:22;:48::i;:::-;27512:111;;;;-1:-1:-1;;;27512:111:0;;;;;;;:::i;12859:723::-;12915:13;13136:10;13132:53;;-1:-1:-1;;13163:10:0;;;;;;;;;;;;-1:-1:-1;;;13163:10:0;;;;;12859:723::o;13132:53::-;13210:5;13195:12;13251:78;13258:9;;13251:78;;13284:8;;;;:::i;:::-;;-1:-1:-1;13307:10:0;;-1:-1:-1;13315:2:0;13307:10;;:::i;:::-;;;13251:78;;;13339:19;13371:6;13361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13361:17:0;;13339:39;;13389:154;13396:10;;13389:154;;13423:11;13433:1;13423:11;;:::i;:::-;;-1:-1:-1;13492:10:0;13500:2;13492:5;:10;:::i;:::-;13479:24;;:2;:24;:::i;:::-;13466:39;;13449:6;13456;13449:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13449:56:0;;;;;;;;-1:-1:-1;13520:11:0;13529:2;13520:11;;:::i;:::-;;;13389:154;;42876:117;42960:11;;42954:31;;;-1:-1:-1;;;42954:31:0;;;;42921:13;;-1:-1:-1;;;;;42960:11:0;;42954:29;;:31;;;;;42960:11;;42954:31;;;;;;;42960:11;42954:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42954:31:0;;;;;;;;;;;;:::i;:::-;42947:38;;42876:117;:::o;45212:234::-;45299:13;45325:18;45370:4;45353:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;45325:56;;45423:7;45432:4;45406:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45392:46;;;45212:234;;;;:::o;29922:382::-;-1:-1:-1;;;;;30002:16:0;;29994:61;;;;-1:-1:-1;;;29994:61:0;;23402:2:1;29994:61:0;;;23384:21:1;;;23421:18;;;23414:30;23480:34;23460:18;;;23453:62;23532:18;;29994:61:0;23200:356:1;29994:61:0;28009:4;28033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28033:16:0;:30;30066:58;;;;-1:-1:-1;;;30066:58:0;;19568:2:1;30066:58:0;;;19550:21:1;19607:2;19587:18;;;19580:30;19646;19626:18;;;19619:58;19694:18;;30066:58:0;19366:352:1;30066:58:0;30137:45;30166:1;30170:2;30174:7;30137:20;:45::i;:::-;-1:-1:-1;;;;;30195:13:0;;;;;;:9;:13;;;;;:18;;30212:1;;30195:13;:18;;30212:1;;30195:18;:::i;:::-;;;;-1:-1:-1;;30224:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30224:21:0;-1:-1:-1;;;;;30224:21:0;;;;;;;;30263:33;;30224:16;;;30263:33;;30224:16;;30263:33;29922:382;;:::o;37330:589::-;-1:-1:-1;;;;;37536:18:0;;37532:187;;37571:40;37603:7;38746:10;:17;;38719:24;;;;:15;:24;;;;;:44;;;38774:24;;;;;;;;;;;;38642:164;37571:40;37532:187;;;37641:2;-1:-1:-1;;;;;37633:10:0;:4;-1:-1:-1;;;;;37633:10:0;;37629:90;;37660:47;37693:4;37699:7;37660:32;:47::i;:::-;-1:-1:-1;;;;;37733:16:0;;37729:183;;37766:45;37803:7;37766:36;:45::i;37729:183::-;37839:4;-1:-1:-1;;;;;37833:10:0;:2;-1:-1:-1;;;;;37833:10:0;;37829:83;;37860:40;37888:2;37892:7;37860:27;:40::i;32665:799::-;32820:4;-1:-1:-1;;;;;32841:13:0;;5623:20;5671:8;32837:620;;32877:72;;-1:-1:-1;;;32877:72:0;;-1:-1:-1;;;;;32877:36:0;;;;;:72;;679:10;;32928:4;;32934:7;;32943:5;;32877:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32877:72:0;;;;;;;;-1:-1:-1;;32877:72:0;;;;;;;;;;;;:::i;:::-;;;32873:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33119:13:0;;33115:272;;33162:60;;-1:-1:-1;;;33162:60:0;;;;;;;:::i;33115:272::-;33337:6;33331:13;33322:6;33318:2;33314:15;33307:38;32873:529;-1:-1:-1;;;;;;33000:51:0;-1:-1:-1;;;33000:51:0;;-1:-1:-1;32993:58:0;;39433:988;39699:22;39749:1;39724:22;39741:4;39724:16;:22::i;:::-;:26;;;;:::i;:::-;39761:18;39782:26;;;:17;:26;;;;;;39699:51;;-1:-1:-1;39915:28:0;;;39911:328;;-1:-1:-1;;;;;39982:18:0;;39960:19;39982:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40033:30;;;;;;:44;;;40150:30;;:17;:30;;;;;:43;;;39911:328;-1:-1:-1;40335:26:0;;;;:17;:26;;;;;;;;40328:33;;;-1:-1:-1;;;;;40379:18:0;;;;;:12;:18;;;;;:34;;;;;;;40372:41;39433:988::o;40716:1079::-;40994:10;:17;40969:22;;40994:21;;41014:1;;40994:21;:::i;:::-;41026:18;41047:24;;;:15;:24;;;;;;41420:10;:26;;40969:46;;-1:-1:-1;41047:24:0;;40969:46;;41420:26;;;;;;:::i;:::-;;;;;;;;;41398:48;;41484:11;41459:10;41470;41459:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41564:28;;;:15;:28;;;;;;;:41;;;41736:24;;;;;41729:31;41771:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40787:1008;;;40716:1079;:::o;38220:221::-;38305:14;38322:20;38339:2;38322:16;:20::i;:::-;-1:-1:-1;;;;;38353:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38398:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38220:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:45;;;239:1;236;229:12;198:45;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;14:336;;;;;:::o;355:160::-;420:20;;476:13;;469:21;459:32;;449:60;;505:1;502;495:12;449:60;355:160;;;:::o;520:221::-;563:5;616:3;609:4;601:6;597:17;593:27;583:55;;634:1;631;624:12;583:55;656:79;731:3;722:6;709:20;702:4;694:6;690:17;656:79;:::i;:::-;647:88;520:221;-1:-1:-1;;;520:221:1:o;746:247::-;805:6;858:2;846:9;837:7;833:23;829:32;826:52;;;874:1;871;864:12;826:52;913:9;900:23;932:31;957:5;932:31;:::i;998:251::-;1068:6;1121:2;1109:9;1100:7;1096:23;1092:32;1089:52;;;1137:1;1134;1127:12;1089:52;1169:9;1163:16;1188:31;1213:5;1188:31;:::i;1254:388::-;1322:6;1330;1383:2;1371:9;1362:7;1358:23;1354:32;1351:52;;;1399:1;1396;1389:12;1351:52;1438:9;1425:23;1457:31;1482:5;1457:31;:::i;:::-;1507:5;-1:-1:-1;1564:2:1;1549:18;;1536:32;1577:33;1536:32;1577:33;:::i;:::-;1629:7;1619:17;;;1254:388;;;;;:::o;1647:456::-;1724:6;1732;1740;1793:2;1781:9;1772:7;1768:23;1764:32;1761:52;;;1809:1;1806;1799:12;1761:52;1848:9;1835:23;1867:31;1892:5;1867:31;:::i;:::-;1917:5;-1:-1:-1;1974:2:1;1959:18;;1946:32;1987:33;1946:32;1987:33;:::i;:::-;1647:456;;2039:7;;-1:-1:-1;;;2093:2:1;2078:18;;;;2065:32;;1647:456::o;2108:794::-;2203:6;2211;2219;2227;2280:3;2268:9;2259:7;2255:23;2251:33;2248:53;;;2297:1;2294;2287:12;2248:53;2336:9;2323:23;2355:31;2380:5;2355:31;:::i;:::-;2405:5;-1:-1:-1;2462:2:1;2447:18;;2434:32;2475:33;2434:32;2475:33;:::i;:::-;2527:7;-1:-1:-1;2581:2:1;2566:18;;2553:32;;-1:-1:-1;2636:2:1;2621:18;;2608:32;2663:18;2652:30;;2649:50;;;2695:1;2692;2685:12;2649:50;2718:22;;2771:4;2763:13;;2759:27;-1:-1:-1;2749:55:1;;2800:1;2797;2790:12;2749:55;2823:73;2888:7;2883:2;2870:16;2865:2;2861;2857:11;2823:73;:::i;:::-;2813:83;;;2108:794;;;;;;;:::o;2907:315::-;2972:6;2980;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3088:9;3075:23;3107:31;3132:5;3107:31;:::i;:::-;3157:5;-1:-1:-1;3181:35:1;3212:2;3197:18;;3181:35;:::i;:::-;3171:45;;2907:315;;;;;:::o;3227:::-;3295:6;3303;3356:2;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3411:9;3398:23;3430:31;3455:5;3430:31;:::i;:::-;3480:5;3532:2;3517:18;;;;3504:32;;-1:-1:-1;;;3227:315:1:o;3547:180::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3695:26;3711:9;3695:26;:::i;3732:245::-;3790:6;3843:2;3831:9;3822:7;3818:23;3814:32;3811:52;;;3859:1;3856;3849:12;3811:52;3898:9;3885:23;3917:30;3941:5;3917:30;:::i;3982:249::-;4051:6;4104:2;4092:9;4083:7;4079:23;4075:32;4072:52;;;4120:1;4117;4110:12;4072:52;4152:9;4146:16;4171:30;4195:5;4171:30;:::i;4236:322::-;4305:6;4358:2;4346:9;4337:7;4333:23;4329:32;4326:52;;;4374:1;4371;4364:12;4326:52;4414:9;4401:23;4447:18;4439:6;4436:30;4433:50;;;4479:1;4476;4469:12;4433:50;4502;4544:7;4535:6;4524:9;4520:22;4502:50;:::i;4563:635::-;4643:6;4696:2;4684:9;4675:7;4671:23;4667:32;4664:52;;;4712:1;4709;4702:12;4664:52;4745:9;4739:16;4778:18;4770:6;4767:30;4764:50;;;4810:1;4807;4800:12;4764:50;4833:22;;4886:4;4878:13;;4874:27;-1:-1:-1;4864:55:1;;4915:1;4912;4905:12;4864:55;4944:2;4938:9;4969:48;4985:31;5013:2;4985:31;:::i;4969:48::-;5040:2;5033:5;5026:17;5080:7;5075:2;5070;5066;5062:11;5058:20;5055:33;5052:53;;;5101:1;5098;5091:12;5052:53;5114:54;5165:2;5160;5153:5;5149:14;5144:2;5140;5136:11;5114:54;:::i;:::-;5187:5;4563:635;-1:-1:-1;;;;;4563:635:1:o;5203:180::-;5262:6;5315:2;5303:9;5294:7;5290:23;5286:32;5283:52;;;5331:1;5328;5321:12;5283:52;-1:-1:-1;5354:23:1;;5203:180;-1:-1:-1;5203:180:1:o;5388:390::-;5466:6;5474;5527:2;5515:9;5506:7;5502:23;5498:32;5495:52;;;5543:1;5540;5533:12;5495:52;5579:9;5566:23;5556:33;;5640:2;5629:9;5625:18;5612:32;5667:18;5659:6;5656:30;5653:50;;;5699:1;5696;5689:12;5653:50;5722;5764:7;5755:6;5744:9;5740:22;5722:50;:::i;:::-;5712:60;;;5388:390;;;;;:::o;5783:257::-;5824:3;5862:5;5856:12;5889:6;5884:3;5877:19;5905:63;5961:6;5954:4;5949:3;5945:14;5938:4;5931:5;5927:16;5905:63;:::i;:::-;6022:2;6001:15;-1:-1:-1;;5997:29:1;5988:39;;;;6029:4;5984:50;;5783:257;-1:-1:-1;;5783:257:1:o;6045:185::-;6087:3;6125:5;6119:12;6140:52;6185:6;6180:3;6173:4;6166:5;6162:16;6140:52;:::i;:::-;6208:16;;;;;6045:185;-1:-1:-1;;6045:185:1:o;6235:973::-;6320:12;;6285:3;;6375:1;6395:18;;;;6448;;;;6475:61;;6529:4;6521:6;6517:17;6507:27;;6475:61;6555:2;6603;6595:6;6592:14;6572:18;6569:38;6566:161;;;6649:10;6644:3;6640:20;6637:1;6630:31;6684:4;6681:1;6674:15;6712:4;6709:1;6702:15;6566:161;6743:18;6770:104;;;;6888:1;6883:319;;;;6736:466;;6770:104;-1:-1:-1;;6803:24:1;;6791:37;;6848:16;;;;-1:-1:-1;6770:104:1;;6883:319;28917:1;28910:14;;;28954:4;28941:18;;6977:1;6991:165;7005:6;7002:1;6999:13;6991:165;;;7083:14;;7070:11;;;7063:35;7126:16;;;;7020:10;;6991:165;;;6995:3;;7185:6;7180:3;7176:16;7169:23;;6736:466;;;;;;;6235:973;;;;:::o;7372:470::-;7551:3;7589:6;7583:13;7605:53;7651:6;7646:3;7639:4;7631:6;7627:17;7605:53;:::i;:::-;7721:13;;7680:16;;;;7743:57;7721:13;7680:16;7777:4;7765:17;;7743:57;:::i;:::-;7816:20;;7372:470;-1:-1:-1;;;;7372:470:1:o;7847:1257::-;8218:3;8256:6;8250:13;8282:4;8295:51;8339:6;8334:3;8329:2;8321:6;8317:15;8295:51;:::i;:::-;8409:13;;8368:16;;;;8431:55;8409:13;8368:16;8453:15;;;8431:55;:::i;:::-;8553:13;;8508:20;;;8575:55;8553:13;8508:20;8597:15;;;8575:55;:::i;:::-;8697:13;;8652:20;;;8719:55;8697:13;8652:20;8741:15;;;8719:55;:::i;:::-;8841:13;;8796:20;;;8863:55;8841:13;8796:20;8885:15;;;8863:55;:::i;:::-;8985:13;;8940:20;;;9007:55;8985:13;8940:20;9029:15;;;9007:55;:::i;:::-;9078:20;;;;;7847:1257;-1:-1:-1;;;;;;;;;7847:1257:1:o;9109:439::-;9341:3;9379:6;9373:13;9395:53;9441:6;9436:3;9429:4;9421:6;9417:17;9395:53;:::i;:::-;-1:-1:-1;;;9470:16:1;;9495:18;;;-1:-1:-1;9540:1:1;9529:13;;9109:439;-1:-1:-1;9109:439:1:o;9553:1370::-;10083:3;10121:6;10115:13;10137:53;10183:6;10178:3;10171:4;10163:6;10159:17;10137:53;:::i;:::-;10221:6;10216:3;10212:16;10199:29;;10251:66;10244:5;10237:81;10361:7;10356:3;10352:17;10345:4;10338:5;10334:16;10327:43;10401:6;10395:13;10417:66;10474:8;10469:2;10462:5;10458:14;10451:4;10443:6;10439:17;10417:66;:::i;:::-;10551;10546:2;10502:20;;;;10538:11;;;10531:87;-1:-1:-1;;;10642:2:1;10634:11;;10627:67;10719:13;;10741:63;10719:13;10790:2;10782:11;;10775:4;10763:17;;10741:63;:::i;:::-;-1:-1:-1;;;10864:2:1;10823:17;;;;10856:11;;;10849:41;10914:2;10906:11;;9553:1370;-1:-1:-1;;;;;9553:1370:1:o;10928:1762::-;-1:-1:-1;;;11630:41:1;;11700:66;11696:1;11687:11;;11680:87;11797:34;11792:2;11783:12;;11776:56;11862:34;11857:2;11848:12;;11841:56;11927:34;11922:2;11913:12;;11906:56;11993:34;11987:3;11978:13;;11971:57;12059:34;12053:3;12044:13;;12037:57;12125:29;12119:3;12110:13;;12103:52;12178:13;;-1:-1:-1;;12200:61:1;12178:13;12248:3;12239:13;;12234:2;12222:15;;12200:61;:::i;:::-;12326:34;12320:3;12280:16;;;12312:12;;;12305:56;12391:34;12385:3;12377:12;;12370:56;12456:34;12450:3;12442:12;;12435:56;12521:34;12515:3;12507:12;;12500:56;-1:-1:-1;;;12580:3:1;12572:12;;12565:33;12614:70;12644:39;12678:3;12670:12;;12662:6;12644:39;:::i;:::-;-1:-1:-1;;;7278:55:1;;7358:2;7349:12;;7213:154;12979:1171;13491:66;13486:3;13479:79;13597:32;13592:3;13588:42;13583:2;13578:3;13574:12;13567:64;13461:3;13660:6;13654:13;13676:60;13729:6;13724:2;13719:3;13715:12;13710:2;13702:6;13698:15;13676:60;:::i;:::-;13800:66;13795:2;13755:16;;;13787:11;;;13780:87;-1:-1:-1;;;13891:2:1;13883:11;;13876:47;13948:13;;13970:61;13948:13;14017:2;14009:11;;14004:2;13992:15;;13970:61;:::i;:::-;-1:-1:-1;;;14091:2:1;14050:17;;;;14083:11;;;14076:41;14141:2;14133:11;;12979:1171;-1:-1:-1;;;;12979:1171:1:o;14155:540::-;-1:-1:-1;;;14503:59:1;;14485:3;14581:47;14624:2;14615:12;;14607:6;14581:47;:::i;:::-;-1:-1:-1;;;14637:26:1;;14687:1;14679:10;;14155:540;-1:-1:-1;;;14155:540:1:o;14700:538::-;-1:-1:-1;;;15048:57:1;;15030:3;15124:47;15167:2;15158:12;;15150:6;15124:47;:::i;15243:847::-;-1:-1:-1;;;15740:45:1;;15722:3;15804:47;15847:2;15838:12;;15830:6;15804:47;:::i;:::-;-1:-1:-1;;;15867:2:1;15860:16;15905:6;15899:13;15921:60;15974:6;15970:1;15966:2;15962:10;15955:4;15947:6;15943:17;15921:60;:::i;:::-;-1:-1:-1;;;16039:1:1;16000:15;;;;16031:10;;;16024:34;16082:1;16074:10;;15243:847;-1:-1:-1;;;;15243:847:1:o;16303:488::-;-1:-1:-1;;;;;16572:15:1;;;16554:34;;16624:15;;16619:2;16604:18;;16597:43;16671:2;16656:18;;16649:34;;;16719:3;16714:2;16699:18;;16692:31;;;16497:4;;16740:45;;16765:19;;16757:6;16740:45;:::i;:::-;16732:53;16303:488;-1:-1:-1;;;;;;16303:488:1:o;17075:632::-;17246:2;17298:21;;;17368:13;;17271:18;;;17390:22;;;17217:4;;17246:2;17469:15;;;;17443:2;17428:18;;;17217:4;17512:169;17526:6;17523:1;17520:13;17512:169;;;17587:13;;17575:26;;17656:15;;;;17621:12;;;;17548:1;17541:9;17512:169;;;-1:-1:-1;17698:3:1;;17075:632;-1:-1:-1;;;;;;17075:632:1:o;17904:219::-;18053:2;18042:9;18035:21;18016:4;18073:44;18113:2;18102:9;18098:18;18090:6;18073:44;:::i;18540:414::-;18742:2;18724:21;;;18781:2;18761:18;;;18754:30;18820:34;18815:2;18800:18;;18793:62;-1:-1:-1;;;18886:2:1;18871:18;;18864:48;18944:3;18929:19;;18540:414::o;24720:356::-;24922:2;24904:21;;;24941:18;;;24934:30;25000:34;24995:2;24980:18;;24973:62;25067:2;25052:18;;24720:356::o;25893:413::-;26095:2;26077:21;;;26134:2;26114:18;;;26107:30;26173:34;26168:2;26153:18;;26146:62;-1:-1:-1;;;26239:2:1;26224:18;;26217:47;26296:3;26281:19;;25893:413::o;28373:275::-;28444:2;28438:9;28509:2;28490:13;;-1:-1:-1;;28486:27:1;28474:40;;28544:18;28529:34;;28565:22;;;28526:62;28523:88;;;28591:18;;:::i;:::-;28627:2;28620:22;28373:275;;-1:-1:-1;28373:275:1:o;28653:186::-;28701:4;28734:18;28726:6;28723:30;28720:56;;;28756:18;;:::i;:::-;-1:-1:-1;28822:2:1;28801:15;-1:-1:-1;;28797:29:1;28828:4;28793:40;;28653:186::o;28970:128::-;29010:3;29041:1;29037:6;29034:1;29031:13;29028:39;;;29047:18;;:::i;:::-;-1:-1:-1;29083:9:1;;28970:128::o;29103:120::-;29143:1;29169;29159:35;;29174:18;;:::i;:::-;-1:-1:-1;29208:9:1;;29103:120::o;29228:168::-;29268:7;29334:1;29330;29326:6;29322:14;29319:1;29316:21;29311:1;29304:9;29297:17;29293:45;29290:71;;;29341:18;;:::i;:::-;-1:-1:-1;29381:9:1;;29228:168::o;29401:125::-;29441:4;29469:1;29466;29463:8;29460:34;;;29474:18;;:::i;:::-;-1:-1:-1;29511:9:1;;29401:125::o;29531:258::-;29603:1;29613:113;29627:6;29624:1;29621:13;29613:113;;;29703:11;;;29697:18;29684:11;;;29677:39;29649:2;29642:10;29613:113;;;29744:6;29741:1;29738:13;29735:48;;;-1:-1:-1;;29779:1:1;29761:16;;29754:27;29531:258::o;29794:380::-;29873:1;29869:12;;;;29916;;;29937:61;;29991:4;29983:6;29979:17;29969:27;;29937:61;30044:2;30036:6;30033:14;30013:18;30010:38;30007:161;;;30090:10;30085:3;30081:20;30078:1;30071:31;30125:4;30122:1;30115:15;30153:4;30150:1;30143:15;30007:161;;29794:380;;;:::o;30179:135::-;30218:3;-1:-1:-1;;30239:17:1;;30236:43;;;30259:18;;:::i;:::-;-1:-1:-1;30306:1:1;30295:13;;30179:135::o;30319:112::-;30351:1;30377;30367:35;;30382:18;;:::i;:::-;-1:-1:-1;30416:9:1;;30319:112::o;30436:127::-;30497:10;30492:3;30488:20;30485:1;30478:31;30528:4;30525:1;30518:15;30552:4;30549:1;30542:15;30568:127;30629:10;30624:3;30620:20;30617:1;30610:31;30660:4;30657:1;30650:15;30684:4;30681:1;30674:15;30700:127;30761:10;30756:3;30752:20;30749:1;30742:31;30792:4;30789:1;30782:15;30816:4;30813:1;30806:15;30832:127;30893:10;30888:3;30884:20;30881:1;30874:31;30924:4;30921:1;30914:15;30948:4;30945:1;30938:15;30964:127;31025:10;31020:3;31016:20;31013:1;31006:31;31056:4;31053:1;31046:15;31080:4;31077:1;31070:15;31096:131;-1:-1:-1;;;;;31171:31:1;;31161:42;;31151:70;;31217:1;31214;31207:12;31232:131;-1:-1:-1;;;;;;31306:32:1;;31296:43;;31286:71;;31353:1;31350;31343:12

Swarm Source

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