ETH Price: $3,502.58 (+3.90%)
Gas: 4 Gwei

Token

Relic Punks (RPUNKS)
 

Overview

Max Total Supply

990 RPUNKS

Holders

596

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RPUNKS
0xab17268904a9c61de47e059f3cdaffc125091013
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:
RelicPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-14
*/

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return _baseURI();
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

contract RelicsPass {
    function ownerOf(uint256 relicsPassId) public view virtual returns(address) {}
}

struct TokenInfo {
    uint256 punkId;
    string edition;
    uint256 punkNumber;
}


// File: contracts/RelicPunks.sol
pragma solidity >=0.7.0 <0.9.0;
contract RelicPunks is ERC721Enumerable, Ownable, ReentrancyGuard {
	using Strings for uint256;

	string baseURI;
	string baseExtension = ".json";
	bool public paused = true;
    address public immutable relicsPassContract;
    mapping(uint256 => uint256) private claimedPasses;
    mapping(uint256 => uint256) punksEditionCounter;
    mapping(uint256 => TokenInfo) punkIdToInfo;
    string[] punkNames;
    string[] punkFileNames;

	constructor(
		string memory _name,
		string memory _symbol,
        string memory _baseUri,
        address _relicsPassContract
	) ERC721(_name, _symbol) {
        baseURI = _baseUri;
        relicsPassContract = _relicsPassContract;
        punkNames = ["Pixel Perfect", "Amped Ape", "Teachers Pet", 
                     "Broken Record", "Sketched Out", "Tuned Out", 
                     "Bundle Of Joy", "Money Talks", "Strange Computer", 
                     "Golden Hour", "Ice Cold", "Icing On Top", "Fair and Square", 
                     "Class Clown", "Mark 1", "Security Blanket", "Bright Side", 
                     "Hot Wallet", "Face The Music", "Cheat Code", "Bite Me", 
                     "Dialed In", "Instant Gratification", "Double Toasted", 
                     "Keep On Truckin'", "Space Junk", "Speak Up", "Bugged Out", 
                     "Loud Mouth", "Surprise", "Game Boy Punk", "Relic Football Punk", "Kevin Punk", "Mag Punk", 
                     "Ticked Off", "Patek Punk"];
        punkFileNames = ["2140", "2140garyv", "2338", "juke", "6578", "9671", "atari", 
                         "atm", "c3po", "casio", "cola", "ezbaked", "gamecube", "hello", 
                         "ironman", "ledger", "lite", "mac", "mpc", "n64", "pac", "phone", 
                         "polaroid", "pop", "prime", "r2d2", "speakspell", "vw", "walkman", 
                         "surprise", "4609", "football", "gameboy", "mag", "ticked", "tiffany"];
	}

    // The given string array of punk names must be in the exact order they are listed on the site.
    function setPunkNames(string[] memory _punkNames) public onlyOwner {
        punkNames = _punkNames;
    }

    function setSinglePunkName(uint256 index, string memory newName) public onlyOwner {
        punkNames[index] = newName;
    }

    function setPunkFileNames(string[] memory _punkFileNames) public onlyOwner {
        punkFileNames = _punkFileNames;
    }

    function setSinglePunkFileName(uint256 index, string memory newFileName) public onlyOwner {
        punkFileNames[index] = newFileName;
    }


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

    function claimed(uint256 relicPassId) public view returns(uint256) {
        return claimedPasses[relicPassId];
    }

    function claimable(uint256 relicPassId) public view returns(bool) {
        return claimedPasses[relicPassId] == 0;
    }

    function arePassIdsClaimable(uint256[] memory passIds) public view returns (bool[] memory) {
        bool[] memory claimStates = new bool[](passIds.length);
        for (uint i = 0; i < passIds.length; i++) {
            claimStates[i] = claimable(passIds[i]);
        }

        return claimStates;
    }

    function getPunksEditionCounter() public view returns(uint256[] memory) {
        uint256[] memory counters = new uint256[](punkNames.length);

        for (uint i = 0; i < punkNames.length; i++) {
            counters[i] = punksEditionCounter[i];
        }

        return counters;
    }

    // allows owner to mint Relic Punks of their choice to distribute.
    function ownerMint(uint256 punk) public nonReentrant onlyOwner {
        require(punk >= 0 && punk < punkNames.length, "invalid punk ID");
        TokenInfo memory info = TokenInfo({
            punkId: punk,
            edition: Strings.toString(punksEditionCounter[punk]),
            punkNumber: punk
        });

        uint256 supply = totalSupply(); 
        _safeMint(msg.sender, supply + 1);
        punkIdToInfo[supply + 1] = info;
    }

	// backup mint function
    // edition needs to be kept track of in the contract, not passed in from the frontend
    // use msg.sender to verify Relic Pass
    // only parameter needed is uint256 punk, which references an image
	function mint(uint256 passId, uint256 punk) 
		public
		payable
        nonReentrant
	{
        if (msg.sender != owner()) {
            require(paused == false, "contract is currently paused");
            require(punk >= 0 && punk < 30, "only owner can mint this punk");
            RelicsPass relicPass = RelicsPass(relicsPassContract);
            require(relicPass.ownerOf(passId) == _msgSender(), "you aren't owner");
            require(claimable(passId) == true, "this Relic Pass has already claimed a Relic Punk");
            claimedPasses[passId]++;
        } else {
            require(punk >= 0 && punk < punkNames.length, "invalid punk ID");
        }

        punksEditionCounter[punk]++;
        TokenInfo memory info = TokenInfo({
            punkId: punk,
            edition: Strings.toString(punksEditionCounter[punk]),
            punkNumber: punk
        });

        uint256 supply = totalSupply();
		_safeMint(msg.sender, supply + 1);
        punkIdToInfo[supply + 1] = info;
	}

	function walletOfOwner(address _owner)
		public
		view
		returns (uint256[] memory)
	{
		uint256 ownerTokenCount = balanceOf(_owner);
		uint256[] memory tokenIds = new uint256[](ownerTokenCount);
		for (uint256 i; i < ownerTokenCount; i++) {
			tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
		}
		return tokenIds;
	}

	function tokenURI(uint256 tokenId) public view override returns (string memory) {
		require(_exists(tokenId),"TOKENURI:DOES_NOT_EXIST");
		return _getFinalPackedMetadata(tokenId);
	}

    function _getFinalPackedMetadata(uint256 tokenId) private view returns (string memory) {
		return string(
			abi.encodePacked(
				"data:application/json;base64,",
				Base64.encode(bytes(_getMetadataJSONString(tokenId)))
			)
		);
	}

    function append(string memory a, string memory b) internal pure returns (string memory) {
        return string(abi.encodePacked(a, b));
    }

    function _getMetadataJSONString(uint256 tokenId) private view returns (string memory) {
        TokenInfo memory punkToken = punkIdToInfo[tokenId];
		return string(
			abi.encodePacked(
				"{",
				_jsonKV("name", _jsonStringWrap(string(
					abi.encodePacked(
						punkNames[punkToken.punkId]
					)
				)), true),
				_jsonKV("image", _jsonStringWrap(generateURI(punkToken.punkId)), true),
                _jsonKV("description", generateDescription(), true),
                _jsonKV("edition", _jsonStringWrap(punkToken.edition), true),
                _jsonKV("attributes", generateAttributes(punkToken.punkId), false),
				"}"
			)
		);
	}

    function generateDescription() private pure returns (string memory) {
        string memory description = "The Relic Punks are a 36 piece tribute to important cultural technology of the past."
                                    " The collection uses nostalgia to bring back the emotional relationship and connections"
                                    " we had growing up with consumer devices.";
        return _jsonStringWrap(description);
    }

    function generateAttributes(uint256 punkIndex) private view returns (string memory) {
        string memory attributes = append(" [{", _jsonKV("trait_type", _jsonStringWrap("Relic Punk"), true));
        attributes = append(attributes, _jsonKV("value", _jsonStringWrap(punkNames[punkIndex]), false));
        return append(attributes, "}]");
    }

    function generateURI(uint256 punkId) private view returns (string memory) {
        string memory uri = append(baseURI, punkFileNames[punkId]);
        return append(uri, ".jpg");
    }

    function _jsonStringWrap(string memory value) private pure returns (string memory) {
		return string(
			abi.encodePacked(
				"\"", value, "\""
			)
		);
	}

	function _jsonKV(
		string memory key,
		string memory value,
		bool hasComma
	) private pure returns (string memory) {
		return string(
			abi.encodePacked(
				"\"", key, "\": ", value, hasComma ? "," : ""
			)
		);
	}

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

	function setBaseExtension(string memory _newBaseExtension)
		public
		onlyOwner
	{
		baseExtension = _newBaseExtension;
	}

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

    // Withdraws the Ethers in the smart contract to the wallet of the contract's owner.
	function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"_relicsPassContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"passIds","type":"uint256[]"}],"name":"arePassIdsClaimable","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"relicPassId","type":"uint256"}],"name":"claimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"relicPassId","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPunksEditionCounter","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"passId","type":"uint256"},{"internalType":"uint256","name":"punk","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"punk","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"relicsPassContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_punkFileNames","type":"string[]"}],"name":"setPunkFileNames","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_punkNames","type":"string[]"}],"name":"setPunkNames","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"string","name":"newFileName","type":"string"}],"name":"setSinglePunkFileName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"setSinglePunkName","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000051929190620012f8565b506001600e60006101000a81548160ff0219169083151502179055503480156200007a57600080fd5b5060405162007454380380620074548339818101604052810190620000a0919062001512565b83838160009080519060200190620000ba929190620012f8565b508060019080519060200190620000d3929190620012f8565b505050620000f6620000ea6200122a60201b60201c565b6200123260201b60201c565b6001600b8190555081600c908051906020019062000116929190620012f8565b508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506040518061048001604052806040518060400160405280600d81526020017f506978656c20506572666563740000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f416d70656420417065000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f546561636865727320506574000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f42726f6b656e205265636f72640000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f536b657463686564204f7574000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f54756e6564204f7574000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f42756e646c65204f66204a6f790000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f4d6f6e65792054616c6b7300000000000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f537472616e676520436f6d70757465720000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f476f6c64656e20486f757200000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f49636520436f6c6400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f4963696e67204f6e20546f70000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4661697220616e6420537175617265000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f436c61737320436c6f776e00000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d61726b2031000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f536563757269747920426c616e6b65740000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f427269676874205369646500000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f486f742057616c6c65740000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4661636520546865204d7573696300000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f436865617420436f64650000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f42697465204d650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4469616c656420496e000000000000000000000000000000000000000000000081525081526020016040518060400160405280601581526020017f496e7374616e742047726174696669636174696f6e000000000000000000000081525081526020016040518060400160405280600e81526020017f446f75626c6520546f617374656400000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f4b656570204f6e20547275636b696e270000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f5370616365204a756e6b0000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f537065616b20557000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f427567676564204f75740000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4c6f7564204d6f7574680000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f537572707269736500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f47616d6520426f792050756e6b0000000000000000000000000000000000000081525081526020016040518060400160405280601381526020017f52656c696320466f6f7462616c6c2050756e6b0000000000000000000000000081525081526020016040518060400160405280600a81526020017f4b6576696e2050756e6b0000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4d61672050756e6b00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f5469636b6564204f66660000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f506174656b2050756e6b000000000000000000000000000000000000000000008152508152506012906024620009b692919062001389565b506040518061048001604052806040518060400160405280600481526020017f323134300000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f323134306761727976000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f323333380000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f6a756b650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f363537380000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f393637310000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f617461726900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f61746d000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f6333706f0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f636173696f00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f636f6c610000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f657a62616b65640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f67616d656375626500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f68656c6c6f00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f69726f6e6d616e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f6c6564676572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f6c6974650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f6d6163000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f6d7063000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f6e3634000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f706163000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f70686f6e6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f706f6c61726f696400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f706f70000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f7072696d6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f723264320000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f737065616b7370656c6c0000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f767700000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f77616c6b6d616e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f737572707269736500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f343630390000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f666f6f7462616c6c00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f67616d65626f790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f6d6167000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f7469636b6564000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f74696666616e790000000000000000000000000000000000000000000000000081525081525060139060246200121f92919062001389565b5050505050620017b3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200130690620016aa565b90600052602060002090601f0160209004810192826200132a576000855562001376565b82601f106200134557805160ff191683800117855562001376565b8280016001018555821562001376579182015b828111156200137557825182559160200191906001019062001358565b5b509050620013859190620013f0565b5090565b828054828255906000526020600020908101928215620013dd579160200282015b82811115620013dc578251829080519060200190620013cb929190620012f8565b5091602001919060010190620013aa565b5b509050620013ec91906200140f565b5090565b5b808211156200140b576000816000905550600101620013f1565b5090565b5b8082111562001433576000818162001429919062001437565b5060010162001410565b5090565b5080546200144590620016aa565b6000825580601f106200145957506200147a565b601f016020900490600052602060002090810190620014799190620013f0565b5b50565b6000620014946200148e846200160a565b620015e1565b905082815260208101848484011115620014b357620014b262001779565b5b620014c084828562001674565b509392505050565b600081519050620014d98162001799565b92915050565b600082601f830112620014f757620014f662001774565b5b8151620015098482602086016200147d565b91505092915050565b600080600080608085870312156200152f576200152e62001783565b5b600085015167ffffffffffffffff81111562001550576200154f6200177e565b5b6200155e87828801620014df565b945050602085015167ffffffffffffffff8111156200158257620015816200177e565b5b6200159087828801620014df565b935050604085015167ffffffffffffffff811115620015b457620015b36200177e565b5b620015c287828801620014df565b9250506060620015d587828801620014c8565b91505092959194509250565b6000620015ed62001600565b9050620015fb8282620016e0565b919050565b6000604051905090565b600067ffffffffffffffff82111562001628576200162762001745565b5b620016338262001788565b9050602081019050919050565b60006200164d8262001654565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200169457808201518184015260208101905062001677565b83811115620016a4576000848401525b50505050565b60006002820490506001821680620016c357607f821691505b60208210811415620016da57620016d962001716565b5b50919050565b620016eb8262001788565b810181811067ffffffffffffffff821117156200170d576200170c62001745565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620017a48162001640565b8114620017b057600080fd5b50565b60805160601c615c7b620017d960003960008181610d26015261160c0152615c7b6000f3fe60806040526004361061020f5760003560e01c80635c975abb11610118578063c87b56dd116100a0578063da3ef23f1161006f578063da3ef23f146107b0578063dbe7e3bd146107d9578063e985e9c514610816578063f19e75d414610853578063f2fde38b1461087c5761020f565b8063c87b56dd146106e2578063c9a43fc31461071f578063cc77cc451461074a578063d1d58b25146107735761020f565b80638da5cb5b116100e75780638da5cb5b1461061157806395d89b411461063c578063a22cb46514610667578063a44f698514610690578063b88d4fde146106b95761020f565b80635c975abb146105555780636352211e1461058057806370a08231146105bd578063715018a6146105fa5761020f565b80632f745c591161019b578063438b63001161016a578063438b63001461045e5780634f6ccce71461049b57806353aebca5146104d857806355f804b314610501578063587643121461052a5761020f565b80632f745c59146103a45780633ccfd60b146103e15780633ea854c3146103f857806342842e0e146104355761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b5780631b2ef1ca14610336578063220537731461035257806323b872dd1461037b5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190614196565b6108a5565b6040516102489190614b2f565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190614169565b61091f565b005b34801561028657600080fd5b5061028f6109b8565b60405161029c9190614b4a565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190614239565b610a4a565b6040516102d99190614a84565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190614097565b610acf565b005b34801561031757600080fd5b50610320610be7565b60405161032d9190614e6c565b60405180910390f35b610350600480360381019061034b91906142c2565b610bf4565b005b34801561035e57600080fd5b5061037960048036038101906103749190614266565b610ffe565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613f81565b6110b1565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190614097565b611111565b6040516103d89190614e6c565b60405180910390f35b3480156103ed57600080fd5b506103f66111b6565b005b34801561040457600080fd5b5061041f600480360381019061041a9190614120565b6112de565b60405161042c9190614aeb565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613f81565b61139f565b005b34801561046a57600080fd5b5061048560048036038101906104809190613ee7565b6113bf565b6040516104929190614b0d565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190614239565b61146d565b6040516104cf9190614e6c565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906140d7565b6114de565b005b34801561050d57600080fd5b50610528600480360381019061052391906141f0565b611574565b005b34801561053657600080fd5b5061053f61160a565b60405161054c9190614a84565b60405180910390f35b34801561056157600080fd5b5061056a61162e565b6040516105779190614b2f565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190614239565b611641565b6040516105b49190614a84565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190613ee7565b6116f3565b6040516105f19190614e6c565b60405180910390f35b34801561060657600080fd5b5061060f6117ab565b005b34801561061d57600080fd5b50610626611833565b6040516106339190614a84565b60405180910390f35b34801561064857600080fd5b5061065161185d565b60405161065e9190614b4a565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190614057565b6118ef565b005b34801561069c57600080fd5b506106b760048036038101906106b291906140d7565b611905565b005b3480156106c557600080fd5b506106e060048036038101906106db9190613fd4565b61199b565b005b3480156106ee57600080fd5b5061070960048036038101906107049190614239565b6119fd565b6040516107169190614b4a565b60405180910390f35b34801561072b57600080fd5b50610734611a57565b6040516107419190614b0d565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190614266565b611b09565b005b34801561077f57600080fd5b5061079a60048036038101906107959190614239565b611bbc565b6040516107a79190614b2f565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906141f0565b611bdb565b005b3480156107e557600080fd5b5061080060048036038101906107fb9190614239565b611c71565b60405161080d9190614e6c565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190613f41565b611c8e565b60405161084a9190614b2f565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190614239565b611d22565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613ee7565b611efd565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610918575061091782611ff5565b5b9050919050565b6109276120d7565b73ffffffffffffffffffffffffffffffffffffffff16610945611833565b73ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290614dcc565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546109c7906151fb565b80601f01602080910402602001604051908101604052809291908181526020018280546109f3906151fb565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b6000610a55826120df565b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614dac565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ada82611641565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290614dec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6a6120d7565b73ffffffffffffffffffffffffffffffffffffffff161480610b995750610b9881610b936120d7565b611c8e565b5b610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90614d0c565b60405180910390fd5b610be2838361214b565b505050565b6000600880549050905090565b6002600b541415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614e4c565b60405180910390fd5b6002600b81905550610c4a611833565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ec25760001515600e60009054906101000a900460ff16151514610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614b6c565b60405180910390fd5b60008110158015610ce35750601e81105b610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990614b8c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000009050610d4f6120d7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610d9e9190614e6c565b60206040518083038186803b158015610db657600080fd5b505afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee9190613f14565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90614c4c565b60405180910390fd5b60011515610e5184611bbc565b151514610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90614d2c565b60405180910390fd5b600f60008481526020019081526020016000206000815480929190610eb79061525e565b919050555050610f17565b60008110158015610ed7575060128054905081105b610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614cac565b60405180910390fd5b5b601060008281526020019081526020016000206000815480929190610f3b9061525e565b919050555060006040518060600160405280838152602001610f6f6010600086815260200190815260200160002054612204565b81526020018381525090506000610f84610be7565b9050610f9c33600183610f979190615030565b612365565b8160116000600184610fae9190615030565b8152602001908152602001600020600082015181600001556020820151816001019080519060200190610fe2929190613ac8565b506040820151816002015590505050506001600b819055505050565b6110066120d7565b73ffffffffffffffffffffffffffffffffffffffff16611024611833565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614dcc565b60405180910390fd5b806013838154811061108f5761108e615394565b5b9060005260206000200190805190602001906110ac929190613ac8565b505050565b6110c26110bc6120d7565b82612383565b611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614e0c565b60405180910390fd5b61110c838383612461565b505050565b600061111c836116f3565b821061115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490614bac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111be6120d7565b73ffffffffffffffffffffffffffffffffffffffff166111dc611833565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990614dcc565b60405180910390fd5b6002600b541415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90614e4c565b60405180910390fd5b6002600b81905550600047905061128d611833565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112d2573d6000803e3d6000fd5b50506001600b81905550565b60606000825167ffffffffffffffff8111156112fd576112fc6153c3565b5b60405190808252806020026020018201604052801561132b5781602001602082028036833780820191505090505b50905060005b83518110156113955761135d8482815181106113505761134f615394565b5b6020026020010151611bbc565b8282815181106113705761136f615394565b5b602002602001019015159081151581525050808061138d9061525e565b915050611331565b5080915050919050565b6113ba8383836040518060200160405280600081525061199b565b505050565b606060006113cc836116f3565b905060008167ffffffffffffffff8111156113ea576113e96153c3565b5b6040519080825280602002602001820160405280156114185781602001602082028036833780820191505090505b50905060005b82811015611462576114308582611111565b82828151811061144357611442615394565b5b602002602001018181525050808061145a9061525e565b91505061141e565b508092505050919050565b6000611477610be7565b82106114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90614e2c565b60405180910390fd5b600882815481106114cc576114cb615394565b5b90600052602060002001549050919050565b6114e66120d7565b73ffffffffffffffffffffffffffffffffffffffff16611504611833565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190614dcc565b60405180910390fd5b8060139080519060200190611570929190613b4e565b5050565b61157c6120d7565b73ffffffffffffffffffffffffffffffffffffffff1661159a611833565b73ffffffffffffffffffffffffffffffffffffffff16146115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790614dcc565b60405180910390fd5b80600c9080519060200190611606929190613ac8565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614d6c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614d4c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b36120d7565b73ffffffffffffffffffffffffffffffffffffffff166117d1611833565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90614dcc565b60405180910390fd5b61183160006126c8565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461186c906151fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611898906151fb565b80156118e55780601f106118ba576101008083540402835291602001916118e5565b820191906000526020600020905b8154815290600101906020018083116118c857829003601f168201915b5050505050905090565b6119016118fa6120d7565b838361278e565b5050565b61190d6120d7565b73ffffffffffffffffffffffffffffffffffffffff1661192b611833565b73ffffffffffffffffffffffffffffffffffffffff1614611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890614dcc565b60405180910390fd5b8060129080519060200190611997929190613b4e565b5050565b6119ac6119a66120d7565b83612383565b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290614e0c565b60405180910390fd5b6119f7848484846128fb565b50505050565b6060611a08826120df565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614cec565b60405180910390fd5b611a5082612957565b9050919050565b6060600060128054905067ffffffffffffffff811115611a7a57611a796153c3565b5b604051908082528060200260200182016040528015611aa85781602001602082028036833780820191505090505b50905060005b601280549050811015611b01576010600082815260200190815260200160002054828281518110611ae257611ae1615394565b5b6020026020010181815250508080611af99061525e565b915050611aae565b508091505090565b611b116120d7565b73ffffffffffffffffffffffffffffffffffffffff16611b2f611833565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614dcc565b60405180910390fd5b8060128381548110611b9a57611b99615394565b5b906000526020600020019080519060200190611bb7929190613ac8565b505050565b600080600f600084815260200190815260200160002054149050919050565b611be36120d7565b73ffffffffffffffffffffffffffffffffffffffff16611c01611833565b73ffffffffffffffffffffffffffffffffffffffff1614611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90614dcc565b60405180910390fd5b80600d9080519060200190611c6d929190613ac8565b5050565b6000600f6000838152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6002600b541415611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90614e4c565b60405180910390fd5b6002600b81905550611d786120d7565b73ffffffffffffffffffffffffffffffffffffffff16611d96611833565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614dcc565b60405180910390fd5b60008110158015611e01575060128054905081105b611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790614cac565b60405180910390fd5b60006040518060600160405280838152602001611e6f6010600086815260200190815260200160002054612204565b81526020018381525090506000611e84610be7565b9050611e9c33600183611e979190615030565b612365565b8160116000600184611eae9190615030565b8152602001908152602001600020600082015181600001556020820151816001019080519060200190611ee2929190613ac8565b506040820151816002015590505050506001600b8190555050565b611f056120d7565b73ffffffffffffffffffffffffffffffffffffffff16611f23611833565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614dcc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090614bec565b60405180910390fd5b611ff2816126c8565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120d057506120cf82612990565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121be83611641565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600082141561224c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612360565b600082905060005b6000821461227e5780806122679061525e565b915050600a826122779190615086565b9150612254565b60008167ffffffffffffffff81111561229a576122996153c3565b5b6040519080825280601f01601f1916602001820160405280156122cc5781602001600182028036833780820191505090505b5090505b60008514612359576001826122e59190615111565b9150600a856122f491906152a7565b60306123009190615030565b60f81b81838151811061231657612315615394565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123529190615086565b94506122d0565b8093505050505b919050565b61237f8282604051806020016040528060008152506129fa565b5050565b600061238e826120df565b6123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490614ccc565b60405180910390fd5b60006123d883611641565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061244757508373ffffffffffffffffffffffffffffffffffffffff1661242f84610a4a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061245857506124578185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661248182611641565b73ffffffffffffffffffffffffffffffffffffffff16146124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce90614c0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e90614c6c565b60405180910390fd5b612552838383612a55565b61255d60008261214b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ad9190615111565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126049190615030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126c3838383612b69565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614c8c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128ee9190614b2f565b60405180910390a3505050565b612906848484612461565b61291284848484612b6e565b612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890614bcc565b60405180910390fd5b50505050565b606061296a61296583612d05565b612fba565b60405160200161297a9190614a62565b6040516020818303038152906040529050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a048383613133565b612a116000848484612b6e565b612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790614bcc565b60405180910390fd5b505050565b612a6083838361330d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aa357612a9e81613312565b612ae2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ae157612ae0838261335b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b2557612b20816134c8565b612b64565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b6357612b628282613599565b5b5b505050565b505050565b6000612b8f8473ffffffffffffffffffffffffffffffffffffffff16613618565b15612cf8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bb86120d7565b8786866040518563ffffffff1660e01b8152600401612bda9493929190614a9f565b602060405180830381600087803b158015612bf457600080fd5b505af1925050508015612c2557506040513d601f19601f82011682018060405250810190612c2291906141c3565b60015b612ca8573d8060008114612c55576040519150601f19603f3d011682016040523d82523d6000602084013e612c5a565b606091505b50600081511415612ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9790614bcc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cfd565b600190505b949350505050565b606060006011600084815260200190815260200160002060405180606001604052908160008201548152602001600182018054612d41906151fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6d906151fb565b8015612dba5780601f10612d8f57610100808354040283529160200191612dba565b820191906000526020600020905b815481529060010190602001808311612d9d57829003601f168201915b505050505081526020016002820154815250509050612e586040518060400160405280600481526020017f6e616d6500000000000000000000000000000000000000000000000000000000815250612e516012846000015181548110612e2357612e22615394565b5b90600052602060002001604051602001612e3d9190614976565b60405160208183030381529060405261363b565b6001613664565b612ead6040518060400160405280600581526020017f696d616765000000000000000000000000000000000000000000000000000000815250612ea6612ea185600001516136e3565b61363b565b6001613664565b612ef56040518060400160405280600b81526020017f6465736372697074696f6e000000000000000000000000000000000000000000815250612eee61386a565b6001613664565b612f426040518060400160405280600781526020017f65646974696f6e00000000000000000000000000000000000000000000000000815250612f3b866020015161363b565b6001613664565b612f8f6040518060400160405280600a81526020017f6174747269627574657300000000000000000000000000000000000000000000815250612f888760000151613899565b6000613664565b604051602001612fa3959493929190614a01565b604051602081830303815290604052915050919050565b6060600082511415612fdd5760405180602001604052806000815250905061312e565b6000604051806060016040528060408152602001615c06604091399050600060036002855161300c9190615030565b6130169190615086565b600461302291906150b7565b905060006020826130339190615030565b67ffffffffffffffff81111561304c5761304b6153c3565b5b6040519080825280601f01601f19166020018201604052801561307e5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156130ed576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050613092565b600389510660018114613107576002811461311757613122565b613d3d60f01b6002830352613122565b603d60f81b60018303525b50505050508093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319a90614d8c565b60405180910390fd5b6131ac816120df565b156131ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e390614c2c565b60405180910390fd5b6131f860008383612a55565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132489190615030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461330960008383612b69565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613368846116f3565b6133729190615111565b9050600060076000848152602001908152602001600020549050818114613457576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134dc9190615111565b905060006009600084815260200190815260200160002054905060006008838154811061350c5761350b615394565b5b90600052602060002001549050806008838154811061352e5761352d615394565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061357d5761357c615365565b5b6001900381819060005260206000200160009055905550505050565b60006135a4836116f3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608160405160200161364e919061498d565b6040516020818303038152906040529050919050565b606083838361368257604051806020016040528060008152506136b9565b6040518060400160405280600181526020017f2c000000000000000000000000000000000000000000000000000000000000008152505b6040516020016136cb939291906149ba565b60405160208183030381529060405290509392505050565b60606000613821600c80546136f7906151fb565b80601f0160208091040260200160405190810160405280929190818152602001828054613723906151fb565b80156137705780601f1061374557610100808354040283529160200191613770565b820191906000526020600020905b81548152906001019060200180831161375357829003601f168201915b50505050506013858154811061378957613788615394565b5b90600052602060002001805461379e906151fb565b80601f01602080910402602001604051908101604052809291908181526020018280546137ca906151fb565b80156138175780601f106137ec57610100808354040283529160200191613817565b820191906000526020600020905b8154815290600101906020018083116137fa57829003601f168201915b5050505050613a9c565b9050613862816040518060400160405280600481526020017f2e6a706700000000000000000000000000000000000000000000000000000000815250613a9c565b915050919050565b6060600060405180610100016040528060d48152602001615b3260d4913990506138938161363b565b91505090565b606060006139596040518060400160405280600381526020017f205b7b00000000000000000000000000000000000000000000000000000000008152506139546040518060400160405280600a81526020017f74726169745f747970650000000000000000000000000000000000000000000081525061394d6040518060400160405280600a81526020017f52656c69632050756e6b0000000000000000000000000000000000000000000081525061363b565b6001613664565b613a9c565b9050613a5381613a4e6040518060400160405280600581526020017f76616c7565000000000000000000000000000000000000000000000000000000815250613a47601288815481106139af576139ae615394565b5b9060005260206000200180546139c4906151fb565b80601f01602080910402602001604051908101604052809291908181526020018280546139f0906151fb565b8015613a3d5780601f10613a1257610100808354040283529160200191613a3d565b820191906000526020600020905b815481529060010190602001808311613a2057829003601f168201915b505050505061363b565b6000613664565b613a9c565b9050613a94816040518060400160405280600281526020017f7d5d000000000000000000000000000000000000000000000000000000000000815250613a9c565b915050919050565b60608282604051602001613ab1929190614952565b604051602081830303815290604052905092915050565b828054613ad4906151fb565b90600052602060002090601f016020900481019282613af65760008555613b3d565b82601f10613b0f57805160ff1916838001178555613b3d565b82800160010185558215613b3d579182015b82811115613b3c578251825591602001919060010190613b21565b5b509050613b4a9190613bae565b5090565b828054828255906000526020600020908101928215613b9d579160200282015b82811115613b9c578251829080519060200190613b8c929190613ac8565b5091602001919060010190613b6e565b5b509050613baa9190613bcb565b5090565b5b80821115613bc7576000816000905550600101613baf565b5090565b5b80821115613beb5760008181613be29190613bef565b50600101613bcc565b5090565b508054613bfb906151fb565b6000825580601f10613c0d5750613c2c565b601f016020900490600052602060002090810190613c2b9190613bae565b5b50565b6000613c42613c3d84614eac565b614e87565b90508083825260208201905082856020860282011115613c6557613c646153f7565b5b60005b85811015613cb357813567ffffffffffffffff811115613c8b57613c8a6153f2565b5b808601613c988982613ea4565b85526020850194506020840193505050600181019050613c68565b5050509392505050565b6000613cd0613ccb84614ed8565b614e87565b90508083825260208201905082856020860282011115613cf357613cf26153f7565b5b60005b85811015613d235781613d098882613ed2565b845260208401935060208301925050600181019050613cf6565b5050509392505050565b6000613d40613d3b84614f04565b614e87565b905082815260208101848484011115613d5c57613d5b6153fc565b5b613d678482856151b9565b509392505050565b6000613d82613d7d84614f35565b614e87565b905082815260208101848484011115613d9e57613d9d6153fc565b5b613da98482856151b9565b509392505050565b600081359050613dc081615ad5565b92915050565b600081519050613dd581615ad5565b92915050565b600082601f830112613df057613def6153f2565b5b8135613e00848260208601613c2f565b91505092915050565b600082601f830112613e1e57613e1d6153f2565b5b8135613e2e848260208601613cbd565b91505092915050565b600081359050613e4681615aec565b92915050565b600081359050613e5b81615b03565b92915050565b600081519050613e7081615b03565b92915050565b600082601f830112613e8b57613e8a6153f2565b5b8135613e9b848260208601613d2d565b91505092915050565b600082601f830112613eb957613eb86153f2565b5b8135613ec9848260208601613d6f565b91505092915050565b600081359050613ee181615b1a565b92915050565b600060208284031215613efd57613efc615406565b5b6000613f0b84828501613db1565b91505092915050565b600060208284031215613f2a57613f29615406565b5b6000613f3884828501613dc6565b91505092915050565b60008060408385031215613f5857613f57615406565b5b6000613f6685828601613db1565b9250506020613f7785828601613db1565b9150509250929050565b600080600060608486031215613f9a57613f99615406565b5b6000613fa886828701613db1565b9350506020613fb986828701613db1565b9250506040613fca86828701613ed2565b9150509250925092565b60008060008060808587031215613fee57613fed615406565b5b6000613ffc87828801613db1565b945050602061400d87828801613db1565b935050604061401e87828801613ed2565b925050606085013567ffffffffffffffff81111561403f5761403e615401565b5b61404b87828801613e76565b91505092959194509250565b6000806040838503121561406e5761406d615406565b5b600061407c85828601613db1565b925050602061408d85828601613e37565b9150509250929050565b600080604083850312156140ae576140ad615406565b5b60006140bc85828601613db1565b92505060206140cd85828601613ed2565b9150509250929050565b6000602082840312156140ed576140ec615406565b5b600082013567ffffffffffffffff81111561410b5761410a615401565b5b61411784828501613ddb565b91505092915050565b60006020828403121561413657614135615406565b5b600082013567ffffffffffffffff81111561415457614153615401565b5b61416084828501613e09565b91505092915050565b60006020828403121561417f5761417e615406565b5b600061418d84828501613e37565b91505092915050565b6000602082840312156141ac576141ab615406565b5b60006141ba84828501613e4c565b91505092915050565b6000602082840312156141d9576141d8615406565b5b60006141e784828501613e61565b91505092915050565b60006020828403121561420657614205615406565b5b600082013567ffffffffffffffff81111561422457614223615401565b5b61423084828501613ea4565b91505092915050565b60006020828403121561424f5761424e615406565b5b600061425d84828501613ed2565b91505092915050565b6000806040838503121561427d5761427c615406565b5b600061428b85828601613ed2565b925050602083013567ffffffffffffffff8111156142ac576142ab615401565b5b6142b885828601613ea4565b9150509250929050565b600080604083850312156142d9576142d8615406565b5b60006142e785828601613ed2565b92505060206142f885828601613ed2565b9150509250929050565b600061430e83836143fd565b60208301905092915050565b60006143268383614934565b60208301905092915050565b61433b81615145565b82525050565b600061434c82614f9b565b6143568185614fe1565b935061436183614f66565b8060005b838110156143925781516143798882614302565b975061438483614fc7565b925050600181019050614365565b5085935050505092915050565b60006143aa82614fa6565b6143b48185614ff2565b93506143bf83614f76565b8060005b838110156143f05781516143d7888261431a565b97506143e283614fd4565b9250506001810190506143c3565b5085935050505092915050565b61440681615157565b82525050565b61441581615157565b82525050565b600061442682614fb1565b6144308185615003565b93506144408185602086016151c8565b6144498161540b565b840191505092915050565b600061445f82614fbc565b6144698185615014565b93506144798185602086016151c8565b6144828161540b565b840191505092915050565b600061449882614fbc565b6144a28185615025565b93506144b28185602086016151c8565b80840191505092915050565b600081546144cb816151fb565b6144d58186615025565b945060018216600081146144f0576001811461450157614534565b60ff19831686528186019350614534565b61450a85614f86565b60005b8381101561452c5781548189015260018201915060208101905061450d565b838801955050505b50505092915050565b600061454a601c83615014565b91506145558261541c565b602082019050919050565b600061456d601d83615014565b915061457882615445565b602082019050919050565b6000614590602b83615014565b915061459b8261546e565b604082019050919050565b60006145b3603283615014565b91506145be826154bd565b604082019050919050565b60006145d6602683615014565b91506145e18261550c565b604082019050919050565b60006145f9602583615014565b91506146048261555b565b604082019050919050565b600061461c601c83615014565b9150614627826155aa565b602082019050919050565b600061463f601083615014565b915061464a826155d3565b602082019050919050565b6000614662602483615014565b915061466d826155fc565b604082019050919050565b6000614685601983615014565b91506146908261564b565b602082019050919050565b60006146a8600f83615014565b91506146b382615674565b602082019050919050565b60006146cb602c83615014565b91506146d68261569d565b604082019050919050565b60006146ee601783615014565b91506146f9826156ec565b602082019050919050565b6000614711603883615014565b915061471c82615715565b604082019050919050565b6000614734600183615025565b915061473f82615764565b600182019050919050565b6000614757603083615014565b91506147628261578d565b604082019050919050565b600061477a602a83615014565b9150614785826157dc565b604082019050919050565b600061479d602983615014565b91506147a88261582b565b604082019050919050565b60006147c0602083615014565b91506147cb8261587a565b602082019050919050565b60006147e3600183615025565b91506147ee826158a3565b600182019050919050565b6000614806602c83615014565b9150614811826158cc565b604082019050919050565b6000614829602083615014565b91506148348261591b565b602082019050919050565b600061484c600183615025565b915061485782615944565b600182019050919050565b600061486f600383615025565b915061487a8261596d565b600382019050919050565b6000614892602183615014565b915061489d82615996565b604082019050919050565b60006148b5601d83615025565b91506148c0826159e5565b601d82019050919050565b60006148d8603183615014565b91506148e382615a0e565b604082019050919050565b60006148fb602c83615014565b915061490682615a5d565b604082019050919050565b600061491e601f83615014565b915061492982615aac565b602082019050919050565b61493d816151af565b82525050565b61494c816151af565b82525050565b600061495e828561448d565b915061496a828461448d565b91508190509392505050565b600061498282846144be565b915081905092915050565b600061499882614727565b91506149a4828461448d565b91506149af82614727565b915081905092915050565b60006149c582614727565b91506149d1828661448d565b91506149dc82614862565b91506149e8828561448d565b91506149f4828461448d565b9150819050949350505050565b6000614a0c8261483f565b9150614a18828861448d565b9150614a24828761448d565b9150614a30828661448d565b9150614a3c828561448d565b9150614a48828461448d565b9150614a53826147d6565b91508190509695505050505050565b6000614a6d826148a8565b9150614a79828461448d565b915081905092915050565b6000602082019050614a996000830184614332565b92915050565b6000608082019050614ab46000830187614332565b614ac16020830186614332565b614ace6040830185614943565b8181036060830152614ae0818461441b565b905095945050505050565b60006020820190508181036000830152614b058184614341565b905092915050565b60006020820190508181036000830152614b27818461439f565b905092915050565b6000602082019050614b44600083018461440c565b92915050565b60006020820190508181036000830152614b648184614454565b905092915050565b60006020820190508181036000830152614b858161453d565b9050919050565b60006020820190508181036000830152614ba581614560565b9050919050565b60006020820190508181036000830152614bc581614583565b9050919050565b60006020820190508181036000830152614be5816145a6565b9050919050565b60006020820190508181036000830152614c05816145c9565b9050919050565b60006020820190508181036000830152614c25816145ec565b9050919050565b60006020820190508181036000830152614c458161460f565b9050919050565b60006020820190508181036000830152614c6581614632565b9050919050565b60006020820190508181036000830152614c8581614655565b9050919050565b60006020820190508181036000830152614ca581614678565b9050919050565b60006020820190508181036000830152614cc58161469b565b9050919050565b60006020820190508181036000830152614ce5816146be565b9050919050565b60006020820190508181036000830152614d05816146e1565b9050919050565b60006020820190508181036000830152614d2581614704565b9050919050565b60006020820190508181036000830152614d458161474a565b9050919050565b60006020820190508181036000830152614d658161476d565b9050919050565b60006020820190508181036000830152614d8581614790565b9050919050565b60006020820190508181036000830152614da5816147b3565b9050919050565b60006020820190508181036000830152614dc5816147f9565b9050919050565b60006020820190508181036000830152614de58161481c565b9050919050565b60006020820190508181036000830152614e0581614885565b9050919050565b60006020820190508181036000830152614e25816148cb565b9050919050565b60006020820190508181036000830152614e45816148ee565b9050919050565b60006020820190508181036000830152614e6581614911565b9050919050565b6000602082019050614e816000830184614943565b92915050565b6000614e91614ea2565b9050614e9d828261522d565b919050565b6000604051905090565b600067ffffffffffffffff821115614ec757614ec66153c3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ef357614ef26153c3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f1f57614f1e6153c3565b5b614f288261540b565b9050602081019050919050565b600067ffffffffffffffff821115614f5057614f4f6153c3565b5b614f598261540b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061503b826151af565b9150615046836151af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561507b5761507a6152d8565b5b828201905092915050565b6000615091826151af565b915061509c836151af565b9250826150ac576150ab615307565b5b828204905092915050565b60006150c2826151af565b91506150cd836151af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615106576151056152d8565b5b828202905092915050565b600061511c826151af565b9150615127836151af565b92508282101561513a576151396152d8565b5b828203905092915050565b60006151508261518f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151e65780820151818401526020810190506151cb565b838111156151f5576000848401525b50505050565b6000600282049050600182168061521357607f821691505b6020821081141561522757615226615336565b5b50919050565b6152368261540b565b810181811067ffffffffffffffff82111715615255576152546153c3565b5b80604052505050565b6000615269826151af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561529c5761529b6152d8565b5b600182019050919050565b60006152b2826151af565b91506152bd836151af565b9250826152cd576152cc615307565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636f6e74726163742069732063757272656e746c792070617573656400000000600082015250565b7f6f6e6c79206f776e65722063616e206d696e7420746869732070756e6b000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f796f75206172656e2774206f776e657200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e76616c69642070756e6b2049440000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f544f4b454e5552493a444f45535f4e4f545f4558495354000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f746869732052656c696320506173732068617320616c726561647920636c616960008201527f6d656420612052656c69632050756e6b00000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f223a200000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615ade81615145565b8114615ae957600080fd5b50565b615af581615157565b8114615b0057600080fd5b50565b615b0c81615163565b8114615b1757600080fd5b50565b615b23816151af565b8114615b2e57600080fd5b5056fe5468652052656c69632050756e6b73206172652061203336207069656365207472696275746520746f20696d706f7274616e742063756c747572616c20746563686e6f6c6f6779206f662074686520706173742e2054686520636f6c6c656374696f6e2075736573206e6f7374616c67696120746f206272696e67206261636b2074686520656d6f74696f6e616c2072656c6174696f6e7368697020616e6420636f6e6e656374696f6e73207765206861642067726f77696e67207570207769746820636f6e73756d657220646576696365732e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220e390726b1ad203d2f3e3b26599c58bec02659f4f058246ede998a40a982a125864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000001ecfdccf97edd64fb73890ca4541f306456a21ec000000000000000000000000000000000000000000000000000000000000000b52656c69632050756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065250554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a5062345761475a5843685258566a79396f4764625235414b787442354474704d723665776a53436e4b6b472f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635c975abb11610118578063c87b56dd116100a0578063da3ef23f1161006f578063da3ef23f146107b0578063dbe7e3bd146107d9578063e985e9c514610816578063f19e75d414610853578063f2fde38b1461087c5761020f565b8063c87b56dd146106e2578063c9a43fc31461071f578063cc77cc451461074a578063d1d58b25146107735761020f565b80638da5cb5b116100e75780638da5cb5b1461061157806395d89b411461063c578063a22cb46514610667578063a44f698514610690578063b88d4fde146106b95761020f565b80635c975abb146105555780636352211e1461058057806370a08231146105bd578063715018a6146105fa5761020f565b80632f745c591161019b578063438b63001161016a578063438b63001461045e5780634f6ccce71461049b57806353aebca5146104d857806355f804b314610501578063587643121461052a5761020f565b80632f745c59146103a45780633ccfd60b146103e15780633ea854c3146103f857806342842e0e146104355761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b5780631b2ef1ca14610336578063220537731461035257806323b872dd1461037b5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190614196565b6108a5565b6040516102489190614b2f565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190614169565b61091f565b005b34801561028657600080fd5b5061028f6109b8565b60405161029c9190614b4a565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190614239565b610a4a565b6040516102d99190614a84565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190614097565b610acf565b005b34801561031757600080fd5b50610320610be7565b60405161032d9190614e6c565b60405180910390f35b610350600480360381019061034b91906142c2565b610bf4565b005b34801561035e57600080fd5b5061037960048036038101906103749190614266565b610ffe565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613f81565b6110b1565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190614097565b611111565b6040516103d89190614e6c565b60405180910390f35b3480156103ed57600080fd5b506103f66111b6565b005b34801561040457600080fd5b5061041f600480360381019061041a9190614120565b6112de565b60405161042c9190614aeb565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613f81565b61139f565b005b34801561046a57600080fd5b5061048560048036038101906104809190613ee7565b6113bf565b6040516104929190614b0d565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190614239565b61146d565b6040516104cf9190614e6c565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906140d7565b6114de565b005b34801561050d57600080fd5b50610528600480360381019061052391906141f0565b611574565b005b34801561053657600080fd5b5061053f61160a565b60405161054c9190614a84565b60405180910390f35b34801561056157600080fd5b5061056a61162e565b6040516105779190614b2f565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190614239565b611641565b6040516105b49190614a84565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190613ee7565b6116f3565b6040516105f19190614e6c565b60405180910390f35b34801561060657600080fd5b5061060f6117ab565b005b34801561061d57600080fd5b50610626611833565b6040516106339190614a84565b60405180910390f35b34801561064857600080fd5b5061065161185d565b60405161065e9190614b4a565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190614057565b6118ef565b005b34801561069c57600080fd5b506106b760048036038101906106b291906140d7565b611905565b005b3480156106c557600080fd5b506106e060048036038101906106db9190613fd4565b61199b565b005b3480156106ee57600080fd5b5061070960048036038101906107049190614239565b6119fd565b6040516107169190614b4a565b60405180910390f35b34801561072b57600080fd5b50610734611a57565b6040516107419190614b0d565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190614266565b611b09565b005b34801561077f57600080fd5b5061079a60048036038101906107959190614239565b611bbc565b6040516107a79190614b2f565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906141f0565b611bdb565b005b3480156107e557600080fd5b5061080060048036038101906107fb9190614239565b611c71565b60405161080d9190614e6c565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190613f41565b611c8e565b60405161084a9190614b2f565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190614239565b611d22565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613ee7565b611efd565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610918575061091782611ff5565b5b9050919050565b6109276120d7565b73ffffffffffffffffffffffffffffffffffffffff16610945611833565b73ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290614dcc565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546109c7906151fb565b80601f01602080910402602001604051908101604052809291908181526020018280546109f3906151fb565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b5050505050905090565b6000610a55826120df565b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90614dac565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ada82611641565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290614dec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6a6120d7565b73ffffffffffffffffffffffffffffffffffffffff161480610b995750610b9881610b936120d7565b611c8e565b5b610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90614d0c565b60405180910390fd5b610be2838361214b565b505050565b6000600880549050905090565b6002600b541415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614e4c565b60405180910390fd5b6002600b81905550610c4a611833565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ec25760001515600e60009054906101000a900460ff16151514610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614b6c565b60405180910390fd5b60008110158015610ce35750601e81105b610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990614b8c565b60405180910390fd5b60007f0000000000000000000000001ecfdccf97edd64fb73890ca4541f306456a21ec9050610d4f6120d7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b8152600401610d9e9190614e6c565b60206040518083038186803b158015610db657600080fd5b505afa158015610dca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dee9190613f14565b73ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90614c4c565b60405180910390fd5b60011515610e5184611bbc565b151514610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90614d2c565b60405180910390fd5b600f60008481526020019081526020016000206000815480929190610eb79061525e565b919050555050610f17565b60008110158015610ed7575060128054905081105b610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614cac565b60405180910390fd5b5b601060008281526020019081526020016000206000815480929190610f3b9061525e565b919050555060006040518060600160405280838152602001610f6f6010600086815260200190815260200160002054612204565b81526020018381525090506000610f84610be7565b9050610f9c33600183610f979190615030565b612365565b8160116000600184610fae9190615030565b8152602001908152602001600020600082015181600001556020820151816001019080519060200190610fe2929190613ac8565b506040820151816002015590505050506001600b819055505050565b6110066120d7565b73ffffffffffffffffffffffffffffffffffffffff16611024611833565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614dcc565b60405180910390fd5b806013838154811061108f5761108e615394565b5b9060005260206000200190805190602001906110ac929190613ac8565b505050565b6110c26110bc6120d7565b82612383565b611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614e0c565b60405180910390fd5b61110c838383612461565b505050565b600061111c836116f3565b821061115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490614bac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111be6120d7565b73ffffffffffffffffffffffffffffffffffffffff166111dc611833565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990614dcc565b60405180910390fd5b6002600b541415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90614e4c565b60405180910390fd5b6002600b81905550600047905061128d611833565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112d2573d6000803e3d6000fd5b50506001600b81905550565b60606000825167ffffffffffffffff8111156112fd576112fc6153c3565b5b60405190808252806020026020018201604052801561132b5781602001602082028036833780820191505090505b50905060005b83518110156113955761135d8482815181106113505761134f615394565b5b6020026020010151611bbc565b8282815181106113705761136f615394565b5b602002602001019015159081151581525050808061138d9061525e565b915050611331565b5080915050919050565b6113ba8383836040518060200160405280600081525061199b565b505050565b606060006113cc836116f3565b905060008167ffffffffffffffff8111156113ea576113e96153c3565b5b6040519080825280602002602001820160405280156114185781602001602082028036833780820191505090505b50905060005b82811015611462576114308582611111565b82828151811061144357611442615394565b5b602002602001018181525050808061145a9061525e565b91505061141e565b508092505050919050565b6000611477610be7565b82106114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90614e2c565b60405180910390fd5b600882815481106114cc576114cb615394565b5b90600052602060002001549050919050565b6114e66120d7565b73ffffffffffffffffffffffffffffffffffffffff16611504611833565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190614dcc565b60405180910390fd5b8060139080519060200190611570929190613b4e565b5050565b61157c6120d7565b73ffffffffffffffffffffffffffffffffffffffff1661159a611833565b73ffffffffffffffffffffffffffffffffffffffff16146115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790614dcc565b60405180910390fd5b80600c9080519060200190611606929190613ac8565b5050565b7f0000000000000000000000001ecfdccf97edd64fb73890ca4541f306456a21ec81565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190614d6c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614d4c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b36120d7565b73ffffffffffffffffffffffffffffffffffffffff166117d1611833565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90614dcc565b60405180910390fd5b61183160006126c8565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461186c906151fb565b80601f0160208091040260200160405190810160405280929190818152602001828054611898906151fb565b80156118e55780601f106118ba576101008083540402835291602001916118e5565b820191906000526020600020905b8154815290600101906020018083116118c857829003601f168201915b5050505050905090565b6119016118fa6120d7565b838361278e565b5050565b61190d6120d7565b73ffffffffffffffffffffffffffffffffffffffff1661192b611833565b73ffffffffffffffffffffffffffffffffffffffff1614611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890614dcc565b60405180910390fd5b8060129080519060200190611997929190613b4e565b5050565b6119ac6119a66120d7565b83612383565b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290614e0c565b60405180910390fd5b6119f7848484846128fb565b50505050565b6060611a08826120df565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614cec565b60405180910390fd5b611a5082612957565b9050919050565b6060600060128054905067ffffffffffffffff811115611a7a57611a796153c3565b5b604051908082528060200260200182016040528015611aa85781602001602082028036833780820191505090505b50905060005b601280549050811015611b01576010600082815260200190815260200160002054828281518110611ae257611ae1615394565b5b6020026020010181815250508080611af99061525e565b915050611aae565b508091505090565b611b116120d7565b73ffffffffffffffffffffffffffffffffffffffff16611b2f611833565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614dcc565b60405180910390fd5b8060128381548110611b9a57611b99615394565b5b906000526020600020019080519060200190611bb7929190613ac8565b505050565b600080600f600084815260200190815260200160002054149050919050565b611be36120d7565b73ffffffffffffffffffffffffffffffffffffffff16611c01611833565b73ffffffffffffffffffffffffffffffffffffffff1614611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90614dcc565b60405180910390fd5b80600d9080519060200190611c6d929190613ac8565b5050565b6000600f6000838152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6002600b541415611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90614e4c565b60405180910390fd5b6002600b81905550611d786120d7565b73ffffffffffffffffffffffffffffffffffffffff16611d96611833565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614dcc565b60405180910390fd5b60008110158015611e01575060128054905081105b611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790614cac565b60405180910390fd5b60006040518060600160405280838152602001611e6f6010600086815260200190815260200160002054612204565b81526020018381525090506000611e84610be7565b9050611e9c33600183611e979190615030565b612365565b8160116000600184611eae9190615030565b8152602001908152602001600020600082015181600001556020820151816001019080519060200190611ee2929190613ac8565b506040820151816002015590505050506001600b8190555050565b611f056120d7565b73ffffffffffffffffffffffffffffffffffffffff16611f23611833565b73ffffffffffffffffffffffffffffffffffffffff1614611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614dcc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe090614bec565b60405180910390fd5b611ff2816126c8565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120d057506120cf82612990565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121be83611641565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6060600082141561224c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612360565b600082905060005b6000821461227e5780806122679061525e565b915050600a826122779190615086565b9150612254565b60008167ffffffffffffffff81111561229a576122996153c3565b5b6040519080825280601f01601f1916602001820160405280156122cc5781602001600182028036833780820191505090505b5090505b60008514612359576001826122e59190615111565b9150600a856122f491906152a7565b60306123009190615030565b60f81b81838151811061231657612315615394565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123529190615086565b94506122d0565b8093505050505b919050565b61237f8282604051806020016040528060008152506129fa565b5050565b600061238e826120df565b6123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490614ccc565b60405180910390fd5b60006123d883611641565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061244757508373ffffffffffffffffffffffffffffffffffffffff1661242f84610a4a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061245857506124578185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661248182611641565b73ffffffffffffffffffffffffffffffffffffffff16146124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce90614c0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e90614c6c565b60405180910390fd5b612552838383612a55565b61255d60008261214b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ad9190615111565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126049190615030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126c3838383612b69565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614c8c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128ee9190614b2f565b60405180910390a3505050565b612906848484612461565b61291284848484612b6e565b612951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294890614bcc565b60405180910390fd5b50505050565b606061296a61296583612d05565b612fba565b60405160200161297a9190614a62565b6040516020818303038152906040529050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a048383613133565b612a116000848484612b6e565b612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790614bcc565b60405180910390fd5b505050565b612a6083838361330d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aa357612a9e81613312565b612ae2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ae157612ae0838261335b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b2557612b20816134c8565b612b64565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b6357612b628282613599565b5b5b505050565b505050565b6000612b8f8473ffffffffffffffffffffffffffffffffffffffff16613618565b15612cf8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bb86120d7565b8786866040518563ffffffff1660e01b8152600401612bda9493929190614a9f565b602060405180830381600087803b158015612bf457600080fd5b505af1925050508015612c2557506040513d601f19601f82011682018060405250810190612c2291906141c3565b60015b612ca8573d8060008114612c55576040519150601f19603f3d011682016040523d82523d6000602084013e612c5a565b606091505b50600081511415612ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9790614bcc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cfd565b600190505b949350505050565b606060006011600084815260200190815260200160002060405180606001604052908160008201548152602001600182018054612d41906151fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6d906151fb565b8015612dba5780601f10612d8f57610100808354040283529160200191612dba565b820191906000526020600020905b815481529060010190602001808311612d9d57829003601f168201915b505050505081526020016002820154815250509050612e586040518060400160405280600481526020017f6e616d6500000000000000000000000000000000000000000000000000000000815250612e516012846000015181548110612e2357612e22615394565b5b90600052602060002001604051602001612e3d9190614976565b60405160208183030381529060405261363b565b6001613664565b612ead6040518060400160405280600581526020017f696d616765000000000000000000000000000000000000000000000000000000815250612ea6612ea185600001516136e3565b61363b565b6001613664565b612ef56040518060400160405280600b81526020017f6465736372697074696f6e000000000000000000000000000000000000000000815250612eee61386a565b6001613664565b612f426040518060400160405280600781526020017f65646974696f6e00000000000000000000000000000000000000000000000000815250612f3b866020015161363b565b6001613664565b612f8f6040518060400160405280600a81526020017f6174747269627574657300000000000000000000000000000000000000000000815250612f888760000151613899565b6000613664565b604051602001612fa3959493929190614a01565b604051602081830303815290604052915050919050565b6060600082511415612fdd5760405180602001604052806000815250905061312e565b6000604051806060016040528060408152602001615c06604091399050600060036002855161300c9190615030565b6130169190615086565b600461302291906150b7565b905060006020826130339190615030565b67ffffffffffffffff81111561304c5761304b6153c3565b5b6040519080825280601f01601f19166020018201604052801561307e5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156130ed576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050613092565b600389510660018114613107576002811461311757613122565b613d3d60f01b6002830352613122565b603d60f81b60018303525b50505050508093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319a90614d8c565b60405180910390fd5b6131ac816120df565b156131ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e390614c2c565b60405180910390fd5b6131f860008383612a55565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132489190615030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461330960008383612b69565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613368846116f3565b6133729190615111565b9050600060076000848152602001908152602001600020549050818114613457576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134dc9190615111565b905060006009600084815260200190815260200160002054905060006008838154811061350c5761350b615394565b5b90600052602060002001549050806008838154811061352e5761352d615394565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061357d5761357c615365565b5b6001900381819060005260206000200160009055905550505050565b60006135a4836116f3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608160405160200161364e919061498d565b6040516020818303038152906040529050919050565b606083838361368257604051806020016040528060008152506136b9565b6040518060400160405280600181526020017f2c000000000000000000000000000000000000000000000000000000000000008152505b6040516020016136cb939291906149ba565b60405160208183030381529060405290509392505050565b60606000613821600c80546136f7906151fb565b80601f0160208091040260200160405190810160405280929190818152602001828054613723906151fb565b80156137705780601f1061374557610100808354040283529160200191613770565b820191906000526020600020905b81548152906001019060200180831161375357829003601f168201915b50505050506013858154811061378957613788615394565b5b90600052602060002001805461379e906151fb565b80601f01602080910402602001604051908101604052809291908181526020018280546137ca906151fb565b80156138175780601f106137ec57610100808354040283529160200191613817565b820191906000526020600020905b8154815290600101906020018083116137fa57829003601f168201915b5050505050613a9c565b9050613862816040518060400160405280600481526020017f2e6a706700000000000000000000000000000000000000000000000000000000815250613a9c565b915050919050565b6060600060405180610100016040528060d48152602001615b3260d4913990506138938161363b565b91505090565b606060006139596040518060400160405280600381526020017f205b7b00000000000000000000000000000000000000000000000000000000008152506139546040518060400160405280600a81526020017f74726169745f747970650000000000000000000000000000000000000000000081525061394d6040518060400160405280600a81526020017f52656c69632050756e6b0000000000000000000000000000000000000000000081525061363b565b6001613664565b613a9c565b9050613a5381613a4e6040518060400160405280600581526020017f76616c7565000000000000000000000000000000000000000000000000000000815250613a47601288815481106139af576139ae615394565b5b9060005260206000200180546139c4906151fb565b80601f01602080910402602001604051908101604052809291908181526020018280546139f0906151fb565b8015613a3d5780601f10613a1257610100808354040283529160200191613a3d565b820191906000526020600020905b815481529060010190602001808311613a2057829003601f168201915b505050505061363b565b6000613664565b613a9c565b9050613a94816040518060400160405280600281526020017f7d5d000000000000000000000000000000000000000000000000000000000000815250613a9c565b915050919050565b60608282604051602001613ab1929190614952565b604051602081830303815290604052905092915050565b828054613ad4906151fb565b90600052602060002090601f016020900481019282613af65760008555613b3d565b82601f10613b0f57805160ff1916838001178555613b3d565b82800160010185558215613b3d579182015b82811115613b3c578251825591602001919060010190613b21565b5b509050613b4a9190613bae565b5090565b828054828255906000526020600020908101928215613b9d579160200282015b82811115613b9c578251829080519060200190613b8c929190613ac8565b5091602001919060010190613b6e565b5b509050613baa9190613bcb565b5090565b5b80821115613bc7576000816000905550600101613baf565b5090565b5b80821115613beb5760008181613be29190613bef565b50600101613bcc565b5090565b508054613bfb906151fb565b6000825580601f10613c0d5750613c2c565b601f016020900490600052602060002090810190613c2b9190613bae565b5b50565b6000613c42613c3d84614eac565b614e87565b90508083825260208201905082856020860282011115613c6557613c646153f7565b5b60005b85811015613cb357813567ffffffffffffffff811115613c8b57613c8a6153f2565b5b808601613c988982613ea4565b85526020850194506020840193505050600181019050613c68565b5050509392505050565b6000613cd0613ccb84614ed8565b614e87565b90508083825260208201905082856020860282011115613cf357613cf26153f7565b5b60005b85811015613d235781613d098882613ed2565b845260208401935060208301925050600181019050613cf6565b5050509392505050565b6000613d40613d3b84614f04565b614e87565b905082815260208101848484011115613d5c57613d5b6153fc565b5b613d678482856151b9565b509392505050565b6000613d82613d7d84614f35565b614e87565b905082815260208101848484011115613d9e57613d9d6153fc565b5b613da98482856151b9565b509392505050565b600081359050613dc081615ad5565b92915050565b600081519050613dd581615ad5565b92915050565b600082601f830112613df057613def6153f2565b5b8135613e00848260208601613c2f565b91505092915050565b600082601f830112613e1e57613e1d6153f2565b5b8135613e2e848260208601613cbd565b91505092915050565b600081359050613e4681615aec565b92915050565b600081359050613e5b81615b03565b92915050565b600081519050613e7081615b03565b92915050565b600082601f830112613e8b57613e8a6153f2565b5b8135613e9b848260208601613d2d565b91505092915050565b600082601f830112613eb957613eb86153f2565b5b8135613ec9848260208601613d6f565b91505092915050565b600081359050613ee181615b1a565b92915050565b600060208284031215613efd57613efc615406565b5b6000613f0b84828501613db1565b91505092915050565b600060208284031215613f2a57613f29615406565b5b6000613f3884828501613dc6565b91505092915050565b60008060408385031215613f5857613f57615406565b5b6000613f6685828601613db1565b9250506020613f7785828601613db1565b9150509250929050565b600080600060608486031215613f9a57613f99615406565b5b6000613fa886828701613db1565b9350506020613fb986828701613db1565b9250506040613fca86828701613ed2565b9150509250925092565b60008060008060808587031215613fee57613fed615406565b5b6000613ffc87828801613db1565b945050602061400d87828801613db1565b935050604061401e87828801613ed2565b925050606085013567ffffffffffffffff81111561403f5761403e615401565b5b61404b87828801613e76565b91505092959194509250565b6000806040838503121561406e5761406d615406565b5b600061407c85828601613db1565b925050602061408d85828601613e37565b9150509250929050565b600080604083850312156140ae576140ad615406565b5b60006140bc85828601613db1565b92505060206140cd85828601613ed2565b9150509250929050565b6000602082840312156140ed576140ec615406565b5b600082013567ffffffffffffffff81111561410b5761410a615401565b5b61411784828501613ddb565b91505092915050565b60006020828403121561413657614135615406565b5b600082013567ffffffffffffffff81111561415457614153615401565b5b61416084828501613e09565b91505092915050565b60006020828403121561417f5761417e615406565b5b600061418d84828501613e37565b91505092915050565b6000602082840312156141ac576141ab615406565b5b60006141ba84828501613e4c565b91505092915050565b6000602082840312156141d9576141d8615406565b5b60006141e784828501613e61565b91505092915050565b60006020828403121561420657614205615406565b5b600082013567ffffffffffffffff81111561422457614223615401565b5b61423084828501613ea4565b91505092915050565b60006020828403121561424f5761424e615406565b5b600061425d84828501613ed2565b91505092915050565b6000806040838503121561427d5761427c615406565b5b600061428b85828601613ed2565b925050602083013567ffffffffffffffff8111156142ac576142ab615401565b5b6142b885828601613ea4565b9150509250929050565b600080604083850312156142d9576142d8615406565b5b60006142e785828601613ed2565b92505060206142f885828601613ed2565b9150509250929050565b600061430e83836143fd565b60208301905092915050565b60006143268383614934565b60208301905092915050565b61433b81615145565b82525050565b600061434c82614f9b565b6143568185614fe1565b935061436183614f66565b8060005b838110156143925781516143798882614302565b975061438483614fc7565b925050600181019050614365565b5085935050505092915050565b60006143aa82614fa6565b6143b48185614ff2565b93506143bf83614f76565b8060005b838110156143f05781516143d7888261431a565b97506143e283614fd4565b9250506001810190506143c3565b5085935050505092915050565b61440681615157565b82525050565b61441581615157565b82525050565b600061442682614fb1565b6144308185615003565b93506144408185602086016151c8565b6144498161540b565b840191505092915050565b600061445f82614fbc565b6144698185615014565b93506144798185602086016151c8565b6144828161540b565b840191505092915050565b600061449882614fbc565b6144a28185615025565b93506144b28185602086016151c8565b80840191505092915050565b600081546144cb816151fb565b6144d58186615025565b945060018216600081146144f0576001811461450157614534565b60ff19831686528186019350614534565b61450a85614f86565b60005b8381101561452c5781548189015260018201915060208101905061450d565b838801955050505b50505092915050565b600061454a601c83615014565b91506145558261541c565b602082019050919050565b600061456d601d83615014565b915061457882615445565b602082019050919050565b6000614590602b83615014565b915061459b8261546e565b604082019050919050565b60006145b3603283615014565b91506145be826154bd565b604082019050919050565b60006145d6602683615014565b91506145e18261550c565b604082019050919050565b60006145f9602583615014565b91506146048261555b565b604082019050919050565b600061461c601c83615014565b9150614627826155aa565b602082019050919050565b600061463f601083615014565b915061464a826155d3565b602082019050919050565b6000614662602483615014565b915061466d826155fc565b604082019050919050565b6000614685601983615014565b91506146908261564b565b602082019050919050565b60006146a8600f83615014565b91506146b382615674565b602082019050919050565b60006146cb602c83615014565b91506146d68261569d565b604082019050919050565b60006146ee601783615014565b91506146f9826156ec565b602082019050919050565b6000614711603883615014565b915061471c82615715565b604082019050919050565b6000614734600183615025565b915061473f82615764565b600182019050919050565b6000614757603083615014565b91506147628261578d565b604082019050919050565b600061477a602a83615014565b9150614785826157dc565b604082019050919050565b600061479d602983615014565b91506147a88261582b565b604082019050919050565b60006147c0602083615014565b91506147cb8261587a565b602082019050919050565b60006147e3600183615025565b91506147ee826158a3565b600182019050919050565b6000614806602c83615014565b9150614811826158cc565b604082019050919050565b6000614829602083615014565b91506148348261591b565b602082019050919050565b600061484c600183615025565b915061485782615944565b600182019050919050565b600061486f600383615025565b915061487a8261596d565b600382019050919050565b6000614892602183615014565b915061489d82615996565b604082019050919050565b60006148b5601d83615025565b91506148c0826159e5565b601d82019050919050565b60006148d8603183615014565b91506148e382615a0e565b604082019050919050565b60006148fb602c83615014565b915061490682615a5d565b604082019050919050565b600061491e601f83615014565b915061492982615aac565b602082019050919050565b61493d816151af565b82525050565b61494c816151af565b82525050565b600061495e828561448d565b915061496a828461448d565b91508190509392505050565b600061498282846144be565b915081905092915050565b600061499882614727565b91506149a4828461448d565b91506149af82614727565b915081905092915050565b60006149c582614727565b91506149d1828661448d565b91506149dc82614862565b91506149e8828561448d565b91506149f4828461448d565b9150819050949350505050565b6000614a0c8261483f565b9150614a18828861448d565b9150614a24828761448d565b9150614a30828661448d565b9150614a3c828561448d565b9150614a48828461448d565b9150614a53826147d6565b91508190509695505050505050565b6000614a6d826148a8565b9150614a79828461448d565b915081905092915050565b6000602082019050614a996000830184614332565b92915050565b6000608082019050614ab46000830187614332565b614ac16020830186614332565b614ace6040830185614943565b8181036060830152614ae0818461441b565b905095945050505050565b60006020820190508181036000830152614b058184614341565b905092915050565b60006020820190508181036000830152614b27818461439f565b905092915050565b6000602082019050614b44600083018461440c565b92915050565b60006020820190508181036000830152614b648184614454565b905092915050565b60006020820190508181036000830152614b858161453d565b9050919050565b60006020820190508181036000830152614ba581614560565b9050919050565b60006020820190508181036000830152614bc581614583565b9050919050565b60006020820190508181036000830152614be5816145a6565b9050919050565b60006020820190508181036000830152614c05816145c9565b9050919050565b60006020820190508181036000830152614c25816145ec565b9050919050565b60006020820190508181036000830152614c458161460f565b9050919050565b60006020820190508181036000830152614c6581614632565b9050919050565b60006020820190508181036000830152614c8581614655565b9050919050565b60006020820190508181036000830152614ca581614678565b9050919050565b60006020820190508181036000830152614cc58161469b565b9050919050565b60006020820190508181036000830152614ce5816146be565b9050919050565b60006020820190508181036000830152614d05816146e1565b9050919050565b60006020820190508181036000830152614d2581614704565b9050919050565b60006020820190508181036000830152614d458161474a565b9050919050565b60006020820190508181036000830152614d658161476d565b9050919050565b60006020820190508181036000830152614d8581614790565b9050919050565b60006020820190508181036000830152614da5816147b3565b9050919050565b60006020820190508181036000830152614dc5816147f9565b9050919050565b60006020820190508181036000830152614de58161481c565b9050919050565b60006020820190508181036000830152614e0581614885565b9050919050565b60006020820190508181036000830152614e25816148cb565b9050919050565b60006020820190508181036000830152614e45816148ee565b9050919050565b60006020820190508181036000830152614e6581614911565b9050919050565b6000602082019050614e816000830184614943565b92915050565b6000614e91614ea2565b9050614e9d828261522d565b919050565b6000604051905090565b600067ffffffffffffffff821115614ec757614ec66153c3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ef357614ef26153c3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f1f57614f1e6153c3565b5b614f288261540b565b9050602081019050919050565b600067ffffffffffffffff821115614f5057614f4f6153c3565b5b614f598261540b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061503b826151af565b9150615046836151af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561507b5761507a6152d8565b5b828201905092915050565b6000615091826151af565b915061509c836151af565b9250826150ac576150ab615307565b5b828204905092915050565b60006150c2826151af565b91506150cd836151af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615106576151056152d8565b5b828202905092915050565b600061511c826151af565b9150615127836151af565b92508282101561513a576151396152d8565b5b828203905092915050565b60006151508261518f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151e65780820151818401526020810190506151cb565b838111156151f5576000848401525b50505050565b6000600282049050600182168061521357607f821691505b6020821081141561522757615226615336565b5b50919050565b6152368261540b565b810181811067ffffffffffffffff82111715615255576152546153c3565b5b80604052505050565b6000615269826151af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561529c5761529b6152d8565b5b600182019050919050565b60006152b2826151af565b91506152bd836151af565b9250826152cd576152cc615307565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636f6e74726163742069732063757272656e746c792070617573656400000000600082015250565b7f6f6e6c79206f776e65722063616e206d696e7420746869732070756e6b000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f796f75206172656e2774206f776e657200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e76616c69642070756e6b2049440000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f544f4b454e5552493a444f45535f4e4f545f4558495354000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f746869732052656c696320506173732068617320616c726561647920636c616960008201527f6d656420612052656c69632050756e6b00000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f223a200000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615ade81615145565b8114615ae957600080fd5b50565b615af581615157565b8114615b0057600080fd5b50565b615b0c81615163565b8114615b1757600080fd5b50565b615b23816151af565b8114615b2e57600080fd5b5056fe5468652052656c69632050756e6b73206172652061203336207069656365207472696275746520746f20696d706f7274616e742063756c747572616c20746563686e6f6c6f6779206f662074686520706173742e2054686520636f6c6c656374696f6e2075736573206e6f7374616c67696120746f206272696e67206261636b2074686520656d6f74696f6e616c2072656c6174696f6e7368697020616e6420636f6e6e656374696f6e73207765206861642067726f77696e67207570207769746820636f6e73756d657220646576696365732e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220e390726b1ad203d2f3e3b26599c58bec02659f4f058246ede998a40a982a125864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000001ecfdccf97edd64fb73890ca4541f306456a21ec000000000000000000000000000000000000000000000000000000000000000b52656c69632050756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065250554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a5062345761475a5843685258566a79396f4764625235414b787442354474704d723665776a53436e4b6b472f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Relic Punks
