ETH Price: $3,312.66 (-3.53%)
Gas: 17 Gwei

Token

Twisted Tweaks (TT10K)
 

Overview

Max Total Supply

5,492 TT10K

Holders

1,473

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
sgniwder.eth
Balance
52 TT10K
0xd1642fcc093202f30e64d28eb8de8d0714958f8f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A family of Twisted Tweaks, deconstructed and rebuilt from the original 100. Each Twisted Tweak is completely unique, stemming from 100 characters with their own story to represent the human struggle.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TwistedTweaks

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 2021-10-21
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/TwistedTweaks.sol



/*
_____ _    _ _____ _____ _____ ___________
|_   _| |  | |_   _/  ___|_   _|  ___|  _  \
  | | | |  | | | | \ `--.  | | | |__ | | | |
  | | | |/\| | | |  `--. \ | | |  __|| | | |
  | | \  /\  /_| |_/\__/ / | | | |___| |/ /
  \_/  \/  \/ \___/\____/  \_/ \____/|___/
 _____ _    _ _____  ___   _   __ _____
|_   _| |  | |  ___|/ _ \ | | / //  ___|
  | | | |  | | |__ / /_\ \| |/ / \ `--.
  | | | |/\| |  __||  _  ||    \  `--. \
  | | \  /\  / |___| | | || |\  \/\__/ /
  \_/  \/  \/\____/\_| |_/\_| \_/\____/
  Twisted Tweaks / 2021
*/


pragma solidity ^0.8.0;



