ETH Price: $3,504.37 (+3.95%)
Gas: 3 Gwei

Token

Rock Paper Scissors (RPS)
 

Overview

Max Total Supply

3,261 RPS

Holders

291

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 RPS
0xd63a869444f5460eaaf1d91eb96f3410161f3885
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:
RockPaperScissors

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 _______                       __                                                                       ______             __                                                  
/       \                     /  |                                                                     /      \           /  |                                                 
$$$$$$$  |  ______    _______ $$ |   __         ______    ______    ______    ______    ______        /$$$$$$  |  _______ $$/   _______  _______   ______    ______    _______ 
$$ |__$$ | /      \  /       |$$ |  /  |       /      \  /      \  /      \  /      \  /      \       $$ \__$$/  /       |/  | /       |/       | /      \  /      \  /       |
$$    $$< /$$$$$$  |/$$$$$$$/ $$ |_/$$/       /$$$$$$  | $$$$$$  |/$$$$$$  |/$$$$$$  |/$$$$$$  |      $$      \ /$$$$$$$/ $$ |/$$$$$$$//$$$$$$$/ /$$$$$$  |/$$$$$$  |/$$$$$$$/ 
$$$$$$$  |$$ |  $$ |$$ |      $$   $$<        $$ |  $$ | /    $$ |$$ |  $$ |$$    $$ |$$ |  $$/        $$$$$$  |$$ |      $$ |$$      \$$      \ $$ |  $$ |$$ |  $$/ $$      \ 
$$ |  $$ |$$ \__$$ |$$ \_____ $$$$$$  \       $$ |__$$ |/$$$$$$$ |$$ |__$$ |$$$$$$$$/ $$ |            /  \__$$ |$$ \_____ $$ | $$$$$$  |$$$$$$  |$$ \__$$ |$$ |       $$$$$$  |
$$ |  $$ |$$    $$/ $$       |$$ | $$  |      $$    $$/ $$    $$ |$$    $$/ $$       |$$ |            $$    $$/ $$       |$$ |/     $$//     $$/ $$    $$/ $$ |      /     $$/ 
$$/   $$/  $$$$$$/   $$$$$$$/ $$/   $$/       $$$$$$$/   $$$$$$$/ $$$$$$$/   $$$$$$$/ $$/              $$$$$$/   $$$$$$$/ $$/ $$$$$$$/ $$$$$$$/   $$$$$$/  $$/       $$$$$$$/  
                                              $$ |                $$ |                                                                                                         
                                              $$ |                $$ |                                                                                                         
                                              $$/                 $$/                                                                                                          
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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

// File contracts/ERC721A.sol