Arg [1] : _symbol (string): RPUNKS
Arg [2] : _baseUri (string): ipfs://QmZPb4WaGZXChRXVjy9oGdbR5AKxtB5DtpMr6ewjSCnKkG/
Arg [3] : _relicsPassContract (address): 0x1ECFDCcf97EdD64Fb73890Ca4541f306456A21eC

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000001ecfdccf97edd64fb73890ca4541f306456a21ec
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 52656c69632050756e6b73000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 5250554e4b530000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5a5062345761475a5843685258566a79396f4764625235
Arg [10] : 414b787442354474704d723665776a53436e4b6b472f00000000000000000000


Deployed Bytecode Sourcemap

53191:8961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44146:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61834:70;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31087:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32525:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32048:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44786:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57552:1028;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55629:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33275:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44454:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61999:150;;;;;;;;;;;;;:::i;:::-;;56158:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33685:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58585:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44976:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55497:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61602:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53376:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53344:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30781:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30511:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9683:103;;;;;;;;;;;;;:::i;:::-;;9032:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31256:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32818:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55246:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33941:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58917:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56478:297;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55362:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56027:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61702:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55900:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33044:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56855:458;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9941:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44146:224;44248:4;44287:35;44272:50;;;:11;:50;;;;:90;;;;44326:36;44350:11;44326:23;:36::i;:::-;44272:90;44265:97;;44146:224;;;:::o;61834:70::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61893:6:::1;61884;;:15;;;;;;;;;;;;;;;;;;61834:70:::0;:::o;31087:100::-;31141:13;31174:5;31167:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31087:100;:::o;32525:221::-;32601:7;32629:16;32637:7;32629;:16::i;:::-;32621:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32714:15;:24;32730:7;32714:24;;;;;;;;;;;;;;;;;;;;;32707:31;;32525:221;;;:::o;32048:411::-;32129:13;32145:23;32160:7;32145:14;:23::i;:::-;32129:39;;32193:5;32187:11;;:2;:11;;;;32179:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32287:5;32271:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32296:37;32313:5;32320:12;:10;:12::i;:::-;32296:16;:37::i;:::-;32271:62;32249:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32430:21;32439:2;32443:7;32430:8;:21::i;:::-;32118:341;32048:411;;:::o;44786:113::-;44847:7;44874:10;:17;;;;44867:24;;44786:113;:::o;57552:1028::-;51972:1;52568:7;;:19;;52560:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51972:1;52701:7;:18;;;;57671:7:::1;:5;:7::i;:::-;57657:21;;:10;:21;;;57653:578;;57713:5;57703:15;;:6;;;;;;;;;;;:15;;;57695:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57782:1;57774:4;:9;;:22;;;;;57794:2;57787:4;:9;57774:22;57766:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57845:20;57879:18;57845:53;;57950:12;:10;:12::i;:::-;57921:41;;:9;:17;;;57939:6;57921:25;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;;57913:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58027:4;58006:25;;:17;58016:6;58006:9;:17::i;:::-;:25;;;57998:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;58099:13;:21;58113:6;58099:21;;;;;;;;;;;;:23;;;;;;;;;:::i;:::-;;;;;;57680:454;57653:578;;;58171:1;58163:4;:9;;:36;;;;;58183:9;:16;;;;58176:4;:23;58163:36;58155:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57653:578;58243:19;:25;58263:4;58243:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;58281:21;58305:147;;;;;;;;58338:4;58305:147;;;;58366:43;58383:19;:25;58403:4;58383:25;;;;;;;;;;;;58366:16;:43::i;:::-;58305:147;;;;58436:4;58305:147;;::::0;58281:171:::1;;58465:14;58482:13;:11;:13::i;:::-;58465:30;;58500:33;58510:10;58531:1;58522:6;:10;;;;:::i;:::-;58500:9;:33::i;:::-;58571:4;58544:12;:24;58566:1;58557:6;:10;;;;:::i;:::-;58544:24;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57642:938;;51928:1:::0;52880:7;:22;;;;57552:1028;;:::o;55629:143::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55753:11:::1;55730:13;55744:5;55730:20;;;;;;;;:::i;:::-;;;;;;;;;:34;;;;;;;;;;;;:::i;:::-;;55629:143:::0;;:::o;33275:339::-;33470:41;33489:12;:10;:12::i;:::-;33503:7;33470:18;:41::i;:::-;33462:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33578:28;33588:4;33594:2;33598:7;33578:9;:28::i;:::-;33275:339;;;:::o;44454:256::-;44551:7;44587:23;44604:5;44587:16;:23::i;:::-;44579:5;:31;44571:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44676:12;:19;44689:5;44676:19;;;;;;;;;;;;;;;:26;44696:5;44676:26;;;;;;;;;;;;44669:33;;44454:256;;;;:::o;61999:150::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51972:1:::1;52568:7;;:19;;52560:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51972:1;52701:7;:18;;;;62060:15:::2;62078:21;62060:39;;62118:7;:5;:7::i;:::-;62110:25;;:34;62136:7;62110:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;62049:100;51928:1:::1;52880:7;:22;;;;61999:150::o:0;56158:312::-;56234:13;56260:25;56299:7;:14;56288:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56260:54;;56330:6;56325:107;56346:7;:14;56342:1;:18;56325:107;;;56399:21;56409:7;56417:1;56409:10;;;;;;;;:::i;:::-;;;;;;;;56399:9;:21::i;:::-;56382:11;56394:1;56382:14;;;;;;;;:::i;:::-;;;;;;;:38;;;;;;;;;;;56362:3;;;;;:::i;:::-;;;;56325:107;;;;56451:11;56444:18;;;56158:312;;;:::o;33685:185::-;33823:39;33840:4;33846:2;33850:7;33823:39;;;;;;;;;;;;:16;:39::i;:::-;33685:185;;;:::o;58585:327::-;58654:16;58679:23;58705:17;58715:6;58705:9;:17::i;:::-;58679:43;;58727:25;58769:15;58755:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58727:58;;58795:9;58790:98;58810:15;58806:1;:19;58790:98;;;58852:30;58872:6;58880:1;58852:19;:30::i;:::-;58838:8;58847:1;58838:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;58827:3;;;;;:::i;:::-;;;;58790:98;;;;58899:8;58892:15;;;;58585:327;;;:::o;44976:233::-;45051:7;45087:30;:28;:30::i;:::-;45079:5;:38;45071:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;45184:10;45195:5;45184:17;;;;;;;;:::i;:::-;;;;;;;;;;45177:24;;44976:233;;;:::o;55497:124::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55599:14:::1;55583:13;:30;;;;;;;;;;;;:::i;:::-;;55497:124:::0;:::o;61602:95::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61681:11:::1;61671:7;:21;;;;;;;;;;;;:::i;:::-;;61602:95:::0;:::o;53376:43::-;;;:::o;53344:25::-;;;;;;;;;;;;;:::o;30781:239::-;30853:7;30873:13;30889:7;:16;30897:7;30889:16;;;;;;;;;;;;;;;;;;;;;30873:32;;30941:1;30924:19;;:5;:19;;;;30916:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31007:5;31000:12;;;30781:239;;;:::o;30511:208::-;30583:7;30628:1;30611:19;;:5;:19;;;;30603:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30695:9;:16;30705:5;30695:16;;;;;;;;;;;;;;;;30688:23;;30511:208;;;:::o;9683:103::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9748:30:::1;9775:1;9748:18;:30::i;:::-;9683:103::o:0;9032:87::-;9078:7;9105:6;;;;;;;;;;;9098:13;;9032:87;:::o;31256:104::-;31312:13;31345:7;31338:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31256:104;:::o;32818:155::-;32913:52;32932:12;:10;:12::i;:::-;32946:8;32956;32913:18;:52::i;:::-;32818:155;;:::o;55246:108::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55336:10:::1;55324:9;:22;;;;;;;;;;;;:::i;:::-;;55246:108:::0;:::o;33941:328::-;34116:41;34135:12;:10;:12::i;:::-;34149:7;34116:18;:41::i;:::-;34108:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34222:39;34236:4;34242:2;34246:7;34255:5;34222:13;:39::i;:::-;33941:328;;;;:::o;58917:185::-;58982:13;59010:16;59018:7;59010;:16::i;:::-;59002:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;59065:32;59089:7;59065:23;:32::i;:::-;59058:39;;58917:185;;;:::o;56478:297::-;56532:16;56561:25;56603:9;:16;;;;56589:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56561:59;;56638:6;56633:107;56654:9;:16;;;;56650:1;:20;56633:107;;;56706:19;:22;56726:1;56706:22;;;;;;;;;;;;56692:8;56701:1;56692:11;;;;;;;;:::i;:::-;;;;;;;:36;;;;;56672:3;;;;;:::i;:::-;;;;56633:107;;;;56759:8;56752:15;;;56478:297;:::o;55362:127::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55474:7:::1;55455:9;55465:5;55455:16;;;;;;;;:::i;:::-;;;;;;;;;:26;;;;;;;;;;;;:::i;:::-;;55362:127:::0;;:::o;56027:123::-;56087:4;56141:1;56111:13;:26;56125:11;56111:26;;;;;;;;;;;;:31;56104:38;;56027:123;;;:::o;61702:127::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61807:17:::1;61791:13;:33;;;;;;;;;;;;:::i;:::-;;61702:127:::0;:::o;55900:119::-;55958:7;55985:13;:26;55999:11;55985:26;;;;;;;;;;;;55978:33;;55900:119;;;:::o;33044:164::-;33141:4;33165:18;:25;33184:5;33165:25;;;;;;;;;;;;;;;:35;33191:8;33165:35;;;;;;;;;;;;;;;;;;;;;;;;;33158:42;;33044:164;;;;:::o;56855:458::-;51972:1;52568:7;;:19;;52560:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51972:1;52701:7;:18;;;;9263:12:::1;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56945:1:::2;56937:4;:9;;:36;;;;;56957:9;:16;;;;56950:4;:23;56937:36;56929:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57004:21;57028:147;;;;;;;;57061:4;57028:147;;;;57089:43;57106:19;:25;57126:4;57106:25;;;;;;;;;;;;57089:16;:43::i;:::-;57028:147;;;;57159:4;57028:147;;::::0;57004:171:::2;;57188:14;57205:13;:11;:13::i;:::-;57188:30;;57230:33;57240:10;57261:1;57252:6;:10;;;;:::i;:::-;57230:9;:33::i;:::-;57301:4;57274:12;:24;57296:1;57287:6;:10;;;;:::i;:::-;57274:24;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56918:395;;51928:1:::0;52880:7;:22;;;;56855:458;:::o;9941:201::-;9263:12;:10;:12::i;:::-;9252:23;;:7;:5;:7::i;:::-;:23;;;9244:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10050:1:::1;10030:22;;:8;:22;;;;10022:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10106:28;10125:8;10106:18;:28::i;:::-;9941:201:::0;:::o;30142:305::-;30244:4;30296:25;30281:40;;;:11;:40;;;;:105;;;;30353:33;30338:48;;;:11;:48;;;;30281:105;:158;;;;30403:36;30427:11;30403:23;:36::i;:::-;30281:158;30261:178;;30142:305;;;:::o;7756:98::-;7809:7;7836:10;7829:17;;7756:98;:::o;35779:127::-;35844:4;35896:1;35868:30;;:7;:16;35876:7;35868:16;;;;;;;;;;;;;;;;;;;;;:30;;;;35861:37;;35779:127;;;:::o;39925:174::-;40027:2;40000:15;:24;40016:7;40000:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40083:7;40079:2;40045:46;;40054:23;40069:7;40054:14;:23::i;:::-;40045:46;;;;;;;;;;;;39925:174;;:::o;5318:723::-;5374:13;5604:1;5595:5;:10;5591:53;;;5622:10;;;;;;;;;;;;;;;;;;;;;5591:53;5654:12;5669:5;5654:20;;5685:14;5710:78;5725:1;5717:4;:9;5710:78;;5743:8;;;;;:::i;:::-;;;;5774:2;5766:10;;;;;:::i;:::-;;;5710:78;;;5798:19;5830:6;5820:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5798:39;;5848:154;5864:1;5855:5;:10;5848:154;;5892:1;5882:11;;;;;:::i;:::-;;;5959:2;5951:5;:10;;;;:::i;:::-;5938:2;:24;;;;:::i;:::-;5925:39;;5908:6;5915;5908:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5988:2;5979:11;;;;;:::i;:::-;;;5848:154;;;6026:6;6012:21;;;;;5318:723;;;;:::o;36763:110::-;36839:26;36849:2;36853:7;36839:26;;;;;;;;;;;;:9;:26::i;:::-;36763:110;;:::o;36073:348::-;36166:4;36191:16;36199:7;36191;:16::i;:::-;36183:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36267:13;36283:23;36298:7;36283:14;:23::i;:::-;36267:39;;36336:5;36325:16;;:7;:16;;;:51;;;;36369:7;36345:31;;:20;36357:7;36345:11;:20::i;:::-;:31;;;36325:51;:87;;;;36380:32;36397:5;36404:7;36380:16;:32::i;:::-;36325:87;36317:96;;;36073:348;;;;:::o;39182:625::-;39341:4;39314:31;;:23;39329:7;39314:14;:23::i;:::-;:31;;;39306:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;39420:1;39406:16;;:2;:16;;;;39398:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39476:39;39497:4;39503:2;39507:7;39476:20;:39::i;:::-;39580:29;39597:1;39601:7;39580:8;:29::i;:::-;39641:1;39622:9;:15;39632:4;39622:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39670:1;39653:9;:13;39663:2;39653:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39701:2;39682:7;:16;39690:7;39682:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39740:7;39736:2;39721:27;;39730:4;39721:27;;;;;;;;;;;;39761:38;39781:4;39787:2;39791:7;39761:19;:38::i;:::-;39182:625;;;:::o;10302:191::-;10376:16;10395:6;;;;;;;;;;;10376:25;;10421:8;10412:6;;:17;;;;;;;;;;;;;;;;;;10476:8;10445:40;;10466:8;10445:40;;;;;;;;;;;;10365:128;10302:191;:::o;40241:315::-;40396:8;40387:17;;:5;:17;;;;40379:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;40483:8;40445:18;:25;40464:5;40445:25;;;;;;;;;;;;;;;:35;40471:8;40445:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40529:8;40507:41;;40522:5;40507:41;;;40539:8;40507:41;;;;;;:::i;:::-;;;;;;;;40241:315;;;:::o;35151:::-;35308:28;35318:4;35324:2;35328:7;35308:9;:28::i;:::-;35355:48;35378:4;35384:2;35388:7;35397:5;35355:22;:48::i;:::-;35347:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:315;;;;:::o;59110:241::-;59182:13;59282:53;59302:31;59325:7;59302:22;:31::i;:::-;59282:13;:53::i;:::-;59221:120;;;;;;;;:::i;:::-;;;;;;;;;;;;;59202:144;;59110:241;;;:::o;21816:157::-;21901:4;21940:25;21925:40;;;:11;:40;;;;21918:47;;21816:157;;;:::o;37100:321::-;37230:18;37236:2;37240:7;37230:5;:18::i;:::-;37281:54;37312:1;37316:2;37320:7;37329:5;37281:22;:54::i;:::-;37259:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37100:321;;;:::o;45822:589::-;45966:45;45993:4;45999:2;46003:7;45966:26;:45::i;:::-;46044:1;46028:18;;:4;:18;;;46024:187;;;46063:40;46095:7;46063:31;:40::i;:::-;46024:187;;;46133:2;46125:10;;:4;:10;;;46121:90;;46152:47;46185:4;46191:7;46152:32;:47::i;:::-;46121:90;46024:187;46239:1;46225:16;;:2;:16;;;46221:183;;;46258:45;46295:7;46258:36;:45::i;:::-;46221:183;;;46331:4;46325:10;;:2;:10;;;46321:83;;46352:40;46380:2;46384:7;46352:27;:40::i;:::-;46321:83;46221:183;45822:589;;;:::o;43003:125::-;;;;:::o;41121:799::-;41276:4;41297:15;:2;:13;;;:15::i;:::-;41293:620;;;41349:2;41333:36;;;41370:12;:10;:12::i;:::-;41384:4;41390:7;41399:5;41333:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41329:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41592:1;41575:6;:13;:18;41571:272;;;41618:60;;;;;;;;;;:::i;:::-;;;;;;;;41571:272;41793:6;41787:13;41778:6;41774:2;41770:15;41763:38;41329:529;41466:41;;;41456:51;;;:6;:51;;;;41449:58;;;;;41293:620;41897:4;41890:11;;41121:799;;;;;;;:::o;59511:662::-;59582:13;59608:26;59637:12;:21;59650:7;59637:21;;;;;;;;;;;59608:50;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59715:121;;;;;;;;;;;;;;;;;;59731:98;59786:9;59796;:16;;;59786:27;;;;;;;;:::i;:::-;;;;;;;;;59761:60;;;;;;;;:::i;:::-;;;;;;;;;;;;;59731:15;:98::i;:::-;59831:4;59715:7;:121::i;:::-;59843:70;;;;;;;;;;;;;;;;;;59860:46;59876:29;59888:9;:16;;;59876:11;:29::i;:::-;59860:15;:46::i;:::-;59908:4;59843:7;:70::i;:::-;59932:51;;;;;;;;;;;;;;;;;;59955:21;:19;:21::i;:::-;59978:4;59932:7;:51::i;:::-;60002:60;;;;;;;;;;;;;;;;;;60021:34;60037:9;:17;;;60021:15;:34::i;:::-;60057:4;60002:7;:60::i;:::-;60081:66;;;;;;;;;;;;;;;;;;60103:36;60122:9;:16;;;60103:18;:36::i;:::-;60141:5;60081:7;:66::i;:::-;59682:481;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59663:505;;;59511:662;;;:::o;793:1912::-;851:13;896:1;881:4;:11;:16;877:31;;;899:9;;;;;;;;;;;;;;;;877:31;960:19;982:12;;;;;;;;;;;;;;;;;960:34;;1046:18;1092:1;1087;1073:4;:11;:15;;;;:::i;:::-;1072:21;;;;:::i;:::-;1067:1;:27;;;;:::i;:::-;1046:48;;1177:20;1224:2;1211:10;:15;;;;:::i;:::-;1200:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1177:50;;1324:10;1316:6;1309:26;1419:1;1412:5;1408:13;1478:4;1529;1523:11;1514:7;1510:25;1625:2;1617:6;1613:15;1698:754;1717:6;1708:7;1705:19;1698:754;;;1817:1;1808:7;1804:15;1793:26;;1856:7;1850:14;1982:4;1974:5;1970:2;1966:14;1962:25;1952:8;1948:40;1942:47;1931:9;1923:67;2036:1;2025:9;2021:17;2008:30;;2115:4;2107:5;2103:2;2099:14;2095:25;2085:8;2081:40;2075:47;2064:9;2056:67;2169:1;2158:9;2154:17;2141:30;;2248:4;2240:5;2237:1;2232:14;2228:25;2218:8;2214:40;2208:47;2197:9;2189:67;2302:1;2291:9;2287:17;2274:30;;2381:4;2373:5;2361:25;2351:8;2347:40;2341:47;2330:9;2322:67;2435:1;2424:9;2420:17;2407:30;;1741:711;1698:754;;;2525:1;2518:4;2512:11;2508:19;2546:1;2541:54;;;;2614:1;2609:52;;;;2501:160;;2541:54;2585:6;2580:3;2576:16;2572:1;2561:9;2557:17;2550:43;2541:54;;2609:52;2653:4;2648:3;2644:14;2640:1;2629:9;2625:17;2618:41;2501:160;;1249:1423;;;;2691:6;2684:13;;;;;793:1912;;;;:::o;37757:439::-;37851:1;37837:16;;:2;:16;;;;37829:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37910:16;37918:7;37910;:16::i;:::-;37909:17;37901:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37972:45;38001:1;38005:2;38009:7;37972:20;:45::i;:::-;38047:1;38030:9;:13;38040:2;38030:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38078:2;38059:7;:16;38067:7;38059:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38123:7;38119:2;38098:33;;38115:1;38098:33;;;;;;;;;;;;38144:44;38172:1;38176:2;38180:7;38144:19;:44::i;:::-;37757:439;;:::o;42492:126::-;;;;:::o;47134:164::-;47238:10;:17;;;;47211:15;:24;47227:7;47211:24;;;;;;;;;;;:44;;;;47266:10;47282:7;47266:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47134:164;:::o;47925:988::-;48191:22;48241:1;48216:22;48233:4;48216:16;:22::i;:::-;:26;;;;:::i;:::-;48191:51;;48253:18;48274:17;:26;48292:7;48274:26;;;;;;;;;;;;48253:47;;48421:14;48407:10;:28;48403:328;;48452:19;48474:12;:18;48487:4;48474:18;;;;;;;;;;;;;;;:34;48493:14;48474:34;;;;;;;;;;;;48452:56;;48558:11;48525:12;:18;48538:4;48525:18;;;;;;;;;;;;;;;:30;48544:10;48525:30;;;;;;;;;;;:44;;;;48675:10;48642:17;:30;48660:11;48642:30;;;;;;;;;;;:43;;;;48437:294;48403:328;48827:17;:26;48845:7;48827:26;;;;;;;;;;;48820:33;;;48871:12;:18;48884:4;48871:18;;;;;;;;;;;;;;;:34;48890:14;48871:34;;;;;;;;;;;48864:41;;;48006:907;;47925:988;;:::o;49208:1079::-;49461:22;49506:1;49486:10;:17;;;;:21;;;;:::i;:::-;49461:46;;49518:18;49539:15;:24;49555:7;49539:24;;;;;;;;;;;;49518:45;;49890:19;49912:10;49923:14;49912:26;;;;;;;;:::i;:::-;;;;;;;;;;49890:48;;49976:11;49951:10;49962;49951:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;50087:10;50056:15;:28;50072:11;50056:28;;;;;;;;;;;:41;;;;50228:15;:24;50244:7;50228:24;;;;;;;;;;;50221:31;;;50263:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49279:1008;;;49208:1079;:::o;46712:221::-;46797:14;46814:20;46831:2;46814:16;:20::i;:::-;46797:37;;46872:7;46845:12;:16;46858:2;46845:16;;;;;;;;;;;;;;;:24;46862:6;46845:24;;;;;;;;;;;:34;;;;46919:6;46890:17;:26;46908:7;46890:26;;;;;;;;;;;:35;;;;46786:147;46712:221;;:::o;11733:326::-;11793:4;12050:1;12028:7;:19;;;:23;12021:30;;11733:326;;;:::o;61199:163::-;61267:13;61335:5;61306:46;;;;;;;;:::i;:::-;;;;;;;;;;;;;61287:70;;61199:163;;;:::o;61367:230::-;61474:13;61542:3;61555:5;61562:8;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61513:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61494:98;;61367:230;;;;;:::o;61003:188::-;61062:13;61088:17;61108:38;61115:7;61108:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61124:13;61138:6;61124:21;;;;;;;;:::i;:::-;;;;;;;;;61108:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;:38::i;:::-;61088:58;;61164:19;61171:3;61164:19;;;;;;;;;;;;;;;;;:6;:19::i;:::-;61157:26;;;61003:188;;;:::o;60181:455::-;60234:13;60260:25;:322;;;;;;;;;;;;;;;;;;;60600:28;60616:11;60600:15;:28::i;:::-;60593:35;;;60181:455;:::o;60644:351::-;60713:13;60739:24;60766:73;;;;;;;;;;;;;;;;;;60780:58;;;;;;;;;;;;;;;;;;60802:29;;;;;;;;;;;;;;;;;;:15;:29::i;:::-;60833:4;60780:7;:58::i;:::-;60766:6;:73::i;:::-;60739:100;;60863:82;60870:10;60882:62;;;;;;;;;;;;;;;;;;60899:37;60915:9;60925;60915:20;;;;;;;;:::i;:::-;;;;;;;;;60899:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:15;:37::i;:::-;60938:5;60882:7;:62::i;:::-;60863:6;:82::i;:::-;60850:95;;60963:24;60970:10;60963:24;;;;;;;;;;;;;;;;;:6;:24::i;:::-;60956:31;;;60644:351;;;:::o;59359:144::-;59432:13;59489:1;59492;59472:22;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59458:37;;59359:144;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;23:957:1:-;129:5;154:91;170:74;237:6;170:74;:::i;:::-;154:91;:::i;:::-;145:100;;265:5;294:6;287:5;280:21;328:4;321:5;317:16;310:23;;354:6;404:3;396:4;388:6;384:17;379:3;375:27;372:36;369:143;;;423:79;;:::i;:::-;369:143;536:1;521:453;546:6;543:1;540:13;521:453;;;628:3;615:17;664:18;651:11;648:35;645:122;;;686:79;;:::i;:::-;645:122;810:11;802:6;798:24;848:47;891:3;879:10;848:47;:::i;:::-;843:3;836:60;925:4;920:3;916:14;909:21;;959:4;954:3;950:14;943:21;;581:393;;568:1;565;561:9;556:14;;521:453;;;525:14;135:845;;23:957;;;;;:::o;1003:722::-;1099:5;1124:81;1140:64;1197:6;1140:64;:::i;:::-;1124:81;:::i;:::-;1115:90;;1225:5;1254:6;1247:5;1240:21;1288:4;1281:5;1277:16;1270:23;;1314:6;1364:3;1356:4;1348:6;1344:17;1339:3;1335:27;1332:36;1329:143;;;1383:79;;:::i;:::-;1329:143;1496:1;1481:238;1506:6;1503:1;1500:13;1481:238;;;1574:3;1603:37;1636:3;1624:10;1603:37;:::i;:::-;1598:3;1591:50;1670:4;1665:3;1661:14;1654:21;;1704:4;1699:3;1695:14;1688:21;;1541:178;1528:1;1525;1521:9;1516:14;;1481:238;;;1485:14;1105:620;;1003:722;;;;;:::o;1731:410::-;1808:5;1833:65;1849:48;1890:6;1849:48;:::i;:::-;1833:65;:::i;:::-;1824:74;;1921:6;1914:5;1907:21;1959:4;1952:5;1948:16;1997:3;1988:6;1983:3;1979:16;1976:25;1973:112;;;2004:79;;:::i;:::-;1973:112;2094:41;2128:6;2123:3;2118;2094:41;:::i;:::-;1814:327;1731:410;;;;;:::o;2147:412::-;2225:5;2250:66;2266:49;2308:6;2266:49;:::i;:::-;2250:66;:::i;:::-;2241:75;;2339:6;2332:5;2325:21;2377:4;2370:5;2366:16;2415:3;2406:6;2401:3;2397:16;2394:25;2391:112;;;2422:79;;:::i;:::-;2391:112;2512:41;2546:6;2541:3;2536;2512:41;:::i;:::-;2231:328;2147:412;;;;;:::o;2565:139::-;2611:5;2649:6;2636:20;2627:29;;2665:33;2692:5;2665:33;:::i;:::-;2565:139;;;;:::o;2710:143::-;2767:5;2798:6;2792:13;2783:22;;2814:33;2841:5;2814:33;:::i;:::-;2710:143;;;;:::o;2875:390::-;2956:5;3005:3;2998:4;2990:6;2986:17;2982:27;2972:122;;3013:79;;:::i;:::-;2972:122;3130:6;3117:20;3155:104;3255:3;3247:6;3240:4;3232:6;3228:17;3155:104;:::i;:::-;3146:113;;2962:303;2875:390;;;;:::o;3288:370::-;3359:5;3408:3;3401:4;3393:6;3389:17;3385:27;3375:122;;3416:79;;:::i;:::-;3375:122;3533:6;3520:20;3558:94;3648:3;3640:6;3633:4;3625:6;3621:17;3558:94;:::i;:::-;3549:103;;3365:293;3288:370;;;;:::o;3664:133::-;3707:5;3745:6;3732:20;3723:29;;3761:30;3785:5;3761:30;:::i;:::-;3664:133;;;;:::o;3803:137::-;3848:5;3886:6;3873:20;3864:29;;3902:32;3928:5;3902:32;:::i;:::-;3803:137;;;;:::o;3946:141::-;4002:5;4033:6;4027:13;4018:22;;4049:32;4075:5;4049:32;:::i;:::-;3946:141;;;;:::o;4106:338::-;4161:5;4210:3;4203:4;4195:6;4191:17;4187:27;4177:122;;4218:79;;:::i;:::-;4177:122;4335:6;4322:20;4360:78;4434:3;4426:6;4419:4;4411:6;4407:17;4360:78;:::i;:::-;4351:87;;4167:277;4106:338;;;;:::o;4464:340::-;4520:5;4569:3;4562:4;4554:6;4550:17;4546:27;4536:122;;4577:79;;:::i;:::-;4536:122;4694:6;4681:20;4719:79;4794:3;4786:6;4779:4;4771:6;4767:17;4719:79;:::i;:::-;4710:88;;4526:278;4464:340;;;;:::o;4810:139::-;4856:5;4894:6;4881:20;4872:29;;4910:33;4937:5;4910:33;:::i;:::-;4810:139;;;;:::o;4955:329::-;5014:6;5063:2;5051:9;5042:7;5038:23;5034:32;5031:119;;;5069:79;;:::i;:::-;5031:119;5189:1;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5160:117;4955:329;;;;:::o;5290:351::-;5360:6;5409:2;5397:9;5388:7;5384:23;5380:32;5377:119;;;5415:79;;:::i;:::-;5377:119;5535:1;5560:64;5616:7;5607:6;5596:9;5592:22;5560:64;:::i;:::-;5550:74;;5506:128;5290:351;;;;:::o;5647:474::-;5715:6;5723;5772:2;5760:9;5751:7;5747:23;5743:32;5740:119;;;5778:79;;:::i;:::-;5740:119;5898:1;5923:53;5968:7;5959:6;5948:9;5944:22;5923:53;:::i;:::-;5913:63;;5869:117;6025:2;6051:53;6096:7;6087:6;6076:9;6072:22;6051:53;:::i;:::-;6041:63;;5996:118;5647:474;;;;;:::o;6127:619::-;6204:6;6212;6220;6269:2;6257:9;6248:7;6244:23;6240:32;6237:119;;;6275:79;;:::i;:::-;6237:119;6395:1;6420:53;6465:7;6456:6;6445:9;6441:22;6420:53;:::i;:::-;6410:63;;6366:117;6522:2;6548:53;6593:7;6584:6;6573:9;6569:22;6548:53;:::i;:::-;6538:63;;6493:118;6650:2;6676:53;6721:7;6712:6;6701:9;6697:22;6676:53;:::i;:::-;6666:63;;6621:118;6127:619;;;;;:::o;6752:943::-;6847:6;6855;6863;6871;6920:3;6908:9;6899:7;6895:23;6891:33;6888:120;;;6927:79;;:::i;:::-;6888:120;7047:1;7072:53;7117:7;7108:6;7097:9;7093:22;7072:53;:::i;:::-;7062:63;;7018:117;7174:2;7200:53;7245:7;7236:6;7225:9;7221:22;7200:53;:::i;:::-;7190:63;;7145:118;7302:2;7328:53;7373:7;7364:6;7353:9;7349:22;7328:53;:::i;:::-;7318:63;;7273:118;7458:2;7447:9;7443:18;7430:32;7489:18;7481:6;7478:30;7475:117;;;7511:79;;:::i;:::-;7475:117;7616:62;7670:7;7661:6;7650:9;7646:22;7616:62;:::i;:::-;7606:72;;7401:287;6752:943;;;;;;;:::o;7701:468::-;7766:6;7774;7823:2;7811:9;7802:7;7798:23;7794:32;7791:119;;;7829:79;;:::i;:::-;7791:119;7949:1;7974:53;8019:7;8010:6;7999:9;7995:22;7974:53;:::i;:::-;7964:63;;7920:117;8076:2;8102:50;8144:7;8135:6;8124:9;8120:22;8102:50;:::i;:::-;8092:60;;8047:115;7701:468;;;;;:::o;8175:474::-;8243:6;8251;8300:2;8288:9;8279:7;8275:23;8271:32;8268:119;;;8306:79;;:::i;:::-;8268:119;8426:1;8451:53;8496:7;8487:6;8476:9;8472:22;8451:53;:::i;:::-;8441:63;;8397:117;8553:2;8579:53;8624:7;8615:6;8604:9;8600:22;8579:53;:::i;:::-;8569:63;;8524:118;8175:474;;;;;:::o;8655:559::-;8749:6;8798:2;8786:9;8777:7;8773:23;8769:32;8766:119;;;8804:79;;:::i;:::-;8766:119;8952:1;8941:9;8937:17;8924:31;8982:18;8974:6;8971:30;8968:117;;;9004:79;;:::i;:::-;8968:117;9109:88;9189:7;9180:6;9169:9;9165:22;9109:88;:::i;:::-;9099:98;;8895:312;8655:559;;;;:::o;9220:539::-;9304:6;9353:2;9341:9;9332:7;9328:23;9324:32;9321:119;;;9359:79;;:::i;:::-;9321:119;9507:1;9496:9;9492:17;9479:31;9537:18;9529:6;9526:30;9523:117;;;9559:79;;:::i;:::-;9523:117;9664:78;9734:7;9725:6;9714:9;9710:22;9664:78;:::i;:::-;9654:88;;9450:302;9220:539;;;;:::o;9765:323::-;9821:6;9870:2;9858:9;9849:7;9845:23;9841:32;9838:119;;;9876:79;;:::i;:::-;9838:119;9996:1;10021:50;10063:7;10054:6;10043:9;10039:22;10021:50;:::i;:::-;10011:60;;9967:114;9765:323;;;;:::o;10094:327::-;10152:6;10201:2;10189:9;10180:7;10176:23;10172:32;10169:119;;;10207:79;;:::i;:::-;10169:119;10327:1;10352:52;10396:7;10387:6;10376:9;10372:22;10352:52;:::i;:::-;10342:62;;10298:116;10094:327;;;;:::o;10427:349::-;10496:6;10545:2;10533:9;10524:7;10520:23;10516:32;10513:119;;;10551:79;;:::i;:::-;10513:119;10671:1;10696:63;10751:7;10742:6;10731:9;10727:22;10696:63;:::i;:::-;10686:73;;10642:127;10427:349;;;;:::o;10782:509::-;10851:6;10900:2;10888:9;10879:7;10875:23;10871:32;10868:119;;;10906:79;;:::i;:::-;10868:119;11054:1;11043:9;11039:17;11026:31;11084:18;11076:6;11073:30;11070:117;;;11106:79;;:::i;:::-;11070:117;11211:63;11266:7;11257:6;11246:9;11242:22;11211:63;:::i;:::-;11201:73;;10997:287;10782:509;;;;:::o;11297:329::-;11356:6;11405:2;11393:9;11384:7;11380:23;11376:32;11373:119;;;11411:79;;:::i;:::-;11373:119;11531:1;11556:53;11601:7;11592:6;11581:9;11577:22;11556:53;:::i;:::-;11546:63;;11502:117;11297:329;;;;:::o;11632:654::-;11710:6;11718;11767:2;11755:9;11746:7;11742:23;11738:32;11735:119;;;11773:79;;:::i;:::-;11735:119;11893:1;11918:53;11963:7;11954:6;11943:9;11939:22;11918:53;:::i;:::-;11908:63;;11864:117;12048:2;12037:9;12033:18;12020:32;12079:18;12071:6;12068:30;12065:117;;;12101:79;;:::i;:::-;12065:117;12206:63;12261:7;12252:6;12241:9;12237:22;12206:63;:::i;:::-;12196:73;;11991:288;11632:654;;;;;:::o;12292:474::-;12360:6;12368;12417:2;12405:9;12396:7;12392:23;12388:32;12385:119;;;12423:79;;:::i;:::-;12385:119;12543:1;12568:53;12613:7;12604:6;12593:9;12589:22;12568:53;:::i;:::-;12558:63;;12514:117;12670:2;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12641:118;12292:474;;;;;:::o;12772:167::-;12835:10;12856:40;12892:3;12884:6;12856:40;:::i;:::-;12928:4;12923:3;12919:14;12905:28;;12772:167;;;;:::o;12945:179::-;13014:10;13035:46;13077:3;13069:6;13035:46;:::i;:::-;13113:4;13108:3;13104:14;13090:28;;12945:179;;;;:::o;13130:118::-;13217:24;13235:5;13217:24;:::i;:::-;13212:3;13205:37;13130:118;;:::o;13278:708::-;13391:3;13420:51;13465:5;13420:51;:::i;:::-;13487:83;13563:6;13558:3;13487:83;:::i;:::-;13480:90;;13594:53;13641:5;13594:53;:::i;:::-;13670:7;13701:1;13686:275;13711:6;13708:1;13705:13;13686:275;;;13787:6;13781:13;13814:57;13867:3;13852:13;13814:57;:::i;:::-;13807:64;;13894:57;13944:6;13894:57;:::i;:::-;13884:67;;13746:215;13733:1;13730;13726:9;13721:14;;13686:275;;;13690:14;13977:3;13970:10;;13396:590;;;13278:708;;;;:::o;14022:732::-;14141:3;14170:54;14218:5;14170:54;:::i;:::-;14240:86;14319:6;14314:3;14240:86;:::i;:::-;14233:93;;14350:56;14400:5;14350:56;:::i;:::-;14429:7;14460:1;14445:284;14470:6;14467:1;14464:13;14445:284;;;14546:6;14540:13;14573:63;14632:3;14617:13;14573:63;:::i;:::-;14566:70;;14659:60;14712:6;14659:60;:::i;:::-;14649:70;;14505:224;14492:1;14489;14485:9;14480:14;;14445:284;;;14449:14;14745:3;14738:10;;14146:608;;;14022:732;;;;:::o;14760:99::-;14831:21;14846:5;14831:21;:::i;:::-;14826:3;14819:34;14760:99;;:::o;14865:109::-;14946:21;14961:5;14946:21;:::i;:::-;14941:3;14934:34;14865:109;;:::o;14980:360::-;15066:3;15094:38;15126:5;15094:38;:::i;:::-;15148:70;15211:6;15206:3;15148:70;:::i;:::-;15141:77;;15227:52;15272:6;15267:3;15260:4;15253:5;15249:16;15227:52;:::i;:::-;15304:29;15326:6;15304:29;:::i;:::-;15299:3;15295:39;15288:46;;15070:270;14980:360;;;;:::o;15346:364::-;15434:3;15462:39;15495:5;15462:39;:::i;:::-;15517:71;15581:6;15576:3;15517:71;:::i;:::-;15510:78;;15597:52;15642:6;15637:3;15630:4;15623:5;15619:16;15597:52;:::i;:::-;15674:29;15696:6;15674:29;:::i;:::-;15669:3;15665:39;15658:46;;15438:272;15346:364;;;;:::o;15716:377::-;15822:3;15850:39;15883:5;15850:39;:::i;:::-;15905:89;15987:6;15982:3;15905:89;:::i;:::-;15898:96;;16003:52;16048:6;16043:3;16036:4;16029:5;16025:16;16003:52;:::i;:::-;16080:6;16075:3;16071:16;16064:23;;15826:267;15716:377;;;;:::o;16123:845::-;16226:3;16263:5;16257:12;16292:36;16318:9;16292:36;:::i;:::-;16344:89;16426:6;16421:3;16344:89;:::i;:::-;16337:96;;16464:1;16453:9;16449:17;16480:1;16475:137;;;;16626:1;16621:341;;;;16442:520;;16475:137;16559:4;16555:9;16544;16540:25;16535:3;16528:38;16595:6;16590:3;16586:16;16579:23;;16475:137;;16621:341;16688:38;16720:5;16688:38;:::i;:::-;16748:1;16762:154;16776:6;16773:1;16770:13;16762:154;;;16850:7;16844:14;16840:1;16835:3;16831:11;16824:35;16900:1;16891:7;16887:15;16876:26;;16798:4;16795:1;16791:12;16786:17;;16762:154;;;16945:6;16940:3;16936:16;16929:23;;16628:334;;16442:520;;16230:738;;16123:845;;;;:::o;16974:366::-;17116:3;17137:67;17201:2;17196:3;17137:67;:::i;:::-;17130:74;;17213:93;17302:3;17213:93;:::i;:::-;17331:2;17326:3;17322:12;17315:19;;16974:366;;;:::o;17346:::-;17488:3;17509:67;17573:2;17568:3;17509:67;:::i;:::-;17502:74;;17585:93;17674:3;17585:93;:::i;:::-;17703:2;17698:3;17694:12;17687:19;;17346:366;;;:::o;17718:::-;17860:3;17881:67;17945:2;17940:3;17881:67;:::i;:::-;17874:74;;17957:93;18046:3;17957:93;:::i;:::-;18075:2;18070:3;18066:12;18059:19;;17718:366;;;:::o;18090:::-;18232:3;18253:67;18317:2;18312:3;18253:67;:::i;:::-;18246:74;;18329:93;18418:3;18329:93;:::i;:::-;18447:2;18442:3;18438:12;18431:19;;18090:366;;;:::o;18462:::-;18604:3;18625:67;18689:2;18684:3;18625:67;:::i;:::-;18618:74;;18701:93;18790:3;18701:93;:::i;:::-;18819:2;18814:3;18810:12;18803:19;;18462:366;;;:::o;18834:::-;18976:3;18997:67;19061:2;19056:3;18997:67;:::i;:::-;18990:74;;19073:93;19162:3;19073:93;:::i;:::-;19191:2;19186:3;19182:12;19175:19;;18834:366;;;:::o;19206:::-;19348:3;19369:67;19433:2;19428:3;19369:67;:::i;:::-;19362:74;;19445:93;19534:3;19445:93;:::i;:::-;19563:2;19558:3;19554:12;19547:19;;19206:366;;;:::o;19578:::-;19720:3;19741:67;19805:2;19800:3;19741:67;:::i;:::-;19734:74;;19817:93;19906:3;19817:93;:::i;:::-;19935:2;19930:3;19926:12;19919:19;;19578:366;;;:::o;19950:::-;20092:3;20113:67;20177:2;20172:3;20113:67;:::i;:::-;20106:74;;20189:93;20278:3;20189:93;:::i;:::-;20307:2;20302:3;20298:12;20291:19;;19950:366;;;:::o;20322:::-;20464:3;20485:67;20549:2;20544:3;20485:67;:::i;:::-;20478:74;;20561:93;20650:3;20561:93;:::i;:::-;20679:2;20674:3;20670:12;20663:19;;20322:366;;;:::o;20694:::-;20836:3;20857:67;20921:2;20916:3;20857:67;:::i;:::-;20850:74;;20933:93;21022:3;20933:93;:::i;:::-;21051:2;21046:3;21042:12;21035:19;;20694:366;;;:::o;21066:::-;21208:3;21229:67;21293:2;21288:3;21229:67;:::i;:::-;21222:74;;21305:93;21394:3;21305:93;:::i;:::-;21423:2;21418:3;21414:12;21407:19;;21066:366;;;:::o;21438:::-;21580:3;21601:67;21665:2;21660:3;21601:67;:::i;:::-;21594:74;;21677:93;21766:3;21677:93;:::i;:::-;21795:2;21790:3;21786:12;21779:19;;21438:366;;;:::o;21810:::-;21952:3;21973:67;22037:2;22032:3;21973:67;:::i;:::-;21966:74;;22049:93;22138:3;22049:93;:::i;:::-;22167:2;22162:3;22158:12;22151:19;;21810:366;;;:::o;22182:400::-;22342:3;22363:84;22445:1;22440:3;22363:84;:::i;:::-;22356:91;;22456:93;22545:3;22456:93;:::i;:::-;22574:1;22569:3;22565:11;22558:18;;22182:400;;;:::o;22588:366::-;22730:3;22751:67;22815:2;22810:3;22751:67;:::i;:::-;22744:74;;22827:93;22916:3;22827:93;:::i;:::-;22945:2;22940:3;22936:12;22929:19;;22588:366;;;:::o;22960:::-;23102:3;23123:67;23187:2;23182:3;23123:67;:::i;:::-;23116:74;;23199:93;23288:3;23199:93;:::i;:::-;23317:2;23312:3;23308:12;23301:19;;22960:366;;;:::o;23332:::-;23474:3;23495:67;23559:2;23554:3;23495:67;:::i;:::-;23488:74;;23571:93;23660:3;23571:93;:::i;:::-;23689:2;23684:3;23680:12;23673:19;;23332:366;;;:::o;23704:::-;23846:3;23867:67;23931:2;23926:3;23867:67;:::i;:::-;23860:74;;23943:93;24032:3;23943:93;:::i;:::-;24061:2;24056:3;24052:12;24045:19;;23704:366;;;:::o;24076:400::-;24236:3;24257:84;24339:1;24334:3;24257:84;:::i;:::-;24250:91;;24350:93;24439:3;24350:93;:::i;:::-;24468:1;24463:3;24459:11;24452:18;;24076:400;;;:::o;24482:366::-;24624:3;24645:67;24709:2;24704:3;24645:67;:::i;:::-;24638:74;;24721:93;24810:3;24721:93;:::i;:::-;24839:2;24834:3;24830:12;24823:19;;24482:366;;;:::o;24854:::-;24996:3;25017:67;25081:2;25076:3;25017:67;:::i;:::-;25010:74;;25093:93;25182:3;25093:93;:::i;:::-;25211:2;25206:3;25202:12;25195:19;;24854:366;;;:::o;25226:400::-;25386:3;25407:84;25489:1;25484:3;25407:84;:::i;:::-;25400:91;;25500:93;25589:3;25500:93;:::i;:::-;25618:1;25613:3;25609:11;25602:18;;25226:400;;;:::o;25632:::-;25792:3;25813:84;25895:1;25890:3;25813:84;:::i;:::-;25806:91;;25906:93;25995:3;25906:93;:::i;:::-;26024:1;26019:3;26015:11;26008:18;;25632:400;;;:::o;26038:366::-;26180:3;26201:67;26265:2;26260:3;26201:67;:::i;:::-;26194:74;;26277:93;26366:3;26277:93;:::i;:::-;26395:2;26390:3;26386:12;26379:19;;26038:366;;;:::o;26410:402::-;26570:3;26591:85;26673:2;26668:3;26591:85;:::i;:::-;26584:92;;26685:93;26774:3;26685:93;:::i;:::-;26803:2;26798:3;26794:12;26787:19;;26410:402;;;:::o;26818:366::-;26960:3;26981:67;27045:2;27040:3;26981:67;:::i;:::-;26974:74;;27057:93;27146:3;27057:93;:::i;:::-;27175:2;27170:3;27166:12;27159:19;;26818:366;;;:::o;27190:::-;27332:3;27353:67;27417:2;27412:3;27353:67;:::i;:::-;27346:74;;27429:93;27518:3;27429:93;:::i;:::-;27547:2;27542:3;27538:12;27531:19;;27190:366;;;:::o;27562:::-;27704:3;27725:67;27789:2;27784:3;27725:67;:::i;:::-;27718:74;;27801:93;27890:3;27801:93;:::i;:::-;27919:2;27914:3;27910:12;27903:19;;27562:366;;;:::o;27934:108::-;28011:24;28029:5;28011:24;:::i;:::-;28006:3;27999:37;27934:108;;:::o;28048:118::-;28135:24;28153:5;28135:24;:::i;:::-;28130:3;28123:37;28048:118;;:::o;28172:435::-;28352:3;28374:95;28465:3;28456:6;28374:95;:::i;:::-;28367:102;;28486:95;28577:3;28568:6;28486:95;:::i;:::-;28479:102;;28598:3;28591:10;;28172:435;;;;;:::o;28613:269::-;28742:3;28764:92;28852:3;28843:6;28764:92;:::i;:::-;28757:99;;28873:3;28866:10;;28613:269;;;;:::o;28888:807::-;29222:3;29244:148;29388:3;29244:148;:::i;:::-;29237:155;;29409:95;29500:3;29491:6;29409:95;:::i;:::-;29402:102;;29521:148;29665:3;29521:148;:::i;:::-;29514:155;;29686:3;29679:10;;28888:807;;;;:::o;29701:1127::-;30131:3;30153:148;30297:3;30153:148;:::i;:::-;30146:155;;30318:95;30409:3;30400:6;30318:95;:::i;:::-;30311:102;;30430:148;30574:3;30430:148;:::i;:::-;30423:155;;30595:95;30686:3;30677:6;30595:95;:::i;:::-;30588:102;;30707:95;30798:3;30789:6;30707:95;:::i;:::-;30700:102;;30819:3;30812:10;;29701:1127;;;;;;:::o;30834:1447::-;31360:3;31382:148;31526:3;31382:148;:::i;:::-;31375:155;;31547:95;31638:3;31629:6;31547:95;:::i;:::-;31540:102;;31659:95;31750:3;31741:6;31659:95;:::i;:::-;31652:102;;31771:95;31862:3;31853:6;31771:95;:::i;:::-;31764:102;;31883:95;31974:3;31965:6;31883:95;:::i;:::-;31876:102;;31995:95;32086:3;32077:6;31995:95;:::i;:::-;31988:102;;32107:148;32251:3;32107:148;:::i;:::-;32100:155;;32272:3;32265:10;;30834:1447;;;;;;;;:::o;32287:541::-;32520:3;32542:148;32686:3;32542:148;:::i;:::-;32535:155;;32707:95;32798:3;32789:6;32707:95;:::i;:::-;32700:102;;32819:3;32812:10;;32287:541;;;;:::o;32834:222::-;32927:4;32965:2;32954:9;32950:18;32942:26;;32978:71;33046:1;33035:9;33031:17;33022:6;32978:71;:::i;:::-;32834:222;;;;:::o;33062:640::-;33257:4;33295:3;33284:9;33280:19;33272:27;;33309:71;33377:1;33366:9;33362:17;33353:6;33309:71;:::i;:::-;33390:72;33458:2;33447:9;33443:18;33434:6;33390:72;:::i;:::-;33472;33540:2;33529:9;33525:18;33516:6;33472:72;:::i;:::-;33591:9;33585:4;33581:20;33576:2;33565:9;33561:18;33554:48;33619:76;33690:4;33681:6;33619:76;:::i;:::-;33611:84;;33062:640;;;;;;;:::o;33708:361::-;33845:4;33883:2;33872:9;33868:18;33860:26;;33932:9;33926:4;33922:20;33918:1;33907:9;33903:17;33896:47;33960:102;34057:4;34048:6;33960:102;:::i;:::-;33952:110;;33708:361;;;;:::o;34075:373::-;34218:4;34256:2;34245:9;34241:18;34233:26;;34305:9;34299:4;34295:20;34291:1;34280:9;34276:17;34269:47;34333:108;34436:4;34427:6;34333:108;:::i;:::-;34325:116;;34075:373;;;;:::o;34454:210::-;34541:4;34579:2;34568:9;34564:18;34556:26;;34592:65;34654:1;34643:9;34639:17;34630:6;34592:65;:::i;:::-;34454:210;;;;:::o;34670:313::-;34783:4;34821:2;34810:9;34806:18;34798:26;;34870:9;34864:4;34860:20;34856:1;34845:9;34841:17;34834:47;34898:78;34971:4;34962:6;34898:78;:::i;:::-;34890:86;;34670:313;;;;:::o;34989:419::-;35155:4;35193:2;35182:9;35178:18;35170:26;;35242:9;35236:4;35232:20;35228:1;35217:9;35213:17;35206:47;35270:131;35396:4;35270:131;:::i;:::-;35262:139;;34989:419;;;:::o;35414:::-;35580:4;35618:2;35607:9;35603:18;35595:26;;35667:9;35661:4;35657:20;35653:1;35642:9;35638:17;35631:47;35695:131;35821:4;35695:131;:::i;:::-;35687:139;;35414:419;;;:::o;35839:::-;36005:4;36043:2;36032:9;36028:18;36020:26;;36092:9;36086:4;36082:20;36078:1;36067:9;36063:17;36056:47;36120:131;36246:4;36120:131;:::i;:::-;36112:139;;35839:419;;;:::o;36264:::-;36430:4;36468:2;36457:9;36453:18;36445:26;;36517:9;36511:4;36507:20;36503:1;36492:9;36488:17;36481:47;36545:131;36671:4;36545:131;:::i;:::-;36537:139;;36264:419;;;:::o;36689:::-;36855:4;36893:2;36882:9;36878:18;36870:26;;36942:9;36936:4;36932:20;36928:1;36917:9;36913:17;36906:47;36970:131;37096:4;36970:131;:::i;:::-;36962:139;;36689:419;;;:::o;37114:::-;37280:4;37318:2;37307:9;37303:18;37295:26;;37367:9;37361:4;37357:20;37353:1;37342:9;37338:17;37331:47;37395:131;37521:4;37395:131;:::i;:::-;37387:139;;37114:419;;;:::o;37539:::-;37705:4;37743:2;37732:9;37728:18;37720:26;;37792:9;37786:4;37782:20;37778:1;37767:9;37763:17;37756:47;37820:131;37946:4;37820:131;:::i;:::-;37812:139;;37539:419;;;:::o;37964:::-;38130:4;38168:2;38157:9;38153:18;38145:26;;38217:9;38211:4;38207:20;38203:1;38192:9;38188:17;38181:47;38245:131;38371:4;38245:131;:::i;:::-;38237:139;;37964:419;;;:::o;38389:::-;38555:4;38593:2;38582:9;38578:18;38570:26;;38642:9;38636:4;38632:20;38628:1;38617:9;38613:17;38606:47;38670:131;38796:4;38670:131;:::i;:::-;38662:139;;38389:419;;;:::o;38814:::-;38980:4;39018:2;39007:9;39003:18;38995:26;;39067:9;39061:4;39057:20;39053:1;39042:9;39038:17;39031:47;39095:131;39221:4;39095:131;:::i;:::-;39087:139;;38814:419;;;:::o;39239:::-;39405:4;39443:2;39432:9;39428:18;39420:26;;39492:9;39486:4;39482:20;39478:1;39467:9;39463:17;39456:47;39520:131;39646:4;39520:131;:::i;:::-;39512:139;;39239:419;;;:::o;39664:::-;39830:4;39868:2;39857:9;39853:18;39845:26;;39917:9;39911:4;39907:20;39903:1;39892:9;39888:17;39881:47;39945:131;40071:4;39945:131;:::i;:::-;39937:139;;39664:419;;;:::o;40089:::-;40255:4;40293:2;40282:9;40278:18;40270:26;;40342:9;40336:4;40332:20;40328:1;40317:9;40313:17;40306:47;40370:131;40496:4;40370:131;:::i;:::-;40362:139;;40089:419;;;:::o;40514:::-;40680:4;40718:2;40707:9;40703:18;40695:26;;40767:9;40761:4;40757:20;40753:1;40742:9;40738:17;40731:47;40795:131;40921:4;40795:131;:::i;:::-;40787:139;;40514:419;;;:::o;40939:::-;41105:4;41143:2;41132:9;41128:18;41120:26;;41192:9;41186:4;41182:20;41178:1;41167:9;41163:17;41156:47;41220:131;41346:4;41220:131;:::i;:::-;41212:139;;40939:419;;;:::o;41364:::-;41530:4;41568:2;41557:9;41553:18;41545:26;;41617:9;41611:4;41607:20;41603:1;41592:9;41588:17;41581:47;41645:131;41771:4;41645:131;:::i;:::-;41637:139;;41364:419;;;:::o;41789:::-;41955:4;41993:2;41982:9;41978:18;41970:26;;42042:9;42036:4;42032:20;42028:1;42017:9;42013:17;42006:47;42070:131;42196:4;42070:131;:::i;:::-;42062:139;;41789:419;;;:::o;42214:::-;42380:4;42418:2;42407:9;42403:18;42395:26;;42467:9;42461:4;42457:20;42453:1;42442:9;42438:17;42431:47;42495:131;42621:4;42495:131;:::i;:::-;42487:139;;42214:419;;;:::o;42639:::-;42805:4;42843:2;42832:9;42828:18;42820:26;;42892:9;42886:4;42882:20;42878:1;42867:9;42863:17;42856:47;42920:131;43046:4;42920:131;:::i;:::-;42912:139;;42639:419;;;:::o;43064:::-;43230:4;43268:2;43257:9;43253:18;43245:26;;43317:9;43311:4;43307:20;43303:1;43292:9;43288:17;43281:47;43345:131;43471:4;43345:131;:::i;:::-;43337:139;;43064:419;;;:::o;43489:::-;43655:4;43693:2;43682:9;43678:18;43670:26;;43742:9;43736:4;43732:20;43728:1;43717:9;43713:17;43706:47;43770:131;43896:4;43770:131;:::i;:::-;43762:139;;43489:419;;;:::o;43914:::-;44080:4;44118:2;44107:9;44103:18;44095:26;;44167:9;44161:4;44157:20;44153:1;44142:9;44138:17;44131:47;44195:131;44321:4;44195:131;:::i;:::-;44187:139;;43914:419;;;:::o;44339:::-;44505:4;44543:2;44532:9;44528:18;44520:26;;44592:9;44586:4;44582:20;44578:1;44567:9;44563:17;44556:47;44620:131;44746:4;44620:131;:::i;:::-;44612:139;;44339:419;;;:::o;44764:::-;44930:4;44968:2;44957:9;44953:18;44945:26;;45017:9;45011:4;45007:20;45003:1;44992:9;44988:17;44981:47;45045:131;45171:4;45045:131;:::i;:::-;45037:139;;44764:419;;;:::o;45189:222::-;45282:4;45320:2;45309:9;45305:18;45297:26;;45333:71;45401:1;45390:9;45386:17;45377:6;45333:71;:::i;:::-;45189:222;;;;:::o;45417:129::-;45451:6;45478:20;;:::i;:::-;45468:30;;45507:33;45535:4;45527:6;45507:33;:::i;:::-;45417:129;;;:::o;45552:75::-;45585:6;45618:2;45612:9;45602:19;;45552:75;:::o;45633:321::-;45720:4;45810:18;45802:6;45799:30;45796:56;;;45832:18;;:::i;:::-;45796:56;45882:4;45874:6;45870:17;45862:25;;45942:4;45936;45932:15;45924:23;;45633:321;;;:::o;45960:311::-;46037:4;46127:18;46119:6;46116:30;46113:56;;;46149:18;;:::i;:::-;46113:56;46199:4;46191:6;46187:17;46179:25;;46259:4;46253;46249:15;46241:23;;45960:311;;;:::o;46277:307::-;46338:4;46428:18;46420:6;46417:30;46414:56;;;46450:18;;:::i;:::-;46414:56;46488:29;46510:6;46488:29;:::i;:::-;46480:37;;46572:4;46566;46562:15;46554:23;;46277:307;;;:::o;46590:308::-;46652:4;46742:18;46734:6;46731:30;46728:56;;;46764:18;;:::i;:::-;46728:56;46802:29;46824:6;46802:29;:::i;:::-;46794:37;;46886:4;46880;46876:15;46868:23;;46590:308;;;:::o;46904:129::-;46968:4;46991:3;46983:11;;47021:4;47016:3;47012:14;47004:22;;46904:129;;;:::o;47039:132::-;47106:4;47129:3;47121:11;;47159:4;47154:3;47150:14;47142:22;;47039:132;;;:::o;47177:141::-;47226:4;47249:3;47241:11;;47272:3;47269:1;47262:14;47306:4;47303:1;47293:18;47285:26;;47177:141;;;:::o;47324:111::-;47388:6;47422:5;47416:12;47406:22;;47324:111;;;:::o;47441:114::-;47508:6;47542:5;47536:12;47526:22;;47441:114;;;:::o;47561:98::-;47612:6;47646:5;47640:12;47630:22;;47561:98;;;:::o;47665:99::-;47717:6;47751:5;47745:12;47735:22;;47665:99;;;:::o;47770:110::-;47837:4;47869;47864:3;47860:14;47852:22;;47770:110;;;:::o;47886:113::-;47956:4;47988;47983:3;47979:14;47971:22;;47886:113;;;:::o;48005:181::-;48101:11;48135:6;48130:3;48123:19;48175:4;48170:3;48166:14;48151:29;;48005:181;;;;:::o;48192:184::-;48291:11;48325:6;48320:3;48313:19;48365:4;48360:3;48356:14;48341:29;;48192:184;;;;:::o;48382:168::-;48465:11;48499:6;48494:3;48487:19;48539:4;48534:3;48530:14;48515:29;;48382:168;;;;:::o;48556:169::-;48640:11;48674:6;48669:3;48662:19;48714:4;48709:3;48705:14;48690:29;;48556:169;;;;:::o;48731:148::-;48833:11;48870:3;48855:18;;48731:148;;;;:::o;48885:305::-;48925:3;48944:20;48962:1;48944:20;:::i;:::-;48939:25;;48978:20;48996:1;48978:20;:::i;:::-;48973:25;;49132:1;49064:66;49060:74;49057:1;49054:81;49051:107;;;49138:18;;:::i;:::-;49051:107;49182:1;49179;49175:9;49168:16;;48885:305;;;;:::o;49196:185::-;49236:1;49253:20;49271:1;49253:20;:::i;:::-;49248:25;;49287:20;49305:1;49287:20;:::i;:::-;49282:25;;49326:1;49316:35;;49331:18;;:::i;:::-;49316:35;49373:1;49370;49366:9;49361:14;;49196:185;;;;:::o;49387:348::-;49427:7;49450:20;49468:1;49450:20;:::i;:::-;49445:25;;49484:20;49502:1;49484:20;:::i;:::-;49479:25;;49672:1;49604:66;49600:74;49597:1;49594:81;49589:1;49582:9;49575:17;49571:105;49568:131;;;49679:18;;:::i;:::-;49568:131;49727:1;49724;49720:9;49709:20;;49387:348;;;;:::o;49741:191::-;49781:4;49801:20;49819:1;49801:20;:::i;:::-;49796:25;;49835:20;49853:1;49835:20;:::i;:::-;49830:25;;49874:1;49871;49868:8;49865:34;;;49879:18;;:::i;:::-;49865:34;49924:1;49921;49917:9;49909:17;;49741:191;;;;:::o;49938:96::-;49975:7;50004:24;50022:5;50004:24;:::i;:::-;49993:35;;49938:96;;;:::o;50040:90::-;50074:7;50117:5;50110:13;50103:21;50092:32;;50040:90;;;:::o;50136:149::-;50172:7;50212:66;50205:5;50201:78;50190:89;;50136:149;;;:::o;50291:126::-;50328:7;50368:42;50361:5;50357:54;50346:65;;50291:126;;;:::o;50423:77::-;50460:7;50489:5;50478:16;;50423:77;;;:::o;50506:154::-;50590:6;50585:3;50580;50567:30;50652:1;50643:6;50638:3;50634:16;50627:27;50506:154;;;:::o;50666:307::-;50734:1;50744:113;50758:6;50755:1;50752:13;50744:113;;;50843:1;50838:3;50834:11;50828:18;50824:1;50819:3;50815:11;50808:39;50780:2;50777:1;50773:10;50768:15;;50744:113;;;50875:6;50872:1;50869:13;50866:101;;;50955:1;50946:6;50941:3;50937:16;50930:27;50866:101;50715:258;50666:307;;;:::o;50979:320::-;51023:6;51060:1;51054:4;51050:12;51040:22;;51107:1;51101:4;51097:12;51128:18;51118:81;;51184:4;51176:6;51172:17;51162:27;;51118:81;51246:2;51238:6;51235:14;51215:18;51212:38;51209:84;;;51265:18;;:::i;:::-;51209:84;51030:269;50979:320;;;:::o;51305:281::-;51388:27;51410:4;51388:27;:::i;:::-;51380:6;51376:40;51518:6;51506:10;51503:22;51482:18;51470:10;51467:34;51464:62;51461:88;;;51529:18;;:::i;:::-;51461:88;51569:10;51565:2;51558:22;51348:238;51305:281;;:::o;51592:233::-;51631:3;51654:24;51672:5;51654:24;:::i;:::-;51645:33;;51700:66;51693:5;51690:77;51687:103;;;51770:18;;:::i;:::-;51687:103;51817:1;51810:5;51806:13;51799:20;;51592:233;;;:::o;51831:176::-;51863:1;51880:20;51898:1;51880:20;:::i;:::-;51875:25;;51914:20;51932:1;51914:20;:::i;:::-;51909:25;;51953:1;51943:35;;51958:18;;:::i;:::-;51943:35;51999:1;51996;51992:9;51987:14;;51831:176;;;;:::o;52013:180::-;52061:77;52058:1;52051:88;52158:4;52155:1;52148:15;52182:4;52179:1;52172:15;52199:180;52247:77;52244:1;52237:88;52344:4;52341:1;52334:15;52368:4;52365:1;52358:15;52385:180;52433:77;52430:1;52423:88;52530:4;52527:1;52520:15;52554:4;52551:1;52544:15;52571:180;52619:77;52616:1;52609:88;52716:4;52713:1;52706:15;52740:4;52737:1;52730:15;52757:180;52805:77;52802:1;52795:88;52902:4;52899:1;52892:15;52926:4;52923:1;52916:15;52943:180;52991:77;52988:1;52981:88;53088:4;53085:1;53078:15;53112:4;53109:1;53102:15;53129:117;53238:1;53235;53228:12;53252:117;53361:1;53358;53351:12;53375:117;53484:1;53481;53474:12;53498:117;53607:1;53604;53597:12;53621:117;53730:1;53727;53720:12;53744:102;53785:6;53836:2;53832:7;53827:2;53820:5;53816:14;53812:28;53802:38;;53744:102;;;:::o;53852:178::-;53992:30;53988:1;53980:6;53976:14;53969:54;53852:178;:::o;54036:179::-;54176:31;54172:1;54164:6;54160:14;54153:55;54036:179;:::o;54221:230::-;54361:34;54357:1;54349:6;54345:14;54338:58;54430:13;54425:2;54417:6;54413:15;54406:38;54221:230;:::o;54457:237::-;54597:34;54593:1;54585:6;54581:14;54574:58;54666:20;54661:2;54653:6;54649:15;54642:45;54457:237;:::o;54700:225::-;54840:34;54836:1;54828:6;54824:14;54817:58;54909:8;54904:2;54896:6;54892:15;54885:33;54700:225;:::o;54931:224::-;55071:34;55067:1;55059:6;55055:14;55048:58;55140:7;55135:2;55127:6;55123:15;55116:32;54931:224;:::o;55161:178::-;55301:30;55297:1;55289:6;55285:14;55278:54;55161:178;:::o;55345:166::-;55485:18;55481:1;55473:6;55469:14;55462:42;55345:166;:::o;55517:223::-;55657:34;55653:1;55645:6;55641:14;55634:58;55726:6;55721:2;55713:6;55709:15;55702:31;55517:223;:::o;55746:175::-;55886:27;55882:1;55874:6;55870:14;55863:51;55746:175;:::o;55927:165::-;56067:17;56063:1;56055:6;56051:14;56044:41;55927:165;:::o;56098:231::-;56238:34;56234:1;56226:6;56222:14;56215:58;56307:14;56302:2;56294:6;56290:15;56283:39;56098:231;:::o;56335:173::-;56475:25;56471:1;56463:6;56459:14;56452:49;56335:173;:::o;56514:243::-;56654:34;56650:1;56642:6;56638:14;56631:58;56723:26;56718:2;56710:6;56706:15;56699:51;56514:243;:::o;56763:214::-;56903:66;56899:1;56891:6;56887:14;56880:90;56763:214;:::o;56983:235::-;57123:34;57119:1;57111:6;57107:14;57100:58;57192:18;57187:2;57179:6;57175:15;57168:43;56983:235;:::o;57224:229::-;57364:34;57360:1;57352:6;57348:14;57341:58;57433:12;57428:2;57420:6;57416:15;57409:37;57224:229;:::o;57459:228::-;57599:34;57595:1;57587:6;57583:14;57576:58;57668:11;57663:2;57655:6;57651:15;57644:36;57459:228;:::o;57693:182::-;57833:34;57829:1;57821:6;57817:14;57810:58;57693:182;:::o;57881:143::-;58017:3;58013:1;58005:6;58001:14;57994:27;57881:143;:::o;58026:219::-;58162:34;58158:1;58150:6;58146:14;58139:58;58227:14;58222:2;58214:6;58210:15;58203:39;58026:219;:::o;58247:174::-;58383:34;58379:1;58371:6;58367:14;58360:58;58247:174;:::o;58423:147::-;58559:3;58555:1;58547:6;58543:14;58536:27;58423:147;:::o;58576:214::-;58716:66;58712:1;58704:6;58700:14;58693:90;58576:214;:::o;58796:220::-;58936:34;58932:1;58924:6;58920:14;58913:58;59005:3;59000:2;58992:6;58988:15;58981:28;58796:220;:::o;59022:179::-;59162:31;59158:1;59150:6;59146:14;59139:55;59022:179;:::o;59207:236::-;59347:34;59343:1;59335:6;59331:14;59324:58;59416:19;59411:2;59403:6;59399:15;59392:44;59207:236;:::o;59449:231::-;59589:34;59585:1;59577:6;59573:14;59566:58;59658:14;59653:2;59645:6;59641:15;59634:39;59449:231;:::o;59686:181::-;59826:33;59822:1;59814:6;59810:14;59803:57;59686:181;:::o;59873:122::-;59946:24;59964:5;59946:24;:::i;:::-;59939:5;59936:35;59926:63;;59985:1;59982;59975:12;59926:63;59873:122;:::o;60001:116::-;60071:21;60086:5;60071:21;:::i;:::-;60064:5;60061:32;60051:60;;60107:1;60104;60097:12;60051:60;60001:116;:::o;60123:120::-;60195:23;60212:5;60195:23;:::i;:::-;60188:5;60185:34;60175:62;;60233:1;60230;60223:12;60175:62;60123:120;:::o;60249:122::-;60322:24;60340:5;60322:24;:::i;:::-;60315:5;60312:35;60302:63;;60361:1;60358;60351:12;60302:63;60249:122;:::o

Swarm Source

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