contract TwistedTweaks is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.06 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 10;
    uint256 public maxPerWallet = 100;
    
    mapping (address => uint256) private walletCap;
    mapping (address => uint256) private ogTweakPresaleList;

    bool private _isOgPresaleActive;
    bool private _isSaleActive;

    constructor(
        string memory _initBaseURI
    ) ERC721("Twisted Tweaks", "TT10K") {
        setBaseURI(_initBaseURI);
        _isOgPresaleActive = false;
        _isSaleActive = false;
    }
    
    function isOgPresaleActive() external view returns (bool) {
        return _isOgPresaleActive;
    }
    
    function isSaleActive() external view returns (bool) {
        return _isSaleActive;
    }
    
    function getTotalSupply() external view returns (uint256) {
        return totalSupply();
    }
    
    function addToOgPresaleList(address entry, uint256 claimable) external onlyOwner {
        require(entry != address(0), "NULL_ADDRESS");
        require(ogTweakPresaleList[entry] == 0, "DUPLICATE_ENTRY");

        ogTweakPresaleList[entry] = claimable;

    }

    function removeFromOgPresaleList(address entry) external onlyOwner {
        require(entry != address(0), "NULL_ADDRESS");

        ogTweakPresaleList[entry] = 0;
    }
    
    function getClaimsByAddress(address entry) public view onlyOwner returns (uint256) {
        return ogTweakPresaleList[entry];
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
     // @dev Pre-Presale Mint for OG Tweak holders
    // @param _mintAmount The tokens a user wants to purchase
    // @param _to Address to mint to
    function mintOgPresale(
        address _to,
        uint256 _mintAmount
    ) external payable {
        uint256 supply = totalSupply();
        require(_isOgPresaleActive, "Presale not active");
        require(!_isSaleActive, "Cannot mint while main sale is active");
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);
        require(ogTweakPresaleList[_to] > 0, "Wallet not on OG presale list.");
        require((ogTweakPresaleList[_to] - _mintAmount) >= 0, "OG Tweak holders can only mint 5 tweaks max in this presale");
        require(walletCap[_to] <= maxPerWallet, "Can't mint more than the wallet cap");
        require(walletCap[_to] + _mintAmount <= maxPerWallet, "Can't mint more than the wallet cap");

        ogTweakPresaleList[_to] -= _mintAmount;
        walletCap[_to] += _mintAmount;

        for(uint256 i = 1; i < _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!_isOgPresaleActive);
        require(_isSaleActive);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);
        require(msg.value >= cost * _mintAmount);
        require(walletCap[_to] <= maxPerWallet, "Can't mint more than the wallet cap");
        require(walletCap[_to] + _mintAmount <= maxPerWallet, "Can't mint more than the wallet cap");
        
        walletCap[_to] += _mintAmount;

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    // @dev Private mint function reserved for company.
    // @param _to The user receiving the tokens
    // @param _mintAmount The number of tokens to distribute
    function mintToAddress(address _to, uint256 _mintAmount) external onlyOwner {
        require(_isSaleActive, "Sale has not concluded");
        require(_mintAmount > 0, "You can only mint more than 0 tokens");

        uint256 supply = totalSupply();
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner() {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
        maxMintAmount = _newmaxMintAmount;
    }

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

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

    function flipSaleState() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }
    
    function flipOgPresaleState() public onlyOwner {
        _isOgPresaleActive = !_isOgPresaleActive;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"entry","type":"address"},{"internalType":"uint256","name":"claimable","type":"uint256"}],"name":"addToOgPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipOgPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"entry","type":"address"}],"name":"getClaimsByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOgPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOgPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToAddress","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":[{"internalType":"address","name":"entry","type":"address"}],"name":"removeFromOgPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000351565b5066d529ae9e860000600d55612710600e55600a600f5560646010553480156200007a57600080fd5b50604051620058e4380380620058e48339818101604052810190620000a091906200047f565b6040518060400160405280600e81526020017f5477697374656420547765616b730000000000000000000000000000000000008152506040518060400160405280600581526020017f545431304b00000000000000000000000000000000000000000000000000000081525081600090805190602001906200012492919062000351565b5080600190805190602001906200013d92919062000351565b5050506200016062000154620001ae60201b60201c565b620001b660201b60201c565b62000171816200027c60201b60201c565b6000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff02191690831515021790555050620006d7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028c620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b26200032760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030290620004f7565b60405180910390fd5b80600b90805190602001906200032392919062000351565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035f90620005bf565b90600052602060002090601f016020900481019282620003835760008555620003cf565b82601f106200039e57805160ff1916838001178555620003cf565b82800160010185558215620003cf579182015b82811115620003ce578251825591602001919060010190620003b1565b5b509050620003de9190620003e2565b5090565b5b80821115620003fd576000816000905550600101620003e3565b5090565b600062000418620004128462000542565b62000519565b9050828152602081018484840111156200043757620004366200068e565b5b6200044484828562000589565b509392505050565b600082601f83011262000464576200046362000689565b5b81516200047684826020860162000401565b91505092915050565b60006020828403121562000498576200049762000698565b5b600082015167ffffffffffffffff811115620004b957620004b862000693565b5b620004c7848285016200044c565b91505092915050565b6000620004df60208362000578565b9150620004ec82620006ae565b602082019050919050565b600060208201905081810360008301526200051281620004d0565b9050919050565b60006200052562000538565b9050620005338282620005f5565b919050565b6000604051905090565b600067ffffffffffffffff82111562000560576200055f6200065a565b5b6200056b826200069d565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005a95780820151818401526020810190506200058c565b83811115620005b9576000848401525b50505050565b60006002820490506001821680620005d857607f821691505b60208210811415620005ef57620005ee6200062b565b5b50919050565b62000600826200069d565b810181811067ffffffffffffffff821117156200062257620006216200065a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6151fd80620006e76000396000f3fe6080604052600436106102515760003560e01c80635f29f1a611610139578063b426a5ed116100b6578063d15f41231161007a578063d15f412314610863578063d5abeb011461088c578063d62aa1a1146108b7578063da3ef23f146108f4578063e985e9c51461091d578063f2fde38b1461095a57610251565b8063b426a5ed1461077c578063b88d4fde146107a7578063c4e41b22146107d0578063c6682862146107fb578063c87b56dd1461082657610251565b80637f00c7a6116100fd5780637f00c7a6146106bd5780638da5cb5b146106e657806395d89b4114610711578063a22cb4651461073c578063a53873c31461076557610251565b80635f29f1a6146105e55780636352211e146106015780636c0360eb1461063e57806370a0823114610669578063715018a6146106a657610251565b80632f745c59116101d2578063438b630011610196578063438b6300146104c357806344a0d68a14610500578063453c2310146105295780634f6ccce71461055457806355f804b314610591578063564566a8146105ba57610251565b80632f745c591461042057806334918dfd1461045d5780633ccfd60b1461047457806340c10f191461047e57806342842e0e1461049a57610251565b806315f48be71161021957806315f48be71461034f57806318160ddd1461037857806321ca4236146103a3578063239c70ae146103cc57806323b872dd146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613aa6565b610983565b60405161028a91906141b5565b60405180910390f35b34801561029f57600080fd5b506102a86109fd565b6040516102b591906141d0565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613b49565b610a8f565b6040516102f2919061412c565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613a66565b610b14565b005b34801561033057600080fd5b50610339610c2c565b6040516103469190614552565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613a66565b610c32565b005b34801561038457600080fd5b5061038d610de8565b60405161039a9190614552565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613a66565b610df5565b005b3480156103d857600080fd5b506103e1610f4b565b6040516103ee9190614552565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190613950565b610f51565b005b34801561042c57600080fd5b5061044760048036038101906104429190613a66565b610fb1565b6040516104549190614552565b60405180910390f35b34801561046957600080fd5b50610472611056565b005b61047c6110fe565b005b61049860048036038101906104939190613a66565b6111ba565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190613950565b6113ee565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906138e3565b61140e565b6040516104f79190614193565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613b49565b6114bc565b005b34801561053557600080fd5b5061053e611542565b60405161054b9190614552565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613b49565b611548565b6040516105889190614552565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613b00565b6115b9565b005b3480156105c657600080fd5b506105cf61164f565b6040516105dc91906141b5565b60405180910390f35b6105ff60048036038101906105fa9190613a66565b611666565b005b34801561060d57600080fd5b5061062860048036038101906106239190613b49565b611a53565b604051610635919061412c565b60405180910390f35b34801561064a57600080fd5b50610653611b05565b60405161066091906141d0565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906138e3565b611b93565b60405161069d9190614552565b60405180910390f35b3480156106b257600080fd5b506106bb611c4b565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613b49565b611cd3565b005b3480156106f257600080fd5b506106fb611d59565b604051610708919061412c565b60405180910390f35b34801561071d57600080fd5b50610726611d83565b60405161073391906141d0565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190613a26565b611e15565b005b34801561077157600080fd5b5061077a611f96565b005b34801561078857600080fd5b5061079161203e565b60405161079e91906141b5565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c991906139a3565b612055565b005b3480156107dc57600080fd5b506107e56120b7565b6040516107f29190614552565b60405180910390f35b34801561080757600080fd5b506108106120c6565b60405161081d91906141d0565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613b49565b612154565b60405161085a91906141d0565b60405180910390f35b34801561086f57600080fd5b5061088a600480360381019061088591906138e3565b6121fe565b005b34801561089857600080fd5b506108a1612332565b6040516108ae9190614552565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906138e3565b612338565b6040516108eb9190614552565b60405180910390f35b34801561090057600080fd5b5061091b60048036038101906109169190613b00565b6123fd565b005b34801561092957600080fd5b50610944600480360381019061093f9190613910565b612493565b60405161095191906141b5565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c91906138e3565b612527565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f657506109f58261261f565b5b9050919050565b606060008054610a0c90614850565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890614850565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b5050505050905090565b6000610a9a82612701565b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090614432565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1f82611a53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906144b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610baf61276d565b73ffffffffffffffffffffffffffffffffffffffff161480610bde5750610bdd81610bd861276d565b612493565b5b610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c14906143b2565b60405180910390fd5b610c278383612775565b505050565b600d5481565b610c3a61276d565b73ffffffffffffffffffffffffffffffffffffffff16610c58611d59565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590614452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906141f2565b60405180910390fd5b6000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790614352565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600880549050905090565b610dfd61276d565b73ffffffffffffffffffffffffffffffffffffffff16610e1b611d59565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614452565b60405180910390fd5b601360019054906101000a900460ff16610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614372565b60405180910390fd5b60008111610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906142b2565b60405180910390fd5b6000610f0d610de8565b90506000600190505b828111610f4557610f32848284610f2d9190614685565b61282e565b8080610f3d906148b3565b915050610f16565b50505050565b600f5481565b610f62610f5c61276d565b8261284c565b610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f98906144d2565b60405180910390fd5b610fac83838361292a565b505050565b6000610fbc83611b93565b8210610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614212565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61105e61276d565b73ffffffffffffffffffffffffffffffffffffffff1661107c611d59565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990614452565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61110661276d565b73ffffffffffffffffffffffffffffffffffffffff16611124611d59565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614452565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506111b857600080fd5b565b60006111c4610de8565b9050601360009054906101000a900460ff16156111e057600080fd5b601360019054906101000a900460ff166111f957600080fd5b6000821161120657600080fd5b600f5482111561121557600080fd5b600e5482826112249190614685565b111561122f57600080fd5b81600d5461123d919061470c565b34101561124957600080fd5b601054601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614532565b60405180910390fd5b60105482601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461131b9190614685565b111561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390614532565b60405180910390fd5b81601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ab9190614685565b925050819055506000600190505b8281116113e8576113d58482846113d09190614685565b61282e565b80806113e0906148b3565b9150506113b9565b50505050565b61140983838360405180602001604052806000815250612055565b505050565b6060600061141b83611b93565b905060008167ffffffffffffffff81111561143957611438614a18565b5b6040519080825280602002602001820160405280156114675781602001602082028036833780820191505090505b50905060005b828110156114b15761147f8582610fb1565b828281518110611492576114916149e9565b5b60200260200101818152505080806114a9906148b3565b91505061146d565b508092505050919050565b6114c461276d565b73ffffffffffffffffffffffffffffffffffffffff166114e2611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90614452565b60405180910390fd5b80600d8190555050565b60105481565b6000611552610de8565b8210611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a906144f2565b60405180910390fd5b600882815481106115a7576115a66149e9565b5b90600052602060002001549050919050565b6115c161276d565b73ffffffffffffffffffffffffffffffffffffffff166115df611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614452565b60405180910390fd5b80600b908051906020019061164b9291906136f7565b5050565b6000601360019054906101000a900460ff16905090565b6000611670610de8565b9050601360009054906101000a900460ff166116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b890614312565b60405180910390fd5b601360019054906101000a900460ff1615611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890614272565b60405180910390fd5b6000821161171e57600080fd5b600f5482111561172d57600080fd5b600e54828261173c9190614685565b111561174757600080fd5b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614392565b60405180910390fd5b600082601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118169190614766565b1015611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614512565b60405180910390fd5b601054601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290614532565b60405180910390fd5b60105482601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119299190614685565b111561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190614532565b60405180910390fd5b81601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b99190614766565b9250508190555081601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a0f9190614685565b925050819055506000600190505b82811015611a4d57611a3a848284611a359190614685565b61282e565b8080611a45906148b3565b915050611a1d565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af3906143f2565b60405180910390fd5b80915050919050565b600b8054611b1290614850565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3e90614850565b8015611b8b5780601f10611b6057610100808354040283529160200191611b8b565b820191906000526020600020905b815481529060010190602001808311611b6e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb906143d2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c5361276d565b73ffffffffffffffffffffffffffffffffffffffff16611c71611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90614452565b60405180910390fd5b611cd16000612b86565b565b611cdb61276d565b73ffffffffffffffffffffffffffffffffffffffff16611cf9611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690614452565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611d9290614850565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbe90614850565b8015611e0b5780601f10611de057610100808354040283529160200191611e0b565b820191906000526020600020905b815481529060010190602001808311611dee57829003601f168201915b5050505050905090565b611e1d61276d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906142f2565b60405180910390fd5b8060056000611e9861276d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4561276d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f8a91906141b5565b60405180910390a35050565b611f9e61276d565b73ffffffffffffffffffffffffffffffffffffffff16611fbc611d59565b73ffffffffffffffffffffffffffffffffffffffff1614612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200990614452565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6000601360009054906101000a900460ff16905090565b61206661206061276d565b8361284c565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c906144d2565b60405180910390fd5b6120b184848484612c4c565b50505050565b60006120c1610de8565b905090565b600c80546120d390614850565b80601f01602080910402602001604051908101604052809291908181526020018280546120ff90614850565b801561214c5780601f106121215761010080835404028352916020019161214c565b820191906000526020600020905b81548152906001019060200180831161212f57829003601f168201915b505050505081565b606061215f82612701565b61219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614492565b60405180910390fd5b60006121a8612ca8565b905060008151116121c857604051806020016040528060008152506121f6565b806121d284612d3a565b600c6040516020016121e6939291906140fb565b6040516020818303038152906040525b915050919050565b61220661276d565b73ffffffffffffffffffffffffffffffffffffffff16612224611d59565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906141f2565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600e5481565b600061234261276d565b73ffffffffffffffffffffffffffffffffffffffff16612360611d59565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614452565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61240561276d565b73ffffffffffffffffffffffffffffffffffffffff16612423611d59565b73ffffffffffffffffffffffffffffffffffffffff1614612479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247090614452565b60405180910390fd5b80600c908051906020019061248f9291906136f7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61252f61276d565b73ffffffffffffffffffffffffffffffffffffffff1661254d611d59565b73ffffffffffffffffffffffffffffffffffffffff16146125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a90614452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90614252565b60405180910390fd5b61261c81612b86565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126fa57506126f982612e9b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127e883611a53565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612848828260405180602001604052806000815250612f05565b5050565b600061285782612701565b612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90614332565b60405180910390fd5b60006128a183611a53565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291057508373ffffffffffffffffffffffffffffffffffffffff166128f884610a8f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061292157506129208185612493565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661294a82611a53565b73ffffffffffffffffffffffffffffffffffffffff16146129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790614472565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a07906142d2565b60405180910390fd5b612a1b838383612f60565b612a26600082612775565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a769190614766565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612acd9190614685565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c5784848461292a565b612c6384848484613074565b612ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9990614232565b60405180910390fd5b50505050565b6060600b8054612cb790614850565b80601f0160208091040260200160405190810160405280929190818152602001828054612ce390614850565b8015612d305780601f10612d0557610100808354040283529160200191612d30565b820191906000526020600020905b815481529060010190602001808311612d1357829003601f168201915b5050505050905090565b60606000821415612d82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e96565b600082905060005b60008214612db4578080612d9d906148b3565b915050600a82612dad91906146db565b9150612d8a565b60008167ffffffffffffffff811115612dd057612dcf614a18565b5b6040519080825280601f01601f191660200182016040528015612e025781602001600182028036833780820191505090505b5090505b60008514612e8f57600182612e1b9190614766565b9150600a85612e2a91906148fc565b6030612e369190614685565b60f81b818381518110612e4c57612e4b6149e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e8891906146db565b9450612e06565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f0f838361320b565b612f1c6000848484613074565b612f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5290614232565b60405180910390fd5b505050565b612f6b8383836133d9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fae57612fa9816133de565b612fed565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fec57612feb8382613427565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130305761302b81613594565b61306f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461306e5761306d8282613665565b5b5b505050565b60006130958473ffffffffffffffffffffffffffffffffffffffff166136e4565b156131fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130be61276d565b8786866040518563ffffffff1660e01b81526004016130e09493929190614147565b602060405180830381600087803b1580156130fa57600080fd5b505af192505050801561312b57506040513d601f19601f820116820180604052508101906131289190613ad3565b60015b6131ae573d806000811461315b576040519150601f19603f3d011682016040523d82523d6000602084013e613160565b606091505b506000815114156131a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319d90614232565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613203565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327290614412565b60405180910390fd5b61328481612701565b156132c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bb90614292565b60405180910390fd5b6132d060008383612f60565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614685565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161343484611b93565b61343e9190614766565b9050600060076000848152602001908152602001600020549050818114613523576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135a89190614766565b90506000600960008481526020019081526020016000205490506000600883815481106135d8576135d76149e9565b5b9060005260206000200154905080600883815481106135fa576135f96149e9565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613649576136486149ba565b5b6001900381819060005260206000200160009055905550505050565b600061367083611b93565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461370390614850565b90600052602060002090601f016020900481019282613725576000855561376c565b82601f1061373e57805160ff191683800117855561376c565b8280016001018555821561376c579182015b8281111561376b578251825591602001919060010190613750565b5b509050613779919061377d565b5090565b5b8082111561379657600081600090555060010161377e565b5090565b60006137ad6137a884614592565b61456d565b9050828152602081018484840111156137c9576137c8614a4c565b5b6137d484828561480e565b509392505050565b60006137ef6137ea846145c3565b61456d565b90508281526020810184848401111561380b5761380a614a4c565b5b61381684828561480e565b509392505050565b60008135905061382d8161516b565b92915050565b60008135905061384281615182565b92915050565b60008135905061385781615199565b92915050565b60008151905061386c81615199565b92915050565b600082601f83011261388757613886614a47565b5b813561389784826020860161379a565b91505092915050565b600082601f8301126138b5576138b4614a47565b5b81356138c58482602086016137dc565b91505092915050565b6000813590506138dd816151b0565b92915050565b6000602082840312156138f9576138f8614a56565b5b60006139078482850161381e565b91505092915050565b6000806040838503121561392757613926614a56565b5b60006139358582860161381e565b92505060206139468582860161381e565b9150509250929050565b60008060006060848603121561396957613968614a56565b5b60006139778682870161381e565b93505060206139888682870161381e565b9250506040613999868287016138ce565b9150509250925092565b600080600080608085870312156139bd576139bc614a56565b5b60006139cb8782880161381e565b94505060206139dc8782880161381e565b93505060406139ed878288016138ce565b925050606085013567ffffffffffffffff811115613a0e57613a0d614a51565b5b613a1a87828801613872565b91505092959194509250565b60008060408385031215613a3d57613a3c614a56565b5b6000613a4b8582860161381e565b9250506020613a5c85828601613833565b9150509250929050565b60008060408385031215613a7d57613a7c614a56565b5b6000613a8b8582860161381e565b9250506020613a9c858286016138ce565b9150509250929050565b600060208284031215613abc57613abb614a56565b5b6000613aca84828501613848565b91505092915050565b600060208284031215613ae957613ae8614a56565b5b6000613af78482850161385d565b91505092915050565b600060208284031215613b1657613b15614a56565b5b600082013567ffffffffffffffff811115613b3457613b33614a51565b5b613b40848285016138a0565b91505092915050565b600060208284031215613b5f57613b5e614a56565b5b6000613b6d848285016138ce565b91505092915050565b6000613b8283836140dd565b60208301905092915050565b613b978161479a565b82525050565b6000613ba882614619565b613bb28185614647565b9350613bbd836145f4565b8060005b83811015613bee578151613bd58882613b76565b9750613be08361463a565b925050600181019050613bc1565b5085935050505092915050565b613c04816147ac565b82525050565b6000613c1582614624565b613c1f8185614658565b9350613c2f81856020860161481d565b613c3881614a5b565b840191505092915050565b6000613c4e8261462f565b613c588185614669565b9350613c6881856020860161481d565b613c7181614a5b565b840191505092915050565b6000613c878261462f565b613c91818561467a565b9350613ca181856020860161481d565b80840191505092915050565b60008154613cba81614850565b613cc4818661467a565b94506001821660008114613cdf5760018114613cf057613d23565b60ff19831686528186019350613d23565b613cf985614604565b60005b83811015613d1b57815481890152600182019150602081019050613cfc565b838801955050505b50505092915050565b6000613d39600c83614669565b9150613d4482614a6c565b602082019050919050565b6000613d5c602b83614669565b9150613d6782614a95565b604082019050919050565b6000613d7f603283614669565b9150613d8a82614ae4565b604082019050919050565b6000613da2602683614669565b9150613dad82614b33565b604082019050919050565b6000613dc5602583614669565b9150613dd082614b82565b604082019050919050565b6000613de8601c83614669565b9150613df382614bd1565b602082019050919050565b6000613e0b602483614669565b9150613e1682614bfa565b604082019050919050565b6000613e2e602483614669565b9150613e3982614c49565b604082019050919050565b6000613e51601983614669565b9150613e5c82614c98565b602082019050919050565b6000613e74601283614669565b9150613e7f82614cc1565b602082019050919050565b6000613e97602c83614669565b9150613ea282614cea565b604082019050919050565b6000613eba600f83614669565b9150613ec582614d39565b602082019050919050565b6000613edd601683614669565b9150613ee882614d62565b602082019050919050565b6000613f00601e83614669565b9150613f0b82614d8b565b602082019050919050565b6000613f23603883614669565b9150613f2e82614db4565b604082019050919050565b6000613f46602a83614669565b9150613f5182614e03565b604082019050919050565b6000613f69602983614669565b9150613f7482614e52565b604082019050919050565b6000613f8c602083614669565b9150613f9782614ea1565b602082019050919050565b6000613faf602c83614669565b9150613fba82614eca565b604082019050919050565b6000613fd2602083614669565b9150613fdd82614f19565b602082019050919050565b6000613ff5602983614669565b915061400082614f42565b604082019050919050565b6000614018602f83614669565b915061402382614f91565b604082019050919050565b600061403b602183614669565b915061404682614fe0565b604082019050919050565b600061405e603183614669565b91506140698261502f565b604082019050919050565b6000614081602c83614669565b915061408c8261507e565b604082019050919050565b60006140a4603b83614669565b91506140af826150cd565b604082019050919050565b60006140c7602383614669565b91506140d28261511c565b604082019050919050565b6140e681614804565b82525050565b6140f581614804565b82525050565b60006141078286613c7c565b91506141138285613c7c565b915061411f8284613cad565b9150819050949350505050565b60006020820190506141416000830184613b8e565b92915050565b600060808201905061415c6000830187613b8e565b6141696020830186613b8e565b61417660408301856140ec565b81810360608301526141888184613c0a565b905095945050505050565b600060208201905081810360008301526141ad8184613b9d565b905092915050565b60006020820190506141ca6000830184613bfb565b92915050565b600060208201905081810360008301526141ea8184613c43565b905092915050565b6000602082019050818103600083015261420b81613d2c565b9050919050565b6000602082019050818103600083015261422b81613d4f565b9050919050565b6000602082019050818103600083015261424b81613d72565b9050919050565b6000602082019050818103600083015261426b81613d95565b9050919050565b6000602082019050818103600083015261428b81613db8565b9050919050565b600060208201905081810360008301526142ab81613ddb565b9050919050565b600060208201905081810360008301526142cb81613dfe565b9050919050565b600060208201905081810360008301526142eb81613e21565b9050919050565b6000602082019050818103600083015261430b81613e44565b9050919050565b6000602082019050818103600083015261432b81613e67565b9050919050565b6000602082019050818103600083015261434b81613e8a565b9050919050565b6000602082019050818103600083015261436b81613ead565b9050919050565b6000602082019050818103600083015261438b81613ed0565b9050919050565b600060208201905081810360008301526143ab81613ef3565b9050919050565b600060208201905081810360008301526143cb81613f16565b9050919050565b600060208201905081810360008301526143eb81613f39565b9050919050565b6000602082019050818103600083015261440b81613f5c565b9050919050565b6000602082019050818103600083015261442b81613f7f565b9050919050565b6000602082019050818103600083015261444b81613fa2565b9050919050565b6000602082019050818103600083015261446b81613fc5565b9050919050565b6000602082019050818103600083015261448b81613fe8565b9050919050565b600060208201905081810360008301526144ab8161400b565b9050919050565b600060208201905081810360008301526144cb8161402e565b9050919050565b600060208201905081810360008301526144eb81614051565b9050919050565b6000602082019050818103600083015261450b81614074565b9050919050565b6000602082019050818103600083015261452b81614097565b9050919050565b6000602082019050818103600083015261454b816140ba565b9050919050565b600060208201905061456760008301846140ec565b92915050565b6000614577614588565b90506145838282614882565b919050565b6000604051905090565b600067ffffffffffffffff8211156145ad576145ac614a18565b5b6145b682614a5b565b9050602081019050919050565b600067ffffffffffffffff8211156145de576145dd614a18565b5b6145e782614a5b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061469082614804565b915061469b83614804565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146d0576146cf61492d565b5b828201905092915050565b60006146e682614804565b91506146f183614804565b9250826147015761470061495c565b5b828204905092915050565b600061471782614804565b915061472283614804565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561475b5761475a61492d565b5b828202905092915050565b600061477182614804565b915061477c83614804565b92508282101561478f5761478e61492d565b5b828203905092915050565b60006147a5826147e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561483b578082015181840152602081019050614820565b8381111561484a576000848401525b50505050565b6000600282049050600182168061486857607f821691505b6020821081141561487c5761487b61498b565b5b50919050565b61488b82614a5b565b810181811067ffffffffffffffff821117156148aa576148a9614a18565b5b80604052505050565b60006148be82614804565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148f1576148f061492d565b5b600182019050919050565b600061490782614804565b915061491283614804565b9250826149225761492161495c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74207768696c65206d61696e2073616c65206973206160008201527f6374697665000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f53616c6520686173206e6f7420636f6e636c7564656400000000000000000000600082015250565b7f57616c6c6574206e6f74206f6e204f472070726573616c65206c6973742e0000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4f4720547765616b20686f6c646572732063616e206f6e6c79206d696e74203560008201527f20747765616b73206d617820696e20746869732070726573616c650000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e207468652077616c6c65742060008201527f6361700000000000000000000000000000000000000000000000000000000000602082015250565b6151748161479a565b811461517f57600080fd5b50565b61518b816147ac565b811461519657600080fd5b50565b6151a2816147b8565b81146151ad57600080fd5b50565b6151b981614804565b81146151c457600080fd5b5056fea2646970667358221220a2f2a038fc7aff1e6dc8c5b0f2494e573dde104ce7ac097bdfceed7ff088afc264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654558576f787852756659374557754b3637736751555037397972434b3152367851515a50486e6d58565a792f00000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80635f29f1a611610139578063b426a5ed116100b6578063d15f41231161007a578063d15f412314610863578063d5abeb011461088c578063d62aa1a1146108b7578063da3ef23f146108f4578063e985e9c51461091d578063f2fde38b1461095a57610251565b8063b426a5ed1461077c578063b88d4fde146107a7578063c4e41b22146107d0578063c6682862146107fb578063c87b56dd1461082657610251565b80637f00c7a6116100fd5780637f00c7a6146106bd5780638da5cb5b146106e657806395d89b4114610711578063a22cb4651461073c578063a53873c31461076557610251565b80635f29f1a6146105e55780636352211e146106015780636c0360eb1461063e57806370a0823114610669578063715018a6146106a657610251565b80632f745c59116101d2578063438b630011610196578063438b6300146104c357806344a0d68a14610500578063453c2310146105295780634f6ccce71461055457806355f804b314610591578063564566a8146105ba57610251565b80632f745c591461042057806334918dfd1461045d5780633ccfd60b1461047457806340c10f191461047e57806342842e0e1461049a57610251565b806315f48be71161021957806315f48be71461034f57806318160ddd1461037857806321ca4236146103a3578063239c70ae146103cc57806323b872dd146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613aa6565b610983565b60405161028a91906141b5565b60405180910390f35b34801561029f57600080fd5b506102a86109fd565b6040516102b591906141d0565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613b49565b610a8f565b6040516102f2919061412c565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613a66565b610b14565b005b34801561033057600080fd5b50610339610c2c565b6040516103469190614552565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613a66565b610c32565b005b34801561038457600080fd5b5061038d610de8565b60405161039a9190614552565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613a66565b610df5565b005b3480156103d857600080fd5b506103e1610f4b565b6040516103ee9190614552565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190613950565b610f51565b005b34801561042c57600080fd5b5061044760048036038101906104429190613a66565b610fb1565b6040516104549190614552565b60405180910390f35b34801561046957600080fd5b50610472611056565b005b61047c6110fe565b005b61049860048036038101906104939190613a66565b6111ba565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190613950565b6113ee565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906138e3565b61140e565b6040516104f79190614193565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613b49565b6114bc565b005b34801561053557600080fd5b5061053e611542565b60405161054b9190614552565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613b49565b611548565b6040516105889190614552565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613b00565b6115b9565b005b3480156105c657600080fd5b506105cf61164f565b6040516105dc91906141b5565b60405180910390f35b6105ff60048036038101906105fa9190613a66565b611666565b005b34801561060d57600080fd5b5061062860048036038101906106239190613b49565b611a53565b604051610635919061412c565b60405180910390f35b34801561064a57600080fd5b50610653611b05565b60405161066091906141d0565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906138e3565b611b93565b60405161069d9190614552565b60405180910390f35b3480156106b257600080fd5b506106bb611c4b565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613b49565b611cd3565b005b3480156106f257600080fd5b506106fb611d59565b604051610708919061412c565b60405180910390f35b34801561071d57600080fd5b50610726611d83565b60405161073391906141d0565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190613a26565b611e15565b005b34801561077157600080fd5b5061077a611f96565b005b34801561078857600080fd5b5061079161203e565b60405161079e91906141b5565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c991906139a3565b612055565b005b3480156107dc57600080fd5b506107e56120b7565b6040516107f29190614552565b60405180910390f35b34801561080757600080fd5b506108106120c6565b60405161081d91906141d0565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613b49565b612154565b60405161085a91906141d0565b60405180910390f35b34801561086f57600080fd5b5061088a600480360381019061088591906138e3565b6121fe565b005b34801561089857600080fd5b506108a1612332565b6040516108ae9190614552565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906138e3565b612338565b6040516108eb9190614552565b60405180910390f35b34801561090057600080fd5b5061091b60048036038101906109169190613b00565b6123fd565b005b34801561092957600080fd5b50610944600480360381019061093f9190613910565b612493565b60405161095191906141b5565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c91906138e3565b612527565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f657506109f58261261f565b5b9050919050565b606060008054610a0c90614850565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890614850565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b5050505050905090565b6000610a9a82612701565b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090614432565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1f82611a53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906144b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610baf61276d565b73ffffffffffffffffffffffffffffffffffffffff161480610bde5750610bdd81610bd861276d565b612493565b5b610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c14906143b2565b60405180910390fd5b610c278383612775565b505050565b600d5481565b610c3a61276d565b73ffffffffffffffffffffffffffffffffffffffff16610c58611d59565b73ffffffffffffffffffffffffffffffffffffffff1614610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590614452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906141f2565b60405180910390fd5b6000601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790614352565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600880549050905090565b610dfd61276d565b73ffffffffffffffffffffffffffffffffffffffff16610e1b611d59565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614452565b60405180910390fd5b601360019054906101000a900460ff16610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614372565b60405180910390fd5b60008111610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa906142b2565b60405180910390fd5b6000610f0d610de8565b90506000600190505b828111610f4557610f32848284610f2d9190614685565b61282e565b8080610f3d906148b3565b915050610f16565b50505050565b600f5481565b610f62610f5c61276d565b8261284c565b610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f98906144d2565b60405180910390fd5b610fac83838361292a565b505050565b6000610fbc83611b93565b8210610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614212565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61105e61276d565b73ffffffffffffffffffffffffffffffffffffffff1661107c611d59565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990614452565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61110661276d565b73ffffffffffffffffffffffffffffffffffffffff16611124611d59565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190614452565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506111b857600080fd5b565b60006111c4610de8565b9050601360009054906101000a900460ff16156111e057600080fd5b601360019054906101000a900460ff166111f957600080fd5b6000821161120657600080fd5b600f5482111561121557600080fd5b600e5482826112249190614685565b111561122f57600080fd5b81600d5461123d919061470c565b34101561124957600080fd5b601054601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614532565b60405180910390fd5b60105482601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461131b9190614685565b111561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390614532565b60405180910390fd5b81601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ab9190614685565b925050819055506000600190505b8281116113e8576113d58482846113d09190614685565b61282e565b80806113e0906148b3565b9150506113b9565b50505050565b61140983838360405180602001604052806000815250612055565b505050565b6060600061141b83611b93565b905060008167ffffffffffffffff81111561143957611438614a18565b5b6040519080825280602002602001820160405280156114675781602001602082028036833780820191505090505b50905060005b828110156114b15761147f8582610fb1565b828281518110611492576114916149e9565b5b60200260200101818152505080806114a9906148b3565b91505061146d565b508092505050919050565b6114c461276d565b73ffffffffffffffffffffffffffffffffffffffff166114e2611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90614452565b60405180910390fd5b80600d8190555050565b60105481565b6000611552610de8565b8210611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a906144f2565b60405180910390fd5b600882815481106115a7576115a66149e9565b5b90600052602060002001549050919050565b6115c161276d565b73ffffffffffffffffffffffffffffffffffffffff166115df611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614452565b60405180910390fd5b80600b908051906020019061164b9291906136f7565b5050565b6000601360019054906101000a900460ff16905090565b6000611670610de8565b9050601360009054906101000a900460ff166116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b890614312565b60405180910390fd5b601360019054906101000a900460ff1615611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890614272565b60405180910390fd5b6000821161171e57600080fd5b600f5482111561172d57600080fd5b600e54828261173c9190614685565b111561174757600080fd5b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614392565b60405180910390fd5b600082601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118169190614766565b1015611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614512565b60405180910390fd5b601054601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290614532565b60405180910390fd5b60105482601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119299190614685565b111561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190614532565b60405180910390fd5b81601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b99190614766565b9250508190555081601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a0f9190614685565b925050819055506000600190505b82811015611a4d57611a3a848284611a359190614685565b61282e565b8080611a45906148b3565b915050611a1d565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af3906143f2565b60405180910390fd5b80915050919050565b600b8054611b1290614850565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3e90614850565b8015611b8b5780601f10611b6057610100808354040283529160200191611b8b565b820191906000526020600020905b815481529060010190602001808311611b6e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb906143d2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c5361276d565b73ffffffffffffffffffffffffffffffffffffffff16611c71611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90614452565b60405180910390fd5b611cd16000612b86565b565b611cdb61276d565b73ffffffffffffffffffffffffffffffffffffffff16611cf9611d59565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690614452565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611d9290614850565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbe90614850565b8015611e0b5780601f10611de057610100808354040283529160200191611e0b565b820191906000526020600020905b815481529060010190602001808311611dee57829003601f168201915b5050505050905090565b611e1d61276d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906142f2565b60405180910390fd5b8060056000611e9861276d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f4561276d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f8a91906141b5565b60405180910390a35050565b611f9e61276d565b73ffffffffffffffffffffffffffffffffffffffff16611fbc611d59565b73ffffffffffffffffffffffffffffffffffffffff1614612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200990614452565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6000601360009054906101000a900460ff16905090565b61206661206061276d565b8361284c565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c906144d2565b60405180910390fd5b6120b184848484612c4c565b50505050565b60006120c1610de8565b905090565b600c80546120d390614850565b80601f01602080910402602001604051908101604052809291908181526020018280546120ff90614850565b801561214c5780601f106121215761010080835404028352916020019161214c565b820191906000526020600020905b81548152906001019060200180831161212f57829003601f168201915b505050505081565b606061215f82612701565b61219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614492565b60405180910390fd5b60006121a8612ca8565b905060008151116121c857604051806020016040528060008152506121f6565b806121d284612d3a565b600c6040516020016121e6939291906140fb565b6040516020818303038152906040525b915050919050565b61220661276d565b73ffffffffffffffffffffffffffffffffffffffff16612224611d59565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190614452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906141f2565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600e5481565b600061234261276d565b73ffffffffffffffffffffffffffffffffffffffff16612360611d59565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614452565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61240561276d565b73ffffffffffffffffffffffffffffffffffffffff16612423611d59565b73ffffffffffffffffffffffffffffffffffffffff1614612479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247090614452565b60405180910390fd5b80600c908051906020019061248f9291906136f7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61252f61276d565b73ffffffffffffffffffffffffffffffffffffffff1661254d611d59565b73ffffffffffffffffffffffffffffffffffffffff16146125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a90614452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90614252565b60405180910390fd5b61261c81612b86565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126fa57506126f982612e9b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127e883611a53565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612848828260405180602001604052806000815250612f05565b5050565b600061285782612701565b612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90614332565b60405180910390fd5b60006128a183611a53565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291057508373ffffffffffffffffffffffffffffffffffffffff166128f884610a8f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061292157506129208185612493565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661294a82611a53565b73ffffffffffffffffffffffffffffffffffffffff16146129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299790614472565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a07906142d2565b60405180910390fd5b612a1b838383612f60565b612a26600082612775565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a769190614766565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612acd9190614685565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c5784848461292a565b612c6384848484613074565b612ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9990614232565b60405180910390fd5b50505050565b6060600b8054612cb790614850565b80601f0160208091040260200160405190810160405280929190818152602001828054612ce390614850565b8015612d305780601f10612d0557610100808354040283529160200191612d30565b820191906000526020600020905b815481529060010190602001808311612d1357829003601f168201915b5050505050905090565b60606000821415612d82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e96565b600082905060005b60008214612db4578080612d9d906148b3565b915050600a82612dad91906146db565b9150612d8a565b60008167ffffffffffffffff811115612dd057612dcf614a18565b5b6040519080825280601f01601f191660200182016040528015612e025781602001600182028036833780820191505090505b5090505b60008514612e8f57600182612e1b9190614766565b9150600a85612e2a91906148fc565b6030612e369190614685565b60f81b818381518110612e4c57612e4b6149e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e8891906146db565b9450612e06565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f0f838361320b565b612f1c6000848484613074565b612f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5290614232565b60405180910390fd5b505050565b612f6b8383836133d9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fae57612fa9816133de565b612fed565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fec57612feb8382613427565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130305761302b81613594565b61306f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461306e5761306d8282613665565b5b5b505050565b60006130958473ffffffffffffffffffffffffffffffffffffffff166136e4565b156131fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130be61276d565b8786866040518563ffffffff1660e01b81526004016130e09493929190614147565b602060405180830381600087803b1580156130fa57600080fd5b505af192505050801561312b57506040513d601f19601f820116820180604052508101906131289190613ad3565b60015b6131ae573d806000811461315b576040519150601f19603f3d011682016040523d82523d6000602084013e613160565b606091505b506000815114156131a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319d90614232565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613203565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327290614412565b60405180910390fd5b61328481612701565b156132c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bb90614292565b60405180910390fd5b6132d060008383612f60565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614685565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161343484611b93565b61343e9190614766565b9050600060076000848152602001908152602001600020549050818114613523576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135a89190614766565b90506000600960008481526020019081526020016000205490506000600883815481106135d8576135d76149e9565b5b9060005260206000200154905080600883815481106135fa576135f96149e9565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613649576136486149ba565b5b6001900381819060005260206000200160009055905550505050565b600061367083611b93565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461370390614850565b90600052602060002090601f016020900481019282613725576000855561376c565b82601f1061373e57805160ff191683800117855561376c565b8280016001018555821561376c579182015b8281111561376b578251825591602001919060010190613750565b5b509050613779919061377d565b5090565b5b8082111561379657600081600090555060010161377e565b5090565b60006137ad6137a884614592565b61456d565b9050828152602081018484840111156137c9576137c8614a4c565b5b6137d484828561480e565b509392505050565b60006137ef6137ea846145c3565b61456d565b90508281526020810184848401111561380b5761380a614a4c565b5b61381684828561480e565b509392505050565b60008135905061382d8161516b565b92915050565b60008135905061384281615182565b92915050565b60008135905061385781615199565b92915050565b60008151905061386c81615199565b92915050565b600082601f83011261388757613886614a47565b5b813561389784826020860161379a565b91505092915050565b600082601f8301126138b5576138b4614a47565b5b81356138c58482602086016137dc565b91505092915050565b6000813590506138dd816151b0565b92915050565b6000602082840312156138f9576138f8614a56565b5b60006139078482850161381e565b91505092915050565b6000806040838503121561392757613926614a56565b5b60006139358582860161381e565b92505060206139468582860161381e565b9150509250929050565b60008060006060848603121561396957613968614a56565b5b60006139778682870161381e565b93505060206139888682870161381e565b9250506040613999868287016138ce565b9150509250925092565b600080600080608085870312156139bd576139bc614a56565b5b60006139cb8782880161381e565b94505060206139dc8782880161381e565b93505060406139ed878288016138ce565b925050606085013567ffffffffffffffff811115613a0e57613a0d614a51565b5b613a1a87828801613872565b91505092959194509250565b60008060408385031215613a3d57613a3c614a56565b5b6000613a4b8582860161381e565b9250506020613a5c85828601613833565b9150509250929050565b60008060408385031215613a7d57613a7c614a56565b5b6000613a8b8582860161381e565b9250506020613a9c858286016138ce565b9150509250929050565b600060208284031215613abc57613abb614a56565b5b6000613aca84828501613848565b91505092915050565b600060208284031215613ae957613ae8614a56565b5b6000613af78482850161385d565b91505092915050565b600060208284031215613b1657613b15614a56565b5b600082013567ffffffffffffffff811115613b3457613b33614a51565b5b613b40848285016138a0565b91505092915050565b600060208284031215613b5f57613b5e614a56565b5b6000613b6d848285016138ce565b91505092915050565b6000613b8283836140dd565b60208301905092915050565b613b978161479a565b82525050565b6000613ba882614619565b613bb28185614647565b9350613bbd836145f4565b8060005b83811015613bee578151613bd58882613b76565b9750613be08361463a565b925050600181019050613bc1565b5085935050505092915050565b613c04816147ac565b82525050565b6000613c1582614624565b613c1f8185614658565b9350613c2f81856020860161481d565b613c3881614a5b565b840191505092915050565b6000613c4e8261462f565b613c588185614669565b9350613c6881856020860161481d565b613c7181614a5b565b840191505092915050565b6000613c878261462f565b613c91818561467a565b9350613ca181856020860161481d565b80840191505092915050565b60008154613cba81614850565b613cc4818661467a565b94506001821660008114613cdf5760018114613cf057613d23565b60ff19831686528186019350613d23565b613cf985614604565b60005b83811015613d1b57815481890152600182019150602081019050613cfc565b838801955050505b50505092915050565b6000613d39600c83614669565b9150613d4482614a6c565b602082019050919050565b6000613d5c602b83614669565b9150613d6782614a95565b604082019050919050565b6000613d7f603283614669565b9150613d8a82614ae4565b604082019050919050565b6000613da2602683614669565b9150613dad82614b33565b604082019050919050565b6000613dc5602583614669565b9150613dd082614b82565b604082019050919050565b6000613de8601c83614669565b9150613df382614bd1565b602082019050919050565b6000613e0b602483614669565b9150613e1682614bfa565b604082019050919050565b6000613e2e602483614669565b9150613e3982614c49565b604082019050919050565b6000613e51601983614669565b9150613e5c82614c98565b602082019050919050565b6000613e74601283614669565b9150613e7f82614cc1565b602082019050919050565b6000613e97602c83614669565b9150613ea282614cea565b604082019050919050565b6000613eba600f83614669565b9150613ec582614d39565b602082019050919050565b6000613edd601683614669565b9150613ee882614d62565b602082019050919050565b6000613f00601e83614669565b9150613f0b82614d8b565b602082019050919050565b6000613f23603883614669565b9150613f2e82614db4565b604082019050919050565b6000613f46602a83614669565b9150613f5182614e03565b604082019050919050565b6000613f69602983614669565b9150613f7482614e52565b604082019050919050565b6000613f8c602083614669565b9150613f9782614ea1565b602082019050919050565b6000613faf602c83614669565b9150613fba82614eca565b604082019050919050565b6000613fd2602083614669565b9150613fdd82614f19565b602082019050919050565b6000613ff5602983614669565b915061400082614f42565b604082019050919050565b6000614018602f83614669565b915061402382614f91565b604082019050919050565b600061403b602183614669565b915061404682614fe0565b604082019050919050565b600061405e603183614669565b91506140698261502f565b604082019050919050565b6000614081602c83614669565b915061408c8261507e565b604082019050919050565b60006140a4603b83614669565b91506140af826150cd565b604082019050919050565b60006140c7602383614669565b91506140d28261511c565b604082019050919050565b6140e681614804565b82525050565b6140f581614804565b82525050565b60006141078286613c7c565b91506141138285613c7c565b915061411f8284613cad565b9150819050949350505050565b60006020820190506141416000830184613b8e565b92915050565b600060808201905061415c6000830187613b8e565b6141696020830186613b8e565b61417660408301856140ec565b81810360608301526141888184613c0a565b905095945050505050565b600060208201905081810360008301526141ad8184613b9d565b905092915050565b60006020820190506141ca6000830184613bfb565b92915050565b600060208201905081810360008301526141ea8184613c43565b905092915050565b6000602082019050818103600083015261420b81613d2c565b9050919050565b6000602082019050818103600083015261422b81613d4f565b9050919050565b6000602082019050818103600083015261424b81613d72565b9050919050565b6000602082019050818103600083015261426b81613d95565b9050919050565b6000602082019050818103600083015261428b81613db8565b9050919050565b600060208201905081810360008301526142ab81613ddb565b9050919050565b600060208201905081810360008301526142cb81613dfe565b9050919050565b600060208201905081810360008301526142eb81613e21565b9050919050565b6000602082019050818103600083015261430b81613e44565b9050919050565b6000602082019050818103600083015261432b81613e67565b9050919050565b6000602082019050818103600083015261434b81613e8a565b9050919050565b6000602082019050818103600083015261436b81613ead565b9050919050565b6000602082019050818103600083015261438b81613ed0565b9050919050565b600060208201905081810360008301526143ab81613ef3565b9050919050565b600060208201905081810360008301526143cb81613f16565b9050919050565b600060208201905081810360008301526143eb81613f39565b9050919050565b6000602082019050818103600083015261440b81613f5c565b9050919050565b6000602082019050818103600083015261442b81613f7f565b9050919050565b6000602082019050818103600083015261444b81613fa2565b9050919050565b6000602082019050818103600083015261446b81613fc5565b9050919050565b6000602082019050818103600083015261448b81613fe8565b9050919050565b600060208201905081810360008301526144ab8161400b565b9050919050565b600060208201905081810360008301526144cb8161402e565b9050919050565b600060208201905081810360008301526144eb81614051565b9050919050565b6000602082019050818103600083015261450b81614074565b9050919050565b6000602082019050818103600083015261452b81614097565b9050919050565b6000602082019050818103600083015261454b816140ba565b9050919050565b600060208201905061456760008301846140ec565b92915050565b6000614577614588565b90506145838282614882565b919050565b6000604051905090565b600067ffffffffffffffff8211156145ad576145ac614a18565b5b6145b682614a5b565b9050602081019050919050565b600067ffffffffffffffff8211156145de576145dd614a18565b5b6145e782614a5b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061469082614804565b915061469b83614804565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146d0576146cf61492d565b5b828201905092915050565b60006146e682614804565b91506146f183614804565b9250826147015761470061495c565b5b828204905092915050565b600061471782614804565b915061472283614804565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561475b5761475a61492d565b5b828202905092915050565b600061477182614804565b915061477c83614804565b92508282101561478f5761478e61492d565b5b828203905092915050565b60006147a5826147e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561483b578082015181840152602081019050614820565b8381111561484a576000848401525b50505050565b6000600282049050600182168061486857607f821691505b6020821081141561487c5761487b61498b565b5b50919050565b61488b82614a5b565b810181811067ffffffffffffffff821117156148aa576148a9614a18565b5b80604052505050565b60006148be82614804565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148f1576148f061492d565b5b600182019050919050565b600061490782614804565b915061491283614804565b9250826149225761492161495c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74207768696c65206d61696e2073616c65206973206160008201527f6374697665000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f53616c6520686173206e6f7420636f6e636c7564656400000000000000000000600082015250565b7f57616c6c6574206e6f74206f6e204f472070726573616c65206c6973742e0000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4f4720547765616b20686f6c646572732063616e206f6e6c79206d696e74203560008201527f20747765616b73206d617820696e20746869732070726573616c650000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e207468652077616c6c65742060008201527f6361700000000000000000000000000000000000000000000000000000000000602082015250565b6151748161479a565b811461517f57600080fd5b50565b61518b816147ac565b811461519657600080fd5b50565b6151a2816147b8565b81146151ad57600080fd5b50565b6151b981614804565b81146151c457600080fd5b5056fea2646970667358221220a2f2a038fc7aff1e6dc8c5b0f2494e573dde104ce7ac097bdfceed7ff088afc264736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654558576f787852756659374557754b3637736751555037397972434b3152367851515a50486e6d58565a792f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmeEXWoxxRufY7EWuK67sgQUP79yrCK1R6xQQZPHnmXVZy/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d654558576f787852756659374557754b36377367515550
