ETH Price: $2,431.48 (+4.59%)

Token

Reroll Pass (Reroll)
 

Overview

Max Total Supply

0 Reroll

Holders

5

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
johnweth.eth
Balance
1 Reroll
0x6701D0dD7D2A0a0D84A088620583f82723C518aA
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:
RerollPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-30
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-30
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity >=0.7.0 <0.9.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity >=0.7.0 <0.9.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity >=0.7.0 <0.9.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/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity >=0.7.0 <0.9.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/[email protected]/utils/Address.sol


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

pragma solidity >=0.7.0 <0.9.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol


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

pragma solidity >=0.7.0 <0.9.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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity >=0.7.0 <0.9.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/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity >=0.7.0 <0.9.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/[email protected]/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev 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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity >=0.7.0 <0.9.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/[email protected]/token/ERC721/ERC721.sol


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

pragma solidity >=0.7.0 <0.9.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` 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/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity >=0.7.0 <0.9.0;


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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

// File: contract-dc9223ff49.sol


pragma solidity >=0.7.0 <0.9.0;



 contract RerollPass is ERC721, ERC721URIStorage, Ownable{

   
  address _owner;

  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;
  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.0 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 5;

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




    constructor() ERC721("Reroll Pass", "Reroll") {
         _owner = msg.sender;
    }


     modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }
     
  
  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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


     function totalSupply() public view returns (uint256) {
    return supply.current();
  }

    function _baseURI() internal pure override returns (string memory) {
        return "https://reroll.wtf/nft/";
    }

      function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  

    function safeMint(address to, uint256 tokenId, string memory uri)
        public
        onlyOwner
    {
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

   

    // The following functions are overrides required by Solidity.

   

    function _burn(uint256 tokenId) internal override  (ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

      function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }


    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }


  function walletOfOwner(address owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function withdraw() public onlyOwner {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

608060405260405180602001604052806000815250600a90805190602001906200002b929190620002a3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000079929190620002a3565b506000600d55612710600e556005600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000cd57600080fd5b506040518060400160405280600b81526020017f5265726f6c6c20506173730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5265726f6c6c0000000000000000000000000000000000000000000000000000815250816000908051906020019062000152929190620002a3565b5080600190805190602001906200016b929190620002a3565b5050506200018e62000182620001d560201b60201c565b620001dd60201b60201c565b33600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003b8565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b19062000353565b90600052602060002090601f016020900481019282620002d5576000855562000321565b82601f10620002f057805160ff191683800117855562000321565b8280016001018555821562000321579182015b828111156200032057825182559160200191906001019062000303565b5b50905062000330919062000334565b5090565b5b808211156200034f57600081600090555060010162000335565b5090565b600060028204905060018216806200036c57607f821691505b6020821081141562000383576200038262000389565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c3880620003c86000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b071401b116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063b071401b146106b0578063b88d4fde146106d9578063c87b56dd14610702578063cd279c7c1461073f5761020f565b806394354fd0116100e757806394354fd0146105ea57806395d89b4114610615578063a0712d6814610640578063a22cb4651461065c578063a45ba8e7146106855761020f565b806370a0823114610542578063715018a61461057f5780637ec4a659146105965780638da5cb5b146105bf5761020f565b80633ccfd60b1161019b578063518302271161016a57806351830227146104595780635503a0e8146104845780635c975abb146104af57806362b99ad4146104da5780636352211e146105055761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612a4d565b61084b565b604051610248919061300d565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190613028565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612af0565b6109bf565b6040516102b09190612f84565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612971565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b604051610304919061328a565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612aa7565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612a20565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b604051610381919061328a565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061285b565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec919061285b565b610c63565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906127ee565b610c83565b6040516104279190612feb565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612af0565b610db0565b005b34801561046557600080fd5b5061046e610dc2565b60405161047b919061300d565b60405180910390f35b34801561049057600080fd5b50610499610dd5565b6040516104a69190613028565b60405180910390f35b3480156104bb57600080fd5b506104c4610e63565b6040516104d1919061300d565b60405180910390f35b3480156104e657600080fd5b506104ef610e76565b6040516104fc9190613028565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612af0565b610f04565b6040516105399190612f84565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906127ee565b610fb6565b604051610576919061328a565b60405180910390f35b34801561058b57600080fd5b5061059461106e565b005b3480156105a257600080fd5b506105bd60048036038101906105b89190612aa7565b611082565b005b3480156105cb57600080fd5b506105d46110a4565b6040516105e19190612f84565b60405180910390f35b3480156105f657600080fd5b506105ff6110ce565b60405161060c919061328a565b60405180910390f35b34801561062157600080fd5b5061062a6110d4565b6040516106379190613028565b60405180910390f35b61065a60048036038101906106559190612af0565b611166565b005b34801561066857600080fd5b50610683600480360381019061067e9190612931565b6112bf565b005b34801561069157600080fd5b5061069a6112d5565b6040516106a79190613028565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612af0565b611363565b005b3480156106e557600080fd5b5061070060048036038101906106fb91906128ae565b611375565b005b34801561070e57600080fd5b5061072960048036038101906107249190612af0565b6113d7565b6040516107369190613028565b60405180910390f35b34801561074b57600080fd5b50610766600480360381019061076191906129b1565b6113e9565b005b34801561077457600080fd5b5061077d61140a565b60405161078a919061328a565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612a20565b611410565b005b3480156107c857600080fd5b506107e360048036038101906107de919061281b565b611435565b6040516107f0919061300d565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612b1d565b6114c9565b005b34801561082e57600080fd5b50610849600480360381019061084491906127ee565b61158b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092657506109258261160f565b5b9050919050565b60606000805461093c9061357e565b80601f01602080910402602001604051908101604052809291908181526020018280546109689061357e565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611679565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061320a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa06116c4565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac96116c4565b611435565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061316a565b60405180910390fd5b610b1883836116cc565b505050565b600d5481565b610b2b611785565b80600b9080519060200190610b41929190612602565b5050565b610b4d611785565b80601060006101000a81548160ff02191690831515021790555050565b6000610b766009611803565b905090565b610b8c610b866116c4565b82611811565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061324a565b60405180910390fd5b610bd68383836118a6565b505050565b610be3611785565b6000610bed6110a4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c1090612f6f565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e83838360405180602001604052806000815250611375565b505050565b60606000610c9083610fb6565b905060008167ffffffffffffffff811115610cae57610cad613717565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600e548211155b15610da4576000610d0983610f04565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d905782848381518110610d7557610d746136e8565b5b6020026020010181815250508180610d8c906135e1565b9250505b8280610d9b906135e1565b93505050610ce8565b82945050505050919050565b610db8611785565b80600d8190555050565b601060019054906101000a900460ff1681565b600b8054610de29061357e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e9061357e565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a8054610e839061357e565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf9061357e565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa4906131ea565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061312a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611076611785565b6110806000611b0d565b565b61108a611785565b80600a90805190602001906110a0929190612602565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600180546110e39061357e565b80601f016020809104026020016040519081016040528092919081815260200182805461110f9061357e565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b806000811180156111795750600f548111155b6111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906130ca565b60405180910390fd5b600e54816111c66009611803565b6111d091906133b3565b1115611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061322a565b60405180910390fd5b601060009054906101000a900460ff1615611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906131ca565b60405180910390fd5b81600d5461126f919061343a565b3410156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061326a565b60405180910390fd5b6112bb3383611bd3565b5050565b6112d16112ca6116c4565b8383611c13565b5050565b600c80546112e29061357e565b80601f016020809104026020016040519081016040528092919081815260200182805461130e9061357e565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b505050505081565b61136b611785565b80600f8190555050565b6113866113806116c4565b83611811565b6113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061324a565b60405180910390fd5b6113d184848484611d80565b50505050565b60606113e282611ddc565b9050919050565b6113f1611785565b6113fb8383611eef565b6114058282611f0d565b505050565b600e5481565b611418611785565b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156114dc5750600f548111155b61151b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611512906130ca565b60405180910390fd5b600e54816115296009611803565b61153391906133b3565b1115611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b9061322a565b60405180910390fd5b61157c611785565b6115868284611bd3565b505050565b611593611785565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061306a565b60405180910390fd5b61160c81611b0d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61168281611f81565b6116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906131ea565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661173f83610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61178d6116c4565b73ffffffffffffffffffffffffffffffffffffffff166117ab6110a4565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f8906131aa565b60405180910390fd5b565b600081600001549050919050565b60008061181d83610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061185f575061185e8185611435565b5b8061189d57508373ffffffffffffffffffffffffffffffffffffffff16611885846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c682610f04565b73ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119139061308a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906130ea565b60405180910390fd5b611997838383611fed565b6119a26000826116cc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f29190613494565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4991906133b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b08838383611ff2565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611c0e57611be86009611ff7565b611bfb83611bf66009611803565b611eef565b8080611c06906135e1565b915050611bd6565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c799061310a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d73919061300d565b60405180910390a3505050565b611d8b8484846118a6565b611d978484848461200d565b611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9061304a565b60405180910390fd5b50505050565b6060611de782611679565b6000600660008481526020019081526020016000208054611e079061357e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e339061357e565b8015611e805780601f10611e5557610100808354040283529160200191611e80565b820191906000526020600020905b815481529060010190602001808311611e6357829003601f168201915b505050505090506000611e916121a4565b9050600081511415611ea7578192505050611eea565b600082511115611edc578082604051602001611ec4929190612f4b565b60405160208183030381529060405292505050611eea565b611ee5846121e1565b925050505b919050565b611f09828260405180602001604052806000815250612249565b5050565b611f1682611f81565b611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c9061314a565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611f7c929190612602565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600061202e8473ffffffffffffffffffffffffffffffffffffffff166122a4565b15612197578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120576116c4565b8786866040518563ffffffff1660e01b81526004016120799493929190612f9f565b602060405180830381600087803b15801561209357600080fd5b505af19250505080156120c457506040513d601f19601f820116820180604052508101906120c19190612a7a565b60015b612147573d80600081146120f4576040519150601f19603f3d011682016040523d82523d6000602084013e6120f9565b606091505b5060008151141561213f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121369061304a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061219c565b600190505b949350505050565b60606040518060400160405280601781526020017f68747470733a2f2f7265726f6c6c2e7774662f6e66742f000000000000000000815250905090565b60606121ec82611679565b60006121f66121a4565b905060008151116122165760405180602001604052806000815250612241565b80612220846122c7565b604051602001612231929190612f4b565b6040516020818303038152906040525b915050919050565b6122538383612428565b612260600084848461200d565b61229f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122969061304a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060600082141561230f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612423565b600082905060005b6000821461234157808061232a906135e1565b915050600a8261233a9190613409565b9150612317565b60008167ffffffffffffffff81111561235d5761235c613717565b5b6040519080825280601f01601f19166020018201604052801561238f5781602001600182028036833780820191505090505b5090505b6000851461241c576001826123a89190613494565b9150600a856123b7919061362a565b60306123c391906133b3565b60f81b8183815181106123d9576123d86136e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124159190613409565b9450612393565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f9061318a565b60405180910390fd5b6124a181611f81565b156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906130aa565b60405180910390fd5b6124ed60008383611fed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253d91906133b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125fe60008383611ff2565b5050565b82805461260e9061357e565b90600052602060002090601f0160209004810192826126305760008555612677565b82601f1061264957805160ff1916838001178555612677565b82800160010185558215612677579182015b8281111561267657825182559160200191906001019061265b565b5b5090506126849190612688565b5090565b5b808211156126a1576000816000905550600101612689565b5090565b60006126b86126b3846132ca565b6132a5565b9050828152602081018484840111156126d4576126d361374b565b5b6126df84828561353c565b509392505050565b60006126fa6126f5846132fb565b6132a5565b9050828152602081018484840111156127165761271561374b565b5b61272184828561353c565b509392505050565b60008135905061273881613ba6565b92915050565b60008135905061274d81613bbd565b92915050565b60008135905061276281613bd4565b92915050565b60008151905061277781613bd4565b92915050565b600082601f83011261279257612791613746565b5b81356127a28482602086016126a5565b91505092915050565b600082601f8301126127c0576127bf613746565b5b81356127d08482602086016126e7565b91505092915050565b6000813590506127e881613beb565b92915050565b60006020828403121561280457612803613755565b5b600061281284828501612729565b91505092915050565b6000806040838503121561283257612831613755565b5b600061284085828601612729565b925050602061285185828601612729565b9150509250929050565b60008060006060848603121561287457612873613755565b5b600061288286828701612729565b935050602061289386828701612729565b92505060406128a4868287016127d9565b9150509250925092565b600080600080608085870312156128c8576128c7613755565b5b60006128d687828801612729565b94505060206128e787828801612729565b93505060406128f8878288016127d9565b925050606085013567ffffffffffffffff81111561291957612918613750565b5b6129258782880161277d565b91505092959194509250565b6000806040838503121561294857612947613755565b5b600061295685828601612729565b92505060206129678582860161273e565b9150509250929050565b6000806040838503121561298857612987613755565b5b600061299685828601612729565b92505060206129a7858286016127d9565b9150509250929050565b6000806000606084860312156129ca576129c9613755565b5b60006129d886828701612729565b93505060206129e9868287016127d9565b925050604084013567ffffffffffffffff811115612a0a57612a09613750565b5b612a16868287016127ab565b9150509250925092565b600060208284031215612a3657612a35613755565b5b6000612a448482850161273e565b91505092915050565b600060208284031215612a6357612a62613755565b5b6000612a7184828501612753565b91505092915050565b600060208284031215612a9057612a8f613755565b5b6000612a9e84828501612768565b91505092915050565b600060208284031215612abd57612abc613755565b5b600082013567ffffffffffffffff811115612adb57612ada613750565b5b612ae7848285016127ab565b91505092915050565b600060208284031215612b0657612b05613755565b5b6000612b14848285016127d9565b91505092915050565b60008060408385031215612b3457612b33613755565b5b6000612b42858286016127d9565b9250506020612b5385828601612729565b9150509250929050565b6000612b698383612f2d565b60208301905092915050565b612b7e816134c8565b82525050565b6000612b8f8261333c565b612b99818561336a565b9350612ba48361332c565b8060005b83811015612bd5578151612bbc8882612b5d565b9750612bc78361335d565b925050600181019050612ba8565b5085935050505092915050565b612beb816134da565b82525050565b6000612bfc82613347565b612c06818561337b565b9350612c1681856020860161354b565b612c1f8161375a565b840191505092915050565b6000612c3582613352565b612c3f8185613397565b9350612c4f81856020860161354b565b612c588161375a565b840191505092915050565b6000612c6e82613352565b612c7881856133a8565b9350612c8881856020860161354b565b80840191505092915050565b6000612ca1603283613397565b9150612cac8261376b565b604082019050919050565b6000612cc4602683613397565b9150612ccf826137ba565b604082019050919050565b6000612ce7602583613397565b9150612cf282613809565b604082019050919050565b6000612d0a601c83613397565b9150612d1582613858565b602082019050919050565b6000612d2d601483613397565b9150612d3882613881565b602082019050919050565b6000612d50602483613397565b9150612d5b826138aa565b604082019050919050565b6000612d73601983613397565b9150612d7e826138f9565b602082019050919050565b6000612d96602983613397565b9150612da182613922565b604082019050919050565b6000612db9602e83613397565b9150612dc482613971565b604082019050919050565b6000612ddc603e83613397565b9150612de7826139c0565b604082019050919050565b6000612dff602083613397565b9150612e0a82613a0f565b602082019050919050565b6000612e22602083613397565b9150612e2d82613a38565b602082019050919050565b6000612e45601783613397565b9150612e5082613a61565b602082019050919050565b6000612e68601883613397565b9150612e7382613a8a565b602082019050919050565b6000612e8b602183613397565b9150612e9682613ab3565b604082019050919050565b6000612eae60008361338c565b9150612eb982613b02565b600082019050919050565b6000612ed1601483613397565b9150612edc82613b05565b602082019050919050565b6000612ef4602e83613397565b9150612eff82613b2e565b604082019050919050565b6000612f17601383613397565b9150612f2282613b7d565b602082019050919050565b612f3681613532565b82525050565b612f4581613532565b82525050565b6000612f578285612c63565b9150612f638284612c63565b91508190509392505050565b6000612f7a82612ea1565b9150819050919050565b6000602082019050612f996000830184612b75565b92915050565b6000608082019050612fb46000830187612b75565b612fc16020830186612b75565b612fce6040830185612f3c565b8181036060830152612fe08184612bf1565b905095945050505050565b600060208201905081810360008301526130058184612b84565b905092915050565b60006020820190506130226000830184612be2565b92915050565b600060208201905081810360008301526130428184612c2a565b905092915050565b6000602082019050818103600083015261306381612c94565b9050919050565b6000602082019050818103600083015261308381612cb7565b9050919050565b600060208201905081810360008301526130a381612cda565b9050919050565b600060208201905081810360008301526130c381612cfd565b9050919050565b600060208201905081810360008301526130e381612d20565b9050919050565b6000602082019050818103600083015261310381612d43565b9050919050565b6000602082019050818103600083015261312381612d66565b9050919050565b6000602082019050818103600083015261314381612d89565b9050919050565b6000602082019050818103600083015261316381612dac565b9050919050565b6000602082019050818103600083015261318381612dcf565b9050919050565b600060208201905081810360008301526131a381612df2565b9050919050565b600060208201905081810360008301526131c381612e15565b9050919050565b600060208201905081810360008301526131e381612e38565b9050919050565b6000602082019050818103600083015261320381612e5b565b9050919050565b6000602082019050818103600083015261322381612e7e565b9050919050565b6000602082019050818103600083015261324381612ec4565b9050919050565b6000602082019050818103600083015261326381612ee7565b9050919050565b6000602082019050818103600083015261328381612f0a565b9050919050565b600060208201905061329f6000830184612f3c565b92915050565b60006132af6132c0565b90506132bb82826135b0565b919050565b6000604051905090565b600067ffffffffffffffff8211156132e5576132e4613717565b5b6132ee8261375a565b9050602081019050919050565b600067ffffffffffffffff82111561331657613315613717565b5b61331f8261375a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133be82613532565b91506133c983613532565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133fe576133fd61365b565b5b828201905092915050565b600061341482613532565b915061341f83613532565b92508261342f5761342e61368a565b5b828204905092915050565b600061344582613532565b915061345083613532565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134895761348861365b565b5b828202905092915050565b600061349f82613532565b91506134aa83613532565b9250828210156134bd576134bc61365b565b5b828203905092915050565b60006134d382613512565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561356957808201518184015260208101905061354e565b83811115613578576000848401525b50505050565b6000600282049050600182168061359657607f821691505b602082108114156135aa576135a96136b9565b5b50919050565b6135b98261375a565b810181811067ffffffffffffffff821117156135d8576135d7613717565b5b80604052505050565b60006135ec82613532565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361f5761361e61365b565b5b600182019050919050565b600061363582613532565b915061364083613532565b9250826136505761364f61368a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613baf816134c8565b8114613bba57600080fd5b50565b613bc6816134da565b8114613bd157600080fd5b50565b613bdd816134e6565b8114613be857600080fd5b50565b613bf481613532565b8114613bff57600080fd5b5056fea2646970667358221220322e931cc754957ba5933bd2e28ef648de6330bf5c70704068ad825e09afc9a664736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b071401b116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063b071401b146106b0578063b88d4fde146106d9578063c87b56dd14610702578063cd279c7c1461073f5761020f565b806394354fd0116100e757806394354fd0146105ea57806395d89b4114610615578063a0712d6814610640578063a22cb4651461065c578063a45ba8e7146106855761020f565b806370a0823114610542578063715018a61461057f5780637ec4a659146105965780638da5cb5b146105bf5761020f565b80633ccfd60b1161019b578063518302271161016a57806351830227146104595780635503a0e8146104845780635c975abb146104af57806362b99ad4146104da5780636352211e146105055761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612a4d565b61084b565b604051610248919061300d565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190613028565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612af0565b6109bf565b6040516102b09190612f84565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612971565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b604051610304919061328a565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612aa7565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612a20565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b604051610381919061328a565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061285b565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec919061285b565b610c63565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906127ee565b610c83565b6040516104279190612feb565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612af0565b610db0565b005b34801561046557600080fd5b5061046e610dc2565b60405161047b919061300d565b60405180910390f35b34801561049057600080fd5b50610499610dd5565b6040516104a69190613028565b60405180910390f35b3480156104bb57600080fd5b506104c4610e63565b6040516104d1919061300d565b60405180910390f35b3480156104e657600080fd5b506104ef610e76565b6040516104fc9190613028565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612af0565b610f04565b6040516105399190612f84565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906127ee565b610fb6565b604051610576919061328a565b60405180910390f35b34801561058b57600080fd5b5061059461106e565b005b3480156105a257600080fd5b506105bd60048036038101906105b89190612aa7565b611082565b005b3480156105cb57600080fd5b506105d46110a4565b6040516105e19190612f84565b60405180910390f35b3480156105f657600080fd5b506105ff6110ce565b60405161060c919061328a565b60405180910390f35b34801561062157600080fd5b5061062a6110d4565b6040516106379190613028565b60405180910390f35b61065a60048036038101906106559190612af0565b611166565b005b34801561066857600080fd5b50610683600480360381019061067e9190612931565b6112bf565b005b34801561069157600080fd5b5061069a6112d5565b6040516106a79190613028565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612af0565b611363565b005b3480156106e557600080fd5b5061070060048036038101906106fb91906128ae565b611375565b005b34801561070e57600080fd5b5061072960048036038101906107249190612af0565b6113d7565b6040516107369190613028565b60405180910390f35b34801561074b57600080fd5b50610766600480360381019061076191906129b1565b6113e9565b005b34801561077457600080fd5b5061077d61140a565b60405161078a919061328a565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612a20565b611410565b005b3480156107c857600080fd5b506107e360048036038101906107de919061281b565b611435565b6040516107f0919061300d565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612b1d565b6114c9565b005b34801561082e57600080fd5b50610849600480360381019061084491906127ee565b61158b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092657506109258261160f565b5b9050919050565b60606000805461093c9061357e565b80601f01602080910402602001604051908101604052809291908181526020018280546109689061357e565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611679565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061320a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa06116c4565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac96116c4565b611435565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061316a565b60405180910390fd5b610b1883836116cc565b505050565b600d5481565b610b2b611785565b80600b9080519060200190610b41929190612602565b5050565b610b4d611785565b80601060006101000a81548160ff02191690831515021790555050565b6000610b766009611803565b905090565b610b8c610b866116c4565b82611811565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061324a565b60405180910390fd5b610bd68383836118a6565b505050565b610be3611785565b6000610bed6110a4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c1090612f6f565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e83838360405180602001604052806000815250611375565b505050565b60606000610c9083610fb6565b905060008167ffffffffffffffff811115610cae57610cad613717565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600e548211155b15610da4576000610d0983610f04565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d905782848381518110610d7557610d746136e8565b5b6020026020010181815250508180610d8c906135e1565b9250505b8280610d9b906135e1565b93505050610ce8565b82945050505050919050565b610db8611785565b80600d8190555050565b601060019054906101000a900460ff1681565b600b8054610de29061357e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e9061357e565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a8054610e839061357e565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf9061357e565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa4906131ea565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061312a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611076611785565b6110806000611b0d565b565b61108a611785565b80600a90805190602001906110a0929190612602565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600180546110e39061357e565b80601f016020809104026020016040519081016040528092919081815260200182805461110f9061357e565b801561115c5780601f106111315761010080835404028352916020019161115c565b820191906000526020600020905b81548152906001019060200180831161113f57829003601f168201915b5050505050905090565b806000811180156111795750600f548111155b6111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906130ca565b60405180910390fd5b600e54816111c66009611803565b6111d091906133b3565b1115611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061322a565b60405180910390fd5b601060009054906101000a900460ff1615611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906131ca565b60405180910390fd5b81600d5461126f919061343a565b3410156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a89061326a565b60405180910390fd5b6112bb3383611bd3565b5050565b6112d16112ca6116c4565b8383611c13565b5050565b600c80546112e29061357e565b80601f016020809104026020016040519081016040528092919081815260200182805461130e9061357e565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b505050505081565b61136b611785565b80600f8190555050565b6113866113806116c4565b83611811565b6113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061324a565b60405180910390fd5b6113d184848484611d80565b50505050565b60606113e282611ddc565b9050919050565b6113f1611785565b6113fb8383611eef565b6114058282611f0d565b505050565b600e5481565b611418611785565b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156114dc5750600f548111155b61151b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611512906130ca565b60405180910390fd5b600e54816115296009611803565b61153391906133b3565b1115611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b9061322a565b60405180910390fd5b61157c611785565b6115868284611bd3565b505050565b611593611785565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061306a565b60405180910390fd5b61160c81611b0d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61168281611f81565b6116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906131ea565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661173f83610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61178d6116c4565b73ffffffffffffffffffffffffffffffffffffffff166117ab6110a4565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f8906131aa565b60405180910390fd5b565b600081600001549050919050565b60008061181d83610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061185f575061185e8185611435565b5b8061189d57508373ffffffffffffffffffffffffffffffffffffffff16611885846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c682610f04565b73ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119139061308a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906130ea565b60405180910390fd5b611997838383611fed565b6119a26000826116cc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f29190613494565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4991906133b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b08838383611ff2565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611c0e57611be86009611ff7565b611bfb83611bf66009611803565b611eef565b8080611c06906135e1565b915050611bd6565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c799061310a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d73919061300d565b60405180910390a3505050565b611d8b8484846118a6565b611d978484848461200d565b611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd9061304a565b60405180910390fd5b50505050565b6060611de782611679565b6000600660008481526020019081526020016000208054611e079061357e565b80601f0160208091040260200160405190810160405280929190818152602001828054611e339061357e565b8015611e805780601f10611e5557610100808354040283529160200191611e80565b820191906000526020600020905b815481529060010190602001808311611e6357829003601f168201915b505050505090506000611e916121a4565b9050600081511415611ea7578192505050611eea565b600082511115611edc578082604051602001611ec4929190612f4b565b60405160208183030381529060405292505050611eea565b611ee5846121e1565b925050505b919050565b611f09828260405180602001604052806000815250612249565b5050565b611f1682611f81565b611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c9061314a565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611f7c929190612602565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6001816000016000828254019250508190555050565b600061202e8473ffffffffffffffffffffffffffffffffffffffff166122a4565b15612197578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120576116c4565b8786866040518563ffffffff1660e01b81526004016120799493929190612f9f565b602060405180830381600087803b15801561209357600080fd5b505af19250505080156120c457506040513d601f19601f820116820180604052508101906120c19190612a7a565b60015b612147573d80600081146120f4576040519150601f19603f3d011682016040523d82523d6000602084013e6120f9565b606091505b5060008151141561213f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121369061304a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061219c565b600190505b949350505050565b60606040518060400160405280601781526020017f68747470733a2f2f7265726f6c6c2e7774662f6e66742f000000000000000000815250905090565b60606121ec82611679565b60006121f66121a4565b905060008151116122165760405180602001604052806000815250612241565b80612220846122c7565b604051602001612231929190612f4b565b6040516020818303038152906040525b915050919050565b6122538383612428565b612260600084848461200d565b61229f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122969061304a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060600082141561230f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612423565b600082905060005b6000821461234157808061232a906135e1565b915050600a8261233a9190613409565b9150612317565b60008167ffffffffffffffff81111561235d5761235c613717565b5b6040519080825280601f01601f19166020018201604052801561238f5781602001600182028036833780820191505090505b5090505b6000851461241c576001826123a89190613494565b9150600a856123b7919061362a565b60306123c391906133b3565b60f81b8183815181106123d9576123d86136e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124159190613409565b9450612393565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f9061318a565b60405180910390fd5b6124a181611f81565b156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906130aa565b60405180910390fd5b6124ed60008383611fed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253d91906133b3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125fe60008383611ff2565b5050565b82805461260e9061357e565b90600052602060002090601f0160209004810192826126305760008555612677565b82601f1061264957805160ff1916838001178555612677565b82800160010185558215612677579182015b8281111561267657825182559160200191906001019061265b565b5b5090506126849190612688565b5090565b5b808211156126a1576000816000905550600101612689565b5090565b60006126b86126b3846132ca565b6132a5565b9050828152602081018484840111156126d4576126d361374b565b5b6126df84828561353c565b509392505050565b60006126fa6126f5846132fb565b6132a5565b9050828152602081018484840111156127165761271561374b565b5b61272184828561353c565b509392505050565b60008135905061273881613ba6565b92915050565b60008135905061274d81613bbd565b92915050565b60008135905061276281613bd4565b92915050565b60008151905061277781613bd4565b92915050565b600082601f83011261279257612791613746565b5b81356127a28482602086016126a5565b91505092915050565b600082601f8301126127c0576127bf613746565b5b81356127d08482602086016126e7565b91505092915050565b6000813590506127e881613beb565b92915050565b60006020828403121561280457612803613755565b5b600061281284828501612729565b91505092915050565b6000806040838503121561283257612831613755565b5b600061284085828601612729565b925050602061285185828601612729565b9150509250929050565b60008060006060848603121561287457612873613755565b5b600061288286828701612729565b935050602061289386828701612729565b92505060406128a4868287016127d9565b9150509250925092565b600080600080608085870312156128c8576128c7613755565b5b60006128d687828801612729565b94505060206128e787828801612729565b93505060406128f8878288016127d9565b925050606085013567ffffffffffffffff81111561291957612918613750565b5b6129258782880161277d565b91505092959194509250565b6000806040838503121561294857612947613755565b5b600061295685828601612729565b92505060206129678582860161273e565b9150509250929050565b6000806040838503121561298857612987613755565b5b600061299685828601612729565b92505060206129a7858286016127d9565b9150509250929050565b6000806000606084860312156129ca576129c9613755565b5b60006129d886828701612729565b93505060206129e9868287016127d9565b925050604084013567ffffffffffffffff811115612a0a57612a09613750565b5b612a16868287016127ab565b9150509250925092565b600060208284031215612a3657612a35613755565b5b6000612a448482850161273e565b91505092915050565b600060208284031215612a6357612a62613755565b5b6000612a7184828501612753565b91505092915050565b600060208284031215612a9057612a8f613755565b5b6000612a9e84828501612768565b91505092915050565b600060208284031215612abd57612abc613755565b5b600082013567ffffffffffffffff811115612adb57612ada613750565b5b612ae7848285016127ab565b91505092915050565b600060208284031215612b0657612b05613755565b5b6000612b14848285016127d9565b91505092915050565b60008060408385031215612b3457612b33613755565b5b6000612b42858286016127d9565b9250506020612b5385828601612729565b9150509250929050565b6000612b698383612f2d565b60208301905092915050565b612b7e816134c8565b82525050565b6000612b8f8261333c565b612b99818561336a565b9350612ba48361332c565b8060005b83811015612bd5578151612bbc8882612b5d565b9750612bc78361335d565b925050600181019050612ba8565b5085935050505092915050565b612beb816134da565b82525050565b6000612bfc82613347565b612c06818561337b565b9350612c1681856020860161354b565b612c1f8161375a565b840191505092915050565b6000612c3582613352565b612c3f8185613397565b9350612c4f81856020860161354b565b612c588161375a565b840191505092915050565b6000612c6e82613352565b612c7881856133a8565b9350612c8881856020860161354b565b80840191505092915050565b6000612ca1603283613397565b9150612cac8261376b565b604082019050919050565b6000612cc4602683613397565b9150612ccf826137ba565b604082019050919050565b6000612ce7602583613397565b9150612cf282613809565b604082019050919050565b6000612d0a601c83613397565b9150612d1582613858565b602082019050919050565b6000612d2d601483613397565b9150612d3882613881565b602082019050919050565b6000612d50602483613397565b9150612d5b826138aa565b604082019050919050565b6000612d73601983613397565b9150612d7e826138f9565b602082019050919050565b6000612d96602983613397565b9150612da182613922565b604082019050919050565b6000612db9602e83613397565b9150612dc482613971565b604082019050919050565b6000612ddc603e83613397565b9150612de7826139c0565b604082019050919050565b6000612dff602083613397565b9150612e0a82613a0f565b602082019050919050565b6000612e22602083613397565b9150612e2d82613a38565b602082019050919050565b6000612e45601783613397565b9150612e5082613a61565b602082019050919050565b6000612e68601883613397565b9150612e7382613a8a565b602082019050919050565b6000612e8b602183613397565b9150612e9682613ab3565b604082019050919050565b6000612eae60008361338c565b9150612eb982613b02565b600082019050919050565b6000612ed1601483613397565b9150612edc82613b05565b602082019050919050565b6000612ef4602e83613397565b9150612eff82613b2e565b604082019050919050565b6000612f17601383613397565b9150612f2282613b7d565b602082019050919050565b612f3681613532565b82525050565b612f4581613532565b82525050565b6000612f578285612c63565b9150612f638284612c63565b91508190509392505050565b6000612f7a82612ea1565b9150819050919050565b6000602082019050612f996000830184612b75565b92915050565b6000608082019050612fb46000830187612b75565b612fc16020830186612b75565b612fce6040830185612f3c565b8181036060830152612fe08184612bf1565b905095945050505050565b600060208201905081810360008301526130058184612b84565b905092915050565b60006020820190506130226000830184612be2565b92915050565b600060208201905081810360008301526130428184612c2a565b905092915050565b6000602082019050818103600083015261306381612c94565b9050919050565b6000602082019050818103600083015261308381612cb7565b9050919050565b600060208201905081810360008301526130a381612cda565b9050919050565b600060208201905081810360008301526130c381612cfd565b9050919050565b600060208201905081810360008301526130e381612d20565b9050919050565b6000602082019050818103600083015261310381612d43565b9050919050565b6000602082019050818103600083015261312381612d66565b9050919050565b6000602082019050818103600083015261314381612d89565b9050919050565b6000602082019050818103600083015261316381612dac565b9050919050565b6000602082019050818103600083015261318381612dcf565b9050919050565b600060208201905081810360008301526131a381612df2565b9050919050565b600060208201905081810360008301526131c381612e15565b9050919050565b600060208201905081810360008301526131e381612e38565b9050919050565b6000602082019050818103600083015261320381612e5b565b9050919050565b6000602082019050818103600083015261322381612e7e565b9050919050565b6000602082019050818103600083015261324381612ec4565b9050919050565b6000602082019050818103600083015261326381612ee7565b9050919050565b6000602082019050818103600083015261328381612f0a565b9050919050565b600060208201905061329f6000830184612f3c565b92915050565b60006132af6132c0565b90506132bb82826135b0565b919050565b6000604051905090565b600067ffffffffffffffff8211156132e5576132e4613717565b5b6132ee8261375a565b9050602081019050919050565b600067ffffffffffffffff82111561331657613315613717565b5b61331f8261375a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133be82613532565b91506133c983613532565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133fe576133fd61365b565b5b828201905092915050565b600061341482613532565b915061341f83613532565b92508261342f5761342e61368a565b5b828204905092915050565b600061344582613532565b915061345083613532565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134895761348861365b565b5b828202905092915050565b600061349f82613532565b91506134aa83613532565b9250828210156134bd576134bc61365b565b5b828203905092915050565b60006134d382613512565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561356957808201518184015260208101905061354e565b83811115613578576000848401525b50505050565b6000600282049050600182168061359657607f821691505b602082108114156135aa576135a96136b9565b5b50919050565b6135b98261375a565b810181811067ffffffffffffffff821117156135d8576135d7613717565b5b80604052505050565b60006135ec82613532565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361f5761361e61365b565b5b600182019050919050565b600061363582613532565b915061364083613532565b9250826136505761364f61368a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613baf816134c8565b8114613bba57600080fd5b50565b613bc6816134da565b8114613bd157600080fd5b50565b613bdd816134e6565b8114613be857600080fd5b50565b613bf481613532565b8114613bff57600080fd5b5056fea2646970667358221220322e931cc754957ba5933bd2e28ef648de6330bf5c70704068ad825e09afc9a664736f6c63430008070033

Deployed Bytecode Sourcemap

41677:4028:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26442:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27369:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28882:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28399:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41985:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45598:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42520:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42697:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29582:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45024:462;;;;;;;;;;;;;:::i;:::-;;29989:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44385:633;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43373:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42132:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41907:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42102:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41874:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27080:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26811:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6892:103;;;;;;;;;;;;;:::i;:::-;;45492:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6244:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42058:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27538:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42922:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29125:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41945:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43455:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30245:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43802:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43181:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42021:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42605:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29351:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44008:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7150:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26442:305;26544:4;26596:25;26581:40;;;:11;:40;;;;:105;;;;26653:33;26638:48;;;:11;:48;;;;26581:105;:158;;;;26703:36;26727:11;26703:23;:36::i;:::-;26581:158;26561:178;;26442:305;;;:::o;27369:100::-;27423:13;27456:5;27449:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27369:100;:::o;28882:171::-;28958:7;28978:23;28993:7;28978:14;:23::i;:::-;29021:15;:24;29037:7;29021:24;;;;;;;;;;;;;;;;;;;;;29014:31;;28882:171;;;:::o;28399:417::-;28480:13;28496:23;28511:7;28496:14;:23::i;:::-;28480:39;;28544:5;28538:11;;:2;:11;;;;28530:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28638:5;28622:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28647:37;28664:5;28671:12;:10;:12::i;:::-;28647:16;:37::i;:::-;28622:62;28600:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28787:21;28796:2;28800:7;28787:8;:21::i;:::-;28469:347;28399:417;;:::o;41985:31::-;;;;:::o;45598:100::-;6130:13;:11;:13::i;:::-;45682:10:::1;45670:9;:22;;;;;;;;;;;;:::i;:::-;;45598:100:::0;:::o;42520:77::-;6130:13;:11;:13::i;:::-;42585:6:::1;42576;;:15;;;;;;;;;;;;;;;;;;42520:77:::0;:::o;42697:89::-;42741:7;42764:16;:6;:14;:16::i;:::-;42757:23;;42697:89;:::o;29582:336::-;29777:41;29796:12;:10;:12::i;:::-;29810:7;29777:18;:41::i;:::-;29769:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29882:28;29892:4;29898:2;29902:7;29882:9;:28::i;:::-;29582:336;;;:::o;45024:462::-;6130:13;:11;:13::i;:::-;45308:7:::1;45329;:5;:7::i;:::-;45321:21;;45350;45321:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45307:69;;;45391:2;45383:11;;;::::0;::::1;;45061:425;45024:462::o:0;29989:185::-;30127:39;30144:4;30150:2;30154:7;30127:39;;;;;;;;;;;;:16;:39::i;:::-;29989:185;;;:::o;44385:633::-;44459:16;44487:23;44513:16;44523:5;44513:9;:16::i;:::-;44487:42;;44536:30;44583:15;44569:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44536:63;;44606:22;44631:1;44606:26;;44639:23;44675:309;44700:15;44682;:33;:64;;;;;44737:9;;44719:14;:27;;44682:64;44675:309;;;44757:25;44785:23;44793:14;44785:7;:23::i;:::-;44757:51;;44844:6;;;;;;;;;;;44823:27;;:17;:27;;;44819:131;;;44896:14;44863:13;44877:15;44863:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;44923:17;;;;;:::i;:::-;;;;44819:131;44960:16;;;;;:::i;:::-;;;;44748:236;44675:309;;;44999:13;44992:20;;;;;;44385:633;;;:::o;43373:74::-;6130:13;:11;:13::i;:::-;43436:5:::1;43429:4;:12;;;;43373:74:::0;:::o;42132:28::-;;;;;;;;;;;;;:::o;41907:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42102:25::-;;;;;;;;;;;;;:::o;41874:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27080:222::-;27152:7;27172:13;27188:7;:16;27196:7;27188:16;;;;;;;;;;;;;;;;;;;;;27172:32;;27240:1;27223:19;;:5;:19;;;;27215:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27289:5;27282:12;;;27080:222;;;:::o;26811:207::-;26883:7;26928:1;26911:19;;:5;:19;;;;26903:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26994:9;:16;27004:5;26994:16;;;;;;;;;;;;;;;;26987:23;;26811:207;;;:::o;6892:103::-;6130:13;:11;:13::i;:::-;6957:30:::1;6984:1;6957:18;:30::i;:::-;6892:103::o:0;45492:100::-;6130:13;:11;:13::i;:::-;45576:10:::1;45564:9;:22;;;;;;;;;;;;:::i;:::-;;45492:100:::0;:::o;6244:87::-;6290:7;6317:6;;;;;;;;;;;6310:13;;6244:87;:::o;42058:37::-;;;;:::o;27538:104::-;27594:13;27627:7;27620:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27538:104;:::o;42922:247::-;42987:11;42345:1;42331:11;:15;:52;;;;;42365:18;;42350:11;:33;;42331:52;42323:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42457:9;;42442:11;42423:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42415:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43016:6:::1;;;;;;;;;;;43015:7;43007:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;43085:11;43078:4;;:18;;;;:::i;:::-;43065:9;:31;;43057:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43129:34;43139:10;43151:11;43129:9;:34::i;:::-;42922:247:::0;;:::o;29125:155::-;29220:52;29239:12;:10;:12::i;:::-;29253:8;29263;29220:18;:52::i;:::-;29125:155;;:::o;41945:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43455:130::-;6130:13;:11;:13::i;:::-;43560:19:::1;43539:18;:40;;;;43455:130:::0;:::o;30245:323::-;30419:41;30438:12;:10;:12::i;:::-;30452:7;30419:18;:41::i;:::-;30411:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30522:38;30536:4;30542:2;30546:7;30555:4;30522:13;:38::i;:::-;30245:323;;;;:::o;43802:196::-;43929:13;43967:23;43982:7;43967:14;:23::i;:::-;43960:30;;43802:196;;;:::o;43181:184::-;6130:13;:11;:13::i;:::-;43298:22:::1;43308:2;43312:7;43298:9;:22::i;:::-;43331:26;43344:7;43353:3;43331:12;:26::i;:::-;43181:184:::0;;;:::o;42021:32::-;;;;:::o;42605:81::-;6130:13;:11;:13::i;:::-;42674:6:::1;42663:8;;:17;;;;;;;;;;;;;;;;;;42605:81:::0;:::o;29351:164::-;29448:4;29472:18;:25;29491:5;29472:25;;;;;;;;;;;;;;;:35;29498:8;29472:35;;;;;;;;;;;;;;;;;;;;;;;;;29465:42;;29351:164;;;;:::o;44008:155::-;44094:11;42345:1;42331:11;:15;:52;;;;;42365:18;;42350:11;:33;;42331:52;42323:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42457:9;;42442:11;42423:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42415:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6130:13:::1;:11;:13::i;:::-;44124:33:::2;44134:9;44145:11;44124:9;:33::i;:::-;44008:155:::0;;;:::o;7150:201::-;6130:13;:11;:13::i;:::-;7259:1:::1;7239:22;;:8;:22;;;;7231:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7315:28;7334:8;7315:18;:28::i;:::-;7150:201:::0;:::o;19150:157::-;19235:4;19274:25;19259:40;;;:11;:40;;;;19252:47;;19150:157;;;:::o;36857:135::-;36939:16;36947:7;36939;:16::i;:::-;36931:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36857:135;:::o;4781:98::-;4834:7;4861:10;4854:17;;4781:98;:::o;36136:174::-;36238:2;36211:15;:24;36227:7;36211:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36294:7;36290:2;36256:46;;36265:23;36280:7;36265:14;:23::i;:::-;36256:46;;;;;;;;;;;;36136:174;;:::o;6409:132::-;6484:12;:10;:12::i;:::-;6473:23;;:7;:5;:7::i;:::-;:23;;;6465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6409:132::o;986:114::-;1051:7;1078;:14;;;1071:21;;986:114;;;:::o;32369:264::-;32462:4;32479:13;32495:23;32510:7;32495:14;:23::i;:::-;32479:39;;32548:5;32537:16;;:7;:16;;;:52;;;;32557:32;32574:5;32581:7;32557:16;:32::i;:::-;32537:52;:87;;;;32617:7;32593:31;;:20;32605:7;32593:11;:20::i;:::-;:31;;;32537:87;32529:96;;;32369:264;;;;:::o;35392:625::-;35551:4;35524:31;;:23;35539:7;35524:14;:23::i;:::-;:31;;;35516:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35630:1;35616:16;;:2;:16;;;;35608:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35686:39;35707:4;35713:2;35717:7;35686:20;:39::i;:::-;35790:29;35807:1;35811:7;35790:8;:29::i;:::-;35851:1;35832:9;:15;35842:4;35832:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35880:1;35863:9;:13;35873:2;35863:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35911:2;35892:7;:16;35900:7;35892:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35950:7;35946:2;35931:27;;35940:4;35931:27;;;;;;;;;;;;35971:38;35991:4;35997:2;36001:7;35971:19;:38::i;:::-;35392:625;;;:::o;7511:191::-;7585:16;7604:6;;;;;;;;;;;7585:25;;7630:8;7621:6;;:17;;;;;;;;;;;;;;;;;;7685:8;7654:40;;7675:8;7654:40;;;;;;;;;;;;7574:128;7511:191;:::o;44173:204::-;44253:9;44248:124;44272:11;44268:1;:15;44248:124;;;44299:18;:6;:16;:18::i;:::-;44326:38;44336:9;44347:16;:6;:14;:16::i;:::-;44326:9;:38::i;:::-;44285:3;;;;;:::i;:::-;;;;44248:124;;;;44173:204;;:::o;36453:315::-;36608:8;36599:17;;:5;:17;;;;36591:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36695:8;36657:18;:25;36676:5;36657:25;;;;;;;;;;;;;;;:35;36683:8;36657:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36741:8;36719:41;;36734:5;36719:41;;;36751:8;36719:41;;;;;;:::i;:::-;;;;;;;;36453:315;;;:::o;31449:313::-;31605:28;31615:4;31621:2;31625:7;31605:9;:28::i;:::-;31652:47;31675:4;31681:2;31685:7;31694:4;31652:22;:47::i;:::-;31644:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31449:313;;;;:::o;40164:624::-;40237:13;40263:23;40278:7;40263:14;:23::i;:::-;40299;40325:10;:19;40336:7;40325:19;;;;;;;;;;;40299:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40355:18;40376:10;:8;:10::i;:::-;40355:31;;40484:1;40468:4;40462:18;:23;40458:72;;;40509:9;40502:16;;;;;;40458:72;40660:1;40640:9;40634:23;:27;40630:108;;;40709:4;40715:9;40692:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40678:48;;;;;;40630:108;40757:23;40772:7;40757:14;:23::i;:::-;40750:30;;;;40164:624;;;;:::o;32975:110::-;33051:26;33061:2;33065:7;33051:26;;;;;;;;;;;;:9;:26::i;:::-;32975:110;;:::o;40944:217::-;41044:16;41052:7;41044;:16::i;:::-;41036:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41144:9;41122:10;:19;41133:7;41122:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;40944:217;;:::o;32075:127::-;32140:4;32192:1;32164:30;;:7;:16;32172:7;32164:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32157:37;;32075:127;;;:::o;38981:126::-;;;;:::o;39492:125::-;;;;:::o;1108:127::-;1215:1;1197:7;:14;;;:19;;;;;;;;;;;1108:127;:::o;37556:853::-;37710:4;37731:15;:2;:13;;;:15::i;:::-;37727:675;;;37783:2;37767:36;;;37804:12;:10;:12::i;:::-;37818:4;37824:7;37833:4;37767:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37763:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38025:1;38008:6;:13;:18;38004:328;;;38051:60;;;;;;;;;;:::i;:::-;;;;;;;;38004:328;38282:6;38276:13;38267:6;38263:2;38259:15;38252:38;37763:584;37899:41;;;37889:51;;;:6;:51;;;;37882:58;;;;;37727:675;38386:4;38379:11;;37556:853;;;;;;;:::o;42794:118::-;42846:13;42872:32;;;;;;;;;;;;;;;;;;;42794:118;:::o;27713:281::-;27786:13;27812:23;27827:7;27812:14;:23::i;:::-;27848:21;27872:10;:8;:10::i;:::-;27848:34;;27924:1;27906:7;27900:21;:25;:86;;;;;;;;;;;;;;;;;27952:7;27961:18;:7;:16;:18::i;:::-;27935:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27900:86;27893:93;;;27713:281;;;:::o;33312:319::-;33441:18;33447:2;33451:7;33441:5;:18::i;:::-;33492:53;33523:1;33527:2;33531:7;33540:4;33492:22;:53::i;:::-;33470:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33312:319;;;:::o;8956:326::-;9016:4;9273:1;9251:7;:19;;;:23;9244:30;;8956:326;;;:::o;2021:723::-;2077:13;2307:1;2298:5;:10;2294:53;;;2325:10;;;;;;;;;;;;;;;;;;;;;2294:53;2357:12;2372:5;2357:20;;2388:14;2413:78;2428:1;2420:4;:9;2413:78;;2446:8;;;;;:::i;:::-;;;;2477:2;2469:10;;;;;:::i;:::-;;;2413:78;;;2501:19;2533:6;2523:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2501:39;;2551:154;2567:1;2558:5;:10;2551:154;;2595:1;2585:11;;;;;:::i;:::-;;;2662:2;2654:5;:10;;;;:::i;:::-;2641:2;:24;;;;:::i;:::-;2628:39;;2611:6;2618;2611:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2691:2;2682:11;;;;;:::i;:::-;;;2551:154;;;2729:6;2715:21;;;;;2021:723;;;;:::o;33967:439::-;34061:1;34047:16;;:2;:16;;;;34039:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34120:16;34128:7;34120;:16::i;:::-;34119:17;34111:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34182:45;34211:1;34215:2;34219:7;34182:20;:45::i;:::-;34257:1;34240:9;:13;34250:2;34240:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34288:2;34269:7;:16;34277:7;34269:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34333:7;34329:2;34308:33;;34325:1;34308:33;;;;;;;;;;;;34354:44;34382:1;34386:2;34390:7;34354:19;:44::i;:::-;33967:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:799::-;5707:6;5715;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;6181:2;6170:9;6166:18;6153:32;6212:18;6204:6;6201:30;6198:117;;;6234:79;;:::i;:::-;6198:117;6339:63;6394:7;6385:6;6374:9;6370:22;6339:63;:::i;:::-;6329:73;;6124:288;5620:799;;;;;:::o;6425:323::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:50;6723:7;6714:6;6703:9;6699:22;6681:50;:::i;:::-;6671:60;;6627:114;6425:323;;;;:::o;6754:327::-;6812:6;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:52;7056:7;7047:6;7036:9;7032:22;7012:52;:::i;:::-;7002:62;;6958:116;6754:327;;;;:::o;7087:349::-;7156:6;7205:2;7193:9;7184:7;7180:23;7176:32;7173:119;;;7211:79;;:::i;:::-;7173:119;7331:1;7356:63;7411:7;7402:6;7391:9;7387:22;7356:63;:::i;:::-;7346:73;;7302:127;7087:349;;;;:::o;7442:509::-;7511:6;7560:2;7548:9;7539:7;7535:23;7531:32;7528:119;;;7566:79;;:::i;:::-;7528:119;7714:1;7703:9;7699:17;7686:31;7744:18;7736:6;7733:30;7730:117;;;7766:79;;:::i;:::-;7730:117;7871:63;7926:7;7917:6;7906:9;7902:22;7871:63;:::i;:::-;7861:73;;7657:287;7442:509;;;;:::o;7957:329::-;8016:6;8065:2;8053:9;8044:7;8040:23;8036:32;8033:119;;;8071:79;;:::i;:::-;8033:119;8191:1;8216:53;8261:7;8252:6;8241:9;8237:22;8216:53;:::i;:::-;8206:63;;8162:117;7957:329;;;;:::o;8292:474::-;8360:6;8368;8417:2;8405:9;8396:7;8392:23;8388:32;8385:119;;;8423:79;;:::i;:::-;8385:119;8543:1;8568:53;8613:7;8604:6;8593:9;8589:22;8568:53;:::i;:::-;8558:63;;8514:117;8670:2;8696:53;8741:7;8732:6;8721:9;8717:22;8696:53;:::i;:::-;8686:63;;8641:118;8292:474;;;;;:::o;8772:179::-;8841:10;8862:46;8904:3;8896:6;8862:46;:::i;:::-;8940:4;8935:3;8931:14;8917:28;;8772:179;;;;:::o;8957:118::-;9044:24;9062:5;9044:24;:::i;:::-;9039:3;9032:37;8957:118;;:::o;9111:732::-;9230:3;9259:54;9307:5;9259:54;:::i;:::-;9329:86;9408:6;9403:3;9329:86;:::i;:::-;9322:93;;9439:56;9489:5;9439:56;:::i;:::-;9518:7;9549:1;9534:284;9559:6;9556:1;9553:13;9534:284;;;9635:6;9629:13;9662:63;9721:3;9706:13;9662:63;:::i;:::-;9655:70;;9748:60;9801:6;9748:60;:::i;:::-;9738:70;;9594:224;9581:1;9578;9574:9;9569:14;;9534:284;;;9538:14;9834:3;9827:10;;9235:608;;;9111:732;;;;:::o;9849:109::-;9930:21;9945:5;9930:21;:::i;:::-;9925:3;9918:34;9849:109;;:::o;9964:360::-;10050:3;10078:38;10110:5;10078:38;:::i;:::-;10132:70;10195:6;10190:3;10132:70;:::i;:::-;10125:77;;10211:52;10256:6;10251:3;10244:4;10237:5;10233:16;10211:52;:::i;:::-;10288:29;10310:6;10288:29;:::i;:::-;10283:3;10279:39;10272:46;;10054:270;9964:360;;;;:::o;10330:364::-;10418:3;10446:39;10479:5;10446:39;:::i;:::-;10501:71;10565:6;10560:3;10501:71;:::i;:::-;10494:78;;10581:52;10626:6;10621:3;10614:4;10607:5;10603:16;10581:52;:::i;:::-;10658:29;10680:6;10658:29;:::i;:::-;10653:3;10649:39;10642:46;;10422:272;10330:364;;;;:::o;10700:377::-;10806:3;10834:39;10867:5;10834:39;:::i;:::-;10889:89;10971:6;10966:3;10889:89;:::i;:::-;10882:96;;10987:52;11032:6;11027:3;11020:4;11013:5;11009:16;10987:52;:::i;:::-;11064:6;11059:3;11055:16;11048:23;;10810:267;10700:377;;;;:::o;11083:366::-;11225:3;11246:67;11310:2;11305:3;11246:67;:::i;:::-;11239:74;;11322:93;11411:3;11322:93;:::i;:::-;11440:2;11435:3;11431:12;11424:19;;11083:366;;;:::o;11455:::-;11597:3;11618:67;11682:2;11677:3;11618:67;:::i;:::-;11611:74;;11694:93;11783:3;11694:93;:::i;:::-;11812:2;11807:3;11803:12;11796:19;;11455:366;;;:::o;11827:::-;11969:3;11990:67;12054:2;12049:3;11990:67;:::i;:::-;11983:74;;12066:93;12155:3;12066:93;:::i;:::-;12184:2;12179:3;12175:12;12168:19;;11827:366;;;:::o;12199:::-;12341:3;12362:67;12426:2;12421:3;12362:67;:::i;:::-;12355:74;;12438:93;12527:3;12438:93;:::i;:::-;12556:2;12551:3;12547:12;12540:19;;12199:366;;;:::o;12571:::-;12713:3;12734:67;12798:2;12793:3;12734:67;:::i;:::-;12727:74;;12810:93;12899:3;12810:93;:::i;:::-;12928:2;12923:3;12919:12;12912:19;;12571:366;;;:::o;12943:::-;13085:3;13106:67;13170:2;13165:3;13106:67;:::i;:::-;13099:74;;13182:93;13271:3;13182:93;:::i;:::-;13300:2;13295:3;13291:12;13284:19;;12943:366;;;:::o;13315:::-;13457:3;13478:67;13542:2;13537:3;13478:67;:::i;:::-;13471:74;;13554:93;13643:3;13554:93;:::i;:::-;13672:2;13667:3;13663:12;13656:19;;13315:366;;;:::o;13687:::-;13829:3;13850:67;13914:2;13909:3;13850:67;:::i;:::-;13843:74;;13926:93;14015:3;13926:93;:::i;:::-;14044:2;14039:3;14035:12;14028:19;;13687:366;;;:::o;14059:::-;14201:3;14222:67;14286:2;14281:3;14222:67;:::i;:::-;14215:74;;14298:93;14387:3;14298:93;:::i;:::-;14416:2;14411:3;14407:12;14400:19;;14059:366;;;:::o;14431:::-;14573:3;14594:67;14658:2;14653:3;14594:67;:::i;:::-;14587:74;;14670:93;14759:3;14670:93;:::i;:::-;14788:2;14783:3;14779:12;14772:19;;14431:366;;;:::o;14803:::-;14945:3;14966:67;15030:2;15025:3;14966:67;:::i;:::-;14959:74;;15042:93;15131:3;15042:93;:::i;:::-;15160:2;15155:3;15151:12;15144:19;;14803:366;;;:::o;15175:::-;15317:3;15338:67;15402:2;15397:3;15338:67;:::i;:::-;15331:74;;15414:93;15503:3;15414:93;:::i;:::-;15532:2;15527:3;15523:12;15516:19;;15175:366;;;:::o;15547:::-;15689:3;15710:67;15774:2;15769:3;15710:67;:::i;:::-;15703:74;;15786:93;15875:3;15786:93;:::i;:::-;15904:2;15899:3;15895:12;15888:19;;15547:366;;;:::o;15919:::-;16061:3;16082:67;16146:2;16141:3;16082:67;:::i;:::-;16075:74;;16158:93;16247:3;16158:93;:::i;:::-;16276:2;16271:3;16267:12;16260:19;;15919:366;;;:::o;16291:::-;16433:3;16454:67;16518:2;16513:3;16454:67;:::i;:::-;16447:74;;16530:93;16619:3;16530:93;:::i;:::-;16648:2;16643:3;16639:12;16632:19;;16291:366;;;:::o;16663:398::-;16822:3;16843:83;16924:1;16919:3;16843:83;:::i;:::-;16836:90;;16935:93;17024:3;16935:93;:::i;:::-;17053:1;17048:3;17044:11;17037:18;;16663:398;;;:::o;17067:366::-;17209:3;17230:67;17294:2;17289:3;17230:67;:::i;:::-;17223:74;;17306:93;17395:3;17306:93;:::i;:::-;17424:2;17419:3;17415:12;17408:19;;17067:366;;;:::o;17439:::-;17581:3;17602:67;17666:2;17661:3;17602:67;:::i;:::-;17595:74;;17678:93;17767:3;17678:93;:::i;:::-;17796:2;17791:3;17787:12;17780:19;;17439:366;;;:::o;17811:::-;17953:3;17974:67;18038:2;18033:3;17974:67;:::i;:::-;17967:74;;18050:93;18139:3;18050:93;:::i;:::-;18168:2;18163:3;18159:12;18152:19;;17811:366;;;:::o;18183:108::-;18260:24;18278:5;18260:24;:::i;:::-;18255:3;18248:37;18183:108;;:::o;18297:118::-;18384:24;18402:5;18384:24;:::i;:::-;18379:3;18372:37;18297:118;;:::o;18421:435::-;18601:3;18623:95;18714:3;18705:6;18623:95;:::i;:::-;18616:102;;18735:95;18826:3;18817:6;18735:95;:::i;:::-;18728:102;;18847:3;18840:10;;18421:435;;;;;:::o;18862:379::-;19046:3;19068:147;19211:3;19068:147;:::i;:::-;19061:154;;19232:3;19225:10;;18862:379;;;:::o;19247:222::-;19340:4;19378:2;19367:9;19363:18;19355:26;;19391:71;19459:1;19448:9;19444:17;19435:6;19391:71;:::i;:::-;19247:222;;;;:::o;19475:640::-;19670:4;19708:3;19697:9;19693:19;19685:27;;19722:71;19790:1;19779:9;19775:17;19766:6;19722:71;:::i;:::-;19803:72;19871:2;19860:9;19856:18;19847:6;19803:72;:::i;:::-;19885;19953:2;19942:9;19938:18;19929:6;19885:72;:::i;:::-;20004:9;19998:4;19994:20;19989:2;19978:9;19974:18;19967:48;20032:76;20103:4;20094:6;20032:76;:::i;:::-;20024:84;;19475:640;;;;;;;:::o;20121:373::-;20264:4;20302:2;20291:9;20287:18;20279:26;;20351:9;20345:4;20341:20;20337:1;20326:9;20322:17;20315:47;20379:108;20482:4;20473:6;20379:108;:::i;:::-;20371:116;;20121:373;;;;:::o;20500:210::-;20587:4;20625:2;20614:9;20610:18;20602:26;;20638:65;20700:1;20689:9;20685:17;20676:6;20638:65;:::i;:::-;20500:210;;;;:::o;20716:313::-;20829:4;20867:2;20856:9;20852:18;20844:26;;20916:9;20910:4;20906:20;20902:1;20891:9;20887:17;20880:47;20944:78;21017:4;21008:6;20944:78;:::i;:::-;20936:86;;20716:313;;;;:::o;21035:419::-;21201:4;21239:2;21228:9;21224:18;21216:26;;21288:9;21282:4;21278:20;21274:1;21263:9;21259:17;21252:47;21316:131;21442:4;21316:131;:::i;:::-;21308:139;;21035:419;;;:::o;21460:::-;21626:4;21664:2;21653:9;21649:18;21641:26;;21713:9;21707:4;21703:20;21699:1;21688:9;21684:17;21677:47;21741:131;21867:4;21741:131;:::i;:::-;21733:139;;21460:419;;;:::o;21885:::-;22051:4;22089:2;22078:9;22074:18;22066:26;;22138:9;22132:4;22128:20;22124:1;22113:9;22109:17;22102:47;22166:131;22292:4;22166:131;:::i;:::-;22158:139;;21885:419;;;:::o;22310:::-;22476:4;22514:2;22503:9;22499:18;22491:26;;22563:9;22557:4;22553:20;22549:1;22538:9;22534:17;22527:47;22591:131;22717:4;22591:131;:::i;:::-;22583:139;;22310:419;;;:::o;22735:::-;22901:4;22939:2;22928:9;22924:18;22916:26;;22988:9;22982:4;22978:20;22974:1;22963:9;22959:17;22952:47;23016:131;23142:4;23016:131;:::i;:::-;23008:139;;22735:419;;;:::o;23160:::-;23326:4;23364:2;23353:9;23349:18;23341:26;;23413:9;23407:4;23403:20;23399:1;23388:9;23384:17;23377:47;23441:131;23567:4;23441:131;:::i;:::-;23433:139;;23160:419;;;:::o;23585:::-;23751:4;23789:2;23778:9;23774:18;23766:26;;23838:9;23832:4;23828:20;23824:1;23813:9;23809:17;23802:47;23866:131;23992:4;23866:131;:::i;:::-;23858:139;;23585:419;;;:::o;24010:::-;24176:4;24214:2;24203:9;24199:18;24191:26;;24263:9;24257:4;24253:20;24249:1;24238:9;24234:17;24227:47;24291:131;24417:4;24291:131;:::i;:::-;24283:139;;24010:419;;;:::o;24435:::-;24601:4;24639:2;24628:9;24624:18;24616:26;;24688:9;24682:4;24678:20;24674:1;24663:9;24659:17;24652:47;24716:131;24842:4;24716:131;:::i;:::-;24708:139;;24435:419;;;:::o;24860:::-;25026:4;25064:2;25053:9;25049:18;25041:26;;25113:9;25107:4;25103:20;25099:1;25088:9;25084:17;25077:47;25141:131;25267:4;25141:131;:::i;:::-;25133:139;;24860:419;;;:::o;25285:::-;25451:4;25489:2;25478:9;25474:18;25466:26;;25538:9;25532:4;25528:20;25524:1;25513:9;25509:17;25502:47;25566:131;25692:4;25566:131;:::i;:::-;25558:139;;25285:419;;;:::o;25710:::-;25876:4;25914:2;25903:9;25899:18;25891:26;;25963:9;25957:4;25953:20;25949:1;25938:9;25934:17;25927:47;25991:131;26117:4;25991:131;:::i;:::-;25983:139;;25710:419;;;:::o;26135:::-;26301:4;26339:2;26328:9;26324:18;26316:26;;26388:9;26382:4;26378:20;26374:1;26363:9;26359:17;26352:47;26416:131;26542:4;26416:131;:::i;:::-;26408:139;;26135:419;;;:::o;26560:::-;26726:4;26764:2;26753:9;26749:18;26741:26;;26813:9;26807:4;26803:20;26799:1;26788:9;26784:17;26777:47;26841:131;26967:4;26841:131;:::i;:::-;26833:139;;26560:419;;;:::o;26985:::-;27151:4;27189:2;27178:9;27174:18;27166:26;;27238:9;27232:4;27228:20;27224:1;27213:9;27209:17;27202:47;27266:131;27392:4;27266:131;:::i;:::-;27258:139;;26985:419;;;:::o;27410:::-;27576:4;27614:2;27603:9;27599:18;27591:26;;27663:9;27657:4;27653:20;27649:1;27638:9;27634:17;27627:47;27691:131;27817:4;27691:131;:::i;:::-;27683:139;;27410:419;;;:::o;27835:::-;28001:4;28039:2;28028:9;28024:18;28016:26;;28088:9;28082:4;28078:20;28074:1;28063:9;28059:17;28052:47;28116:131;28242:4;28116:131;:::i;:::-;28108:139;;27835:419;;;:::o;28260:::-;28426:4;28464:2;28453:9;28449:18;28441:26;;28513:9;28507:4;28503:20;28499:1;28488:9;28484:17;28477:47;28541:131;28667:4;28541:131;:::i;:::-;28533:139;;28260:419;;;:::o;28685:222::-;28778:4;28816:2;28805:9;28801:18;28793:26;;28829:71;28897:1;28886:9;28882:17;28873:6;28829:71;:::i;:::-;28685:222;;;;:::o;28913:129::-;28947:6;28974:20;;:::i;:::-;28964:30;;29003:33;29031:4;29023:6;29003:33;:::i;:::-;28913:129;;;:::o;29048:75::-;29081:6;29114:2;29108:9;29098:19;;29048:75;:::o;29129:307::-;29190:4;29280:18;29272:6;29269:30;29266:56;;;29302:18;;:::i;:::-;29266:56;29340:29;29362:6;29340:29;:::i;:::-;29332:37;;29424:4;29418;29414:15;29406:23;;29129:307;;;:::o;29442:308::-;29504:4;29594:18;29586:6;29583:30;29580:56;;;29616:18;;:::i;:::-;29580:56;29654:29;29676:6;29654:29;:::i;:::-;29646:37;;29738:4;29732;29728:15;29720:23;;29442:308;;;:::o;29756:132::-;29823:4;29846:3;29838:11;;29876:4;29871:3;29867:14;29859:22;;29756:132;;;:::o;29894:114::-;29961:6;29995:5;29989:12;29979:22;;29894:114;;;:::o;30014:98::-;30065:6;30099:5;30093:12;30083:22;;30014:98;;;:::o;30118:99::-;30170:6;30204:5;30198:12;30188:22;;30118:99;;;:::o;30223:113::-;30293:4;30325;30320:3;30316:14;30308:22;;30223:113;;;:::o;30342:184::-;30441:11;30475:6;30470:3;30463:19;30515:4;30510:3;30506:14;30491:29;;30342:184;;;;:::o;30532:168::-;30615:11;30649:6;30644:3;30637:19;30689:4;30684:3;30680:14;30665:29;;30532:168;;;;:::o;30706:147::-;30807:11;30844:3;30829:18;;30706:147;;;;:::o;30859:169::-;30943:11;30977:6;30972:3;30965:19;31017:4;31012:3;31008:14;30993:29;;30859:169;;;;:::o;31034:148::-;31136:11;31173:3;31158:18;;31034:148;;;;:::o;31188:305::-;31228:3;31247:20;31265:1;31247:20;:::i;:::-;31242:25;;31281:20;31299:1;31281:20;:::i;:::-;31276:25;;31435:1;31367:66;31363:74;31360:1;31357:81;31354:107;;;31441:18;;:::i;:::-;31354:107;31485:1;31482;31478:9;31471:16;;31188:305;;;;:::o;31499:185::-;31539:1;31556:20;31574:1;31556:20;:::i;:::-;31551:25;;31590:20;31608:1;31590:20;:::i;:::-;31585:25;;31629:1;31619:35;;31634:18;;:::i;:::-;31619:35;31676:1;31673;31669:9;31664:14;;31499:185;;;;:::o;31690:348::-;31730:7;31753:20;31771:1;31753:20;:::i;:::-;31748:25;;31787:20;31805:1;31787:20;:::i;:::-;31782:25;;31975:1;31907:66;31903:74;31900:1;31897:81;31892:1;31885:9;31878:17;31874:105;31871:131;;;31982:18;;:::i;:::-;31871:131;32030:1;32027;32023:9;32012:20;;31690:348;;;;:::o;32044:191::-;32084:4;32104:20;32122:1;32104:20;:::i;:::-;32099:25;;32138:20;32156:1;32138:20;:::i;:::-;32133:25;;32177:1;32174;32171:8;32168:34;;;32182:18;;:::i;:::-;32168:34;32227:1;32224;32220:9;32212:17;;32044:191;;;;:::o;32241:96::-;32278:7;32307:24;32325:5;32307:24;:::i;:::-;32296:35;;32241:96;;;:::o;32343:90::-;32377:7;32420:5;32413:13;32406:21;32395:32;;32343:90;;;:::o;32439:149::-;32475:7;32515:66;32508:5;32504:78;32493:89;;32439:149;;;:::o;32594:126::-;32631:7;32671:42;32664:5;32660:54;32649:65;;32594:126;;;:::o;32726:77::-;32763:7;32792:5;32781:16;;32726:77;;;:::o;32809:154::-;32893:6;32888:3;32883;32870:30;32955:1;32946:6;32941:3;32937:16;32930:27;32809:154;;;:::o;32969:307::-;33037:1;33047:113;33061:6;33058:1;33055:13;33047:113;;;33146:1;33141:3;33137:11;33131:18;33127:1;33122:3;33118:11;33111:39;33083:2;33080:1;33076:10;33071:15;;33047:113;;;33178:6;33175:1;33172:13;33169:101;;;33258:1;33249:6;33244:3;33240:16;33233:27;33169:101;33018:258;32969:307;;;:::o;33282:320::-;33326:6;33363:1;33357:4;33353:12;33343:22;;33410:1;33404:4;33400:12;33431:18;33421:81;;33487:4;33479:6;33475:17;33465:27;;33421:81;33549:2;33541:6;33538:14;33518:18;33515:38;33512:84;;;33568:18;;:::i;:::-;33512:84;33333:269;33282:320;;;:::o;33608:281::-;33691:27;33713:4;33691:27;:::i;:::-;33683:6;33679:40;33821:6;33809:10;33806:22;33785:18;33773:10;33770:34;33767:62;33764:88;;;33832:18;;:::i;:::-;33764:88;33872:10;33868:2;33861:22;33651:238;33608:281;;:::o;33895:233::-;33934:3;33957:24;33975:5;33957:24;:::i;:::-;33948:33;;34003:66;33996:5;33993:77;33990:103;;;34073:18;;:::i;:::-;33990:103;34120:1;34113:5;34109:13;34102:20;;33895:233;;;:::o;34134:176::-;34166:1;34183:20;34201:1;34183:20;:::i;:::-;34178:25;;34217:20;34235:1;34217:20;:::i;:::-;34212:25;;34256:1;34246:35;;34261:18;;:::i;:::-;34246:35;34302:1;34299;34295:9;34290:14;;34134:176;;;;:::o;34316:180::-;34364:77;34361:1;34354:88;34461:4;34458:1;34451:15;34485:4;34482:1;34475:15;34502:180;34550:77;34547:1;34540:88;34647:4;34644:1;34637:15;34671:4;34668:1;34661:15;34688:180;34736:77;34733:1;34726:88;34833:4;34830:1;34823:15;34857:4;34854:1;34847:15;34874:180;34922:77;34919:1;34912:88;35019:4;35016:1;35009:15;35043:4;35040:1;35033:15;35060:180;35108:77;35105:1;35098:88;35205:4;35202:1;35195:15;35229:4;35226:1;35219:15;35246:117;35355:1;35352;35345:12;35369:117;35478:1;35475;35468:12;35492:117;35601:1;35598;35591:12;35615:117;35724:1;35721;35714:12;35738:102;35779:6;35830:2;35826:7;35821:2;35814:5;35810:14;35806:28;35796:38;;35738:102;;;:::o;35846:237::-;35986:34;35982:1;35974:6;35970:14;35963:58;36055:20;36050:2;36042:6;36038:15;36031:45;35846:237;:::o;36089:225::-;36229:34;36225:1;36217:6;36213:14;36206:58;36298:8;36293:2;36285:6;36281:15;36274:33;36089:225;:::o;36320:224::-;36460:34;36456:1;36448:6;36444:14;36437:58;36529:7;36524:2;36516:6;36512:15;36505:32;36320:224;:::o;36550:178::-;36690:30;36686:1;36678:6;36674:14;36667:54;36550:178;:::o;36734:170::-;36874:22;36870:1;36862:6;36858:14;36851:46;36734:170;:::o;36910:223::-;37050:34;37046:1;37038:6;37034:14;37027:58;37119:6;37114:2;37106:6;37102:15;37095:31;36910:223;:::o;37139:175::-;37279:27;37275:1;37267:6;37263:14;37256:51;37139:175;:::o;37320:228::-;37460:34;37456:1;37448:6;37444:14;37437:58;37529:11;37524:2;37516:6;37512:15;37505:36;37320:228;:::o;37554:233::-;37694:34;37690:1;37682:6;37678:14;37671:58;37763:16;37758:2;37750:6;37746:15;37739:41;37554:233;:::o;37793:249::-;37933:34;37929:1;37921:6;37917:14;37910:58;38002:32;37997:2;37989:6;37985:15;37978:57;37793:249;:::o;38048:182::-;38188:34;38184:1;38176:6;38172:14;38165:58;38048:182;:::o;38236:::-;38376:34;38372:1;38364:6;38360:14;38353:58;38236:182;:::o;38424:173::-;38564:25;38560:1;38552:6;38548:14;38541:49;38424:173;:::o;38603:174::-;38743:26;38739:1;38731:6;38727:14;38720:50;38603:174;:::o;38783:220::-;38923:34;38919:1;38911:6;38907:14;38900:58;38992:3;38987:2;38979:6;38975:15;38968:28;38783:220;:::o;39009:114::-;;:::o;39129:170::-;39269:22;39265:1;39257:6;39253:14;39246:46;39129:170;:::o;39305:233::-;39445:34;39441:1;39433:6;39429:14;39422:58;39514:16;39509:2;39501:6;39497:15;39490:41;39305:233;:::o;39544:169::-;39684:21;39680:1;39672:6;39668:14;39661:45;39544:169;:::o;39719:122::-;39792:24;39810:5;39792:24;:::i;:::-;39785:5;39782:35;39772:63;;39831:1;39828;39821:12;39772:63;39719:122;:::o;39847:116::-;39917:21;39932:5;39917:21;:::i;:::-;39910:5;39907:32;39897:60;;39953:1;39950;39943:12;39897:60;39847:116;:::o;39969:120::-;40041:23;40058:5;40041:23;:::i;:::-;40034:5;40031:34;40021:62;;40079:1;40076;40069:12;40021:62;39969:120;:::o;40095:122::-;40168:24;40186:5;40168:24;:::i;:::-;40161:5;40158:35;40148:63;;40207:1;40204;40197:12;40148:63;40095:122;:::o

Swarm Source

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