ETH Price: $2,491.80 (-0.80%)

Token

JOYPOLIS Yearly Pass NFT (CASJ)
 

Overview

Max Total Supply

19 CASJ

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 CASJ
0x9e3e90bfd784ba48c00b6a368a68aaf4df9e89db
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:
JoypolisOneYearPass

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: OneYearPass.sol
// SPDX-License-Identifier: NONE

pragma solidity >=0.8.10 <=0.8.10;

import "./OpenzeppelinERC721.sol";

contract JoypolisOneYearPass is  ERC721Enumerable {

    address public owner;
    uint256 public nftid = 1;
    string currentURI = "https://arweave.net/e7wMIBwRr3yvZB0IjUoqJvqWorhXFiAlpm_3NDpsisQ";
    bool revealed = false;
    string [5] revealdURI = ["","","","",""];

    function setCurrentURI( string memory _uri ) public {
        require( _msgSender() == owner  );
        currentURI = _uri;
    }

    function setRevealdURI( string memory _uri , uint revealdArrayId) public {
        require( _msgSender() == owner  );
        revealdURI[revealdArrayId] = _uri;
    }

    function toggleRevealed( ) public {
        require( _msgSender() == owner  );
        revealed = !revealed;
    }

    function burn(uint256 _id) public {
        require( _msgSender() == ownerOf(_id));
        _burn(_id);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        if (!revealed){
        return currentURI;
        } else {
        return revealdURI[tokenId % 5];
        }
    }

    function mint() public payable {
        require( msg.value == 0.2 ether);
        payable(owner).transfer(msg.value);
        _safeMint( _msgSender() , nftid);
        nftid++;        
    }



    constructor() ERC721("JOYPOLIS Yearly Pass NFT" , "CASJ" ) {
        owner = _msgSender();
    } 
}


File 2 of 2: OpenzeppelinERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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






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




/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}









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







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





/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}





/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}