Arg [3] : 37397972434b3152367851515a50486e6d58565a792f00000000000000000000


Deployed Bytecode Sourcemap

43747:5901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36967:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26418:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25941:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43912:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44807:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37607:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47632:367;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43990:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37275:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49308:91;;;;;;;;;;;;;:::i;:::-;;49525:120;;;:::i;:::-;;46735:721;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27718:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48007:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48832:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44030:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37797:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49060:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44594:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45696:1016;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24553:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43840:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24283:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;48928:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25028:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26711:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49411:106;;;;;;;;;;;;;:::i;:::-;;44480:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27974:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44698:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43868:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48373:433;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45080:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43951:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45264:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49172:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27077:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36967:224;37069:4;37108:35;37093:50;;;:11;:50;;;;:90;;;;37147:36;37171:11;37147:23;:36::i;:::-;37093:90;37086:97;;36967:224;;;:::o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;26522:16;26530:7;26522;:16::i;:::-;26514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:15;:24;26623:7;26607:24;;;;;;;;;;;;;;;;;;;;;26600:31;;26418:221;;;:::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;26080:11;;:2;:11;;;;26072:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:5;26164:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26189:37;26206:5;26213:12;:10;:12::i;:::-;26189:16;:37::i;:::-;26164:62;26142:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;43912:32::-;;;;:::o;44807:265::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44924:1:::1;44907:19;;:5;:19;;;;44899:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;44991:1;44962:18;:25;44981:5;44962:25;;;;;;;;;;;;;;;;:30;44954:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45053:9;45025:18;:25;45044:5;45025:25;;;;;;;;;;;;;;;:37;;;;44807:265:::0;;:::o;37607:113::-;37668:7;37695:10;:17;;;;37688:24;;37607:113;:::o;47632:367::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47727:13:::1;;;;;;;;;;;47719:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47800:1;47786:11;:15;47778:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47855:14;47872:13;:11;:13::i;:::-;47855:30;;47901:9;47913:1;47901:13;;47896:96;47921:11;47916:1;:16;47896:96;;47954:26;47964:3;47978:1;47969:6;:10;;;;:::i;:::-;47954:9;:26::i;:::-;47934:3;;;;;:::i;:::-;;;;47896:96;;;;47708:291;47632:367:::0;;:::o;43990:33::-;;;;:::o;27308:339::-;27503:41;27522:12;:10;:12::i;:::-;27536:7;27503:18;:41::i;:::-;27495:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;:::-;27308:339;;;:::o;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37497:12;:19;37510:5;37497:19;;;;;;;;;;;;;;;:26;37517:5;37497:26;;;;;;;;;;;;37490:33;;37275:256;;;;:::o;49308:91::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49378:13:::1;;;;;;;;;;;49377:14;49361:13;;:30;;;;;;;;;;;;;;;;;;49308:91::o:0;49525:120::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49597:10:::1;49589:24;;:47;49614:21;49589:47;;;;;;;;;;;;;;;;;;;;;;;49581:56;;;::::0;::::1;;49525:120::o:0;46735:721::-;46809:14;46826:13;:11;:13::i;:::-;46809:30;;46859:18;;;;;;;;;;;46858:19;46850:28;;;;;;46897:13;;;;;;;;;;;46889:22;;;;;;46944:1;46930:11;:15;46922:24;;;;;;46980:13;;46965:11;:28;;46957:37;;;;;;47037:9;;47022:11;47013:6;:20;;;;:::i;:::-;:33;;47005:42;;;;;;47086:11;47079:4;;:18;;;;:::i;:::-;47066:9;:31;;47058:40;;;;;;47135:12;;47117:9;:14;47127:3;47117:14;;;;;;;;;;;;;;;;:30;;47109:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;47238:12;;47223:11;47206:9;:14;47216:3;47206:14;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;47198:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;47329:11;47311:9;:14;47321:3;47311:14;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;47358:9;47370:1;47358:13;;47353:96;47378:11;47373:1;:16;47353:96;;47411:26;47421:3;47435:1;47426:6;:10;;;;:::i;:::-;47411:9;:26::i;:::-;47391:3;;;;;:::i;:::-;;;;47353:96;;;;46798:658;46735:721;;:::o;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;:::-;27718:185;;;:::o;48007:358::-;48067:16;48096:23;48122:17;48132:6;48122:9;:17::i;:::-;48096:43;;48150:25;48192:15;48178:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48150:58;;48224:9;48219:113;48239:15;48235:1;:19;48219:113;;;48290:30;48310:6;48318:1;48290:19;:30::i;:::-;48276:8;48285:1;48276:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48256:3;;;;;:::i;:::-;;;;48219:113;;;;48349:8;48342:15;;;;48007:358;;;:::o;48832:88::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48904:8:::1;48897:4;:15;;;;48832:88:::0;:::o;44030:33::-;;;;:::o;37797:233::-;37872:7;37908:30;:28;:30::i;:::-;37900:5;:38;37892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;;37998:24;;37797:233;;;:::o;49060:104::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49145:11:::1;49135:7;:21;;;;;;;;;;;;:::i;:::-;;49060:104:::0;:::o;44594:92::-;44641:4;44665:13;;;;;;;;;;;44658:20;;44594:92;:::o;45696:1016::-;45806:14;45823:13;:11;:13::i;:::-;45806:30;;45855:18;;;;;;;;;;;45847:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;45916:13;;;;;;;;;;;45915:14;45907:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;46004:1;45990:11;:15;45982:24;;;;;;46040:13;;46025:11;:28;;46017:37;;;;;;46097:9;;46082:11;46073:6;:20;;;;:::i;:::-;:33;;46065:42;;;;;;46152:1;46126:18;:23;46145:3;46126:23;;;;;;;;;;;;;;;;:27;46118:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46250:1;46234:11;46208:18;:23;46227:3;46208:23;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;46207:44;;46199:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;46352:12;;46334:9;:14;46344:3;46334:14;;;;;;;;;;;;;;;;:30;;46326:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46455:12;;46440:11;46423:9;:14;46433:3;46423:14;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;46415:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;46547:11;46520:18;:23;46539:3;46520:23;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;46587:11;46569:9;:14;46579:3;46569:14;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;46615:9;46627:1;46615:13;;46611:94;46634:11;46630:1;:15;46611:94;;;46667:26;46677:3;46691:1;46682:6;:10;;;;:::i;:::-;46667:9;:26::i;:::-;46647:3;;;;;:::i;:::-;;;;46611:94;;;;45795:917;45696:1016;;:::o;24553:239::-;24625:7;24645:13;24661:7;:16;24669:7;24661:16;;;;;;;;;;;;;;;;;;;;;24645:32;;24713:1;24696:19;;:5;:19;;;;24688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24779:5;24772:12;;;24553:239;;;:::o;43840:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24283:208::-;24355:7;24400:1;24383:19;;:5;:19;;;;24375:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24467:9;:16;24477:5;24467:16;;;;;;;;;;;;;;;;24460:23;;24283:208;;;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;48928:124::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49027:17:::1;49011:13;:33;;;;48928:124:::0;:::o;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25028:104;:::o;26711:295::-;26826:12;:10;:12::i;:::-;26814:24;;:8;:24;;;;26806:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:8;26881:18;:32;26900:12;:10;:12::i;:::-;26881:32;;;;;;;;;;;;;;;:42;26914:8;26881:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26979:8;26950:48;;26965:12;:10;:12::i;:::-;26950:48;;;26989:8;26950:48;;;;;;:::i;:::-;;;;;;;;26711:295;;:::o;49411:106::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49491:18:::1;;;;;;;;;;;49490:19;49469:18;;:40;;;;;;;;;;;;;;;;;;49411:106::o:0;44480:102::-;44532:4;44556:18;;;;;;;;;;;44549:25;;44480:102;:::o;27974:328::-;28149:41;28168:12;:10;:12::i;:::-;28182:7;28149:18;:41::i;:::-;28141:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;44698:97::-;44747:7;44774:13;:11;:13::i;:::-;44767:20;;44698:97;:::o;43868:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48373:433::-;48446:13;48494:16;48502:7;48494;:16::i;:::-;48472:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48598:28;48629:10;:8;:10::i;:::-;48598:41;;48688:1;48663:14;48657:28;:32;:141;;;;;;;;;;;;;;;;;48729:14;48745:18;:7;:16;:18::i;:::-;48765:13;48712:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48657:141;48650:148;;;48373:433;;;:::o;45080:172::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45183:1:::1;45166:19;;:5;:19;;;;45158:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;45243:1;45215:18;:25;45234:5;45215:25;;;;;;;;;;;;;;;:29;;;;45080:172:::0;:::o;43951:32::-;;;;:::o;45264:134::-;45338:7;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45365:18:::1;:25;45384:5;45365:25;;;;;;;;;;;;;;;;45358:32;;45264:134:::0;;;:::o;49172:128::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49275:17:::1;49259:13;:33;;;;;;;;;;;;:::i;:::-;;49172:128:::0;:::o;27077:164::-;27174:4;27198:18;:25;27217:5;27198:25;;;;;;;;;;;;;;;:35;27224:8;27198:35;;;;;;;;;;;;;;;;;;;;;;;;;27191:42;;27077:164;;;;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;23914:305::-;24016:4;24068:25;24053:40;;;:11;:40;;;;:105;;;;24125:33;24110:48;;;:11;:48;;;;24053:105;:158;;;;24175:36;24199:11;24175:23;:36::i;:::-;24053:158;24033:178;;23914:305;;;:::o;29812:127::-;29877:4;29929:1;29901:30;;:7;:16;29909:7;29901:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29894:37;;29812:127;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;33794:174::-;33896:2;33869:15;:24;33885:7;33869:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33952:7;33948:2;33914:46;;33923:23;33938:7;33923:14;:23::i;:::-;33914:46;;;;;;;;;;;;33794:174;;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;:::-;30796:110;;:::o;30106:348::-;30199:4;30224:16;30232:7;30224;:16::i;:::-;30216:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;30358:16;;:7;:16;;;:51;;;;30402:7;30378:31;;:20;30390:7;30378:11;:20::i;:::-;:31;;;30358:51;:87;;;;30413:32;30430:5;30437:7;30413:16;:32::i;:::-;30358:87;30350:96;;;30106:348;;;;:::o;33098:578::-;33257:4;33230:31;;:23;33245:7;33230:14;:23::i;:::-;:31;;;33222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33340:1;33326:16;;:2;:16;;;;33318:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;33561:1;33542:9;:15;33552:4;33542:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33590:1;33573:9;:13;33583:2;33573:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33621:2;33602:7;:16;33610:7;33602:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33660:7;33656:2;33641:27;;33650:4;33641:27;;;;;;;;;;;;33098:578;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29184:315;;;;:::o;45423:108::-;45483:13;45516:7;45509:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45423:108;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31133:321;;;:::o;38643:589::-;38787:45;38814:4;38820:2;38824:7;38787:26;:45::i;:::-;38865:1;38849:18;;:4;:18;;;38845:187;;;38884:40;38916:7;38884:31;:40::i;:::-;38845:187;;;38954:2;38946:10;;:4;:10;;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;38942:90;38845:187;39060:1;39046:16;;:2;:16;;;39042:183;;;39079:45;39116:7;39079:36;:45::i;:::-;39042:183;;;39152:4;39146:10;;:2;:10;;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;:::-;39142:83;39042:183;38643:589;;;:::o;34533:799::-;34688:4;34709:15;:2;:13;;;:15::i;:::-;34705:620;;;34761:2;34745:36;;;34782:12;:10;:12::i;:::-;34796:4;34802:7;34811:5;34745:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35004:1;34987:6;:13;:18;34983:272;;;35030:60;;;;;;;;;;:::i;:::-;;;;;;;;34983:272;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;34878:41;;;34868:51;;;:6;:51;;;;34861:58;;;;;34705:620;35309:4;35302:11;;34533:799;;;;;;;:::o;31790:382::-;31884:1;31870:16;;:2;:16;;;;31862:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31943:16;31951:7;31943;:16::i;:::-;31942:17;31934:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;32080:1;32063:9;:13;32073:2;32063:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32111:2;32092:7;:16;32100:7;32092:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32156:7;32152:2;32131:33;;32148:1;32131:33;;;;;;;;;;;;31790:382;;:::o;35904:126::-;;;;:::o;39955:164::-;40059:10;:17;;;;40032:15;:24;40048:7;40032:24;;;;;;;;;;;:44;;;;40087:10;40103:7;40087:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39955:164;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41012:51;;41074:18;41095:17;:26;41113:7;41095:26;;;;;;;;;;;;41074:47;;41242:14;41228:10;:28;41224:328;;41273:19;41295:12;:18;41308:4;41295:18;;;;;;;;;;;;;;;:34;41314:14;41295:34;;;;;;;;;;;;41273:56;;41379:11;41346:12;:18;41359:4;41346:18;;;;;;;;;;;;;;;:30;41365:10;41346:30;;;;;;;;;;;:44;;;;41496:10;41463:17;:30;41481:11;41463:30;;;;;;;;;;;:43;;;;41258:294;41224:328;41648:17;:26;41666:7;41648:26;;;;;;;;;;;41641:33;;;41692:12;:18;41705:4;41692:18;;;;;;;;;;;;;;;:34;41711:14;41692:34;;;;;;;;;;;41685:41;;;40827:907;;40746:988;;:::o;42029:1079::-;42282:22;42327:1;42307:10;:17;;;;:21;;;;:::i;:::-;42282:46;;42339:18;42360:15;:24;42376:7;42360:24;;;;;;;;;;;;42339:45;;42711:19;42733:10;42744:14;42733:26;;;;;;;;:::i;:::-;;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42908:10;42877:15;:28;42893:11;42877:28;;;;;;;;;;;:41;;;;43049:15;:24;43065:7;43049:24;;;;;;;;;;;43042:31;;;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;39618:37;;39693:7;39666:12;:16;39679:2;39666:16;;;;;;;;;;;;;;;:24;39683:6;39666:24;;;;;;;;;;;:34;;;;39740:6;39711:17;:26;39729:7;39711:26;;;;;;;;;;;:35;;;;39607:147;39533:221;;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::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:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9493:845::-;9596:3;9633:5;9627:12;9662:36;9688:9;9662:36;:::i;:::-;9714:89;9796:6;9791:3;9714:89;:::i;:::-;9707:96;;9834:1;9823:9;9819:17;9850:1;9845:137;;;;9996:1;9991:341;;;;9812:520;;9845:137;9929:4;9925:9;9914;9910:25;9905:3;9898:38;9965:6;9960:3;9956:16;9949:23;;9845:137;;9991:341;10058:38;10090:5;10058:38;:::i;:::-;10118:1;10132:154;10146:6;10143:1;10140:13;10132:154;;;10220:7;10214:14;10210:1;10205:3;10201:11;10194:35;10270:1;10261:7;10257:15;10246:26;;10168:4;10165:1;10161:12;10156:17;;10132:154;;;10315:6;10310:3;10306:16;10299:23;;9998:334;;9812:520;;9600:738;;9493:845;;;;:::o;10344:366::-;10486:3;10507:67;10571:2;10566:3;10507:67;:::i;:::-;10500:74;;10583:93;10672:3;10583:93;:::i;:::-;10701:2;10696:3;10692:12;10685:19;;10344:366;;;:::o;10716:::-;10858:3;10879:67;10943:2;10938:3;10879:67;:::i;:::-;10872:74;;10955:93;11044:3;10955:93;:::i;:::-;11073:2;11068:3;11064:12;11057:19;;10716:366;;;:::o;11088:::-;11230:3;11251:67;11315:2;11310:3;11251:67;:::i;:::-;11244:74;;11327:93;11416:3;11327:93;:::i;:::-;11445:2;11440:3;11436:12;11429:19;;11088:366;;;:::o;11460:::-;11602:3;11623:67;11687:2;11682:3;11623:67;:::i;:::-;11616:74;;11699:93;11788:3;11699:93;:::i;:::-;11817:2;11812:3;11808:12;11801:19;;11460:366;;;:::o;11832:::-;11974:3;11995:67;12059:2;12054:3;11995:67;:::i;:::-;11988:74;;12071:93;12160:3;12071:93;:::i;:::-;12189:2;12184:3;12180:12;12173:19;;11832:366;;;:::o;12204:::-;12346:3;12367:67;12431:2;12426:3;12367:67;:::i;:::-;12360:74;;12443:93;12532:3;12443:93;:::i;:::-;12561:2;12556:3;12552:12;12545:19;;12204:366;;;:::o;12576:::-;12718:3;12739:67;12803:2;12798:3;12739:67;:::i;:::-;12732:74;;12815:93;12904:3;12815:93;:::i;:::-;12933:2;12928:3;12924:12;12917:19;;12576:366;;;:::o;12948:::-;13090:3;13111:67;13175:2;13170:3;13111:67;:::i;:::-;13104:74;;13187:93;13276:3;13187:93;:::i;:::-;13305:2;13300:3;13296:12;13289:19;;12948:366;;;:::o;13320:::-;13462:3;13483:67;13547:2;13542:3;13483:67;:::i;:::-;13476:74;;13559:93;13648:3;13559:93;:::i;:::-;13677:2;13672:3;13668:12;13661:19;;13320:366;;;:::o;13692:::-;13834:3;13855:67;13919:2;13914:3;13855:67;:::i;:::-;13848:74;;13931:93;14020:3;13931:93;:::i;:::-;14049:2;14044:3;14040:12;14033:19;;13692:366;;;:::o;14064:::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:::-;14578:3;14599:67;14663:2;14658:3;14599:67;:::i;:::-;14592:74;;14675:93;14764:3;14675:93;:::i;:::-;14793:2;14788:3;14784:12;14777:19;;14436:366;;;:::o;14808:::-;14950:3;14971:67;15035:2;15030:3;14971:67;:::i;:::-;14964:74;;15047:93;15136:3;15047:93;:::i;:::-;15165:2;15160:3;15156:12;15149:19;;14808:366;;;:::o;15180:::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15180:366;;;:::o;15552:::-;15694:3;15715:67;15779:2;15774:3;15715:67;:::i;:::-;15708:74;;15791:93;15880:3;15791:93;:::i;:::-;15909:2;15904:3;15900:12;15893:19;;15552:366;;;:::o;15924:::-;16066:3;16087:67;16151:2;16146:3;16087:67;:::i;:::-;16080:74;;16163:93;16252:3;16163:93;:::i;:::-;16281:2;16276:3;16272:12;16265:19;;15924:366;;;:::o;16296:::-;16438:3;16459:67;16523:2;16518:3;16459:67;:::i;:::-;16452:74;;16535:93;16624:3;16535:93;:::i;:::-;16653:2;16648:3;16644:12;16637:19;;16296:366;;;:::o;16668:::-;16810:3;16831:67;16895:2;16890:3;16831:67;:::i;:::-;16824:74;;16907:93;16996:3;16907:93;:::i;:::-;17025:2;17020:3;17016:12;17009:19;;16668:366;;;:::o;17040:::-;17182:3;17203:67;17267:2;17262:3;17203:67;:::i;:::-;17196:74;;17279:93;17368:3;17279:93;:::i;:::-;17397:2;17392:3;17388:12;17381:19;;17040:366;;;:::o;17412:::-;17554:3;17575:67;17639:2;17634:3;17575:67;:::i;:::-;17568:74;;17651:93;17740:3;17651:93;:::i;:::-;17769:2;17764:3;17760:12;17753:19;;17412:366;;;:::o;17784:::-;17926:3;17947:67;18011:2;18006:3;17947:67;:::i;:::-;17940:74;;18023:93;18112:3;18023:93;:::i;:::-;18141:2;18136:3;18132:12;18125:19;;17784:366;;;:::o;18156:::-;18298:3;18319:67;18383:2;18378:3;18319:67;:::i;:::-;18312:74;;18395:93;18484:3;18395:93;:::i;:::-;18513:2;18508:3;18504:12;18497:19;;18156:366;;;:::o;18528:::-;18670:3;18691:67;18755:2;18750:3;18691:67;:::i;:::-;18684:74;;18767:93;18856:3;18767:93;:::i;:::-;18885:2;18880:3;18876:12;18869:19;;18528:366;;;:::o;18900:::-;19042:3;19063:67;19127:2;19122:3;19063:67;:::i;:::-;19056:74;;19139:93;19228:3;19139:93;:::i;:::-;19257:2;19252:3;19248:12;19241:19;;18900:366;;;:::o;19272:::-;19414:3;19435:67;19499:2;19494:3;19435:67;:::i;:::-;19428:74;;19511:93;19600:3;19511:93;:::i;:::-;19629:2;19624:3;19620:12;19613:19;;19272:366;;;:::o;19644:::-;19786:3;19807:67;19871:2;19866:3;19807:67;:::i;:::-;19800:74;;19883:93;19972:3;19883:93;:::i;:::-;20001:2;19996:3;19992:12;19985:19;;19644:366;;;:::o;20016:::-;20158:3;20179:67;20243:2;20238:3;20179:67;:::i;:::-;20172:74;;20255:93;20344:3;20255:93;:::i;:::-;20373:2;20368:3;20364:12;20357:19;;20016:366;;;:::o;20388:108::-;20465:24;20483:5;20465:24;:::i;:::-;20460:3;20453:37;20388:108;;:::o;20502:118::-;20589:24;20607:5;20589:24;:::i;:::-;20584:3;20577:37;20502:118;;:::o;20626:589::-;20851:3;20873:95;20964:3;20955:6;20873:95;:::i;:::-;20866:102;;20985:95;21076:3;21067:6;20985:95;:::i;:::-;20978:102;;21097:92;21185:3;21176:6;21097:92;:::i;:::-;21090:99;;21206:3;21199:10;;20626:589;;;;;;:::o;21221:222::-;21314:4;21352:2;21341:9;21337:18;21329:26;;21365:71;21433:1;21422:9;21418:17;21409:6;21365:71;:::i;:::-;21221:222;;;;:::o;21449:640::-;21644:4;21682:3;21671:9;21667:19;21659:27;;21696:71;21764:1;21753:9;21749:17;21740:6;21696:71;:::i;:::-;21777:72;21845:2;21834:9;21830:18;21821:6;21777:72;:::i;:::-;21859;21927:2;21916:9;21912:18;21903:6;21859:72;:::i;:::-;21978:9;21972:4;21968:20;21963:2;21952:9;21948:18;21941:48;22006:76;22077:4;22068:6;22006:76;:::i;:::-;21998:84;;21449:640;;;;;;;:::o;22095:373::-;22238:4;22276:2;22265:9;22261:18;22253:26;;22325:9;22319:4;22315:20;22311:1;22300:9;22296:17;22289:47;22353:108;22456:4;22447:6;22353:108;:::i;:::-;22345:116;;22095:373;;;;:::o;22474:210::-;22561:4;22599:2;22588:9;22584:18;22576:26;;22612:65;22674:1;22663:9;22659:17;22650:6;22612:65;:::i;:::-;22474:210;;;;:::o;22690:313::-;22803:4;22841:2;22830:9;22826:18;22818:26;;22890:9;22884:4;22880:20;22876:1;22865:9;22861:17;22854:47;22918:78;22991:4;22982:6;22918:78;:::i;:::-;22910:86;;22690:313;;;;:::o;23009:419::-;23175:4;23213:2;23202:9;23198:18;23190:26;;23262:9;23256:4;23252:20;23248:1;23237:9;23233:17;23226:47;23290:131;23416:4;23290:131;:::i;:::-;23282:139;;23009:419;;;:::o;23434:::-;23600:4;23638:2;23627:9;23623:18;23615:26;;23687:9;23681:4;23677:20;23673:1;23662:9;23658:17;23651:47;23715:131;23841:4;23715:131;:::i;:::-;23707:139;;23434:419;;;:::o;23859:::-;24025:4;24063:2;24052:9;24048:18;24040:26;;24112:9;24106:4;24102:20;24098:1;24087:9;24083:17;24076:47;24140:131;24266:4;24140:131;:::i;:::-;24132:139;;23859:419;;;:::o;24284:::-;24450:4;24488:2;24477:9;24473:18;24465:26;;24537:9;24531:4;24527:20;24523:1;24512:9;24508:17;24501:47;24565:131;24691:4;24565:131;:::i;:::-;24557:139;;24284:419;;;:::o;24709:::-;24875:4;24913:2;24902:9;24898:18;24890:26;;24962:9;24956:4;24952:20;24948:1;24937:9;24933:17;24926:47;24990:131;25116:4;24990:131;:::i;:::-;24982:139;;24709:419;;;:::o;25134:::-;25300:4;25338:2;25327:9;25323:18;25315:26;;25387:9;25381:4;25377:20;25373:1;25362:9;25358:17;25351:47;25415:131;25541:4;25415:131;:::i;:::-;25407:139;;25134:419;;;:::o;25559:::-;25725:4;25763:2;25752:9;25748:18;25740:26;;25812:9;25806:4;25802:20;25798:1;25787:9;25783:17;25776:47;25840:131;25966:4;25840:131;:::i;:::-;25832:139;;25559:419;;;:::o;25984:::-;26150:4;26188:2;26177:9;26173:18;26165:26;;26237:9;26231:4;26227:20;26223:1;26212:9;26208:17;26201:47;26265:131;26391:4;26265:131;:::i;:::-;26257:139;;25984:419;;;:::o;26409:::-;26575:4;26613:2;26602:9;26598:18;26590:26;;26662:9;26656:4;26652:20;26648:1;26637:9;26633:17;26626:47;26690:131;26816:4;26690:131;:::i;:::-;26682:139;;26409:419;;;:::o;26834:::-;27000:4;27038:2;27027:9;27023:18;27015:26;;27087:9;27081:4;27077:20;27073:1;27062:9;27058:17;27051:47;27115:131;27241:4;27115:131;:::i;:::-;27107:139;;26834:419;;;:::o;27259:::-;27425:4;27463:2;27452:9;27448:18;27440:26;;27512:9;27506:4;27502:20;27498:1;27487:9;27483:17;27476:47;27540:131;27666:4;27540:131;:::i;:::-;27532:139;;27259:419;;;:::o;27684:::-;27850:4;27888:2;27877:9;27873:18;27865:26;;27937:9;27931:4;27927:20;27923:1;27912:9;27908:17;27901:47;27965:131;28091:4;27965:131;:::i;:::-;27957:139;;27684:419;;;:::o;28109:::-;28275:4;28313:2;28302:9;28298:18;28290:26;;28362:9;28356:4;28352:20;28348:1;28337:9;28333:17;28326:47;28390:131;28516:4;28390:131;:::i;:::-;28382:139;;28109:419;;;:::o;28534:::-;28700:4;28738:2;28727:9;28723:18;28715:26;;28787:9;28781:4;28777:20;28773:1;28762:9;28758:17;28751:47;28815:131;28941:4;28815:131;:::i;:::-;28807:139;;28534:419;;;:::o;28959:::-;29125:4;29163:2;29152:9;29148:18;29140:26;;29212:9;29206:4;29202:20;29198:1;29187:9;29183:17;29176:47;29240:131;29366:4;29240:131;:::i;:::-;29232:139;;28959:419;;;:::o;29384:::-;29550:4;29588:2;29577:9;29573:18;29565:26;;29637:9;29631:4;29627:20;29623:1;29612:9;29608:17;29601:47;29665:131;29791:4;29665:131;:::i;:::-;29657:139;;29384:419;;;:::o;29809:::-;29975:4;30013:2;30002:9;29998:18;29990:26;;30062:9;30056:4;30052:20;30048:1;30037:9;30033:17;30026:47;30090:131;30216:4;30090:131;:::i;:::-;30082:139;;29809:419;;;:::o;30234:::-;30400:4;30438:2;30427:9;30423:18;30415:26;;30487:9;30481:4;30477:20;30473:1;30462:9;30458:17;30451:47;30515:131;30641:4;30515:131;:::i;:::-;30507:139;;30234:419;;;:::o;30659:::-;30825:4;30863:2;30852:9;30848:18;30840:26;;30912:9;30906:4;30902:20;30898:1;30887:9;30883:17;30876:47;30940:131;31066:4;30940:131;:::i;:::-;30932:139;;30659:419;;;:::o;31084:::-;31250:4;31288:2;31277:9;31273:18;31265:26;;31337:9;31331:4;31327:20;31323:1;31312:9;31308:17;31301:47;31365:131;31491:4;31365:131;:::i;:::-;31357:139;;31084:419;;;:::o;31509:::-;31675:4;31713:2;31702:9;31698:18;31690:26;;31762:9;31756:4;31752:20;31748:1;31737:9;31733:17;31726:47;31790:131;31916:4;31790:131;:::i;:::-;31782:139;;31509:419;;;:::o;31934:::-;32100:4;32138:2;32127:9;32123:18;32115:26;;32187:9;32181:4;32177:20;32173:1;32162:9;32158:17;32151:47;32215:131;32341:4;32215:131;:::i;:::-;32207:139;;31934:419;;;:::o;32359:::-;32525:4;32563:2;32552:9;32548:18;32540:26;;32612:9;32606:4;32602:20;32598:1;32587:9;32583:17;32576:47;32640:131;32766:4;32640:131;:::i;:::-;32632:139;;32359:419;;;:::o;32784:::-;32950:4;32988:2;32977:9;32973:18;32965:26;;33037:9;33031:4;33027:20;33023:1;33012:9;33008:17;33001:47;33065:131;33191:4;33065:131;:::i;:::-;33057:139;;32784:419;;;:::o;33209:::-;33375:4;33413:2;33402:9;33398:18;33390:26;;33462:9;33456:4;33452:20;33448:1;33437:9;33433:17;33426:47;33490:131;33616:4;33490:131;:::i;:::-;33482:139;;33209:419;;;:::o;33634:::-;33800:4;33838:2;33827:9;33823:18;33815:26;;33887:9;33881:4;33877:20;33873:1;33862:9;33858:17;33851:47;33915:131;34041:4;33915:131;:::i;:::-;33907:139;;33634:419;;;:::o;34059:::-;34225:4;34263:2;34252:9;34248:18;34240:26;;34312:9;34306:4;34302:20;34298:1;34287:9;34283:17;34276:47;34340:131;34466:4;34340:131;:::i;:::-;34332:139;;34059:419;;;:::o;34484:222::-;34577:4;34615:2;34604:9;34600:18;34592:26;;34628:71;34696:1;34685:9;34681:17;34672:6;34628:71;:::i;:::-;34484:222;;;;:::o;34712:129::-;34746:6;34773:20;;:::i;:::-;34763:30;;34802:33;34830:4;34822:6;34802:33;:::i;:::-;34712:129;;;:::o;34847:75::-;34880:6;34913:2;34907:9;34897:19;;34847:75;:::o;34928:307::-;34989:4;35079:18;35071:6;35068:30;35065:56;;;35101:18;;:::i;:::-;35065:56;35139:29;35161:6;35139:29;:::i;:::-;35131:37;;35223:4;35217;35213:15;35205:23;;34928:307;;;:::o;35241:308::-;35303:4;35393:18;35385:6;35382:30;35379:56;;;35415:18;;:::i;:::-;35379:56;35453:29;35475:6;35453:29;:::i;:::-;35445:37;;35537:4;35531;35527:15;35519:23;;35241:308;;;:::o;35555:132::-;35622:4;35645:3;35637:11;;35675:4;35670:3;35666:14;35658:22;;35555:132;;;:::o;35693:141::-;35742:4;35765:3;35757:11;;35788:3;35785:1;35778:14;35822:4;35819:1;35809:18;35801:26;;35693:141;;;:::o;35840:114::-;35907:6;35941:5;35935:12;35925:22;;35840:114;;;:::o;35960:98::-;36011:6;36045:5;36039:12;36029:22;;35960:98;;;:::o;36064:99::-;36116:6;36150:5;36144:12;36134:22;;36064:99;;;:::o;36169:113::-;36239:4;36271;36266:3;36262:14;36254:22;;36169:113;;;:::o;36288:184::-;36387:11;36421:6;36416:3;36409:19;36461:4;36456:3;36452:14;36437:29;;36288:184;;;;:::o;36478:168::-;36561:11;36595:6;36590:3;36583:19;36635:4;36630:3;36626:14;36611:29;;36478:168;;;;:::o;36652:169::-;36736:11;36770:6;36765:3;36758:19;36810:4;36805:3;36801:14;36786:29;;36652:169;;;;:::o;36827:148::-;36929:11;36966:3;36951:18;;36827:148;;;;:::o;36981:305::-;37021:3;37040:20;37058:1;37040:20;:::i;:::-;37035:25;;37074:20;37092:1;37074:20;:::i;:::-;37069:25;;37228:1;37160:66;37156:74;37153:1;37150:81;37147:107;;;37234:18;;:::i;:::-;37147:107;37278:1;37275;37271:9;37264:16;;36981:305;;;;:::o;37292:185::-;37332:1;37349:20;37367:1;37349:20;:::i;:::-;37344:25;;37383:20;37401:1;37383:20;:::i;:::-;37378:25;;37422:1;37412:35;;37427:18;;:::i;:::-;37412:35;37469:1;37466;37462:9;37457:14;;37292:185;;;;:::o;37483:348::-;37523:7;37546:20;37564:1;37546:20;:::i;:::-;37541:25;;37580:20;37598:1;37580:20;:::i;:::-;37575:25;;37768:1;37700:66;37696:74;37693:1;37690:81;37685:1;37678:9;37671:17;37667:105;37664:131;;;37775:18;;:::i;:::-;37664:131;37823:1;37820;37816:9;37805:20;;37483:348;;;;:::o;37837:191::-;37877:4;37897:20;37915:1;37897:20;:::i;:::-;37892:25;;37931:20;37949:1;37931:20;:::i;:::-;37926:25;;37970:1;37967;37964:8;37961:34;;;37975:18;;:::i;:::-;37961:34;38020:1;38017;38013:9;38005:17;;37837:191;;;;:::o;38034:96::-;38071:7;38100:24;38118:5;38100:24;:::i;:::-;38089:35;;38034:96;;;:::o;38136:90::-;38170:7;38213:5;38206:13;38199:21;38188:32;;38136:90;;;:::o;38232:149::-;38268:7;38308:66;38301:5;38297:78;38286:89;;38232:149;;;:::o;38387:126::-;38424:7;38464:42;38457:5;38453:54;38442:65;;38387:126;;;:::o;38519:77::-;38556:7;38585:5;38574:16;;38519:77;;;:::o;38602:154::-;38686:6;38681:3;38676;38663:30;38748:1;38739:6;38734:3;38730:16;38723:27;38602:154;;;:::o;38762:307::-;38830:1;38840:113;38854:6;38851:1;38848:13;38840:113;;;38939:1;38934:3;38930:11;38924:18;38920:1;38915:3;38911:11;38904:39;38876:2;38873:1;38869:10;38864:15;;38840:113;;;38971:6;38968:1;38965:13;38962:101;;;39051:1;39042:6;39037:3;39033:16;39026:27;38962:101;38811:258;38762:307;;;:::o;39075:320::-;39119:6;39156:1;39150:4;39146:12;39136:22;;39203:1;39197:4;39193:12;39224:18;39214:81;;39280:4;39272:6;39268:17;39258:27;;39214:81;39342:2;39334:6;39331:14;39311:18;39308:38;39305:84;;;39361:18;;:::i;:::-;39305:84;39126:269;39075:320;;;:::o;39401:281::-;39484:27;39506:4;39484:27;:::i;:::-;39476:6;39472:40;39614:6;39602:10;39599:22;39578:18;39566:10;39563:34;39560:62;39557:88;;;39625:18;;:::i;:::-;39557:88;39665:10;39661:2;39654:22;39444:238;39401:281;;:::o;39688:233::-;39727:3;39750:24;39768:5;39750:24;:::i;:::-;39741:33;;39796:66;39789:5;39786:77;39783:103;;;39866:18;;:::i;:::-;39783:103;39913:1;39906:5;39902:13;39895:20;;39688:233;;;:::o;39927:176::-;39959:1;39976:20;39994:1;39976:20;:::i;:::-;39971:25;;40010:20;40028:1;40010:20;:::i;:::-;40005:25;;40049:1;40039:35;;40054:18;;:::i;:::-;40039:35;40095:1;40092;40088:9;40083:14;;39927:176;;;;:::o;40109:180::-;40157:77;40154:1;40147:88;40254:4;40251:1;40244:15;40278:4;40275:1;40268:15;40295:180;40343:77;40340:1;40333:88;40440:4;40437:1;40430:15;40464:4;40461:1;40454:15;40481:180;40529:77;40526:1;40519:88;40626:4;40623:1;40616:15;40650:4;40647:1;40640:15;40667:180;40715:77;40712:1;40705:88;40812:4;40809:1;40802:15;40836:4;40833:1;40826:15;40853:180;40901:77;40898:1;40891:88;40998:4;40995:1;40988:15;41022:4;41019:1;41012:15;41039:180;41087:77;41084:1;41077:88;41184:4;41181:1;41174:15;41208:4;41205:1;41198:15;41225:117;41334:1;41331;41324:12;41348:117;41457:1;41454;41447:12;41471:117;41580:1;41577;41570:12;41594:117;41703:1;41700;41693:12;41717:102;41758:6;41809:2;41805:7;41800:2;41793:5;41789:14;41785:28;41775:38;;41717:102;;;:::o;41825:162::-;41965:14;41961:1;41953:6;41949:14;41942:38;41825:162;:::o;41993:230::-;42133:34;42129:1;42121:6;42117:14;42110:58;42202:13;42197:2;42189:6;42185:15;42178:38;41993:230;:::o;42229:237::-;42369:34;42365:1;42357:6;42353:14;42346:58;42438:20;42433:2;42425:6;42421:15;42414:45;42229:237;:::o;42472:225::-;42612:34;42608:1;42600:6;42596:14;42589:58;42681:8;42676:2;42668:6;42664:15;42657:33;42472:225;:::o;42703:224::-;42843:34;42839:1;42831:6;42827:14;42820:58;42912:7;42907:2;42899:6;42895:15;42888:32;42703:224;:::o;42933:178::-;43073:30;43069:1;43061:6;43057:14;43050:54;42933:178;:::o;43117:223::-;43257:34;43253:1;43245:6;43241:14;43234:58;43326:6;43321:2;43313:6;43309:15;43302:31;43117:223;:::o;43346:::-;43486:34;43482:1;43474:6;43470:14;43463:58;43555:6;43550:2;43542:6;43538:15;43531:31;43346:223;:::o;43575:175::-;43715:27;43711:1;43703:6;43699:14;43692:51;43575:175;:::o;43756:168::-;43896:20;43892:1;43884:6;43880:14;43873:44;43756:168;:::o;43930:231::-;44070:34;44066:1;44058:6;44054:14;44047:58;44139:14;44134:2;44126:6;44122:15;44115:39;43930:231;:::o;44167:165::-;44307:17;44303:1;44295:6;44291:14;44284:41;44167:165;:::o;44338:172::-;44478:24;44474:1;44466:6;44462:14;44455:48;44338:172;:::o;44516:180::-;44656:32;44652:1;44644:6;44640:14;44633:56;44516:180;:::o;44702:243::-;44842:34;44838:1;44830:6;44826:14;44819:58;44911:26;44906:2;44898:6;44894:15;44887:51;44702:243;:::o;44951:229::-;45091:34;45087:1;45079:6;45075:14;45068:58;45160:12;45155:2;45147:6;45143:15;45136:37;44951:229;:::o;45186:228::-;45326:34;45322:1;45314:6;45310:14;45303:58;45395:11;45390:2;45382:6;45378:15;45371:36;45186:228;:::o;45420:182::-;45560:34;45556:1;45548:6;45544:14;45537:58;45420:182;:::o;45608:231::-;45748:34;45744:1;45736:6;45732:14;45725:58;45817:14;45812:2;45804:6;45800:15;45793:39;45608:231;:::o;45845:182::-;45985:34;45981:1;45973:6;45969:14;45962:58;45845:182;:::o;46033:228::-;46173:34;46169:1;46161:6;46157:14;46150:58;46242:11;46237:2;46229:6;46225:15;46218:36;46033:228;:::o;46267:234::-;46407:34;46403:1;46395:6;46391:14;46384:58;46476:17;46471:2;46463:6;46459:15;46452:42;46267:234;:::o;46507:220::-;46647:34;46643:1;46635:6;46631:14;46624:58;46716:3;46711:2;46703:6;46699:15;46692:28;46507:220;:::o;46733:236::-;46873:34;46869:1;46861:6;46857:14;46850:58;46942:19;46937:2;46929:6;46925:15;46918:44;46733:236;:::o;46975:231::-;47115:34;47111:1;47103:6;47099:14;47092:58;47184:14;47179:2;47171:6;47167:15;47160:39;46975:231;:::o;47212:246::-;47352:34;47348:1;47340:6;47336:14;47329:58;47421:29;47416:2;47408:6;47404:15;47397:54;47212:246;:::o;47464:222::-;47604:34;47600:1;47592:6;47588:14;47581:58;47673:5;47668:2;47660:6;47656:15;47649:30;47464:222;:::o;47692:122::-;47765:24;47783:5;47765:24;:::i;:::-;47758:5;47755:35;47745:63;;47804:1;47801;47794:12;47745:63;47692:122;:::o;47820:116::-;47890:21;47905:5;47890:21;:::i;:::-;47883:5;47880:32;47870:60;;47926:1;47923;47916:12;47870:60;47820:116;:::o;47942:120::-;48014:23;48031:5;48014:23;:::i;:::-;48007:5;48004:34;47994:62;;48052:1;48049;48042:12;47994:62;47942:120;:::o;48068:122::-;48141:24;48159:5;48141:24;:::i;:::-;48134:5;48131:35;48121:63;;48180:1;48177;48170:12;48121:63;48068:122;:::o

Swarm Source

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