// Creator: Chiru Labs

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity > 0, "ERC721A: quantity must be greater 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract RockPaperScissors is ERC721A, Ownable {
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress =
        0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    string baseURI;
    string public notRevealedUri;
    uint256 public price = 0.0028 ether;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public FREE_MAX_SUPPLY = 500;
    uint256 public MAX_PER_TX = 10;

    bool public paused = false;
    bool public revealed = true;

    constructor(
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A("Rock Paper Scissors", "RPS") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    function mint(uint256 _amount) public payable {
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");

        if (FREE_MAX_SUPPLY >= totalSupply() + _amount) {
            require(MAX_PER_TX >= _amount, "Exceeds max per transaction");
        } else {
            require(MAX_PER_TX >= _amount, "Exceeds max per transaction");
            require(msg.value >= _amount * price, "Invalid funds provided");
        }

        _safeMint(msg.sender, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        MAX_SUPPLY = _newMaxSupply;
    }

    function setFreeMaxSupply(uint256 _newFreeMaxSupply) public onlyOwner {
        FREE_MAX_SUPPLY = _newFreeMaxSupply;
    }

    function setMaxPerTx(uint256 _newMaxPerTx) public onlyOwner {
        MAX_PER_TX = _newMaxPerTx;
    }

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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist.");

        if (revealed == false) {
            return notRevealedUri;
        }

        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeMaxSupply","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600080556609f295cd5f0000600a55610d05600b556101f4600c55600a600d556000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055503480156200006757600080fd5b50604051620051d6380380620051d683398181016040528101906200008d9190620004f3565b6040518060400160405280601381526020017f526f636b2050617065722053636973736f7273000000000000000000000000008152506040518060400160405280600381526020017f5250530000000000000000000000000000000000000000000000000000000000815250816001908051906020019062000111929190620003c5565b5080600290805190602001906200012a929190620003c5565b5050506200014d620001416200017760201b60201c565b6200017f60201b60201c565b6200015e826200024560201b60201c565b6200016f81620002f060201b60201c565b50506200077f565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002556200017760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027b6200039b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cb906200059f565b60405180910390fd5b8060089080519060200190620002ec929190620003c5565b5050565b620003006200017760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003266200039b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000376906200059f565b60405180910390fd5b806009908051906020019062000397929190620003c5565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d39062000667565b90600052602060002090601f016020900481019282620003f7576000855562000443565b82601f106200041257805160ff191683800117855562000443565b8280016001018555821562000443579182015b828111156200044257825182559160200191906001019062000425565b5b50905062000452919062000456565b5090565b5b808211156200047157600081600090555060010162000457565b5090565b60006200048c6200048684620005ea565b620005c1565b905082815260208101848484011115620004ab57620004aa62000736565b5b620004b884828562000631565b509392505050565b600082601f830112620004d857620004d762000731565b5b8151620004ea84826020860162000475565b91505092915050565b600080604083850312156200050d576200050c62000740565b5b600083015167ffffffffffffffff8111156200052e576200052d6200073b565b5b6200053c85828601620004c0565b925050602083015167ffffffffffffffff81111562000560576200055f6200073b565b5b6200056e85828601620004c0565b9150509250929050565b60006200058760208362000620565b9150620005948262000756565b602082019050919050565b60006020820190508181036000830152620005ba8162000578565b9050919050565b6000620005cd620005e0565b9050620005db82826200069d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000608576200060762000702565b5b620006138262000745565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200065157808201518184015260208101905062000634565b8381111562000661576000848401525b50505050565b600060028204905060018216806200068057607f821691505b60208210811415620006975762000696620006d3565b5b50919050565b620006a88262000745565b810181811067ffffffffffffffff82111715620006ca57620006c962000702565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a47806200078f6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063d223a6311161006f578063d223a631146107e6578063e985e9c51461080f578063f2c4ce1e1461084c578063f2fde38b14610875578063f43a22dc1461089e57610225565b8063b88d4fde14610701578063c66828621461072a578063c6f6f21614610755578063c87b56dd1461077e578063cd7c0326146107bb57610225565b8063940cd05b116100f2578063940cd05b1461063d57806395d89b4114610666578063a035b1fe14610691578063a0712d68146106bc578063a22cb465146106d857610225565b8063715018a6146105a75780638069876d146105be5780638da5cb5b146105e957806391b7f5ed1461061457610225565b806332cb6b0c116101b157806355f804b31161017557806355f804b3146104b05780635c975abb146104d95780636352211e146105045780636f8b44b01461054157806370a082311461056a57610225565b806332cb6b0c146103dd5780633ccfd60b1461040857806342842e0e1461041f5780634f6ccce714610448578063518302271461048557610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061348d565b6108c9565b60405161025e9190613af1565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613460565b610a13565b005b34801561029c57600080fd5b506102a5610aac565b6040516102b29190613b0c565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061355d565b610b3e565b6040516102ef9190613a8a565b60405180910390f35b34801561030457600080fd5b5061030d610bc3565b60405161031a9190613b0c565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613420565b610c51565b005b34801561035857600080fd5b50610361610d6a565b60405161036e9190613e2e565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061330a565b610d73565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613420565b610d83565b6040516103d49190613e2e565b60405180910390f35b3480156103e957600080fd5b506103f2610f81565b6040516103ff9190613e2e565b60405180910390f35b34801561041457600080fd5b5061041d610f87565b005b34801561042b57600080fd5b506104466004803603810190610441919061330a565b61107c565b005b34801561045457600080fd5b5061046f600480360381019061046a919061355d565b61109c565b60405161047c9190613e2e565b60405180910390f35b34801561049157600080fd5b5061049a6110ef565b6040516104a79190613af1565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613514565b611102565b005b3480156104e557600080fd5b506104ee611198565b6040516104fb9190613af1565b60405180910390f35b34801561051057600080fd5b5061052b6004803603810190610526919061355d565b6111ab565b6040516105389190613a8a565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061355d565b6111c1565b005b34801561057657600080fd5b50610591600480360381019061058c919061329d565b611247565b60405161059e9190613e2e565b60405180910390f35b3480156105b357600080fd5b506105bc611330565b005b3480156105ca57600080fd5b506105d36113b8565b6040516105e09190613e2e565b60405180910390f35b3480156105f557600080fd5b506105fe6113be565b60405161060b9190613a8a565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061355d565b6113e8565b005b34801561064957600080fd5b50610664600480360381019061065f9190613460565b61146e565b005b34801561067257600080fd5b5061067b611507565b6040516106889190613b0c565b60405180910390f35b34801561069d57600080fd5b506106a6611599565b6040516106b39190613e2e565b60405180910390f35b6106d660048036038101906106d1919061355d565b61159f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906133e0565b611791565b005b34801561070d57600080fd5b506107286004803603810190610723919061335d565b611912565b005b34801561073657600080fd5b5061073f61196e565b60405161074c9190613b0c565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061355d565b6119a7565b005b34801561078a57600080fd5b506107a560048036038101906107a0919061355d565b611a2d565b6040516107b29190613b0c565b60405180910390f35b3480156107c757600080fd5b506107d0611bbb565b6040516107dd9190613a8a565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061355d565b611bd3565b005b34801561081b57600080fd5b50610836600480360381019061083191906132ca565b611c59565b6040516108439190613af1565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613514565b611d4d565b005b34801561088157600080fd5b5061089c6004803603810190610897919061329d565b611de3565b005b3480156108aa57600080fd5b506108b3611edb565b6040516108c09190613e2e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b82611ee1565b5b9050919050565b610a1b611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610a396113be565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613cae565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610abb9061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae79061419c565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982611f53565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613e0e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610bd09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc9061419c565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b505050505081565b6000610c5c826111ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cec611f4b565b73ffffffffffffffffffffffffffffffffffffffff161480610d1b5750610d1a81610d15611f4b565b611c59565b5b610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613c0e565b60405180910390fd5b610d65838383611f60565b505050565b60008054905090565b610d7e838383612012565b505050565b6000610d8e83611247565b8210610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690613b2e565b60405180910390fd5b6000610dd9610d6a565b905060008060005b83811015610f3f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ed357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2b5786841415610f1c578195505050505050610f7b565b8380610f27906141ff565b9450505b508080610f37906141ff565b915050610de1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613dee565b60405180910390fd5b92915050565b600b5481565b610f8f611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610fad6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613cae565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161102990613a75565b60006040518083038185875af1925050503d8060008114611066576040519150601f19603f3d011682016040523d82523d6000602084013e61106b565b606091505b505090508061107957600080fd5b50565b61109783838360405180602001604052806000815250611912565b505050565b60006110a6610d6a565b82106110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613bce565b60405180910390fd5b819050919050565b600e60019054906101000a900460ff1681565b61110a611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111286113be565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613cae565b60405180910390fd5b8060089080519060200190611194929190613062565b5050565b600e60009054906101000a900460ff1681565b60006111b6826125b9565b600001519050919050565b6111c9611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111e76113be565b73ffffffffffffffffffffffffffffffffffffffff161461123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613cae565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613c4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611338611f4b565b73ffffffffffffffffffffffffffffffffffffffff166113566113be565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613cae565b60405180910390fd5b6113b66000612714565b565b600c5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113f0611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661140e6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613cae565b60405180910390fd5b80600a8190555050565b611476611f4b565b73ffffffffffffffffffffffffffffffffffffffff166114946113be565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613cae565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6060600280546115169061419c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061419c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff16156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690613b4e565b60405180910390fd5b806115f8610d6a565b6116029190613f79565b600b541015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613c2e565b60405180910390fd5b60008111611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613bae565b60405180910390fd5b80611692610d6a565b61169c9190613f79565b600c54106116ee5780600d5410156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613d4e565b60405180910390fd5b611784565b80600d541015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90613d4e565b60405180910390fd5b600a54816117419190614000565b341015611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90613d0e565b60405180910390fd5b5b61178e33826127da565b50565b611799611f4b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613cce565b60405180910390fd5b8060066000611814611f4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c1611f4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119069190613af1565b60405180910390a35050565b61191d848484612012565b611929848484846127f8565b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90613d8e565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6119af611f4b565b73ffffffffffffffffffffffffffffffffffffffff166119cd6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613cae565b60405180910390fd5b80600d8190555050565b6060611a3882611f53565b611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90613c6e565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611b255760098054611aa09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054611acc9061419c565b8015611b195780601f10611aee57610100808354040283529160200191611b19565b820191906000526020600020905b815481529060010190602001808311611afc57829003601f168201915b50505050509050611bb6565b600060088054611b349061419c565b905011611b505760405180602001604052806000815250611bb3565b6008611b5b8361298f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ba393929190613a44565b6040516020818303038152906040525b90505b919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611bdb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611bf96113be565b73ffffffffffffffffffffffffffffffffffffffff1614611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613cae565b60405180910390fd5b80600c8190555050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611cc39190613a8a565b60206040518083038186803b158015611cdb57600080fd5b505afa158015611cef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1391906134e7565b73ffffffffffffffffffffffffffffffffffffffff161415611d39576001915050611d47565b611d438484612af0565b9150505b92915050565b611d55611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611d736113be565b73ffffffffffffffffffffffffffffffffffffffff1614611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613cae565b60405180910390fd5b8060099080519060200190611ddf929190613062565b5050565b611deb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611e096113be565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690613cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613b6e565b60405180910390fd5b611ed881612714565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061201d826125b9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612044611f4b565b73ffffffffffffffffffffffffffffffffffffffff1614806120a05750612069611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661208884610b3e565b73ffffffffffffffffffffffffffffffffffffffff16145b806120bc57506120bb82600001516120b6611f4b565b611c59565b5b9050806120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590613cee565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790613bee565b60405180910390fd5b6121ed8585856001612b84565b6121fd6000848460000151611f60565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124039190613f79565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125495761247981611f53565b15612548576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b18686866001612b8a565b505050505050565b6125c16130e8565b6125ca82611f53565b612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090613b8e565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126fb57809250505061270f565b50808061270790614172565b91505061260f565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f4828260405180602001604052806000815250612b90565b5050565b60006128198473ffffffffffffffffffffffffffffffffffffffff1661304f565b15612982578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612842611f4b565b8786866040518563ffffffff1660e01b81526004016128649493929190613aa5565b602060405180830381600087803b15801561287e57600080fd5b505af19250505080156128af57506040513d601f19601f820116820180604052508101906128ac91906134ba565b60015b612932573d80600081146128df576040519150601f19603f3d011682016040523d82523d6000602084013e6128e4565b606091505b5060008151141561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190613d8e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612987565b600190505b949350505050565b606060008214156129d7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aeb565b600082905060005b60008214612a095780806129f2906141ff565b915050600a82612a029190613fcf565b91506129df565b60008167ffffffffffffffff811115612a2557612a24614335565b5b6040519080825280601f01601f191660200182016040528015612a575781602001600182028036833780820191505090505b5090505b60008514612ae457600182612a70919061405a565b9150600a85612a7f9190614248565b6030612a8b9190613f79565b60f81b818381518110612aa157612aa0614306565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612add9190613fcf565b9450612a5b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613dce565b60405180910390fd5b612c0f81611f53565b15612c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4690613dae565b60405180910390fd5b60008311612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990613d6e565b60405180910390fd5b612c9f6000858386612b84565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d9c9190613f33565b6fffffffffffffffffffffffffffffffff168152602001858360200151612dc39190613f33565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561303257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd260008884886127f8565b613011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300890613d8e565b60405180910390fd5b818061301c906141ff565b925050808061302a906141ff565b915050612f61565b50806000819055506130476000878588612b8a565b505050505050565b600080823b905060008111915050919050565b82805461306e9061419c565b90600052602060002090601f01602090048101928261309057600085556130d7565b82601f106130a957805160ff19168380011785556130d7565b828001600101855582156130d7579182015b828111156130d65782518255916020019190600101906130bb565b5b5090506130e49190613122565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561313b576000816000905550600101613123565b5090565b600061315261314d84613e6e565b613e49565b90508281526020810184848401111561316e5761316d614369565b5b613179848285614130565b509392505050565b600061319461318f84613e9f565b613e49565b9050828152602081018484840111156131b0576131af614369565b5b6131bb848285614130565b509392505050565b6000813590506131d28161499e565b92915050565b6000813590506131e7816149b5565b92915050565b6000813590506131fc816149cc565b92915050565b600081519050613211816149cc565b92915050565b600082601f83011261322c5761322b614364565b5b813561323c84826020860161313f565b91505092915050565b600081519050613254816149e3565b92915050565b600082601f83011261326f5761326e614364565b5b813561327f848260208601613181565b91505092915050565b600081359050613297816149fa565b92915050565b6000602082840312156132b3576132b2614373565b5b60006132c1848285016131c3565b91505092915050565b600080604083850312156132e1576132e0614373565b5b60006132ef858286016131c3565b9250506020613300858286016131c3565b9150509250929050565b60008060006060848603121561332357613322614373565b5b6000613331868287016131c3565b9350506020613342868287016131c3565b925050604061335386828701613288565b9150509250925092565b6000806000806080858703121561337757613376614373565b5b6000613385878288016131c3565b9450506020613396878288016131c3565b93505060406133a787828801613288565b925050606085013567ffffffffffffffff8111156133c8576133c761436e565b5b6133d487828801613217565b91505092959194509250565b600080604083850312156133f7576133f6614373565b5b6000613405858286016131c3565b9250506020613416858286016131d8565b9150509250929050565b6000806040838503121561343757613436614373565b5b6000613445858286016131c3565b925050602061345685828601613288565b9150509250929050565b60006020828403121561347657613475614373565b5b6000613484848285016131d8565b91505092915050565b6000602082840312156134a3576134a2614373565b5b60006134b1848285016131ed565b91505092915050565b6000602082840312156134d0576134cf614373565b5b60006134de84828501613202565b91505092915050565b6000602082840312156134fd576134fc614373565b5b600061350b84828501613245565b91505092915050565b60006020828403121561352a57613529614373565b5b600082013567ffffffffffffffff8111156135485761354761436e565b5b6135548482850161325a565b91505092915050565b60006020828403121561357357613572614373565b5b600061358184828501613288565b91505092915050565b6135938161408e565b82525050565b6135a2816140a0565b82525050565b60006135b382613ee5565b6135bd8185613efb565b93506135cd81856020860161413f565b6135d681614378565b840191505092915050565b60006135ec82613ef0565b6135f68185613f17565b935061360681856020860161413f565b61360f81614378565b840191505092915050565b600061362582613ef0565b61362f8185613f28565b935061363f81856020860161413f565b80840191505092915050565b600081546136588161419c565b6136628186613f28565b9450600182166000811461367d576001811461368e576136c1565b60ff198316865281860193506136c1565b61369785613ed0565b60005b838110156136b95781548189015260018201915060208101905061369a565b838801955050505b50505092915050565b60006136d7602283613f17565b91506136e282614389565b604082019050919050565b60006136fa600683613f17565b9150613705826143d8565b602082019050919050565b600061371d602683613f17565b915061372882614401565b604082019050919050565b6000613740602a83613f17565b915061374b82614450565b604082019050919050565b6000613763600a83613f17565b915061376e8261449f565b602082019050919050565b6000613786602383613f17565b9150613791826144c8565b604082019050919050565b60006137a9602583613f17565b91506137b482614517565b604082019050919050565b60006137cc603983613f17565b91506137d782614566565b604082019050919050565b60006137ef601283613f17565b91506137fa826145b5565b602082019050919050565b6000613812602b83613f17565b915061381d826145de565b604082019050919050565b6000613835601583613f17565b91506138408261462d565b602082019050919050565b6000613858602683613f17565b915061386382614656565b604082019050919050565b600061387b602083613f17565b9150613886826146a5565b602082019050919050565b600061389e601a83613f17565b91506138a9826146ce565b602082019050919050565b60006138c1603283613f17565b91506138cc826146f7565b604082019050919050565b60006138e4601683613f17565b91506138ef82614746565b602082019050919050565b6000613907602283613f17565b91506139128261476f565b604082019050919050565b600061392a601b83613f17565b9150613935826147be565b602082019050919050565b600061394d600083613f0c565b9150613958826147e7565b600082019050919050565b6000613970602383613f17565b915061397b826147ea565b604082019050919050565b6000613993603383613f17565b915061399e82614839565b604082019050919050565b60006139b6601d83613f17565b91506139c182614888565b602082019050919050565b60006139d9602183613f17565b91506139e4826148b1565b604082019050919050565b60006139fc602e83613f17565b9150613a0782614900565b604082019050919050565b6000613a1f602d83613f17565b9150613a2a8261494f565b604082019050919050565b613a3e81614126565b82525050565b6000613a50828661364b565b9150613a5c828561361a565b9150613a68828461361a565b9150819050949350505050565b6000613a8082613940565b9150819050919050565b6000602082019050613a9f600083018461358a565b92915050565b6000608082019050613aba600083018761358a565b613ac7602083018661358a565b613ad46040830185613a35565b8181036060830152613ae681846135a8565b905095945050505050565b6000602082019050613b066000830184613599565b92915050565b60006020820190508181036000830152613b2681846135e1565b905092915050565b60006020820190508181036000830152613b47816136ca565b9050919050565b60006020820190508181036000830152613b67816136ed565b9050919050565b60006020820190508181036000830152613b8781613710565b9050919050565b60006020820190508181036000830152613ba781613733565b9050919050565b60006020820190508181036000830152613bc781613756565b9050919050565b60006020820190508181036000830152613be781613779565b9050919050565b60006020820190508181036000830152613c078161379c565b9050919050565b60006020820190508181036000830152613c27816137bf565b9050919050565b60006020820190508181036000830152613c47816137e2565b9050919050565b60006020820190508181036000830152613c6781613805565b9050919050565b60006020820190508181036000830152613c8781613828565b9050919050565b60006020820190508181036000830152613ca78161384b565b9050919050565b60006020820190508181036000830152613cc78161386e565b9050919050565b60006020820190508181036000830152613ce781613891565b9050919050565b60006020820190508181036000830152613d07816138b4565b9050919050565b60006020820190508181036000830152613d27816138d7565b9050919050565b60006020820190508181036000830152613d47816138fa565b9050919050565b60006020820190508181036000830152613d678161391d565b9050919050565b60006020820190508181036000830152613d8781613963565b9050919050565b60006020820190508181036000830152613da781613986565b9050919050565b60006020820190508181036000830152613dc7816139a9565b9050919050565b60006020820190508181036000830152613de7816139cc565b9050919050565b60006020820190508181036000830152613e07816139ef565b9050919050565b60006020820190508181036000830152613e2781613a12565b9050919050565b6000602082019050613e436000830184613a35565b92915050565b6000613e53613e64565b9050613e5f82826141ce565b919050565b6000604051905090565b600067ffffffffffffffff821115613e8957613e88614335565b5b613e9282614378565b9050602081019050919050565b600067ffffffffffffffff821115613eba57613eb9614335565b5b613ec382614378565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3e826140ea565b9150613f49836140ea565b9250826fffffffffffffffffffffffffffffffff03821115613f6e57613f6d614279565b5b828201905092915050565b6000613f8482614126565b9150613f8f83614126565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc457613fc3614279565b5b828201905092915050565b6000613fda82614126565b9150613fe583614126565b925082613ff557613ff46142a8565b5b828204905092915050565b600061400b82614126565b915061401683614126565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561404f5761404e614279565b5b828202905092915050565b600061406582614126565b915061407083614126565b92508282101561408357614082614279565b5b828203905092915050565b600061409982614106565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140e38261408e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415d578082015181840152602081019050614142565b8381111561416c576000848401525b50505050565b600061417d82614126565b9150600082141561419157614190614279565b5b600182039050919050565b600060028204905060018216806141b457607f821691505b602082108114156141c8576141c76142d7565b5b50919050565b6141d782614378565b810181811067ffffffffffffffff821117156141f6576141f5614335565b5b80604052505050565b600061420a82614126565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423d5761423c614279565b5b600182019050919050565b600061425382614126565b915061425e83614126565b92508261426e5761426d6142a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6149a78161408e565b81146149b257600080fd5b50565b6149be816140a0565b81146149c957600080fd5b50565b6149d5816140ac565b81146149e057600080fd5b50565b6149ec816140d8565b81146149f757600080fd5b50565b614a0381614126565b8114614a0e57600080fd5b5056fea26469706673582212202590719503ae84ce9753028c0dcaadee8adda76e83252f9f719f5703da5daefd64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696873676f7635656661776572716e6f76636e616670776d347a646969757265726a65666473786a61336967346777686261796d342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063d223a6311161006f578063d223a631146107e6578063e985e9c51461080f578063f2c4ce1e1461084c578063f2fde38b14610875578063f43a22dc1461089e57610225565b8063b88d4fde14610701578063c66828621461072a578063c6f6f21614610755578063c87b56dd1461077e578063cd7c0326146107bb57610225565b8063940cd05b116100f2578063940cd05b1461063d57806395d89b4114610666578063a035b1fe14610691578063a0712d68146106bc578063a22cb465146106d857610225565b8063715018a6146105a75780638069876d146105be5780638da5cb5b146105e957806391b7f5ed1461061457610225565b806332cb6b0c116101b157806355f804b31161017557806355f804b3146104b05780635c975abb146104d95780636352211e146105045780636f8b44b01461054157806370a082311461056a57610225565b806332cb6b0c146103dd5780633ccfd60b1461040857806342842e0e1461041f5780634f6ccce714610448578063518302271461048557610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061348d565b6108c9565b60405161025e9190613af1565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613460565b610a13565b005b34801561029c57600080fd5b506102a5610aac565b6040516102b29190613b0c565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061355d565b610b3e565b6040516102ef9190613a8a565b60405180910390f35b34801561030457600080fd5b5061030d610bc3565b60405161031a9190613b0c565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613420565b610c51565b005b34801561035857600080fd5b50610361610d6a565b60405161036e9190613e2e565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061330a565b610d73565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613420565b610d83565b6040516103d49190613e2e565b60405180910390f35b3480156103e957600080fd5b506103f2610f81565b6040516103ff9190613e2e565b60405180910390f35b34801561041457600080fd5b5061041d610f87565b005b34801561042b57600080fd5b506104466004803603810190610441919061330a565b61107c565b005b34801561045457600080fd5b5061046f600480360381019061046a919061355d565b61109c565b60405161047c9190613e2e565b60405180910390f35b34801561049157600080fd5b5061049a6110ef565b6040516104a79190613af1565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613514565b611102565b005b3480156104e557600080fd5b506104ee611198565b6040516104fb9190613af1565b60405180910390f35b34801561051057600080fd5b5061052b6004803603810190610526919061355d565b6111ab565b6040516105389190613a8a565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061355d565b6111c1565b005b34801561057657600080fd5b50610591600480360381019061058c919061329d565b611247565b60405161059e9190613e2e565b60405180910390f35b3480156105b357600080fd5b506105bc611330565b005b3480156105ca57600080fd5b506105d36113b8565b6040516105e09190613e2e565b60405180910390f35b3480156105f557600080fd5b506105fe6113be565b60405161060b9190613a8a565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061355d565b6113e8565b005b34801561064957600080fd5b50610664600480360381019061065f9190613460565b61146e565b005b34801561067257600080fd5b5061067b611507565b6040516106889190613b0c565b60405180910390f35b34801561069d57600080fd5b506106a6611599565b6040516106b39190613e2e565b60405180910390f35b6106d660048036038101906106d1919061355d565b61159f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906133e0565b611791565b005b34801561070d57600080fd5b506107286004803603810190610723919061335d565b611912565b005b34801561073657600080fd5b5061073f61196e565b60405161074c9190613b0c565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061355d565b6119a7565b005b34801561078a57600080fd5b506107a560048036038101906107a0919061355d565b611a2d565b6040516107b29190613b0c565b60405180910390f35b3480156107c757600080fd5b506107d0611bbb565b6040516107dd9190613a8a565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061355d565b611bd3565b005b34801561081b57600080fd5b50610836600480360381019061083191906132ca565b611c59565b6040516108439190613af1565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613514565b611d4d565b005b34801561088157600080fd5b5061089c6004803603810190610897919061329d565b611de3565b005b3480156108aa57600080fd5b506108b3611edb565b6040516108c09190613e2e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b82611ee1565b5b9050919050565b610a1b611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610a396113be565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613cae565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610abb9061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae79061419c565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982611f53565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613e0e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610bd09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc9061419c565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b505050505081565b6000610c5c826111ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cec611f4b565b73ffffffffffffffffffffffffffffffffffffffff161480610d1b5750610d1a81610d15611f4b565b611c59565b5b610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613c0e565b60405180910390fd5b610d65838383611f60565b505050565b60008054905090565b610d7e838383612012565b505050565b6000610d8e83611247565b8210610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690613b2e565b60405180910390fd5b6000610dd9610d6a565b905060008060005b83811015610f3f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ed357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2b5786841415610f1c578195505050505050610f7b565b8380610f27906141ff565b9450505b508080610f37906141ff565b915050610de1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613dee565b60405180910390fd5b92915050565b600b5481565b610f8f611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610fad6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613cae565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161102990613a75565b60006040518083038185875af1925050503d8060008114611066576040519150601f19603f3d011682016040523d82523d6000602084013e61106b565b606091505b505090508061107957600080fd5b50565b61109783838360405180602001604052806000815250611912565b505050565b60006110a6610d6a565b82106110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613bce565b60405180910390fd5b819050919050565b600e60019054906101000a900460ff1681565b61110a611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111286113be565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613cae565b60405180910390fd5b8060089080519060200190611194929190613062565b5050565b600e60009054906101000a900460ff1681565b60006111b6826125b9565b600001519050919050565b6111c9611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111e76113be565b73ffffffffffffffffffffffffffffffffffffffff161461123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613cae565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613c4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611338611f4b565b73ffffffffffffffffffffffffffffffffffffffff166113566113be565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613cae565b60405180910390fd5b6113b66000612714565b565b600c5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113f0611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661140e6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613cae565b60405180910390fd5b80600a8190555050565b611476611f4b565b73ffffffffffffffffffffffffffffffffffffffff166114946113be565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613cae565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6060600280546115169061419c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061419c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff16156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690613b4e565b60405180910390fd5b806115f8610d6a565b6116029190613f79565b600b541015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613c2e565b60405180910390fd5b60008111611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613bae565b60405180910390fd5b80611692610d6a565b61169c9190613f79565b600c54106116ee5780600d5410156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613d4e565b60405180910390fd5b611784565b80600d541015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90613d4e565b60405180910390fd5b600a54816117419190614000565b341015611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90613d0e565b60405180910390fd5b5b61178e33826127da565b50565b611799611f4b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613cce565b60405180910390fd5b8060066000611814611f4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c1611f4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119069190613af1565b60405180910390a35050565b61191d848484612012565b611929848484846127f8565b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90613d8e565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6119af611f4b565b73ffffffffffffffffffffffffffffffffffffffff166119cd6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613cae565b60405180910390fd5b80600d8190555050565b6060611a3882611f53565b611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90613c6e565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611b255760098054611aa09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054611acc9061419c565b8015611b195780601f10611aee57610100808354040283529160200191611b19565b820191906000526020600020905b815481529060010190602001808311611afc57829003601f168201915b50505050509050611bb6565b600060088054611b349061419c565b905011611b505760405180602001604052806000815250611bb3565b6008611b5b8361298f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ba393929190613a44565b6040516020818303038152906040525b90505b919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611bdb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611bf96113be565b73ffffffffffffffffffffffffffffffffffffffff1614611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613cae565b60405180910390fd5b80600c8190555050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611cc39190613a8a565b60206040518083038186803b158015611cdb57600080fd5b505afa158015611cef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1391906134e7565b73ffffffffffffffffffffffffffffffffffffffff161415611d39576001915050611d47565b611d438484612af0565b9150505b92915050565b611d55611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611d736113be565b73ffffffffffffffffffffffffffffffffffffffff1614611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613cae565b60405180910390fd5b8060099080519060200190611ddf929190613062565b5050565b611deb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611e096113be565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690613cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613b6e565b60405180910390fd5b611ed881612714565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061201d826125b9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612044611f4b565b73ffffffffffffffffffffffffffffffffffffffff1614806120a05750612069611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661208884610b3e565b73ffffffffffffffffffffffffffffffffffffffff16145b806120bc57506120bb82600001516120b6611f4b565b611c59565b5b9050806120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590613cee565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790613bee565b60405180910390fd5b6121ed8585856001612b84565b6121fd6000848460000151611f60565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124039190613f79565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125495761247981611f53565b15612548576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b18686866001612b8a565b505050505050565b6125c16130e8565b6125ca82611f53565b612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090613b8e565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126fb57809250505061270f565b50808061270790614172565b91505061260f565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f4828260405180602001604052806000815250612b90565b5050565b60006128198473ffffffffffffffffffffffffffffffffffffffff1661304f565b15612982578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612842611f4b565b8786866040518563ffffffff1660e01b81526004016128649493929190613aa5565b602060405180830381600087803b15801561287e57600080fd5b505af19250505080156128af57506040513d601f19601f820116820180604052508101906128ac91906134ba565b60015b612932573d80600081146128df576040519150601f19603f3d011682016040523d82523d6000602084013e6128e4565b606091505b5060008151141561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190613d8e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612987565b600190505b949350505050565b606060008214156129d7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aeb565b600082905060005b60008214612a095780806129f2906141ff565b915050600a82612a029190613fcf565b91506129df565b60008167ffffffffffffffff811115612a2557612a24614335565b5b6040519080825280601f01601f191660200182016040528015612a575781602001600182028036833780820191505090505b5090505b60008514612ae457600182612a70919061405a565b9150600a85612a7f9190614248565b6030612a8b9190613f79565b60f81b818381518110612aa157612aa0614306565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612add9190613fcf565b9450612a5b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613dce565b60405180910390fd5b612c0f81611f53565b15612c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4690613dae565b60405180910390fd5b60008311612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990613d6e565b60405180910390fd5b612c9f6000858386612b84565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d9c9190613f33565b6fffffffffffffffffffffffffffffffff168152602001858360200151612dc39190613f33565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561303257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd260008884886127f8565b613011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300890613d8e565b60405180910390fd5b818061301c906141ff565b925050808061302a906141ff565b915050612f61565b50806000819055506130476000878588612b8a565b505050505050565b600080823b905060008111915050919050565b82805461306e9061419c565b90600052602060002090601f01602090048101928261309057600085556130d7565b82601f106130a957805160ff19168380011785556130d7565b828001600101855582156130d7579182015b828111156130d65782518255916020019190600101906130bb565b5b5090506130e49190613122565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561313b576000816000905550600101613123565b5090565b600061315261314d84613e6e565b613e49565b90508281526020810184848401111561316e5761316d614369565b5b613179848285614130565b509392505050565b600061319461318f84613e9f565b613e49565b9050828152602081018484840111156131b0576131af614369565b5b6131bb848285614130565b509392505050565b6000813590506131d28161499e565b92915050565b6000813590506131e7816149b5565b92915050565b6000813590506131fc816149cc565b92915050565b600081519050613211816149cc565b92915050565b600082601f83011261322c5761322b614364565b5b813561323c84826020860161313f565b91505092915050565b600081519050613254816149e3565b92915050565b600082601f83011261326f5761326e614364565b5b813561327f848260208601613181565b91505092915050565b600081359050613297816149fa565b92915050565b6000602082840312156132b3576132b2614373565b5b60006132c1848285016131c3565b91505092915050565b600080604083850312156132e1576132e0614373565b5b60006132ef858286016131c3565b9250506020613300858286016131c3565b9150509250929050565b60008060006060848603121561332357613322614373565b5b6000613331868287016131c3565b9350506020613342868287016131c3565b925050604061335386828701613288565b9150509250925092565b6000806000806080858703121561337757613376614373565b5b6000613385878288016131c3565b9450506020613396878288016131c3565b93505060406133a787828801613288565b925050606085013567ffffffffffffffff8111156133c8576133c761436e565b5b6133d487828801613217565b91505092959194509250565b600080604083850312156133f7576133f6614373565b5b6000613405858286016131c3565b9250506020613416858286016131d8565b9150509250929050565b6000806040838503121561343757613436614373565b5b6000613445858286016131c3565b925050602061345685828601613288565b9150509250929050565b60006020828403121561347657613475614373565b5b6000613484848285016131d8565b91505092915050565b6000602082840312156134a3576134a2614373565b5b60006134b1848285016131ed565b91505092915050565b6000602082840312156134d0576134cf614373565b5b60006134de84828501613202565b91505092915050565b6000602082840312156134fd576134fc614373565b5b600061350b84828501613245565b91505092915050565b60006020828403121561352a57613529614373565b5b600082013567ffffffffffffffff8111156135485761354761436e565b5b6135548482850161325a565b91505092915050565b60006020828403121561357357613572614373565b5b600061358184828501613288565b91505092915050565b6135938161408e565b82525050565b6135a2816140a0565b82525050565b60006135b382613ee5565b6135bd8185613efb565b93506135cd81856020860161413f565b6135d681614378565b840191505092915050565b60006135ec82613ef0565b6135f68185613f17565b935061360681856020860161413f565b61360f81614378565b840191505092915050565b600061362582613ef0565b61362f8185613f28565b935061363f81856020860161413f565b80840191505092915050565b600081546136588161419c565b6136628186613f28565b9450600182166000811461367d576001811461368e576136c1565b60ff198316865281860193506136c1565b61369785613ed0565b60005b838110156136b95781548189015260018201915060208101905061369a565b838801955050505b50505092915050565b60006136d7602283613f17565b91506136e282614389565b604082019050919050565b60006136fa600683613f17565b9150613705826143d8565b602082019050919050565b600061371d602683613f17565b915061372882614401565b604082019050919050565b6000613740602a83613f17565b915061374b82614450565b604082019050919050565b6000613763600a83613f17565b915061376e8261449f565b602082019050919050565b6000613786602383613f17565b9150613791826144c8565b604082019050919050565b60006137a9602583613f17565b91506137b482614517565b604082019050919050565b60006137cc603983613f17565b91506137d782614566565b604082019050919050565b60006137ef601283613f17565b91506137fa826145b5565b602082019050919050565b6000613812602b83613f17565b915061381d826145de565b604082019050919050565b6000613835601583613f17565b91506138408261462d565b602082019050919050565b6000613858602683613f17565b915061386382614656565b604082019050919050565b600061387b602083613f17565b9150613886826146a5565b602082019050919050565b600061389e601a83613f17565b91506138a9826146ce565b602082019050919050565b60006138c1603283613f17565b91506138cc826146f7565b604082019050919050565b60006138e4601683613f17565b91506138ef82614746565b602082019050919050565b6000613907602283613f17565b91506139128261476f565b604082019050919050565b600061392a601b83613f17565b9150613935826147be565b602082019050919050565b600061394d600083613f0c565b9150613958826147e7565b600082019050919050565b6000613970602383613f17565b915061397b826147ea565b604082019050919050565b6000613993603383613f17565b915061399e82614839565b604082019050919050565b60006139b6601d83613f17565b91506139c182614888565b602082019050919050565b60006139d9602183613f17565b91506139e4826148b1565b604082019050919050565b60006139fc602e83613f17565b9150613a0782614900565b604082019050919050565b6000613a1f602d83613f17565b9150613a2a8261494f565b604082019050919050565b613a3e81614126565b82525050565b6000613a50828661364b565b9150613a5c828561361a565b9150613a68828461361a565b9150819050949350505050565b6000613a8082613940565b9150819050919050565b6000602082019050613a9f600083018461358a565b92915050565b6000608082019050613aba600083018761358a565b613ac7602083018661358a565b613ad46040830185613a35565b8181036060830152613ae681846135a8565b905095945050505050565b6000602082019050613b066000830184613599565b92915050565b60006020820190508181036000830152613b2681846135e1565b905092915050565b60006020820190508181036000830152613b47816136ca565b9050919050565b60006020820190508181036000830152613b67816136ed565b9050919050565b60006020820190508181036000830152613b8781613710565b9050919050565b60006020820190508181036000830152613ba781613733565b9050919050565b60006020820190508181036000830152613bc781613756565b9050919050565b60006020820190508181036000830152613be781613779565b9050919050565b60006020820190508181036000830152613c078161379c565b9050919050565b60006020820190508181036000830152613c27816137bf565b9050919050565b60006020820190508181036000830152613c47816137e2565b9050919050565b60006020820190508181036000830152613c6781613805565b9050919050565b60006020820190508181036000830152613c8781613828565b9050919050565b60006020820190508181036000830152613ca78161384b565b9050919050565b60006020820190508181036000830152613cc78161386e565b9050919050565b60006020820190508181036000830152613ce781613891565b9050919050565b60006020820190508181036000830152613d07816138b4565b9050919050565b60006020820190508181036000830152613d27816138d7565b9050919050565b60006020820190508181036000830152613d47816138fa565b9050919050565b60006020820190508181036000830152613d678161391d565b9050919050565b60006020820190508181036000830152613d8781613963565b9050919050565b60006020820190508181036000830152613da781613986565b9050919050565b60006020820190508181036000830152613dc7816139a9565b9050919050565b60006020820190508181036000830152613de7816139cc565b9050919050565b60006020820190508181036000830152613e07816139ef565b9050919050565b60006020820190508181036000830152613e2781613a12565b9050919050565b6000602082019050613e436000830184613a35565b92915050565b6000613e53613e64565b9050613e5f82826141ce565b919050565b6000604051905090565b600067ffffffffffffffff821115613e8957613e88614335565b5b613e9282614378565b9050602081019050919050565b600067ffffffffffffffff821115613eba57613eb9614335565b5b613ec382614378565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3e826140ea565b9150613f49836140ea565b9250826fffffffffffffffffffffffffffffffff03821115613f6e57613f6d614279565b5b828201905092915050565b6000613f8482614126565b9150613f8f83614126565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc457613fc3614279565b5b828201905092915050565b6000613fda82614126565b9150613fe583614126565b925082613ff557613ff46142a8565b5b828204905092915050565b600061400b82614126565b915061401683614126565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561404f5761404e614279565b5b828202905092915050565b600061406582614126565b915061407083614126565b92508282101561408357614082614279565b5b828203905092915050565b600061409982614106565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140e38261408e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415d578082015181840152602081019050614142565b8381111561416c576000848401525b50505050565b600061417d82614126565b9150600082141561419157614190614279565b5b600182039050919050565b600060028204905060018216806141b457607f821691505b602082108114156141c8576141c76142d7565b5b50919050565b6141d782614378565b810181811067ffffffffffffffff821117156141f6576141f5614335565b5b80604052505050565b600061420a82614126565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423d5761423c614279565b5b600182019050919050565b600061425382614126565b915061425e83614126565b92508261426e5761426d6142a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6149a78161408e565b81146149b257600080fd5b50565b6149be816140a0565b81146149c957600080fd5b50565b6149d5816140ac565b81146149e057600080fd5b50565b6149ec816140d8565b81146149f757600080fd5b50565b614a0381614126565b8114614a0e57600080fd5b5056fea26469706673582212202590719503ae84ce9753028c0dcaadee8adda76e83252f9f719f5703da5daefd64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696873676f7635656661776572716e6f76636e616670776d347a646969757265726a65666473786a61336967346777686261796d342f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeihsgov5efawerqnovcnafpwm4zdiiurerjefdsxja3ig4gwhbaym4/
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f626166796265696873676f7635656661776572716e6f76636e
Arg [4] : 616670776d347a646969757265726a65666473786a6133696734677768626179
Arg [5] : 6d342f0000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41843:3437:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29098:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43814:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30881:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32576:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42078:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32097:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27457:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33603:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28162:864;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42155:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43622:184;;;;;;;;;;;;;:::i;:::-;;33836:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27634:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42309:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44448:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42276:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30690:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44089:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29584:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4270:103;;;;;;;;;;;;;:::i;:::-;;42194:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3619:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43991:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43901:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31050:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42113:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42583:578;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32940:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34084:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41897:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44336:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44688:589;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41950:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44204:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43169:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44554:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4528:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42237:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29098:422;29245:4;29302:25;29287:40;;;:11;:40;;;;:105;;;;29359:33;29344:48;;;:11;:48;;;;29287:105;:172;;;;29424:35;29409:50;;;:11;:50;;;;29287:172;:225;;;;29476:36;29500:11;29476:23;:36::i;:::-;29287:225;29267:245;;29098:422;;;:::o;43814:79::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43879:6:::1;43870;;:15;;;;;;;;;;;;;;;;;;43814:79:::0;:::o;30881:100::-;30935:13;30968:5;30961:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30881:100;:::o;32576:292::-;32680:7;32727:16;32735:7;32727;:16::i;:::-;32705:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32836:15;:24;32852:7;32836:24;;;;;;;;;;;;;;;;;;;;;32829:31;;32576:292;;;:::o;42078:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32097:413::-;32170:13;32186:24;32202:7;32186:15;:24::i;:::-;32170:40;;32235:5;32229:11;;:2;:11;;;;32221:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32330:5;32314:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32339:37;32356:5;32363:12;:10;:12::i;:::-;32339:16;:37::i;:::-;32314:62;32292:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;32474:28;32483:2;32487:7;32496:5;32474:8;:28::i;:::-;32159:351;32097:413;;:::o;27457:100::-;27510:7;27537:12;;27530:19;;27457:100;:::o;33603:162::-;33729:28;33739:4;33745:2;33749:7;33729:9;:28::i;:::-;33603:162;;;:::o;28162:864::-;28287:7;28328:16;28338:5;28328:9;:16::i;:::-;28320:5;:24;28312:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28394:22;28419:13;:11;:13::i;:::-;28394:38;;28443:19;28477:25;28531:9;28526:426;28550:14;28546:1;:18;28526:426;;;28586:31;28620:11;:14;28632:1;28620:14;;;;;;;;;;;28586:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28679:1;28653:28;;:9;:14;;;:28;;;28649:103;;28722:9;:14;;;28702:34;;28649:103;28791:5;28770:26;;:17;:26;;;28766:175;;;28836:5;28821:11;:20;28817:77;;;28873:1;28866:8;;;;;;;;;28817:77;28912:13;;;;;:::i;:::-;;;;28766:175;28571:381;28566:3;;;;;:::i;:::-;;;;28526:426;;;;28962:56;;;;;;;;;;:::i;:::-;;;;;;;;28162:864;;;;;:::o;42155:32::-;;;;:::o;43622:184::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43671:12:::1;43697:10;43689:24;;43735:21;43689:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43670:101;;;43790:7;43782:16;;;::::0;::::1;;43659:147;43622:184::o:0;33836:177::-;33966:39;33983:4;33989:2;33993:7;33966:39;;;;;;;;;;;;:16;:39::i;:::-;33836:177;;;:::o;27634:228::-;27737:7;27778:13;:11;:13::i;:::-;27770:5;:21;27762:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27849:5;27842:12;;27634:228;;;:::o;42309:27::-;;;;;;;;;;;;;:::o;44448:98::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44530:8:::1;44520:7;:18;;;;;;;;;;;;:::i;:::-;;44448:98:::0;:::o;42276:26::-;;;;;;;;;;;;;:::o;30690:124::-;30754:7;30781:20;30793:7;30781:11;:20::i;:::-;:25;;;30774:32;;30690:124;;;:::o;44089:107::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44175:13:::1;44162:10;:26;;;;44089:107:::0;:::o;29584:258::-;29648:7;29707:1;29690:19;;:5;:19;;;;29668:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;29806:12;:19;29819:5;29806:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29798:36;;29791:43;;29584:258;;;:::o;4270:103::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4335:30:::1;4362:1;4335:18;:30::i;:::-;4270:103::o:0;42194:36::-;;;;:::o;3619:87::-;3665:7;3692:6;;;;;;;;;;;3685:13;;3619:87;:::o;43991:90::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44064:9:::1;44056:5;:17;;;;43991:90:::0;:::o;43901:82::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43969:6:::1;43958:8;;:17;;;;;;;;;;;;;;;;;;43901:82:::0;:::o;31050:104::-;31106:13;31139:7;31132:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31050:104;:::o;42113:35::-;;;;:::o;42583:578::-;42649:6;;;;;;;;;;;42648:7;42640:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;42715:7;42699:13;:11;:13::i;:::-;:23;;;;:::i;:::-;42685:10;;:37;;42677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42774:1;42764:7;:11;42756:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;42842:7;42826:13;:11;:13::i;:::-;:23;;;;:::i;:::-;42807:15;;:42;42803:308;;42888:7;42874:10;;:21;;42866:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42803:308;;;42982:7;42968:10;;:21;;42960:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43067:5;;43057:7;:15;;;;:::i;:::-;43044:9;:28;;43036:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42803:308;43123:30;43133:10;43145:7;43123:9;:30::i;:::-;42583:578;:::o;32940:311::-;33070:12;:10;:12::i;:::-;33058:24;;:8;:24;;;;33050:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;33171:8;33126:18;:32;33145:12;:10;:12::i;:::-;33126:32;;;;;;;;;;;;;;;:42;33159:8;33126:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33224:8;33195:48;;33210:12;:10;:12::i;:::-;33195:48;;;33234:8;33195:48;;;;;;:::i;:::-;;;;;;;;32940:311;;:::o;34084:355::-;34243:28;34253:4;34259:2;34263:7;34243:9;:28::i;:::-;34304:48;34327:4;34333:2;34337:7;34346:5;34304:22;:48::i;:::-;34282:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;34084:355;;;;:::o;41897:46::-;;;;;;;;;;;;;;;;;;;:::o;44336:104::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44420:12:::1;44407:10;:25;;;;44336:104:::0;:::o;44688:589::-;44790:13;44829:17;44837:8;44829:7;:17::i;:::-;44821:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;44901:5;44889:17;;:8;;;;;;;;;;;:17;;;44885:71;;;44930:14;44923:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44885:71;45012:1;44994:7;44988:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;45105:7;45139:26;45156:8;45139:16;:26::i;:::-;45192:13;;;;;;;;;;;;;;;;;45062:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44988:281;44968:301;;44688:589;;;;:::o;41950:98::-;42006:42;41950:98;:::o;44204:124::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44303:17:::1;44285:15;:35;;;;44204:124:::0;:::o;43169:445::-;43294:4;43379:27;42006:42;43379:65;;43500:8;43459:49;;43467:13;:21;;;43489:5;43467:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43459:49;;;43455:93;;;43532:4;43525:11;;;;;43455:93;43567:39;43590:5;43597:8;43567:22;:39::i;:::-;43560:46;;;43169:445;;;;;:::o;44554:126::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44657:15:::1;44640:14;:32;;;;;;;;;;;;:::i;:::-;;44554:126:::0;:::o;4528:238::-;3850:12;:10;:12::i;:::-;3839:23;;:7;:5;:7::i;:::-;:23;;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4651:1:::1;4631:22;;:8;:22;;;;4609:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;4730:28;4749:8;4730:18;:28::i;:::-;4528:238:::0;:::o;42237:30::-;;;;:::o;25450:207::-;25580:4;25624:25;25609:40;;;:11;:40;;;;25602:47;;25450:207;;;:::o;2343:98::-;2396:7;2423:10;2416:17;;2343:98;:::o;34694:111::-;34751:4;34785:12;;34775:7;:22;34768:29;;34694:111;;;:::o;38873:196::-;39015:2;38988:15;:24;39004:7;38988:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39053:7;39049:2;39033:28;;39042:5;39033:28;;;;;;;;;;;;38873:196;;;:::o;36837:1918::-;36952:35;36990:20;37002:7;36990:11;:20::i;:::-;36952:58;;37023:22;37065:13;:18;;;37049:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;37124:12;:10;:12::i;:::-;37100:36;;:20;37112:7;37100:11;:20::i;:::-;:36;;;37049:87;:154;;;;37153:50;37170:13;:18;;;37190:12;:10;:12::i;:::-;37153:16;:50::i;:::-;37049:154;37023:181;;37239:17;37217:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;37391:4;37369:26;;:13;:18;;;:26;;;37347:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;37494:1;37480:16;;:2;:16;;;;37472:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37551:43;37573:4;37579:2;37583:7;37592:1;37551:21;:43::i;:::-;37659:49;37676:1;37680:7;37689:13;:18;;;37659:8;:49::i;:::-;37943:1;37913:12;:18;37926:4;37913:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37987:1;37959:12;:16;37972:2;37959:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38035:43;;;;;;;;38050:2;38035:43;;;;;;38061:15;38035:43;;;;;38012:11;:20;38024:7;38012:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38318:19;38350:1;38340:7;:11;;;;:::i;:::-;38318:33;;38407:1;38366:43;;:11;:24;38378:11;38366:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;38362:288;;;38430:20;38438:11;38430:7;:20::i;:::-;38426:213;;;38498:125;;;;;;;;38535:13;:18;;;38498:125;;;;;;38576:13;:28;;;38498:125;;;;;38471:11;:24;38483:11;38471:24;;;;;;;;;;;:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38426:213;38362:288;38686:7;38682:2;38667:27;;38676:4;38667:27;;;;;;;;;;;;38705:42;38726:4;38732:2;38736:7;38745:1;38705:20;:42::i;:::-;36941:1814;;;36837:1918;;;:::o;30124:504::-;30212:21;;:::i;:::-;30259:16;30267:7;30259;:16::i;:::-;30251:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30340:12;30355:7;30340:22;;30335:216;30389:31;30423:11;:17;30435:4;30423:17;;;;;;;;;;;30389:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30485:1;30459:28;;:9;:14;;;:28;;;30455:85;;30515:9;30508:16;;;;;;30455:85;30374:177;30366:6;;;;;:::i;:::-;;;;30335:216;;30124:504;;;;:::o;4926:191::-;5000:16;5019:6;;;;;;;;;;;5000:25;;5045:8;5036:6;;:17;;;;;;;;;;;;;;;;;;5100:8;5069:40;;5090:8;5069:40;;;;;;;;;;;;4989:128;4926:191;:::o;34813:104::-;34882:27;34892:2;34896:8;34882:27;;;;;;;;;;;;:9;:27::i;:::-;34813:104;;:::o;39634:985::-;39789:4;39810:15;:2;:13;;;:15::i;:::-;39806:806;;;39879:2;39863:36;;;39922:12;:10;:12::i;:::-;39957:4;39984:7;40014:5;39863:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39842:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40242:1;40225:6;:13;:18;40221:321;;;40268:109;;;;;;;;;;:::i;:::-;;;;;;;;40221:321;40492:6;40486:13;40477:6;40473:2;40469:15;40462:38;39842:715;40112:45;;;40102:55;;;:6;:55;;;;40095:62;;;;;39806:806;40596:4;40589:11;;39634:985;;;;;;;:::o;5466:723::-;5522:13;5752:1;5743:5;:10;5739:53;;;5770:10;;;;;;;;;;;;;;;;;;;;;5739:53;5802:12;5817:5;5802:20;;5833:14;5858:78;5873:1;5865:4;:9;5858:78;;5891:8;;;;;:::i;:::-;;;;5922:2;5914:10;;;;;:::i;:::-;;;5858:78;;;5946:19;5978:6;5968:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5946:39;;5996:154;6012:1;6003:5;:10;5996:154;;6040:1;6030:11;;;;;:::i;:::-;;;6107:2;6099:5;:10;;;;:::i;:::-;6086:2;:24;;;;:::i;:::-;6073:39;;6056:6;6063;6056:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6136:2;6127:11;;;;;:::i;:::-;;;5996:154;;;6174:6;6160:21;;;;;5466:723;;;;:::o;33322:214::-;33464:4;33493:18;:25;33512:5;33493:25;;;;;;;;;;;;;;;:35;33519:8;33493:35;;;;;;;;;;;;;;;;;;;;;;;;;33486:42;;33322:214;;;;:::o;41107:159::-;;;;;:::o;41678:158::-;;;;;:::o;35194:1389::-;35317:20;35340:12;;35317:35;;35385:1;35371:16;;:2;:16;;;;35363:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;35570:21;35578:12;35570:7;:21::i;:::-;35569:22;35561:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35655:1;35644:8;:12;35636:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35709:61;35739:1;35743:2;35747:12;35761:8;35709:21;:61::i;:::-;35783:30;35816:12;:16;35829:2;35816:16;;;;;;;;;;;;;;;35783:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35862:135;;;;;;;;35918:8;35888:11;:19;;;:39;;;;:::i;:::-;35862:135;;;;;;35977:8;35942:11;:24;;;:44;;;;:::i;:::-;35862:135;;;;;35843:12;:16;35856:2;35843:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36036:43;;;;;;;;36051:2;36036:43;;;;;;36062:15;36036:43;;;;;36008:11;:25;36020:12;36008:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36092:20;36115:12;36092:35;;36145:9;36140:325;36164:8;36160:1;:12;36140:325;;;36224:12;36220:2;36199:38;;36216:1;36199:38;;;;;;;;;;;;36278:59;36309:1;36313:2;36317:12;36331:5;36278:22;:59::i;:::-;36252:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;36439:14;;;;;:::i;:::-;;;;36174:3;;;;;:::i;:::-;;;;36140:325;;;;36492:12;36477;:27;;;;36515:60;36544:1;36548:2;36552:12;36566:8;36515:20;:60::i;:::-;35306:1277;;;35194:1389;;;:::o;16812:387::-;16872:4;17080:12;17147:7;17135:20;17127:28;;17190:1;17183:4;:8;17176:15;;;16812:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:366::-;10484:3;10505:67;10569:2;10564:3;10505:67;:::i;:::-;10498:74;;10581:93;10670:3;10581:93;:::i;:::-;10699:2;10694:3;10690:12;10683:19;;10342:366;;;:::o;10714:365::-;10856:3;10877:66;10941:1;10936:3;10877:66;:::i;:::-;10870:73;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10714:365;;;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:398::-;17196:3;17217:83;17298:1;17293:3;17217:83;:::i;:::-;17210:90;;17309:93;17398:3;17309:93;:::i;:::-;17427:1;17422:3;17418:11;17411:18;;17037:398;;;:::o;17441:366::-;17583:3;17604:67;17668:2;17663:3;17604:67;:::i;:::-;17597:74;;17680:93;17769:3;17680:93;:::i;:::-;17798:2;17793:3;17789:12;17782:19;;17441:366;;;:::o;17813:::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:118::-;20132:24;20150:5;20132:24;:::i;:::-;20127:3;20120:37;20045:118;;:::o;20169:589::-;20394:3;20416:92;20504:3;20495:6;20416:92;:::i;:::-;20409:99;;20525:95;20616:3;20607:6;20525:95;:::i;:::-;20518:102;;20637:95;20728:3;20719:6;20637:95;:::i;:::-;20630:102;;20749:3;20742:10;;20169:589;;;;;;:::o;20764:379::-;20948:3;20970:147;21113:3;20970:147;:::i;:::-;20963:154;;21134:3;21127:10;;20764:379;;;:::o;21149:222::-;21242:4;21280:2;21269:9;21265:18;21257:26;;21293:71;21361:1;21350:9;21346:17;21337:6;21293:71;:::i;:::-;21149:222;;;;:::o;21377:640::-;21572:4;21610:3;21599:9;21595:19;21587:27;;21624:71;21692:1;21681:9;21677:17;21668:6;21624:71;:::i;:::-;21705:72;21773:2;21762:9;21758:18;21749:6;21705:72;:::i;:::-;21787;21855:2;21844:9;21840:18;21831:6;21787:72;:::i;:::-;21906:9;21900:4;21896:20;21891:2;21880:9;21876:18;21869:48;21934:76;22005:4;21996:6;21934:76;:::i;:::-;21926:84;;21377:640;;;;;;;:::o;22023:210::-;22110:4;22148:2;22137:9;22133:18;22125:26;;22161:65;22223:1;22212:9;22208:17;22199:6;22161:65;:::i;:::-;22023:210;;;;:::o;22239:313::-;22352:4;22390:2;22379:9;22375:18;22367:26;;22439:9;22433:4;22429:20;22425:1;22414:9;22410:17;22403:47;22467:78;22540:4;22531:6;22467:78;:::i;:::-;22459:86;;22239:313;;;;:::o;22558:419::-;22724:4;22762:2;22751:9;22747:18;22739:26;;22811:9;22805:4;22801:20;22797:1;22786:9;22782:17;22775:47;22839:131;22965:4;22839:131;:::i;:::-;22831:139;;22558:419;;;:::o;22983:::-;23149:4;23187:2;23176:9;23172:18;23164:26;;23236:9;23230:4;23226:20;23222:1;23211:9;23207:17;23200:47;23264:131;23390:4;23264:131;:::i;:::-;23256:139;;22983:419;;;:::o;23408:::-;23574:4;23612:2;23601:9;23597:18;23589:26;;23661:9;23655:4;23651:20;23647:1;23636:9;23632:17;23625:47;23689:131;23815:4;23689:131;:::i;:::-;23681:139;;23408:419;;;:::o;23833:::-;23999:4;24037:2;24026:9;24022:18;24014:26;;24086:9;24080:4;24076:20;24072:1;24061:9;24057:17;24050:47;24114:131;24240:4;24114:131;:::i;:::-;24106:139;;23833:419;;;:::o;24258:::-;24424:4;24462:2;24451:9;24447:18;24439:26;;24511:9;24505:4;24501:20;24497:1;24486:9;24482:17;24475:47;24539:131;24665:4;24539:131;:::i;:::-;24531:139;;24258:419;;;:::o;24683:::-;24849:4;24887:2;24876:9;24872:18;24864:26;;24936:9;24930:4;24926:20;24922:1;24911:9;24907:17;24900:47;24964:131;25090:4;24964:131;:::i;:::-;24956:139;;24683:419;;;:::o;25108:::-;25274:4;25312:2;25301:9;25297:18;25289:26;;25361:9;25355:4;25351:20;25347:1;25336:9;25332:17;25325:47;25389:131;25515:4;25389:131;:::i;:::-;25381:139;;25108:419;;;:::o;25533:::-;25699:4;25737:2;25726:9;25722:18;25714:26;;25786:9;25780:4;25776:20;25772:1;25761:9;25757:17;25750:47;25814:131;25940:4;25814:131;:::i;:::-;25806:139;;25533:419;;;:::o;25958:::-;26124:4;26162:2;26151:9;26147:18;26139:26;;26211:9;26205:4;26201:20;26197:1;26186:9;26182:17;26175:47;26239:131;26365:4;26239:131;:::i;:::-;26231:139;;25958:419;;;:::o;26383:::-;26549:4;26587:2;26576:9;26572:18;26564:26;;26636:9;26630:4;26626:20;26622:1;26611:9;26607:17;26600:47;26664:131;26790:4;26664:131;:::i;:::-;26656:139;;26383:419;;;:::o;26808:::-;26974:4;27012:2;27001:9;26997:18;26989:26;;27061:9;27055:4;27051:20;27047:1;27036:9;27032:17;27025:47;27089:131;27215:4;27089:131;:::i;:::-;27081:139;;26808:419;;;:::o;27233:::-;27399:4;27437:2;27426:9;27422:18;27414:26;;27486:9;27480:4;27476:20;27472:1;27461:9;27457:17;27450:47;27514:131;27640:4;27514:131;:::i;:::-;27506:139;;27233:419;;;:::o;27658:::-;27824:4;27862:2;27851:9;27847:18;27839:26;;27911:9;27905:4;27901:20;27897:1;27886:9;27882:17;27875:47;27939:131;28065:4;27939:131;:::i;:::-;27931:139;;27658:419;;;:::o;28083:::-;28249:4;28287:2;28276:9;28272:18;28264:26;;28336:9;28330:4;28326:20;28322:1;28311:9;28307:17;28300:47;28364:131;28490:4;28364:131;:::i;:::-;28356:139;;28083:419;;;:::o;28508:::-;28674:4;28712:2;28701:9;28697:18;28689:26;;28761:9;28755:4;28751:20;28747:1;28736:9;28732:17;28725:47;28789:131;28915:4;28789:131;:::i;:::-;28781:139;;28508:419;;;:::o;28933:::-;29099:4;29137:2;29126:9;29122:18;29114:26;;29186:9;29180:4;29176:20;29172:1;29161:9;29157:17;29150:47;29214:131;29340:4;29214:131;:::i;:::-;29206:139;;28933:419;;;:::o;29358:::-;29524:4;29562:2;29551:9;29547:18;29539:26;;29611:9;29605:4;29601:20;29597:1;29586:9;29582:17;29575:47;29639:131;29765:4;29639:131;:::i;:::-;29631:139;;29358:419;;;:::o;29783:::-;29949:4;29987:2;29976:9;29972:18;29964:26;;30036:9;30030:4;30026:20;30022:1;30011:9;30007:17;30000:47;30064:131;30190:4;30064:131;:::i;:::-;30056:139;;29783:419;;;:::o;30208:::-;30374:4;30412:2;30401:9;30397:18;30389:26;;30461:9;30455:4;30451:20;30447:1;30436:9;30432:17;30425:47;30489:131;30615:4;30489:131;:::i;:::-;30481:139;;30208:419;;;:::o;30633:::-;30799:4;30837:2;30826:9;30822:18;30814:26;;30886:9;30880:4;30876:20;30872:1;30861:9;30857:17;30850:47;30914:131;31040:4;30914:131;:::i;:::-;30906:139;;30633:419;;;:::o;31058:::-;31224:4;31262:2;31251:9;31247:18;31239:26;;31311:9;31305:4;31301:20;31297:1;31286:9;31282:17;31275:47;31339:131;31465:4;31339:131;:::i;:::-;31331:139;;31058:419;;;:::o;31483:::-;31649:4;31687:2;31676:9;31672:18;31664:26;;31736:9;31730:4;31726:20;31722:1;31711:9;31707:17;31700:47;31764:131;31890:4;31764:131;:::i;:::-;31756:139;;31483:419;;;:::o;31908:::-;32074:4;32112:2;32101:9;32097:18;32089:26;;32161:9;32155:4;32151:20;32147:1;32136:9;32132:17;32125:47;32189:131;32315:4;32189:131;:::i;:::-;32181:139;;31908:419;;;:::o;32758:::-;32924:4;32962:2;32951:9;32947:18;32939:26;;33011:9;33005:4;33001:20;32997:1;32986:9;32982:17;32975:47;33039:131;33165:4;33039:131;:::i;:::-;33031:139;;32758:419;;;:::o;33183:222::-;33276:4;33314:2;33303:9;33299:18;33291:26;;33327:71;33395:1;33384:9;33380:17;33371:6;33327:71;:::i;:::-;33183:222;;;;:::o;33411:129::-;33445:6;33472:20;;:::i;:::-;33462:30;;33501:33;33529:4;33521:6;33501:33;:::i;:::-;33411:129;;;:::o;33546:75::-;33579:6;33612:2;33606:9;33596:19;;33546:75;:::o;33627:307::-;33688:4;33778:18;33770:6;33767:30;33764:56;;;33800:18;;:::i;:::-;33764:56;33838:29;33860:6;33838:29;:::i;:::-;33830:37;;33922:4;33916;33912:15;33904:23;;33627:307;;;:::o;33940:308::-;34002:4;34092:18;34084:6;34081:30;34078:56;;;34114:18;;:::i;:::-;34078:56;34152:29;34174:6;34152:29;:::i;:::-;34144:37;;34236:4;34230;34226:15;34218:23;;33940:308;;;:::o;34254:141::-;34303:4;34326:3;34318:11;;34349:3;34346:1;34339:14;34383:4;34380:1;34370:18;34362:26;;34254:141;;;:::o;34401:98::-;34452:6;34486:5;34480:12;34470:22;;34401:98;;;:::o;34505:99::-;34557:6;34591:5;34585:12;34575:22;;34505:99;;;:::o;34610:168::-;34693:11;34727:6;34722:3;34715:19;34767:4;34762:3;34758:14;34743:29;;34610:168;;;;:::o;34784:147::-;34885:11;34922:3;34907:18;;34784:147;;;;:::o;34937:169::-;35021:11;35055:6;35050:3;35043:19;35095:4;35090:3;35086:14;35071:29;;34937:169;;;;:::o;35112:148::-;35214:11;35251:3;35236:18;;35112:148;;;;:::o;35266:273::-;35306:3;35325:20;35343:1;35325:20;:::i;:::-;35320:25;;35359:20;35377:1;35359:20;:::i;:::-;35354:25;;35481:1;35445:34;35441:42;35438:1;35435:49;35432:75;;;35487:18;;:::i;:::-;35432:75;35531:1;35528;35524:9;35517:16;;35266:273;;;;:::o;35545:305::-;35585:3;35604:20;35622:1;35604:20;:::i;:::-;35599:25;;35638:20;35656:1;35638:20;:::i;:::-;35633:25;;35792:1;35724:66;35720:74;35717:1;35714:81;35711:107;;;35798:18;;:::i;:::-;35711:107;35842:1;35839;35835:9;35828:16;;35545:305;;;;:::o;35856:185::-;35896:1;35913:20;35931:1;35913:20;:::i;:::-;35908:25;;35947:20;35965:1;35947:20;:::i;:::-;35942:25;;35986:1;35976:35;;35991:18;;:::i;:::-;35976:35;36033:1;36030;36026:9;36021:14;;35856:185;;;;:::o;36047:348::-;36087:7;36110:20;36128:1;36110:20;:::i;:::-;36105:25;;36144:20;36162:1;36144:20;:::i;:::-;36139:25;;36332:1;36264:66;36260:74;36257:1;36254:81;36249:1;36242:9;36235:17;36231:105;36228:131;;;36339:18;;:::i;:::-;36228:131;36387:1;36384;36380:9;36369:20;;36047:348;;;;:::o;36401:191::-;36441:4;36461:20;36479:1;36461:20;:::i;:::-;36456:25;;36495:20;36513:1;36495:20;:::i;:::-;36490:25;;36534:1;36531;36528:8;36525:34;;;36539:18;;:::i;:::-;36525:34;36584:1;36581;36577:9;36569:17;;36401:191;;;;:::o;36598:96::-;36635:7;36664:24;36682:5;36664:24;:::i;:::-;36653:35;;36598:96;;;:::o;36700:90::-;36734:7;36777:5;36770:13;36763:21;36752:32;;36700:90;;;:::o;36796:149::-;36832:7;36872:66;36865:5;36861:78;36850:89;;36796:149;;;:::o;36951:125::-;37017:7;37046:24;37064:5;37046:24;:::i;:::-;37035:35;;36951:125;;;:::o;37082:118::-;37119:7;37159:34;37152:5;37148:46;37137:57;;37082:118;;;:::o;37206:126::-;37243:7;37283:42;37276:5;37272:54;37261:65;;37206:126;;;:::o;37338:77::-;37375:7;37404:5;37393:16;;37338:77;;;:::o;37421:154::-;37505:6;37500:3;37495;37482:30;37567:1;37558:6;37553:3;37549:16;37542:27;37421:154;;;:::o;37581:307::-;37649:1;37659:113;37673:6;37670:1;37667:13;37659:113;;;37758:1;37753:3;37749:11;37743:18;37739:1;37734:3;37730:11;37723:39;37695:2;37692:1;37688:10;37683:15;;37659:113;;;37790:6;37787:1;37784:13;37781:101;;;37870:1;37861:6;37856:3;37852:16;37845:27;37781:101;37630:258;37581:307;;;:::o;37894:171::-;37933:3;37956:24;37974:5;37956:24;:::i;:::-;37947:33;;38002:4;37995:5;37992:15;37989:41;;;38010:18;;:::i;:::-;37989:41;38057:1;38050:5;38046:13;38039:20;;37894:171;;;:::o;38071:320::-;38115:6;38152:1;38146:4;38142:12;38132:22;;38199:1;38193:4;38189:12;38220:18;38210:81;;38276:4;38268:6;38264:17;38254:27;;38210:81;38338:2;38330:6;38327:14;38307:18;38304:38;38301:84;;;38357:18;;:::i;:::-;38301:84;38122:269;38071:320;;;:::o;38397:281::-;38480:27;38502:4;38480:27;:::i;:::-;38472:6;38468:40;38610:6;38598:10;38595:22;38574:18;38562:10;38559:34;38556:62;38553:88;;;38621:18;;:::i;:::-;38553:88;38661:10;38657:2;38650:22;38440:238;38397:281;;:::o;38684:233::-;38723:3;38746:24;38764:5;38746:24;:::i;:::-;38737:33;;38792:66;38785:5;38782:77;38779:103;;;38862:18;;:::i;:::-;38779:103;38909:1;38902:5;38898:13;38891:20;;38684:233;;;:::o;38923:176::-;38955:1;38972:20;38990:1;38972:20;:::i;:::-;38967:25;;39006:20;39024:1;39006:20;:::i;:::-;39001:25;;39045:1;39035:35;;39050:18;;:::i;:::-;39035:35;39091:1;39088;39084:9;39079:14;;38923:176;;;;:::o;39105:180::-;39153:77;39150:1;39143:88;39250:4;39247:1;39240:15;39274:4;39271:1;39264:15;39291:180;39339:77;39336:1;39329:88;39436:4;39433:1;39426:15;39460:4;39457:1;39450:15;39477:180;39525:77;39522:1;39515:88;39622:4;39619:1;39612:15;39646:4;39643:1;39636:15;39663:180;39711:77;39708:1;39701:88;39808:4;39805:1;39798:15;39832:4;39829:1;39822:15;39849:180;39897:77;39894:1;39887:88;39994:4;39991:1;39984:15;40018:4;40015:1;40008:15;40035:117;40144:1;40141;40134:12;40158:117;40267:1;40264;40257:12;40281:117;40390:1;40387;40380:12;40404:117;40513:1;40510;40503:12;40527:102;40568:6;40619:2;40615:7;40610:2;40603:5;40599:14;40595:28;40585:38;;40527:102;;;:::o;40635:221::-;40775:34;40771:1;40763:6;40759:14;40752:58;40844:4;40839:2;40831:6;40827:15;40820:29;40635:221;:::o;40862:156::-;41002:8;40998:1;40990:6;40986:14;40979:32;40862:156;:::o;41024:225::-;41164:34;41160:1;41152:6;41148:14;41141:58;41233:8;41228:2;41220:6;41216:15;41209:33;41024:225;:::o;41255:229::-;41395:34;41391:1;41383:6;41379:14;41372:58;41464:12;41459:2;41451:6;41447:15;41440:37;41255:229;:::o;41490:160::-;41630:12;41626:1;41618:6;41614:14;41607:36;41490:160;:::o;41656:222::-;41796:34;41792:1;41784:6;41780:14;41773:58;41865:5;41860:2;41852:6;41848:15;41841:30;41656:222;:::o;41884:224::-;42024:34;42020:1;42012:6;42008:14;42001:58;42093:7;42088:2;42080:6;42076:15;42069:32;41884:224;:::o;42114:244::-;42254:34;42250:1;42242:6;42238:14;42231:58;42323:27;42318:2;42310:6;42306:15;42299:52;42114:244;:::o;42364:168::-;42504:20;42500:1;42492:6;42488:14;42481:44;42364:168;:::o;42538:230::-;42678:34;42674:1;42666:6;42662:14;42655:58;42747:13;42742:2;42734:6;42730:15;42723:38;42538:230;:::o;42774:171::-;42914:23;42910:1;42902:6;42898:14;42891:47;42774:171;:::o;42951:225::-;43091:34;43087:1;43079:6;43075:14;43068:58;43160:8;43155:2;43147:6;43143:15;43136:33;42951:225;:::o;43182:182::-;43322:34;43318:1;43310:6;43306:14;43299:58;43182:182;:::o;43370:176::-;43510:28;43506:1;43498:6;43494:14;43487:52;43370:176;:::o;43552:237::-;43692:34;43688:1;43680:6;43676:14;43669:58;43761:20;43756:2;43748:6;43744:15;43737:45;43552:237;:::o;43795:172::-;43935:24;43931:1;43923:6;43919:14;43912:48;43795:172;:::o;43973:221::-;44113:34;44109:1;44101:6;44097:14;44090:58;44182:4;44177:2;44169:6;44165:15;44158:29;43973:221;:::o;44200:177::-;44340:29;44336:1;44328:6;44324:14;44317:53;44200:177;:::o;44383:114::-;;:::o;44503:222::-;44643:34;44639:1;44631:6;44627:14;44620:58;44712:5;44707:2;44699:6;44695:15;44688:30;44503:222;:::o;44731:238::-;44871:34;44867:1;44859:6;44855:14;44848:58;44940:21;44935:2;44927:6;44923:15;44916:46;44731:238;:::o;44975:179::-;45115:31;45111:1;45103:6;45099:14;45092:55;44975:179;:::o;45160:220::-;45300:34;45296:1;45288:6;45284:14;45277:58;45369:3;45364:2;45356:6;45352:15;45345:28;45160:220;:::o;45386:233::-;45526:34;45522:1;45514:6;45510:14;45503:58;45595:16;45590:2;45582:6;45578:15;45571:41;45386:233;:::o;45865:232::-;46005:34;46001:1;45993:6;45989:14;45982:58;46074:15;46069:2;46061:6;46057:15;46050:40;45865:232;:::o;46103:122::-;46176:24;46194:5;46176:24;:::i;:::-;46169:5;46166:35;46156:63;;46215:1;46212;46205:12;46156:63;46103:122;:::o;46231:116::-;46301:21;46316:5;46301:21;:::i;:::-;46294:5;46291:32;46281:60;;46337:1;46334;46327:12;46281:60;46231:116;:::o;46353:120::-;46425:23;46442:5;46425:23;:::i;:::-;46418:5;46415:34;46405:62;;46463:1;46460;46453:12;46405:62;46353:120;:::o;46479:180::-;46581:53;46628:5;46581:53;:::i;:::-;46574:5;46571:64;46561:92;;46649:1;46646;46639:12;46561:92;46479:180;:::o;46665:122::-;46738:24;46756:5;46738:24;:::i;:::-;46731:5;46728:35;46718:63;;46777:1;46774;46767:12;46718:63;46665:122;:::o

Swarm Source

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