/**
 * @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 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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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















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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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







/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

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

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

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

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setCurrentURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"revealdArrayId","type":"uint256"}],"name":"setRevealdURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600b556040518060600160405280603f81526020016200383d603f9139600c90805190602001906200003a929190620001e7565b506000600d60006101000a81548160ff0219169083151502179055506040518060a0016040528060405180602001604052806000815250815260200160405180602001604052806000815250815260200160405180602001604052806000815250815260200160405180602001604052806000815250815260200160405180602001604052806000815250815250600e906005620000da92919062000278565b50348015620000e857600080fd5b506040518060400160405280601881526020017f4a4f59504f4c495320596561726c792050617373204e465400000000000000008152506040518060400160405280600481526020017f4341534a0000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016d929190620001e7565b50806001908051906020019062000186929190620001e7565b50505062000199620001df60201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003c4565b600033905090565b828054620001f5906200038e565b90600052602060002090601f01602090048101928262000219576000855562000265565b82601f106200023457805160ff191683800117855562000265565b8280016001018555821562000265579182015b828111156200026457825182559160200191906001019062000247565b5b509050620002749190620002d2565b5090565b8260058101928215620002bf579160200282015b82811115620002be578251829080519060200190620002ad929190620001e7565b50916020019190600101906200028c565b5b509050620002ce9190620002f1565b5090565b5b80821115620002ed576000816000905550600101620002d3565b5090565b5b808211156200031557600081816200030b919062000319565b50600101620002f2565b5090565b50805462000327906200038e565b6000825580601f106200033b57506200035c565b601f0160209004906000526020600020908101906200035b9190620002d2565b5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a757607f821691505b60208210811415620003be57620003bd6200035f565b5b50919050565b61346980620003d46000396000f3fe6080604052600436106101405760003560e01c80635bc020bc116100b657806395d89b411161006f57806395d89b411461044d578063a22cb46514610478578063b4731716146104a1578063b88d4fde146104ca578063c87b56dd146104f3578063e985e9c51461053057610140565b80635bc020bc1461033d5780636352211e146103545780636a094b80146103915780636fd976bc146103ba57806370a08231146103e55780638da5cb5b1461042257610140565b806318160ddd1161010857806318160ddd1461021d57806323b872dd146102485780632f745c591461027157806342842e0e146102ae57806342966c68146102d75780634f6ccce71461030057610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea5780631249c58b14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612276565b61056d565b60405161017991906122be565b60405180910390f35b34801561018e57600080fd5b506101976105e7565b6040516101a49190612372565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906123ca565b610679565b6040516101e19190612438565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c919061247f565b6106fe565b005b61021b610816565b005b34801561022957600080fd5b506102326108c0565b60405161023f91906124ce565b60405180910390f35b34801561025457600080fd5b5061026f600480360381019061026a91906124e9565b6108cd565b005b34801561027d57600080fd5b506102986004803603810190610293919061247f565b61092d565b6040516102a591906124ce565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906124e9565b6109d2565b005b3480156102e357600080fd5b506102fe60048036038101906102f991906123ca565b6109f2565b005b34801561030c57600080fd5b50610327600480360381019061032291906123ca565b610a45565b60405161033491906124ce565b60405180910390f35b34801561034957600080fd5b50610352610ab6565b005b34801561036057600080fd5b5061037b600480360381019061037691906123ca565b610b43565b6040516103889190612438565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612671565b610bf5565b005b3480156103c657600080fd5b506103cf610c84565b6040516103dc91906124ce565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906126cd565b610c8a565b60405161041991906124ce565b60405180910390f35b34801561042e57600080fd5b50610437610d42565b6040516104449190612438565b60405180910390f35b34801561045957600080fd5b50610462610d68565b60405161046f9190612372565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612726565b610dfa565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612766565b610f7b565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612850565b610ff6565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906123ca565b611058565b6040516105279190612372565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906128d3565b6111b2565b60405161056491906122be565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e057506105df82611246565b5b9050919050565b6060600080546105f690612942565b80601f016020809104026020016040519081016040528092919081815260200182805461062290612942565b801561066f5780601f106106445761010080835404028352916020019161066f565b820191906000526020600020905b81548152906001019060200180831161065257829003601f168201915b5050505050905090565b600061068482611328565b6106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba906129e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070982610b43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190612a78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610799611394565b73ffffffffffffffffffffffffffffffffffffffff1614806107c857506107c7816107c2611394565b6111b2565b5b610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe90612b0a565b60405180910390fd5b610811838361139c565b505050565b6702c68af0bb140000341461082a57600080fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610892573d6000803e3d6000fd5b506108a661089e611394565b600b54611455565b600b60008154809291906108b990612b59565b9190505550565b6000600880549050905090565b6108de6108d8611394565b82611473565b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490612c14565b60405180910390fd5b610928838383611551565b505050565b600061093883610c8a565b8210610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090612ca6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109ed83838360405180602001604052806000815250610ff6565b505050565b6109fb81610b43565b73ffffffffffffffffffffffffffffffffffffffff16610a19611394565b73ffffffffffffffffffffffffffffffffffffffff1614610a3957600080fd5b610a42816117ad565b50565b6000610a4f6108c0565b8210610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612d38565b60405180910390fd5b60088281548110610aa457610aa3612d58565b5b90600052602060002001549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610af7611394565b73ffffffffffffffffffffffffffffffffffffffff1614610b1757600080fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390612df9565b60405180910390fd5b80915050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c36611394565b73ffffffffffffffffffffffffffffffffffffffff1614610c5657600080fd5b81600e8260058110610c6b57610c6a612d58565b5b019080519060200190610c7f929190612167565b505050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290612e8b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610d7790612942565b80601f0160208091040260200160405190810160405280929190818152602001828054610da390612942565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b610e02611394565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612ef7565b60405180910390fd5b8060056000610e7d611394565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2a611394565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f6f91906122be565b60405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fbc611394565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc57600080fd5b80600c9080519060200190610ff2929190612167565b5050565b611007611001611394565b83611473565b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612c14565b60405180910390fd5b611052848484846118be565b50505050565b6060600d60009054906101000a900460ff1661110057600c805461107b90612942565b80601f01602080910402602001604051908101604052809291908181526020018280546110a790612942565b80156110f45780601f106110c9576101008083540402835291602001916110f4565b820191906000526020600020905b8154815290600101906020018083116110d757829003601f168201915b505050505090506111ad565b600e60058361110f9190612f46565b600581106111205761111f612d58565b5b01805461112c90612942565b80601f016020809104026020016040519081016040528092919081815260200182805461115890612942565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061131157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061132157506113208261191a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140f83610b43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61146f828260405180602001604052806000815250611984565b5050565b600061147e82611328565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490612fe9565b60405180910390fd5b60006114c883610b43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061153757508373ffffffffffffffffffffffffffffffffffffffff1661151f84610679565b73ffffffffffffffffffffffffffffffffffffffff16145b80611548575061154781856111b2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661157182610b43565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be9061307b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061310d565b60405180910390fd5b6116428383836119df565b61164d60008261139c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169d919061312d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f49190613161565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006117b882610b43565b90506117c6816000846119df565b6117d160008361139c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611821919061312d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6118c9848484611551565b6118d584848484611af3565b611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90613229565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61198e8383611c7b565b61199b6000848484611af3565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613229565b60405180910390fd5b505050565b6119ea838383611e49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a2d57611a2881611e4e565b611a6c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a6b57611a6a8382611e97565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aaf57611aaa81612004565b611aee565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611aed57611aec82826120d5565b5b5b505050565b6000611b148473ffffffffffffffffffffffffffffffffffffffff16612154565b15611c6e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b3d611394565b8786866040518563ffffffff1660e01b8152600401611b5f949392919061329e565b6020604051808303816000875af1925050508015611b9b57506040513d601f19601f82011682018060405250810190611b9891906132ff565b60015b611c1e573d8060008114611bcb576040519150601f19603f3d011682016040523d82523d6000602084013e611bd0565b606091505b50600081511415611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90613229565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c73565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290613378565b60405180910390fd5b611cf481611328565b15611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b906133e4565b60405180910390fd5b611d40600083836119df565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d909190613161565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611ea484610c8a565b611eae919061312d565b9050600060076000848152602001908152602001600020549050818114611f93576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612018919061312d565b905060006009600084815260200190815260200160002054905060006008838154811061204857612047612d58565b5b90600052602060002001549050806008838154811061206a57612069612d58565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806120b9576120b8613404565b5b6001900381819060005260206000200160009055905550505050565b60006120e083610c8a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461217390612942565b90600052602060002090601f01602090048101928261219557600085556121dc565b82601f106121ae57805160ff19168380011785556121dc565b828001600101855582156121dc579182015b828111156121db5782518255916020019190600101906121c0565b5b5090506121e991906121ed565b5090565b5b808211156122065760008160009055506001016121ee565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122538161221e565b811461225e57600080fd5b50565b6000813590506122708161224a565b92915050565b60006020828403121561228c5761228b612214565b5b600061229a84828501612261565b91505092915050565b60008115159050919050565b6122b8816122a3565b82525050565b60006020820190506122d360008301846122af565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123135780820151818401526020810190506122f8565b83811115612322576000848401525b50505050565b6000601f19601f8301169050919050565b6000612344826122d9565b61234e81856122e4565b935061235e8185602086016122f5565b61236781612328565b840191505092915050565b6000602082019050818103600083015261238c8184612339565b905092915050565b6000819050919050565b6123a781612394565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000602082840312156123e0576123df612214565b5b60006123ee848285016123b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612422826123f7565b9050919050565b61243281612417565b82525050565b600060208201905061244d6000830184612429565b92915050565b61245c81612417565b811461246757600080fd5b50565b60008135905061247981612453565b92915050565b6000806040838503121561249657612495612214565b5b60006124a48582860161246a565b92505060206124b5858286016123b5565b9150509250929050565b6124c881612394565b82525050565b60006020820190506124e360008301846124bf565b92915050565b60008060006060848603121561250257612501612214565b5b60006125108682870161246a565b93505060206125218682870161246a565b9250506040612532868287016123b5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61257e82612328565b810181811067ffffffffffffffff8211171561259d5761259c612546565b5b80604052505050565b60006125b061220a565b90506125bc8282612575565b919050565b600067ffffffffffffffff8211156125dc576125db612546565b5b6125e582612328565b9050602081019050919050565b82818337600083830152505050565b600061261461260f846125c1565b6125a6565b9050828152602081018484840111156126305761262f612541565b5b61263b8482856125f2565b509392505050565b600082601f8301126126585761265761253c565b5b8135612668848260208601612601565b91505092915050565b6000806040838503121561268857612687612214565b5b600083013567ffffffffffffffff8111156126a6576126a5612219565b5b6126b285828601612643565b92505060206126c3858286016123b5565b9150509250929050565b6000602082840312156126e3576126e2612214565b5b60006126f18482850161246a565b91505092915050565b612703816122a3565b811461270e57600080fd5b50565b600081359050612720816126fa565b92915050565b6000806040838503121561273d5761273c612214565b5b600061274b8582860161246a565b925050602061275c85828601612711565b9150509250929050565b60006020828403121561277c5761277b612214565b5b600082013567ffffffffffffffff81111561279a57612799612219565b5b6127a684828501612643565b91505092915050565b600067ffffffffffffffff8211156127ca576127c9612546565b5b6127d382612328565b9050602081019050919050565b60006127f36127ee846127af565b6125a6565b90508281526020810184848401111561280f5761280e612541565b5b61281a8482856125f2565b509392505050565b600082601f8301126128375761283661253c565b5b81356128478482602086016127e0565b91505092915050565b6000806000806080858703121561286a57612869612214565b5b60006128788782880161246a565b94505060206128898782880161246a565b935050604061289a878288016123b5565b925050606085013567ffffffffffffffff8111156128bb576128ba612219565b5b6128c787828801612822565b91505092959194509250565b600080604083850312156128ea576128e9612214565b5b60006128f88582860161246a565b92505060206129098582860161246a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061295a57607f821691505b6020821081141561296e5761296d612913565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006129d0602c836122e4565b91506129db82612974565b604082019050919050565b600060208201905081810360008301526129ff816129c3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a626021836122e4565b9150612a6d82612a06565b604082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612af46038836122e4565b9150612aff82612a98565b604082019050919050565b60006020820190508181036000830152612b2381612ae7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b6482612394565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b9757612b96612b2a565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612bfe6031836122e4565b9150612c0982612ba2565b604082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612c90602b836122e4565b9150612c9b82612c34565b604082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612d22602c836122e4565b9150612d2d82612cc6565b604082019050919050565b60006020820190508181036000830152612d5181612d15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612de36029836122e4565b9150612dee82612d87565b604082019050919050565b60006020820190508181036000830152612e1281612dd6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612e75602a836122e4565b9150612e8082612e19565b604082019050919050565b60006020820190508181036000830152612ea481612e68565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612ee16019836122e4565b9150612eec82612eab565b602082019050919050565b60006020820190508181036000830152612f1081612ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f5182612394565b9150612f5c83612394565b925082612f6c57612f6b612f17565b5b828206905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612fd3602c836122e4565b9150612fde82612f77565b604082019050919050565b6000602082019050818103600083015261300281612fc6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006130656029836122e4565b915061307082613009565b604082019050919050565b6000602082019050818103600083015261309481613058565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130f76024836122e4565b91506131028261309b565b604082019050919050565b60006020820190508181036000830152613126816130ea565b9050919050565b600061313882612394565b915061314383612394565b92508282101561315657613155612b2a565b5b828203905092915050565b600061316c82612394565b915061317783612394565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131ac576131ab612b2a565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132136032836122e4565b915061321e826131b7565b604082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061327082613249565b61327a8185613254565b935061328a8185602086016122f5565b61329381612328565b840191505092915050565b60006080820190506132b36000830187612429565b6132c06020830186612429565b6132cd60408301856124bf565b81810360608301526132df8184613265565b905095945050505050565b6000815190506132f98161224a565b92915050565b60006020828403121561331557613314612214565b5b6000613323848285016132ea565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006133626020836122e4565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006133ce601c836122e4565b91506133d982613398565b602082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220818ae02ab16431bc4b0925eeeace5196f553d590428ca12d547de1d09a7f3d9c64736f6c634300080a003368747470733a2f2f617277656176652e6e65742f6537774d49427752723379765a4230496a556f714a7671576f7268584669416c706d5f334e447073697351

Deployed Bytecode

0x6080604052600436106101405760003560e01c80635bc020bc116100b657806395d89b411161006f57806395d89b411461044d578063a22cb46514610478578063b4731716146104a1578063b88d4fde146104ca578063c87b56dd146104f3578063e985e9c51461053057610140565b80635bc020bc1461033d5780636352211e146103545780636a094b80146103915780636fd976bc146103ba57806370a08231146103e55780638da5cb5b1461042257610140565b806318160ddd1161010857806318160ddd1461021d57806323b872dd146102485780632f745c591461027157806342842e0e146102ae57806342966c68146102d75780634f6ccce71461030057610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea5780631249c58b14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612276565b61056d565b60405161017991906122be565b60405180910390f35b34801561018e57600080fd5b506101976105e7565b6040516101a49190612372565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906123ca565b610679565b6040516101e19190612438565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c919061247f565b6106fe565b005b61021b610816565b005b34801561022957600080fd5b506102326108c0565b60405161023f91906124ce565b60405180910390f35b34801561025457600080fd5b5061026f600480360381019061026a91906124e9565b6108cd565b005b34801561027d57600080fd5b506102986004803603810190610293919061247f565b61092d565b6040516102a591906124ce565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906124e9565b6109d2565b005b3480156102e357600080fd5b506102fe60048036038101906102f991906123ca565b6109f2565b005b34801561030c57600080fd5b50610327600480360381019061032291906123ca565b610a45565b60405161033491906124ce565b60405180910390f35b34801561034957600080fd5b50610352610ab6565b005b34801561036057600080fd5b5061037b600480360381019061037691906123ca565b610b43565b6040516103889190612438565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612671565b610bf5565b005b3480156103c657600080fd5b506103cf610c84565b6040516103dc91906124ce565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906126cd565b610c8a565b60405161041991906124ce565b60405180910390f35b34801561042e57600080fd5b50610437610d42565b6040516104449190612438565b60405180910390f35b34801561045957600080fd5b50610462610d68565b60405161046f9190612372565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612726565b610dfa565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612766565b610f7b565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612850565b610ff6565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906123ca565b611058565b6040516105279190612372565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906128d3565b6111b2565b60405161056491906122be565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e057506105df82611246565b5b9050919050565b6060600080546105f690612942565b80601f016020809104026020016040519081016040528092919081815260200182805461062290612942565b801561066f5780601f106106445761010080835404028352916020019161066f565b820191906000526020600020905b81548152906001019060200180831161065257829003601f168201915b5050505050905090565b600061068482611328565b6106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba906129e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070982610b43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190612a78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610799611394565b73ffffffffffffffffffffffffffffffffffffffff1614806107c857506107c7816107c2611394565b6111b2565b5b610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe90612b0a565b60405180910390fd5b610811838361139c565b505050565b6702c68af0bb140000341461082a57600080fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610892573d6000803e3d6000fd5b506108a661089e611394565b600b54611455565b600b60008154809291906108b990612b59565b9190505550565b6000600880549050905090565b6108de6108d8611394565b82611473565b61091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490612c14565b60405180910390fd5b610928838383611551565b505050565b600061093883610c8a565b8210610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090612ca6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109ed83838360405180602001604052806000815250610ff6565b505050565b6109fb81610b43565b73ffffffffffffffffffffffffffffffffffffffff16610a19611394565b73ffffffffffffffffffffffffffffffffffffffff1614610a3957600080fd5b610a42816117ad565b50565b6000610a4f6108c0565b8210610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612d38565b60405180910390fd5b60088281548110610aa457610aa3612d58565b5b90600052602060002001549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610af7611394565b73ffffffffffffffffffffffffffffffffffffffff1614610b1757600080fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390612df9565b60405180910390fd5b80915050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c36611394565b73ffffffffffffffffffffffffffffffffffffffff1614610c5657600080fd5b81600e8260058110610c6b57610c6a612d58565b5b019080519060200190610c7f929190612167565b505050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290612e8b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054610d7790612942565b80601f0160208091040260200160405190810160405280929190818152602001828054610da390612942565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b610e02611394565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612ef7565b60405180910390fd5b8060056000610e7d611394565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2a611394565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f6f91906122be565b60405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fbc611394565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc57600080fd5b80600c9080519060200190610ff2929190612167565b5050565b611007611001611394565b83611473565b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612c14565b60405180910390fd5b611052848484846118be565b50505050565b6060600d60009054906101000a900460ff1661110057600c805461107b90612942565b80601f01602080910402602001604051908101604052809291908181526020018280546110a790612942565b80156110f45780601f106110c9576101008083540402835291602001916110f4565b820191906000526020600020905b8154815290600101906020018083116110d757829003601f168201915b505050505090506111ad565b600e60058361110f9190612f46565b600581106111205761111f612d58565b5b01805461112c90612942565b80601f016020809104026020016040519081016040528092919081815260200182805461115890612942565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061131157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061132157506113208261191a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661140f83610b43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61146f828260405180602001604052806000815250611984565b5050565b600061147e82611328565b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490612fe9565b60405180910390fd5b60006114c883610b43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061153757508373ffffffffffffffffffffffffffffffffffffffff1661151f84610679565b73ffffffffffffffffffffffffffffffffffffffff16145b80611548575061154781856111b2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661157182610b43565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be9061307b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061310d565b60405180910390fd5b6116428383836119df565b61164d60008261139c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169d919061312d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f49190613161565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006117b882610b43565b90506117c6816000846119df565b6117d160008361139c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611821919061312d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6118c9848484611551565b6118d584848484611af3565b611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90613229565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61198e8383611c7b565b61199b6000848484611af3565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190613229565b60405180910390fd5b505050565b6119ea838383611e49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a2d57611a2881611e4e565b611a6c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a6b57611a6a8382611e97565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aaf57611aaa81612004565b611aee565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611aed57611aec82826120d5565b5b5b505050565b6000611b148473ffffffffffffffffffffffffffffffffffffffff16612154565b15611c6e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b3d611394565b8786866040518563ffffffff1660e01b8152600401611b5f949392919061329e565b6020604051808303816000875af1925050508015611b9b57506040513d601f19601f82011682018060405250810190611b9891906132ff565b60015b611c1e573d8060008114611bcb576040519150601f19603f3d011682016040523d82523d6000602084013e611bd0565b606091505b50600081511415611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90613229565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c73565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290613378565b60405180910390fd5b611cf481611328565b15611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b906133e4565b60405180910390fd5b611d40600083836119df565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d909190613161565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611ea484610c8a565b611eae919061312d565b9050600060076000848152602001908152602001600020549050818114611f93576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612018919061312d565b905060006009600084815260200190815260200160002054905060006008838154811061204857612047612d58565b5b90600052602060002001549050806008838154811061206a57612069612d58565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806120b9576120b8613404565b5b6001900381819060005260206000200160009055905550505050565b60006120e083610c8a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461217390612942565b90600052602060002090601f01602090048101928261219557600085556121dc565b82601f106121ae57805160ff19168380011785556121dc565b828001600101855582156121dc579182015b828111156121db5782518255916020019190600101906121c0565b5b5090506121e991906121ed565b5090565b5b808211156122065760008160009055506001016121ee565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122538161221e565b811461225e57600080fd5b50565b6000813590506122708161224a565b92915050565b60006020828403121561228c5761228b612214565b5b600061229a84828501612261565b91505092915050565b60008115159050919050565b6122b8816122a3565b82525050565b60006020820190506122d360008301846122af565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123135780820151818401526020810190506122f8565b83811115612322576000848401525b50505050565b6000601f19601f8301169050919050565b6000612344826122d9565b61234e81856122e4565b935061235e8185602086016122f5565b61236781612328565b840191505092915050565b6000602082019050818103600083015261238c8184612339565b905092915050565b6000819050919050565b6123a781612394565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000602082840312156123e0576123df612214565b5b60006123ee848285016123b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612422826123f7565b9050919050565b61243281612417565b82525050565b600060208201905061244d6000830184612429565b92915050565b61245c81612417565b811461246757600080fd5b50565b60008135905061247981612453565b92915050565b6000806040838503121561249657612495612214565b5b60006124a48582860161246a565b92505060206124b5858286016123b5565b9150509250929050565b6124c881612394565b82525050565b60006020820190506124e360008301846124bf565b92915050565b60008060006060848603121561250257612501612214565b5b60006125108682870161246a565b93505060206125218682870161246a565b9250506040612532868287016123b5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61257e82612328565b810181811067ffffffffffffffff8211171561259d5761259c612546565b5b80604052505050565b60006125b061220a565b90506125bc8282612575565b919050565b600067ffffffffffffffff8211156125dc576125db612546565b5b6125e582612328565b9050602081019050919050565b82818337600083830152505050565b600061261461260f846125c1565b6125a6565b9050828152602081018484840111156126305761262f612541565b5b61263b8482856125f2565b509392505050565b600082601f8301126126585761265761253c565b5b8135612668848260208601612601565b91505092915050565b6000806040838503121561268857612687612214565b5b600083013567ffffffffffffffff8111156126a6576126a5612219565b5b6126b285828601612643565b92505060206126c3858286016123b5565b9150509250929050565b6000602082840312156126e3576126e2612214565b5b60006126f18482850161246a565b91505092915050565b612703816122a3565b811461270e57600080fd5b50565b600081359050612720816126fa565b92915050565b6000806040838503121561273d5761273c612214565b5b600061274b8582860161246a565b925050602061275c85828601612711565b9150509250929050565b60006020828403121561277c5761277b612214565b5b600082013567ffffffffffffffff81111561279a57612799612219565b5b6127a684828501612643565b91505092915050565b600067ffffffffffffffff8211156127ca576127c9612546565b5b6127d382612328565b9050602081019050919050565b60006127f36127ee846127af565b6125a6565b90508281526020810184848401111561280f5761280e612541565b5b61281a8482856125f2565b509392505050565b600082601f8301126128375761283661253c565b5b81356128478482602086016127e0565b91505092915050565b6000806000806080858703121561286a57612869612214565b5b60006128788782880161246a565b94505060206128898782880161246a565b935050604061289a878288016123b5565b925050606085013567ffffffffffffffff8111156128bb576128ba612219565b5b6128c787828801612822565b91505092959194509250565b600080604083850312156128ea576128e9612214565b5b60006128f88582860161246a565b92505060206129098582860161246a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061295a57607f821691505b6020821081141561296e5761296d612913565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006129d0602c836122e4565b91506129db82612974565b604082019050919050565b600060208201905081810360008301526129ff816129c3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a626021836122e4565b9150612a6d82612a06565b604082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612af46038836122e4565b9150612aff82612a98565b604082019050919050565b60006020820190508181036000830152612b2381612ae7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b6482612394565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b9757612b96612b2a565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612bfe6031836122e4565b9150612c0982612ba2565b604082019050919050565b60006020820190508181036000830152612c2d81612bf1565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612c90602b836122e4565b9150612c9b82612c34565b604082019050919050565b60006020820190508181036000830152612cbf81612c83565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612d22602c836122e4565b9150612d2d82612cc6565b604082019050919050565b60006020820190508181036000830152612d5181612d15565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612de36029836122e4565b9150612dee82612d87565b604082019050919050565b60006020820190508181036000830152612e1281612dd6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612e75602a836122e4565b9150612e8082612e19565b604082019050919050565b60006020820190508181036000830152612ea481612e68565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612ee16019836122e4565b9150612eec82612eab565b602082019050919050565b60006020820190508181036000830152612f1081612ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f5182612394565b9150612f5c83612394565b925082612f6c57612f6b612f17565b5b828206905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612fd3602c836122e4565b9150612fde82612f77565b604082019050919050565b6000602082019050818103600083015261300281612fc6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006130656029836122e4565b915061307082613009565b604082019050919050565b6000602082019050818103600083015261309481613058565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130f76024836122e4565b91506131028261309b565b604082019050919050565b60006020820190508181036000830152613126816130ea565b9050919050565b600061313882612394565b915061314383612394565b92508282101561315657613155612b2a565b5b828203905092915050565b600061316c82612394565b915061317783612394565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131ac576131ab612b2a565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132136032836122e4565b915061321e826131b7565b604082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061327082613249565b61327a8185613254565b935061328a8185602086016122f5565b61329381612328565b840191505092915050565b60006080820190506132b36000830187612429565b6132c06020830186612429565b6132cd60408301856124bf565b81810360608301526132df8184613265565b905095945050505050565b6000815190506132f98161224a565b92915050565b60006020828403121561331557613314612214565b5b6000613323848285016132ea565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006133626020836122e4565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006133ce601c836122e4565b91506133d982613398565b602082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220818ae02ab16431bc4b0925eeeace5196f553d590428ca12d547de1d09a7f3d9c64736f6c634300080a0033

Deployed Bytecode Sourcemap

112:1418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33364:237:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20770:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22230:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21767:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1220:196:0;;;:::i;:::-;;34017:113:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23120:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33685:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23496:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;840:112:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34207:233:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;715:117:0;;;;;;;;;;;;;:::i;:::-;;20464:239:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;538:169:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;198:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20194:208:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;171:20:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22523:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;398:132:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23718:285:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;960:252:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22889:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33364:237;33466:4;33505:35;33490:50;;;:11;:50;;;;:103;;;;33557:36;33581:11;33557:23;:36::i;:::-;33490:103;33483:110;;33364:237;;;:::o;20770:100::-;20824:13;20857:5;20850:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20770:100;:::o;22230:221::-;22306:7;22334:16;22342:7;22334;:16::i;:::-;22326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22419:15;:24;22435:7;22419:24;;;;;;;;;;;;;;;;;;;;;22412:31;;22230:221;;;:::o;21767:397::-;21848:13;21864:23;21879:7;21864:14;:23::i;:::-;21848:39;;21912:5;21906:11;;:2;:11;;;;21898:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21992:5;21976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22001:37;22018:5;22025:12;:10;:12::i;:::-;22001:16;:37::i;:::-;21976:62;21968:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22135:21;22144:2;22148:7;22135:8;:21::i;:::-;21837:327;21767:397;;:::o;1220:196:0:-;1284:9;1271;:22;1262:32;;;;;;1313:5;;;;;;;;;;;1305:23;;:34;1329:9;1305:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1350:32;1361:12;:10;:12::i;:::-;1376:5;;1350:9;:32::i;:::-;1393:5;;:7;;;;;;;;;:::i;:::-;;;;;;1220:196::o;34017:113:1:-;34078:7;34105:10;:17;;;;34098:24;;34017:113;:::o;23120:305::-;23281:41;23300:12;:10;:12::i;:::-;23314:7;23281:18;:41::i;:::-;23273:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23389:28;23399:4;23405:2;23409:7;23389:9;:28::i;:::-;23120:305;;;:::o;33685:256::-;33782:7;33818:23;33835:5;33818:16;:23::i;:::-;33810:5;:31;33802:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33907:12;:19;33920:5;33907:19;;;;;;;;;;;;;;;:26;33927:5;33907:26;;;;;;;;;;;;33900:33;;33685:256;;;;:::o;23496:151::-;23600:39;23617:4;23623:2;23627:7;23600:39;;;;;;;;;;;;:16;:39::i;:::-;23496:151;;;:::o;840:112:0:-;910:12;918:3;910:7;:12::i;:::-;894:28;;:12;:10;:12::i;:::-;:28;;;885:38;;;;;;934:10;940:3;934:5;:10::i;:::-;840:112;:::o;34207:233:1:-;34282:7;34318:30;:28;:30::i;:::-;34310:5;:38;34302:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34415:10;34426:5;34415:17;;;;;;;;:::i;:::-;;;;;;;;;;34408:24;;34207:233;;;:::o;715:117:0:-;785:5;;;;;;;;;;;769:21;;:12;:10;:12::i;:::-;:21;;;760:33;;;;;;816:8;;;;;;;;;;;815:9;804:8;;:20;;;;;;;;;;;;;;;;;;715:117::o;20464:239:1:-;20536:7;20556:13;20572:7;:16;20580:7;20572:16;;;;;;;;;;;;;;;;;;;;;20556:32;;20624:1;20607:19;;:5;:19;;;;20599:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20690:5;20683:12;;;20464:239;;;:::o;538:169:0:-;647:5;;;;;;;;;;;631:21;;:12;:10;:12::i;:::-;:21;;;622:33;;;;;;695:4;666:10;677:14;666:26;;;;;;;:::i;:::-;;;:33;;;;;;;;;;;;:::i;:::-;;538:169;;:::o;198:24::-;;;;:::o;20194:208:1:-;20266:7;20311:1;20294:19;;:5;:19;;;;20286:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20378:9;:16;20388:5;20378:16;;;;;;;;;;;;;;;;20371:23;;20194:208;;;:::o;171:20:0:-;;;;;;;;;;;;;:::o;20939:104:1:-;20995:13;21028:7;21021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20939:104;:::o;22523:295::-;22638:12;:10;:12::i;:::-;22626:24;;:8;:24;;;;22618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22738:8;22693:18;:32;22712:12;:10;:12::i;:::-;22693:32;;;;;;;;;;;;;;;:42;22726:8;22693:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22791:8;22762:48;;22777:12;:10;:12::i;:::-;22762:48;;;22801:8;22762:48;;;;;;:::i;:::-;;;;;;;;22523:295;;:::o;398:132:0:-;486:5;;;;;;;;;;;470:21;;:12;:10;:12::i;:::-;:21;;;461:33;;;;;;518:4;505:10;:17;;;;;;;;;;;;:::i;:::-;;398:132;:::o;23718:285:1:-;23850:41;23869:12;:10;:12::i;:::-;23883:7;23850:18;:41::i;:::-;23842:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23956:39;23970:4;23976:2;23980:7;23989:5;23956:13;:39::i;:::-;23718:285;;;;:::o;960:252:0:-;1061:13;1097:8;;;;;;;;;;;1092:113;;1124:10;1117:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1092:113;1170:10;1191:1;1181:7;:11;;;;:::i;:::-;1170:23;;;;;;;:::i;:::-;;;1163:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960:252;;;;:::o;22889:164:1:-;22986:4;23010:18;:25;23029:5;23010:25;;;;;;;;;;;;;;;:35;23036:8;23010:35;;;;;;;;;;;;;;;;;;;;;;;;;23003:42;;22889:164;;;;:::o;19838:292::-;19940:4;19979:25;19964:40;;;:11;:40;;;;:105;;;;20036:33;20021:48;;;:11;:48;;;;19964:105;:158;;;;20086:36;20110:11;20086:23;:36::i;:::-;19964:158;19957:165;;19838:292;;;:::o;25470:127::-;25535:4;25587:1;25559:30;;:7;:16;25567:7;25559:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25552:37;;25470:127;;;:::o;17379:98::-;17432:7;17459:10;17452:17;;17379:98;:::o;29347:174::-;29449:2;29422:15;:24;29438:7;29422:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29505:7;29501:2;29467:46;;29476:23;29491:7;29476:14;:23::i;:::-;29467:46;;;;;;;;;;;;29347:174;;:::o;26454:110::-;26530:26;26540:2;26544:7;26530:26;;;;;;;;;;;;:9;:26::i;:::-;26454:110;;:::o;25764:348::-;25857:4;25882:16;25890:7;25882;:16::i;:::-;25874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25958:13;25974:23;25989:7;25974:14;:23::i;:::-;25958:39;;26027:5;26016:16;;:7;:16;;;:51;;;;26060:7;26036:31;;:20;26048:7;26036:11;:20::i;:::-;:31;;;26016:51;:87;;;;26071:32;26088:5;26095:7;26071:16;:32::i;:::-;26016:87;26008:96;;;25764:348;;;;:::o;28685:544::-;28810:4;28783:31;;:23;28798:7;28783:14;:23::i;:::-;:31;;;28775:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28893:1;28879:16;;:2;:16;;;;28871:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28949:39;28970:4;28976:2;28980:7;28949:20;:39::i;:::-;29053:29;29070:1;29074:7;29053:8;:29::i;:::-;29114:1;29095:9;:15;29105:4;29095:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29143:1;29126:9;:13;29136:2;29126:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29174:2;29155:7;:16;29163:7;29155:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29213:7;29209:2;29194:27;;29203:4;29194:27;;;;;;;;;;;;28685:544;;;:::o;27988:360::-;28048:13;28064:23;28079:7;28064:14;:23::i;:::-;28048:39;;28100:48;28121:5;28136:1;28140:7;28100:20;:48::i;:::-;28189:29;28206:1;28210:7;28189:8;:29::i;:::-;28251:1;28231:9;:16;28241:5;28231:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28270:7;:16;28278:7;28270:16;;;;;;;;;;;;28263:23;;;;;;;;;;;28332:7;28328:1;28304:36;;28313:5;28304:36;;;;;;;;;;;;28037:311;27988:360;:::o;24885:272::-;24999:28;25009:4;25015:2;25019:7;24999:9;:28::i;:::-;25046:48;25069:4;25075:2;25079:7;25088:5;25046:22;:48::i;:::-;25038:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24885:272;;;;:::o;18439:157::-;18524:4;18563:25;18548:40;;;:11;:40;;;;18541:47;;18439:157;;;:::o;26791:250::-;26887:18;26893:2;26897:7;26887:5;:18::i;:::-;26924:54;26955:1;26959:2;26963:7;26972:5;26924:22;:54::i;:::-;26916:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26791:250;;;:::o;35053:555::-;35163:45;35190:4;35196:2;35200:7;35163:26;:45::i;:::-;35241:1;35225:18;;:4;:18;;;35221:187;;;35260:40;35292:7;35260:31;:40::i;:::-;35221:187;;;35330:2;35322:10;;:4;:10;;;35318:90;;35349:47;35382:4;35388:7;35349:32;:47::i;:::-;35318:90;35221:187;35436:1;35422:16;;:2;:16;;;35418:183;;;35455:45;35492:7;35455:36;:45::i;:::-;35418:183;;;35528:4;35522:10;;:2;:10;;;35518:83;;35549:40;35577:2;35581:7;35549:27;:40::i;:::-;35518:83;35418:183;35053:555;;;:::o;30086:843::-;30207:4;30233:15;:2;:13;;;:15::i;:::-;30229:693;;;30285:2;30269:36;;;30306:12;:10;:12::i;:::-;30320:4;30326:7;30335:5;30269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30265:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30532:1;30515:6;:13;:18;30511:341;;;30558:60;;;;;;;;;;:::i;:::-;;;;;;;;30511:341;30802:6;30796:13;30787:6;30783:2;30779:15;30772:38;30265:602;30402:45;;;30392:55;;;:6;:55;;;;30385:62;;;;;30229:693;30906:4;30899:11;;30086:843;;;;;;;:::o;27377:382::-;27471:1;27457:16;;:2;:16;;;;27449:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27530:16;27538:7;27530;:16::i;:::-;27529:17;27521:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:45;27621:1;27625:2;27629:7;27592:20;:45::i;:::-;27667:1;27650:9;:13;27660:2;27650:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27698:2;27679:7;:16;27687:7;27679:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27743:7;27739:2;27718:33;;27735:1;27718:33;;;;;;;;;;;;27377:382;;:::o;31542:93::-;;;;:::o;36331:164::-;36435:10;:17;;;;36408:15;:24;36424:7;36408:24;;;;;;;;;;;:44;;;;36463:10;36479:7;36463:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36331:164;:::o;37122:988::-;37388:22;37438:1;37413:22;37430:4;37413:16;:22::i;:::-;:26;;;;:::i;:::-;37388:51;;37450:18;37471:17;:26;37489:7;37471:26;;;;;;;;;;;;37450:47;;37618:14;37604:10;:28;37600:328;;37649:19;37671:12;:18;37684:4;37671:18;;;;;;;;;;;;;;;:34;37690:14;37671:34;;;;;;;;;;;;37649:56;;37755:11;37722:12;:18;37735:4;37722:18;;;;;;;;;;;;;;;:30;37741:10;37722:30;;;;;;;;;;;:44;;;;37872:10;37839:17;:30;37857:11;37839:30;;;;;;;;;;;:43;;;;37634:294;37600:328;38024:17;:26;38042:7;38024:26;;;;;;;;;;;38017:33;;;38068:12;:18;38081:4;38068:18;;;;;;;;;;;;;;;:34;38087:14;38068:34;;;;;;;;;;;38061:41;;;37203:907;;37122:988;;:::o;38405:1079::-;38658:22;38703:1;38683:10;:17;;;;:21;;;;:::i;:::-;38658:46;;38715:18;38736:15;:24;38752:7;38736:24;;;;;;;;;;;;38715:45;;39087:19;39109:10;39120:14;39109:26;;;;;;;;:::i;:::-;;;;;;;;;;39087:48;;39173:11;39148:10;39159;39148:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;39284:10;39253:15;:28;39269:11;39253:28;;;;;;;;;;;:41;;;;39425:15;:24;39441:7;39425:24;;;;;;;;;;;39418:31;;;39460:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38476:1008;;;38405:1079;:::o;35909:221::-;35994:14;36011:20;36028:2;36011:16;:20::i;:::-;35994:37;;36069:7;36042:12;:16;36055:2;36042:16;;;;;;;;;;;;;;;:24;36059:6;36042:24;;;;;;;;;;;:34;;;;36116:6;36087:17;:26;36105:7;36087:26;;;;;;;;;;;:35;;;;35983:147;35909:221;;:::o;9573:422::-;9633:4;9841:12;9952:7;9940:20;9932:28;;9986:1;9979:4;:8;9972:15;;;9573:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:2:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:654::-;8099:6;8107;8156:2;8144:9;8135:7;8131:23;8127:32;8124:119;;;8162:79;;:::i;:::-;8124:119;8310:1;8299:9;8295:17;8282:31;8340:18;8332:6;8329:30;8326:117;;;8362:79;;:::i;:::-;8326:117;8467:63;8522:7;8513:6;8502:9;8498:22;8467:63;:::i;:::-;8457:73;;8253:287;8579:2;8605:53;8650:7;8641:6;8630:9;8626:22;8605:53;:::i;:::-;8595:63;;8550:118;8021:654;;;;;:::o;8681:329::-;8740:6;8789:2;8777:9;8768:7;8764:23;8760:32;8757:119;;;8795:79;;:::i;:::-;8757:119;8915:1;8940:53;8985:7;8976:6;8965:9;8961:22;8940:53;:::i;:::-;8930:63;;8886:117;8681:329;;;;:::o;9016:116::-;9086:21;9101:5;9086:21;:::i;:::-;9079:5;9076:32;9066:60;;9122:1;9119;9112:12;9066:60;9016:116;:::o;9138:133::-;9181:5;9219:6;9206:20;9197:29;;9235:30;9259:5;9235:30;:::i;:::-;9138:133;;;;:::o;9277:468::-;9342:6;9350;9399:2;9387:9;9378:7;9374:23;9370:32;9367:119;;;9405:79;;:::i;:::-;9367:119;9525:1;9550:53;9595:7;9586:6;9575:9;9571:22;9550:53;:::i;:::-;9540:63;;9496:117;9652:2;9678:50;9720:7;9711:6;9700:9;9696:22;9678:50;:::i;:::-;9668:60;;9623:115;9277:468;;;;;:::o;9751:509::-;9820:6;9869:2;9857:9;9848:7;9844:23;9840:32;9837:119;;;9875:79;;:::i;:::-;9837:119;10023:1;10012:9;10008:17;9995:31;10053:18;10045:6;10042:30;10039:117;;;10075:79;;:::i;:::-;10039:117;10180:63;10235:7;10226:6;10215:9;10211:22;10180:63;:::i;:::-;10170:73;;9966:287;9751:509;;;;:::o;10266:307::-;10327:4;10417:18;10409:6;10406:30;10403:56;;;10439:18;;:::i;:::-;10403:56;10477:29;10499:6;10477:29;:::i;:::-;10469:37;;10561:4;10555;10551:15;10543:23;;10266:307;;;:::o;10579:410::-;10656:5;10681:65;10697:48;10738:6;10697:48;:::i;:::-;10681:65;:::i;:::-;10672:74;;10769:6;10762:5;10755:21;10807:4;10800:5;10796:16;10845:3;10836:6;10831:3;10827:16;10824:25;10821:112;;;10852:79;;:::i;:::-;10821:112;10942:41;10976:6;10971:3;10966;10942:41;:::i;:::-;10662:327;10579:410;;;;;:::o;11008:338::-;11063:5;11112:3;11105:4;11097:6;11093:17;11089:27;11079:122;;11120:79;;:::i;:::-;11079:122;11237:6;11224:20;11262:78;11336:3;11328:6;11321:4;11313:6;11309:17;11262:78;:::i;:::-;11253:87;;11069:277;11008:338;;;;:::o;11352:943::-;11447:6;11455;11463;11471;11520:3;11508:9;11499:7;11495:23;11491:33;11488:120;;;11527:79;;:::i;:::-;11488:120;11647:1;11672:53;11717:7;11708:6;11697:9;11693:22;11672:53;:::i;:::-;11662:63;;11618:117;11774:2;11800:53;11845:7;11836:6;11825:9;11821:22;11800:53;:::i;:::-;11790:63;;11745:118;11902:2;11928:53;11973:7;11964:6;11953:9;11949:22;11928:53;:::i;:::-;11918:63;;11873:118;12058:2;12047:9;12043:18;12030:32;12089:18;12081:6;12078:30;12075:117;;;12111:79;;:::i;:::-;12075:117;12216:62;12270:7;12261:6;12250:9;12246:22;12216:62;:::i;:::-;12206:72;;12001:287;11352:943;;;;;;;:::o;12301:474::-;12369:6;12377;12426:2;12414:9;12405:7;12401:23;12397:32;12394:119;;;12432:79;;:::i;:::-;12394:119;12552:1;12577:53;12622:7;12613:6;12602:9;12598:22;12577:53;:::i;:::-;12567:63;;12523:117;12679:2;12705:53;12750:7;12741:6;12730:9;12726:22;12705:53;:::i;:::-;12695:63;;12650:118;12301:474;;;;;:::o;12781:180::-;12829:77;12826:1;12819:88;12926:4;12923:1;12916:15;12950:4;12947:1;12940:15;12967:320;13011:6;13048:1;13042:4;13038:12;13028:22;;13095:1;13089:4;13085:12;13116:18;13106:81;;13172:4;13164:6;13160:17;13150:27;;13106:81;13234:2;13226:6;13223:14;13203:18;13200:38;13197:84;;;13253:18;;:::i;:::-;13197:84;13018:269;12967:320;;;:::o;13293:231::-;13433:34;13429:1;13421:6;13417:14;13410:58;13502:14;13497:2;13489:6;13485:15;13478:39;13293:231;:::o;13530:366::-;13672:3;13693:67;13757:2;13752:3;13693:67;:::i;:::-;13686:74;;13769:93;13858:3;13769:93;:::i;:::-;13887:2;13882:3;13878:12;13871:19;;13530:366;;;:::o;13902:419::-;14068:4;14106:2;14095:9;14091:18;14083:26;;14155:9;14149:4;14145:20;14141:1;14130:9;14126:17;14119:47;14183:131;14309:4;14183:131;:::i;:::-;14175:139;;13902:419;;;:::o;14327:220::-;14467:34;14463:1;14455:6;14451:14;14444:58;14536:3;14531:2;14523:6;14519:15;14512:28;14327:220;:::o;14553:366::-;14695:3;14716:67;14780:2;14775:3;14716:67;:::i;:::-;14709:74;;14792:93;14881:3;14792:93;:::i;:::-;14910:2;14905:3;14901:12;14894:19;;14553:366;;;:::o;14925:419::-;15091:4;15129:2;15118:9;15114:18;15106:26;;15178:9;15172:4;15168:20;15164:1;15153:9;15149:17;15142:47;15206:131;15332:4;15206:131;:::i;:::-;15198:139;;14925:419;;;:::o;15350:243::-;15490:34;15486:1;15478:6;15474:14;15467:58;15559:26;15554:2;15546:6;15542:15;15535:51;15350:243;:::o;15599:366::-;15741:3;15762:67;15826:2;15821:3;15762:67;:::i;:::-;15755:74;;15838:93;15927:3;15838:93;:::i;:::-;15956:2;15951:3;15947:12;15940:19;;15599:366;;;:::o;15971:419::-;16137:4;16175:2;16164:9;16160:18;16152:26;;16224:9;16218:4;16214:20;16210:1;16199:9;16195:17;16188:47;16252:131;16378:4;16252:131;:::i;:::-;16244:139;;15971:419;;;:::o;16396:180::-;16444:77;16441:1;16434:88;16541:4;16538:1;16531:15;16565:4;16562:1;16555:15;16582:233;16621:3;16644:24;16662:5;16644:24;:::i;:::-;16635:33;;16690:66;16683:5;16680:77;16677:103;;;16760:18;;:::i;:::-;16677:103;16807:1;16800:5;16796:13;16789:20;;16582:233;;;:::o;16821:236::-;16961:34;16957:1;16949:6;16945:14;16938:58;17030:19;17025:2;17017:6;17013:15;17006:44;16821:236;:::o;17063:366::-;17205:3;17226:67;17290:2;17285:3;17226:67;:::i;:::-;17219:74;;17302:93;17391:3;17302:93;:::i;:::-;17420:2;17415:3;17411:12;17404:19;;17063:366;;;:::o;17435:419::-;17601:4;17639:2;17628:9;17624:18;17616:26;;17688:9;17682:4;17678:20;17674:1;17663:9;17659:17;17652:47;17716:131;17842:4;17716:131;:::i;:::-;17708:139;;17435:419;;;:::o;17860:230::-;18000:34;17996:1;17988:6;17984:14;17977:58;18069:13;18064:2;18056:6;18052:15;18045:38;17860:230;:::o;18096:366::-;18238:3;18259:67;18323:2;18318:3;18259:67;:::i;:::-;18252:74;;18335:93;18424:3;18335:93;:::i;:::-;18453:2;18448:3;18444:12;18437:19;;18096:366;;;:::o;18468:419::-;18634:4;18672:2;18661:9;18657:18;18649:26;;18721:9;18715:4;18711:20;18707:1;18696:9;18692:17;18685:47;18749:131;18875:4;18749:131;:::i;:::-;18741:139;;18468:419;;;:::o;18893:231::-;19033:34;19029:1;19021:6;19017:14;19010:58;19102:14;19097:2;19089:6;19085:15;19078:39;18893:231;:::o;19130:366::-;19272:3;19293:67;19357:2;19352:3;19293:67;:::i;:::-;19286:74;;19369:93;19458:3;19369:93;:::i;:::-;19487:2;19482:3;19478:12;19471:19;;19130:366;;;:::o;19502:419::-;19668:4;19706:2;19695:9;19691:18;19683:26;;19755:9;19749:4;19745:20;19741:1;19730:9;19726:17;19719:47;19783:131;19909:4;19783:131;:::i;:::-;19775:139;;19502:419;;;:::o;19927:180::-;19975:77;19972:1;19965:88;20072:4;20069:1;20062:15;20096:4;20093:1;20086:15;20113:228;20253:34;20249:1;20241:6;20237:14;20230:58;20322:11;20317:2;20309:6;20305:15;20298:36;20113:228;:::o;20347:366::-;20489:3;20510:67;20574:2;20569:3;20510:67;:::i;:::-;20503:74;;20586:93;20675:3;20586:93;:::i;:::-;20704:2;20699:3;20695:12;20688:19;;20347:366;;;:::o;20719:419::-;20885:4;20923:2;20912:9;20908:18;20900:26;;20972:9;20966:4;20962:20;20958:1;20947:9;20943:17;20936:47;21000:131;21126:4;21000:131;:::i;:::-;20992:139;;20719:419;;;:::o;21144:229::-;21284:34;21280:1;21272:6;21268:14;21261:58;21353:12;21348:2;21340:6;21336:15;21329:37;21144:229;:::o;21379:366::-;21521:3;21542:67;21606:2;21601:3;21542:67;:::i;:::-;21535:74;;21618:93;21707:3;21618:93;:::i;:::-;21736:2;21731:3;21727:12;21720:19;;21379:366;;;:::o;21751:419::-;21917:4;21955:2;21944:9;21940:18;21932:26;;22004:9;21998:4;21994:20;21990:1;21979:9;21975:17;21968:47;22032:131;22158:4;22032:131;:::i;:::-;22024:139;;21751:419;;;:::o;22176:175::-;22316:27;22312:1;22304:6;22300:14;22293:51;22176:175;:::o;22357:366::-;22499:3;22520:67;22584:2;22579:3;22520:67;:::i;:::-;22513:74;;22596:93;22685:3;22596:93;:::i;:::-;22714:2;22709:3;22705:12;22698:19;;22357:366;;;:::o;22729:419::-;22895:4;22933:2;22922:9;22918:18;22910:26;;22982:9;22976:4;22972:20;22968:1;22957:9;22953:17;22946:47;23010:131;23136:4;23010:131;:::i;:::-;23002:139;;22729:419;;;:::o;23154:180::-;23202:77;23199:1;23192:88;23299:4;23296:1;23289:15;23323:4;23320:1;23313:15;23340:176;23372:1;23389:20;23407:1;23389:20;:::i;:::-;23384:25;;23423:20;23441:1;23423:20;:::i;:::-;23418:25;;23462:1;23452:35;;23467:18;;:::i;:::-;23452:35;23508:1;23505;23501:9;23496:14;;23340:176;;;;:::o;23522:231::-;23662:34;23658:1;23650:6;23646:14;23639:58;23731:14;23726:2;23718:6;23714:15;23707:39;23522:231;:::o;23759:366::-;23901:3;23922:67;23986:2;23981:3;23922:67;:::i;:::-;23915:74;;23998:93;24087:3;23998:93;:::i;:::-;24116:2;24111:3;24107:12;24100:19;;23759:366;;;:::o;24131:419::-;24297:4;24335:2;24324:9;24320:18;24312:26;;24384:9;24378:4;24374:20;24370:1;24359:9;24355:17;24348:47;24412:131;24538:4;24412:131;:::i;:::-;24404:139;;24131:419;;;:::o;24556:228::-;24696:34;24692:1;24684:6;24680:14;24673:58;24765:11;24760:2;24752:6;24748:15;24741:36;24556:228;:::o;24790:366::-;24932:3;24953:67;25017:2;25012:3;24953:67;:::i;:::-;24946:74;;25029:93;25118:3;25029:93;:::i;:::-;25147:2;25142:3;25138:12;25131:19;;24790:366;;;:::o;25162:419::-;25328:4;25366:2;25355:9;25351:18;25343:26;;25415:9;25409:4;25405:20;25401:1;25390:9;25386:17;25379:47;25443:131;25569:4;25443:131;:::i;:::-;25435:139;;25162:419;;;:::o;25587:223::-;25727:34;25723:1;25715:6;25711:14;25704:58;25796:6;25791:2;25783:6;25779:15;25772:31;25587:223;:::o;25816:366::-;25958:3;25979:67;26043:2;26038:3;25979:67;:::i;:::-;25972:74;;26055:93;26144:3;26055:93;:::i;:::-;26173:2;26168:3;26164:12;26157:19;;25816:366;;;:::o;26188:419::-;26354:4;26392:2;26381:9;26377:18;26369:26;;26441:9;26435:4;26431:20;26427:1;26416:9;26412:17;26405:47;26469:131;26595:4;26469:131;:::i;:::-;26461:139;;26188:419;;;:::o;26613:191::-;26653:4;26673:20;26691:1;26673:20;:::i;:::-;26668:25;;26707:20;26725:1;26707:20;:::i;:::-;26702:25;;26746:1;26743;26740:8;26737:34;;;26751:18;;:::i;:::-;26737:34;26796:1;26793;26789:9;26781:17;;26613:191;;;;:::o;26810:305::-;26850:3;26869:20;26887:1;26869:20;:::i;:::-;26864:25;;26903:20;26921:1;26903:20;:::i;:::-;26898:25;;27057:1;26989:66;26985:74;26982:1;26979:81;26976:107;;;27063:18;;:::i;:::-;26976:107;27107:1;27104;27100:9;27093:16;;26810:305;;;;:::o;27121:237::-;27261:34;27257:1;27249:6;27245:14;27238:58;27330:20;27325:2;27317:6;27313:15;27306:45;27121:237;:::o;27364:366::-;27506:3;27527:67;27591:2;27586:3;27527:67;:::i;:::-;27520:74;;27603:93;27692:3;27603:93;:::i;:::-;27721:2;27716:3;27712:12;27705:19;;27364:366;;;:::o;27736:419::-;27902:4;27940:2;27929:9;27925:18;27917:26;;27989:9;27983:4;27979:20;27975:1;27964:9;27960:17;27953:47;28017:131;28143:4;28017:131;:::i;:::-;28009:139;;27736:419;;;:::o;28161:98::-;28212:6;28246:5;28240:12;28230:22;;28161:98;;;:::o;28265:168::-;28348:11;28382:6;28377:3;28370:19;28422:4;28417:3;28413:14;28398:29;;28265:168;;;;:::o;28439:360::-;28525:3;28553:38;28585:5;28553:38;:::i;:::-;28607:70;28670:6;28665:3;28607:70;:::i;:::-;28600:77;;28686:52;28731:6;28726:3;28719:4;28712:5;28708:16;28686:52;:::i;:::-;28763:29;28785:6;28763:29;:::i;:::-;28758:3;28754:39;28747:46;;28529:270;28439:360;;;;:::o;28805:640::-;29000:4;29038:3;29027:9;29023:19;29015:27;;29052:71;29120:1;29109:9;29105:17;29096:6;29052:71;:::i;:::-;29133:72;29201:2;29190:9;29186:18;29177:6;29133:72;:::i;:::-;29215;29283:2;29272:9;29268:18;29259:6;29215:72;:::i;:::-;29334:9;29328:4;29324:20;29319:2;29308:9;29304:18;29297:48;29362:76;29433:4;29424:6;29362:76;:::i;:::-;29354:84;;28805:640;;;;;;;:::o;29451:141::-;29507:5;29538:6;29532:13;29523:22;;29554:32;29580:5;29554:32;:::i;:::-;29451:141;;;;:::o;29598:349::-;29667:6;29716:2;29704:9;29695:7;29691:23;29687:32;29684:119;;;29722:79;;:::i;:::-;29684:119;29842:1;29867:63;29922:7;29913:6;29902:9;29898:22;29867:63;:::i;:::-;29857:73;;29813:127;29598:349;;;;:::o;29953:182::-;30093:34;30089:1;30081:6;30077:14;30070:58;29953:182;:::o;30141:366::-;30283:3;30304:67;30368:2;30363:3;30304:67;:::i;:::-;30297:74;;30380:93;30469:3;30380:93;:::i;:::-;30498:2;30493:3;30489:12;30482:19;;30141:366;;;:::o;30513:419::-;30679:4;30717:2;30706:9;30702:18;30694:26;;30766:9;30760:4;30756:20;30752:1;30741:9;30737:17;30730:47;30794:131;30920:4;30794:131;:::i;:::-;30786:139;;30513:419;;;:::o;30938:178::-;31078:30;31074:1;31066:6;31062:14;31055:54;30938:178;:::o;31122:366::-;31264:3;31285:67;31349:2;31344:3;31285:67;:::i;:::-;31278:74;;31361:93;31450:3;31361:93;:::i;:::-;31479:2;31474:3;31470:12;31463:19;;31122:366;;;:::o;31494:419::-;31660:4;31698:2;31687:9;31683:18;31675:26;;31747:9;31741:4;31737:20;31733:1;31722:9;31718:17;31711:47;31775:131;31901:4;31775:131;:::i;:::-;31767:139;;31494:419;;;:::o;31919:180::-;31967:77;31964:1;31957:88;32064:4;32061:1;32054:15;32088:4;32085:1;32078:15

Swarm Source

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