ETH Price: $2,994.74 (+4.66%)
Gas: 2 Gwei

Token

ExpansionApeYachtClub (EAYC)
 

Overview

Max Total Supply

10,000 EAYC

Holders

932

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 EAYC
0x2de03016e1F9026B1DD5D3Bf6FEF706bcc72e509
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ExpansionApeYachtClub

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ExpansionApes.sol


pragma solidity ^0.8.2;




contract ExpansionApeYachtClub is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string _baseUri;
    string _contractUri;

    uint public constant MAX_SUPPLY = 10000;
    uint public price = 0.02 ether;
    uint public maxFreeMint = 5000;
    uint public maxMintPerTransaction = 25;
    bool public isSalesActive = false;

    constructor() ERC721("ExpansionApeYachtClub", "EAYC") {
        _contractUri = "ipfs://Qmabnhcct6N487xENnYekqX8qtPmYY6gToqPK1GKWojBkj";
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseUri;
    }

    function mint(uint quantity) external payable {
        require(isSalesActive, "sale is not active");
        require(quantity <= maxMintPerTransaction, "max mints per transaction exceeded");
        require(totalSupply() + quantity <= MAX_SUPPLY, "sold out");
        if (totalSupply() + quantity > maxFreeMint) {
            require(msg.value >= price * quantity, "ether send is under price");
        }
        for (uint i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId + 10000);
    }
    
    function totalSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }
    
    function contractURI() public view returns (string memory) {
        return _contractUri;
    }
    
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }
    
    function setContractURI(string memory newContractURI) external onlyOwner {
        _contractUri = newContractURI;
    }
    
    function toggleSales() external onlyOwner {
        isSalesActive = !isSalesActive;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df820000600a55611388600b556019600c556000600d60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b506040518060400160405280601581526020017f457870616e73696f6e4170655961636874436c756200000000000000000000008152506040518060400160405280600481526020017f45415943000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c792919062000209565b508060019080519060200190620000e092919062000209565b50505062000103620000f76200013b60201b60201c565b6200014360201b60201c565b60405180606001604052806035815260200162003b4160359139600990805190602001906200013492919062000209565b506200031e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021790620002b9565b90600052602060002090601f0160209004810192826200023b576000855562000287565b82601f106200025657805160ff191683800117855562000287565b8280016001018555821562000287579182015b828111156200028657825182559160200191906001019062000269565b5b5090506200029691906200029a565b5090565b5b80821115620002b55760008160009055506001016200029b565b5090565b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e8620002ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613813806200032e6000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a591252d11610095578063dbd30ae011610064578063dbd30ae01461060d578063e8a3d48514610624578063e985e9c51461064f578063f2fde38b1461068c576101c2565b8063a591252d14610551578063b88d4fde1461057c578063c87b56dd146105a5578063daa81cdd146105e2576101c2565b806395d89b41116100d157806395d89b41146104b6578063a035b1fe146104e1578063a0712d681461050c578063a22cb46514610528576101c2565b80638da5cb5b1461043957806391b7f5ed14610464578063938e3d7b1461048d576101c2565b806332cb6b0c116101645780636352211e1161013e5780636352211e1461039157806370a08231146103ce578063715018a61461040b578063853828b614610422576101c2565b806332cb6b0c1461031457806342842e0e1461033f57806355f804b314610368576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c057806323b872dd146102eb576101c2565b806301f56997146101c757806301ffc9a7146101f257806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101dc6106b5565b6040516101e99190612e05565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190612675565b6106bb565b6040516102269190612b48565b60405180910390f35b34801561023b57600080fd5b5061024461079d565b6040516102519190612b63565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c9190612708565b61082f565b60405161028e9190612ae1565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612639565b6108b4565b005b3480156102cc57600080fd5b506102d56109cc565b6040516102e29190612e05565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612533565b6109dd565b005b34801561032057600080fd5b50610329610a3d565b6040516103369190612e05565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190612533565b610a43565b005b34801561037457600080fd5b5061038f600480360381019061038a91906126c7565b610a63565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612708565b610af9565b6040516103c59190612ae1565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906124ce565b610bab565b6040516104029190612e05565b60405180910390f35b34801561041757600080fd5b50610420610c63565b005b34801561042e57600080fd5b50610437610ceb565b005b34801561044557600080fd5b5061044e610da7565b60405161045b9190612ae1565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190612708565b610dd1565b005b34801561049957600080fd5b506104b460048036038101906104af91906126c7565b610e57565b005b3480156104c257600080fd5b506104cb610eed565b6040516104d89190612b63565b60405180910390f35b3480156104ed57600080fd5b506104f6610f7f565b6040516105039190612e05565b60405180910390f35b61052660048036038101906105219190612708565b610f85565b005b34801561053457600080fd5b5061054f600480360381019061054a91906125fd565b611108565b005b34801561055d57600080fd5b5061056661111e565b6040516105739190612e05565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612582565b611124565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190612708565b611186565b6040516105d99190612b63565b60405180910390f35b3480156105ee57600080fd5b506105f761122d565b6040516106049190612b48565b60405180910390f35b34801561061957600080fd5b50610622611240565b005b34801561063057600080fd5b506106396112e8565b6040516106469190612b63565b60405180910390f35b34801561065b57600080fd5b50610676600480360381019061067191906124f7565b61137a565b6040516106839190612b48565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae91906124ce565b61140e565b005b600c5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610796575061079582611506565b5b9050919050565b6060600080546107ac906130b5565b80601f01602080910402602001604051908101604052809291908181526020018280546107d8906130b5565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b600061083a82611570565b610879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087090612d45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bf82610af9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790612dc5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094f6115dc565b73ffffffffffffffffffffffffffffffffffffffff16148061097e575061097d816109786115dc565b61137a565b5b6109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490612c85565b60405180910390fd5b6109c783836115e4565b505050565b60006109d8600761169d565b905090565b6109ee6109e86115dc565b826116ab565b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612de5565b60405180910390fd5b610a38838383611789565b505050565b61271081565b610a5e83838360405180602001604052806000815250611124565b505050565b610a6b6115dc565b73ffffffffffffffffffffffffffffffffffffffff16610a89610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690612d65565b60405180910390fd5b8060089080519060200190610af59291906122f2565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990612ce5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390612cc5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c6b6115dc565b73ffffffffffffffffffffffffffffffffffffffff16610c89610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690612d65565b60405180910390fd5b610ce960006119e5565b565b610cf36115dc565b73ffffffffffffffffffffffffffffffffffffffff16610d11610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90612d65565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610da557600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dd96115dc565b73ffffffffffffffffffffffffffffffffffffffff16610df7610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612d65565b60405180910390fd5b80600a8190555050565b610e5f6115dc565b73ffffffffffffffffffffffffffffffffffffffff16610e7d610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90612d65565b60405180910390fd5b8060099080519060200190610ee99291906122f2565b5050565b606060018054610efc906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610f28906130b5565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b600a5481565b600d60009054906101000a900460ff16610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90612c65565b60405180910390fd5b600c54811115611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090612d25565b60405180910390fd5b612710816110256109cc565b61102f9190612eea565b1115611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790612c45565b60405180910390fd5b600b548161107c6109cc565b6110869190612eea565b11156110dd5780600a5461109a9190612f71565b3410156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390612ca5565b60405180910390fd5b5b60005b81811015611104576110f133611aab565b80806110fc90613118565b9150506110e0565b5050565b61111a6111136115dc565b8383611ade565b5050565b600b5481565b61113561112f6115dc565b836116ab565b611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612de5565b60405180910390fd5b61118084848484611c4b565b50505050565b606061119182611570565b6111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790612da5565b60405180910390fd5b60006111da611ca7565b905060008151116111fa5760405180602001604052806000815250611225565b8061120484611d39565b604051602001611215929190612abd565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b6112486115dc565b73ffffffffffffffffffffffffffffffffffffffff16611266610da7565b73ffffffffffffffffffffffffffffffffffffffff16146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612d65565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060600980546112f7906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611323906130b5565b80156113705780601f1061134557610100808354040283529160200191611370565b820191906000526020600020905b81548152906001019060200180831161135357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114166115dc565b73ffffffffffffffffffffffffffffffffffffffff16611434610da7565b73ffffffffffffffffffffffffffffffffffffffff161461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190612ba5565b60405180910390fd5b611503816119e5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661165783610af9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006116b682611570565b6116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec90612c25565b60405180910390fd5b600061170083610af9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061176f57508373ffffffffffffffffffffffffffffffffffffffff166117578461082f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611780575061177f818561137a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117a982610af9565b73ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690612d85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690612be5565b60405180910390fd5b61187a838383611ee6565b6118856000826115e4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118d59190612fcb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192c9190612eea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611ab7600761169d565b9050611ac36007611eeb565b611ada8261271083611ad59190612eea565b611f01565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490612c05565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c3e9190612b48565b60405180910390a3505050565b611c56848484611789565b611c6284848484611f1f565b611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890612b85565b60405180910390fd5b50505050565b606060088054611cb6906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce2906130b5565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b60606000821415611d81576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ee1565b600082905060005b60008214611db3578080611d9c90613118565b915050600a82611dac9190612f40565b9150611d89565b60008167ffffffffffffffff811115611df5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e275781602001600182028036833780820191505090505b5090505b60008514611eda57600182611e409190612fcb565b9150600a85611e4f9190613161565b6030611e5b9190612eea565b60f81b818381518110611e97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ed39190612f40565b9450611e2b565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f1b8282604051806020016040528060008152506120b6565b5050565b6000611f408473ffffffffffffffffffffffffffffffffffffffff16612111565b156120a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f696115dc565b8786866040518563ffffffff1660e01b8152600401611f8b9493929190612afc565b602060405180830381600087803b158015611fa557600080fd5b505af1925050508015611fd657506040513d601f19601f82011682018060405250810190611fd3919061269e565b60015b612059573d8060008114612006576040519150601f19603f3d011682016040523d82523d6000602084013e61200b565b606091505b50600081511415612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890612b85565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120ae565b600190505b949350505050565b6120c08383612124565b6120cd6000848484611f1f565b61210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390612b85565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90612d05565b60405180910390fd5b61219d81611570565b156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490612bc5565b60405180910390fd5b6121e960008383611ee6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122399190612eea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546122fe906130b5565b90600052602060002090601f0160209004810192826123205760008555612367565b82601f1061233957805160ff1916838001178555612367565b82800160010185558215612367579182015b8281111561236657825182559160200191906001019061234b565b5b5090506123749190612378565b5090565b5b80821115612391576000816000905550600101612379565b5090565b60006123a86123a384612e45565b612e20565b9050828152602081018484840111156123c057600080fd5b6123cb848285613073565b509392505050565b60006123e66123e184612e76565b612e20565b9050828152602081018484840111156123fe57600080fd5b612409848285613073565b509392505050565b60008135905061242081613781565b92915050565b60008135905061243581613798565b92915050565b60008135905061244a816137af565b92915050565b60008151905061245f816137af565b92915050565b600082601f83011261247657600080fd5b8135612486848260208601612395565b91505092915050565b600082601f8301126124a057600080fd5b81356124b08482602086016123d3565b91505092915050565b6000813590506124c8816137c6565b92915050565b6000602082840312156124e057600080fd5b60006124ee84828501612411565b91505092915050565b6000806040838503121561250a57600080fd5b600061251885828601612411565b925050602061252985828601612411565b9150509250929050565b60008060006060848603121561254857600080fd5b600061255686828701612411565b935050602061256786828701612411565b9250506040612578868287016124b9565b9150509250925092565b6000806000806080858703121561259857600080fd5b60006125a687828801612411565b94505060206125b787828801612411565b93505060406125c8878288016124b9565b925050606085013567ffffffffffffffff8111156125e557600080fd5b6125f187828801612465565b91505092959194509250565b6000806040838503121561261057600080fd5b600061261e85828601612411565b925050602061262f85828601612426565b9150509250929050565b6000806040838503121561264c57600080fd5b600061265a85828601612411565b925050602061266b858286016124b9565b9150509250929050565b60006020828403121561268757600080fd5b60006126958482850161243b565b91505092915050565b6000602082840312156126b057600080fd5b60006126be84828501612450565b91505092915050565b6000602082840312156126d957600080fd5b600082013567ffffffffffffffff8111156126f357600080fd5b6126ff8482850161248f565b91505092915050565b60006020828403121561271a57600080fd5b6000612728848285016124b9565b91505092915050565b61273a81612fff565b82525050565b61274981613011565b82525050565b600061275a82612ea7565b6127648185612ebd565b9350612774818560208601613082565b61277d8161324e565b840191505092915050565b600061279382612eb2565b61279d8185612ece565b93506127ad818560208601613082565b6127b68161324e565b840191505092915050565b60006127cc82612eb2565b6127d68185612edf565b93506127e6818560208601613082565b80840191505092915050565b60006127ff603283612ece565b915061280a8261325f565b604082019050919050565b6000612822602683612ece565b915061282d826132ae565b604082019050919050565b6000612845601c83612ece565b9150612850826132fd565b602082019050919050565b6000612868602483612ece565b915061287382613326565b604082019050919050565b600061288b601983612ece565b915061289682613375565b602082019050919050565b60006128ae602c83612ece565b91506128b98261339e565b604082019050919050565b60006128d1600883612ece565b91506128dc826133ed565b602082019050919050565b60006128f4601283612ece565b91506128ff82613416565b602082019050919050565b6000612917603883612ece565b91506129228261343f565b604082019050919050565b600061293a601983612ece565b91506129458261348e565b602082019050919050565b600061295d602a83612ece565b9150612968826134b7565b604082019050919050565b6000612980602983612ece565b915061298b82613506565b604082019050919050565b60006129a3602083612ece565b91506129ae82613555565b602082019050919050565b60006129c6602283612ece565b91506129d18261357e565b604082019050919050565b60006129e9602c83612ece565b91506129f4826135cd565b604082019050919050565b6000612a0c602083612ece565b9150612a178261361c565b602082019050919050565b6000612a2f602983612ece565b9150612a3a82613645565b604082019050919050565b6000612a52602f83612ece565b9150612a5d82613694565b604082019050919050565b6000612a75602183612ece565b9150612a80826136e3565b604082019050919050565b6000612a98603183612ece565b9150612aa382613732565b604082019050919050565b612ab781613069565b82525050565b6000612ac982856127c1565b9150612ad582846127c1565b91508190509392505050565b6000602082019050612af66000830184612731565b92915050565b6000608082019050612b116000830187612731565b612b1e6020830186612731565b612b2b6040830185612aae565b8181036060830152612b3d818461274f565b905095945050505050565b6000602082019050612b5d6000830184612740565b92915050565b60006020820190508181036000830152612b7d8184612788565b905092915050565b60006020820190508181036000830152612b9e816127f2565b9050919050565b60006020820190508181036000830152612bbe81612815565b9050919050565b60006020820190508181036000830152612bde81612838565b9050919050565b60006020820190508181036000830152612bfe8161285b565b9050919050565b60006020820190508181036000830152612c1e8161287e565b9050919050565b60006020820190508181036000830152612c3e816128a1565b9050919050565b60006020820190508181036000830152612c5e816128c4565b9050919050565b60006020820190508181036000830152612c7e816128e7565b9050919050565b60006020820190508181036000830152612c9e8161290a565b9050919050565b60006020820190508181036000830152612cbe8161292d565b9050919050565b60006020820190508181036000830152612cde81612950565b9050919050565b60006020820190508181036000830152612cfe81612973565b9050919050565b60006020820190508181036000830152612d1e81612996565b9050919050565b60006020820190508181036000830152612d3e816129b9565b9050919050565b60006020820190508181036000830152612d5e816129dc565b9050919050565b60006020820190508181036000830152612d7e816129ff565b9050919050565b60006020820190508181036000830152612d9e81612a22565b9050919050565b60006020820190508181036000830152612dbe81612a45565b9050919050565b60006020820190508181036000830152612dde81612a68565b9050919050565b60006020820190508181036000830152612dfe81612a8b565b9050919050565b6000602082019050612e1a6000830184612aae565b92915050565b6000612e2a612e3b565b9050612e3682826130e7565b919050565b6000604051905090565b600067ffffffffffffffff821115612e6057612e5f61321f565b5b612e698261324e565b9050602081019050919050565b600067ffffffffffffffff821115612e9157612e9061321f565b5b612e9a8261324e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ef582613069565b9150612f0083613069565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f3557612f34613192565b5b828201905092915050565b6000612f4b82613069565b9150612f5683613069565b925082612f6657612f656131c1565b5b828204905092915050565b6000612f7c82613069565b9150612f8783613069565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fc057612fbf613192565b5b828202905092915050565b6000612fd682613069565b9150612fe183613069565b925082821015612ff457612ff3613192565b5b828203905092915050565b600061300a82613049565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130a0578082015181840152602081019050613085565b838111156130af576000848401525b50505050565b600060028204905060018216806130cd57607f821691505b602082108114156130e1576130e06131f0565b5b50919050565b6130f08261324e565b810181811067ffffffffffffffff8211171561310f5761310e61321f565b5b80604052505050565b600061312382613069565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315657613155613192565b5b600182019050919050565b600061316c82613069565b915061317783613069565b925082613187576131866131c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f65746865722073656e6420697320756e64657220707269636500000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61378a81612fff565b811461379557600080fd5b50565b6137a181613011565b81146137ac57600080fd5b50565b6137b88161301d565b81146137c357600080fd5b50565b6137cf81613069565b81146137da57600080fd5b5056fea2646970667358221220c0b2b9989ac684ef09d379aaf4d8819f110e1670708fff08cac7b3c60f8198fe64736f6c63430008020033697066733a2f2f516d61626e68636374364e34383778454e6e59656b7158387174506d59593667546f71504b31474b576f6a426b6a

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a591252d11610095578063dbd30ae011610064578063dbd30ae01461060d578063e8a3d48514610624578063e985e9c51461064f578063f2fde38b1461068c576101c2565b8063a591252d14610551578063b88d4fde1461057c578063c87b56dd146105a5578063daa81cdd146105e2576101c2565b806395d89b41116100d157806395d89b41146104b6578063a035b1fe146104e1578063a0712d681461050c578063a22cb46514610528576101c2565b80638da5cb5b1461043957806391b7f5ed14610464578063938e3d7b1461048d576101c2565b806332cb6b0c116101645780636352211e1161013e5780636352211e1461039157806370a08231146103ce578063715018a61461040b578063853828b614610422576101c2565b806332cb6b0c1461031457806342842e0e1461033f57806355f804b314610368576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c057806323b872dd146102eb576101c2565b806301f56997146101c757806301ffc9a7146101f257806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101dc6106b5565b6040516101e99190612e05565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190612675565b6106bb565b6040516102269190612b48565b60405180910390f35b34801561023b57600080fd5b5061024461079d565b6040516102519190612b63565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c9190612708565b61082f565b60405161028e9190612ae1565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612639565b6108b4565b005b3480156102cc57600080fd5b506102d56109cc565b6040516102e29190612e05565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612533565b6109dd565b005b34801561032057600080fd5b50610329610a3d565b6040516103369190612e05565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190612533565b610a43565b005b34801561037457600080fd5b5061038f600480360381019061038a91906126c7565b610a63565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612708565b610af9565b6040516103c59190612ae1565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906124ce565b610bab565b6040516104029190612e05565b60405180910390f35b34801561041757600080fd5b50610420610c63565b005b34801561042e57600080fd5b50610437610ceb565b005b34801561044557600080fd5b5061044e610da7565b60405161045b9190612ae1565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190612708565b610dd1565b005b34801561049957600080fd5b506104b460048036038101906104af91906126c7565b610e57565b005b3480156104c257600080fd5b506104cb610eed565b6040516104d89190612b63565b60405180910390f35b3480156104ed57600080fd5b506104f6610f7f565b6040516105039190612e05565b60405180910390f35b61052660048036038101906105219190612708565b610f85565b005b34801561053457600080fd5b5061054f600480360381019061054a91906125fd565b611108565b005b34801561055d57600080fd5b5061056661111e565b6040516105739190612e05565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612582565b611124565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190612708565b611186565b6040516105d99190612b63565b60405180910390f35b3480156105ee57600080fd5b506105f761122d565b6040516106049190612b48565b60405180910390f35b34801561061957600080fd5b50610622611240565b005b34801561063057600080fd5b506106396112e8565b6040516106469190612b63565b60405180910390f35b34801561065b57600080fd5b50610676600480360381019061067191906124f7565b61137a565b6040516106839190612b48565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae91906124ce565b61140e565b005b600c5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610796575061079582611506565b5b9050919050565b6060600080546107ac906130b5565b80601f01602080910402602001604051908101604052809291908181526020018280546107d8906130b5565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b600061083a82611570565b610879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087090612d45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bf82610af9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790612dc5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094f6115dc565b73ffffffffffffffffffffffffffffffffffffffff16148061097e575061097d816109786115dc565b61137a565b5b6109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490612c85565b60405180910390fd5b6109c783836115e4565b505050565b60006109d8600761169d565b905090565b6109ee6109e86115dc565b826116ab565b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612de5565b60405180910390fd5b610a38838383611789565b505050565b61271081565b610a5e83838360405180602001604052806000815250611124565b505050565b610a6b6115dc565b73ffffffffffffffffffffffffffffffffffffffff16610a89610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690612d65565b60405180910390fd5b8060089080519060200190610af59291906122f2565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990612ce5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390612cc5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c6b6115dc565b73ffffffffffffffffffffffffffffffffffffffff16610c89610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690612d65565b60405180910390fd5b610ce960006119e5565b565b610cf36115dc565b73ffffffffffffffffffffffffffffffffffffffff16610d11610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90612d65565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610da557600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dd96115dc565b73ffffffffffffffffffffffffffffffffffffffff16610df7610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612d65565b60405180910390fd5b80600a8190555050565b610e5f6115dc565b73ffffffffffffffffffffffffffffffffffffffff16610e7d610da7565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90612d65565b60405180910390fd5b8060099080519060200190610ee99291906122f2565b5050565b606060018054610efc906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610f28906130b5565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b600a5481565b600d60009054906101000a900460ff16610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90612c65565b60405180910390fd5b600c54811115611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090612d25565b60405180910390fd5b612710816110256109cc565b61102f9190612eea565b1115611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790612c45565b60405180910390fd5b600b548161107c6109cc565b6110869190612eea565b11156110dd5780600a5461109a9190612f71565b3410156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390612ca5565b60405180910390fd5b5b60005b81811015611104576110f133611aab565b80806110fc90613118565b9150506110e0565b5050565b61111a6111136115dc565b8383611ade565b5050565b600b5481565b61113561112f6115dc565b836116ab565b611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612de5565b60405180910390fd5b61118084848484611c4b565b50505050565b606061119182611570565b6111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790612da5565b60405180910390fd5b60006111da611ca7565b905060008151116111fa5760405180602001604052806000815250611225565b8061120484611d39565b604051602001611215929190612abd565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b6112486115dc565b73ffffffffffffffffffffffffffffffffffffffff16611266610da7565b73ffffffffffffffffffffffffffffffffffffffff16146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612d65565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6060600980546112f7906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611323906130b5565b80156113705780601f1061134557610100808354040283529160200191611370565b820191906000526020600020905b81548152906001019060200180831161135357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114166115dc565b73ffffffffffffffffffffffffffffffffffffffff16611434610da7565b73ffffffffffffffffffffffffffffffffffffffff161461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612d65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190612ba5565b60405180910390fd5b611503816119e5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661165783610af9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006116b682611570565b6116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec90612c25565b60405180910390fd5b600061170083610af9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061176f57508373ffffffffffffffffffffffffffffffffffffffff166117578461082f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611780575061177f818561137a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117a982610af9565b73ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690612d85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690612be5565b60405180910390fd5b61187a838383611ee6565b6118856000826115e4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118d59190612fcb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192c9190612eea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611ab7600761169d565b9050611ac36007611eeb565b611ada8261271083611ad59190612eea565b611f01565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490612c05565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c3e9190612b48565b60405180910390a3505050565b611c56848484611789565b611c6284848484611f1f565b611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890612b85565b60405180910390fd5b50505050565b606060088054611cb6906130b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce2906130b5565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b60606000821415611d81576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ee1565b600082905060005b60008214611db3578080611d9c90613118565b915050600a82611dac9190612f40565b9150611d89565b60008167ffffffffffffffff811115611df5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e275781602001600182028036833780820191505090505b5090505b60008514611eda57600182611e409190612fcb565b9150600a85611e4f9190613161565b6030611e5b9190612eea565b60f81b818381518110611e97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ed39190612f40565b9450611e2b565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f1b8282604051806020016040528060008152506120b6565b5050565b6000611f408473ffffffffffffffffffffffffffffffffffffffff16612111565b156120a9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f696115dc565b8786866040518563ffffffff1660e01b8152600401611f8b9493929190612afc565b602060405180830381600087803b158015611fa557600080fd5b505af1925050508015611fd657506040513d601f19601f82011682018060405250810190611fd3919061269e565b60015b612059573d8060008114612006576040519150601f19603f3d011682016040523d82523d6000602084013e61200b565b606091505b50600081511415612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890612b85565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120ae565b600190505b949350505050565b6120c08383612124565b6120cd6000848484611f1f565b61210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390612b85565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90612d05565b60405180910390fd5b61219d81611570565b156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490612bc5565b60405180910390fd5b6121e960008383611ee6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122399190612eea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546122fe906130b5565b90600052602060002090601f0160209004810192826123205760008555612367565b82601f1061233957805160ff1916838001178555612367565b82800160010185558215612367579182015b8281111561236657825182559160200191906001019061234b565b5b5090506123749190612378565b5090565b5b80821115612391576000816000905550600101612379565b5090565b60006123a86123a384612e45565b612e20565b9050828152602081018484840111156123c057600080fd5b6123cb848285613073565b509392505050565b60006123e66123e184612e76565b612e20565b9050828152602081018484840111156123fe57600080fd5b612409848285613073565b509392505050565b60008135905061242081613781565b92915050565b60008135905061243581613798565b92915050565b60008135905061244a816137af565b92915050565b60008151905061245f816137af565b92915050565b600082601f83011261247657600080fd5b8135612486848260208601612395565b91505092915050565b600082601f8301126124a057600080fd5b81356124b08482602086016123d3565b91505092915050565b6000813590506124c8816137c6565b92915050565b6000602082840312156124e057600080fd5b60006124ee84828501612411565b91505092915050565b6000806040838503121561250a57600080fd5b600061251885828601612411565b925050602061252985828601612411565b9150509250929050565b60008060006060848603121561254857600080fd5b600061255686828701612411565b935050602061256786828701612411565b9250506040612578868287016124b9565b9150509250925092565b6000806000806080858703121561259857600080fd5b60006125a687828801612411565b94505060206125b787828801612411565b93505060406125c8878288016124b9565b925050606085013567ffffffffffffffff8111156125e557600080fd5b6125f187828801612465565b91505092959194509250565b6000806040838503121561261057600080fd5b600061261e85828601612411565b925050602061262f85828601612426565b9150509250929050565b6000806040838503121561264c57600080fd5b600061265a85828601612411565b925050602061266b858286016124b9565b9150509250929050565b60006020828403121561268757600080fd5b60006126958482850161243b565b91505092915050565b6000602082840312156126b057600080fd5b60006126be84828501612450565b91505092915050565b6000602082840312156126d957600080fd5b600082013567ffffffffffffffff8111156126f357600080fd5b6126ff8482850161248f565b91505092915050565b60006020828403121561271a57600080fd5b6000612728848285016124b9565b91505092915050565b61273a81612fff565b82525050565b61274981613011565b82525050565b600061275a82612ea7565b6127648185612ebd565b9350612774818560208601613082565b61277d8161324e565b840191505092915050565b600061279382612eb2565b61279d8185612ece565b93506127ad818560208601613082565b6127b68161324e565b840191505092915050565b60006127cc82612eb2565b6127d68185612edf565b93506127e6818560208601613082565b80840191505092915050565b60006127ff603283612ece565b915061280a8261325f565b604082019050919050565b6000612822602683612ece565b915061282d826132ae565b604082019050919050565b6000612845601c83612ece565b9150612850826132fd565b602082019050919050565b6000612868602483612ece565b915061287382613326565b604082019050919050565b600061288b601983612ece565b915061289682613375565b602082019050919050565b60006128ae602c83612ece565b91506128b98261339e565b604082019050919050565b60006128d1600883612ece565b91506128dc826133ed565b602082019050919050565b60006128f4601283612ece565b91506128ff82613416565b602082019050919050565b6000612917603883612ece565b91506129228261343f565b604082019050919050565b600061293a601983612ece565b91506129458261348e565b602082019050919050565b600061295d602a83612ece565b9150612968826134b7565b604082019050919050565b6000612980602983612ece565b915061298b82613506565b604082019050919050565b60006129a3602083612ece565b91506129ae82613555565b602082019050919050565b60006129c6602283612ece565b91506129d18261357e565b604082019050919050565b60006129e9602c83612ece565b91506129f4826135cd565b604082019050919050565b6000612a0c602083612ece565b9150612a178261361c565b602082019050919050565b6000612a2f602983612ece565b9150612a3a82613645565b604082019050919050565b6000612a52602f83612ece565b9150612a5d82613694565b604082019050919050565b6000612a75602183612ece565b9150612a80826136e3565b604082019050919050565b6000612a98603183612ece565b9150612aa382613732565b604082019050919050565b612ab781613069565b82525050565b6000612ac982856127c1565b9150612ad582846127c1565b91508190509392505050565b6000602082019050612af66000830184612731565b92915050565b6000608082019050612b116000830187612731565b612b1e6020830186612731565b612b2b6040830185612aae565b8181036060830152612b3d818461274f565b905095945050505050565b6000602082019050612b5d6000830184612740565b92915050565b60006020820190508181036000830152612b7d8184612788565b905092915050565b60006020820190508181036000830152612b9e816127f2565b9050919050565b60006020820190508181036000830152612bbe81612815565b9050919050565b60006020820190508181036000830152612bde81612838565b9050919050565b60006020820190508181036000830152612bfe8161285b565b9050919050565b60006020820190508181036000830152612c1e8161287e565b9050919050565b60006020820190508181036000830152612c3e816128a1565b9050919050565b60006020820190508181036000830152612c5e816128c4565b9050919050565b60006020820190508181036000830152612c7e816128e7565b9050919050565b60006020820190508181036000830152612c9e8161290a565b9050919050565b60006020820190508181036000830152612cbe8161292d565b9050919050565b60006020820190508181036000830152612cde81612950565b9050919050565b60006020820190508181036000830152612cfe81612973565b9050919050565b60006020820190508181036000830152612d1e81612996565b9050919050565b60006020820190508181036000830152612d3e816129b9565b9050919050565b60006020820190508181036000830152612d5e816129dc565b9050919050565b60006020820190508181036000830152612d7e816129ff565b9050919050565b60006020820190508181036000830152612d9e81612a22565b9050919050565b60006020820190508181036000830152612dbe81612a45565b9050919050565b60006020820190508181036000830152612dde81612a68565b9050919050565b60006020820190508181036000830152612dfe81612a8b565b9050919050565b6000602082019050612e1a6000830184612aae565b92915050565b6000612e2a612e3b565b9050612e3682826130e7565b919050565b6000604051905090565b600067ffffffffffffffff821115612e6057612e5f61321f565b5b612e698261324e565b9050602081019050919050565b600067ffffffffffffffff821115612e9157612e9061321f565b5b612e9a8261324e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ef582613069565b9150612f0083613069565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f3557612f34613192565b5b828201905092915050565b6000612f4b82613069565b9150612f5683613069565b925082612f6657612f656131c1565b5b828204905092915050565b6000612f7c82613069565b9150612f8783613069565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fc057612fbf613192565b5b828202905092915050565b6000612fd682613069565b9150612fe183613069565b925082821015612ff457612ff3613192565b5b828203905092915050565b600061300a82613049565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130a0578082015181840152602081019050613085565b838111156130af576000848401525b50505050565b600060028204905060018216806130cd57607f821691505b602082108114156130e1576130e06131f0565b5b50919050565b6130f08261324e565b810181811067ffffffffffffffff8211171561310f5761310e61321f565b5b80604052505050565b600061312382613069565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315657613155613192565b5b600182019050919050565b600061316c82613069565b915061317783613069565b925082613187576131866131c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f65746865722073656e6420697320756e64657220707269636500000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61378a81612fff565b811461379557600080fd5b50565b6137a181613011565b81146137ac57600080fd5b50565b6137b88161301d565b81146137c357600080fd5b50565b6137cf81613069565b81146137da57600080fd5b5056fea2646970667358221220c0b2b9989ac684ef09d379aaf4d8819f110e1670708fff08cac7b3c60f8198fe64736f6c63430008020033

Deployed Bytecode Sourcemap

37722:2170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38040:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25207:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27711:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27234:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39098:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28461:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37920:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28871:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39320:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25846:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25576:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;39772:117;;;;;;;;;;;;;:::i;:::-;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39673;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39437:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26321:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37966:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38387:511;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28004:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38003:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29127:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26496:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38085:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39570:91;;;;;;;;;;;;;:::i;:::-;;39211:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28230:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38040:38;;;;:::o;25207:305::-;25309:4;25361:25;25346:40;;;:11;:40;;;;:105;;;;25418:33;25403:48;;;:11;:48;;;;25346:105;:158;;;;25468:36;25492:11;25468:23;:36::i;:::-;25346:158;25326:178;;25207:305;;;:::o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;27815:16;27823:7;27815;:16::i;:::-;27807:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27900:15;:24;27916:7;27900:24;;;;;;;;;;;;;;;;;;;;;27893:31;;27711:221;;;:::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;27373:11;;:2;:11;;;;27365:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27473:5;27457:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27482:37;27499:5;27506:12;:10;:12::i;:::-;27482:16;:37::i;:::-;27457:62;27435:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27234:411;;;:::o;39098:101::-;39142:4;39166:25;:15;:23;:25::i;:::-;39159:32;;39098:101;:::o;28461:339::-;28656:41;28675:12;:10;:12::i;:::-;28689:7;28656:18;:41::i;:::-;28648:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;:::-;28461:339;;;:::o;37920:39::-;37954:5;37920:39;:::o;28871:185::-;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;:::-;28871:185;;;:::o;39320:105::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39407:10:::1;39396:8;:21;;;;;;;;;;;;:::i;:::-;;39320:105:::0;:::o;25846:239::-;25918:7;25938:13;25954:7;:16;25962:7;25954:16;;;;;;;;;;;;;;;;;;;;;25938:32;;26006:1;25989:19;;:5;:19;;;;25981:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26072:5;26065:12;;;25846:239;;;:::o;25576:208::-;25648:7;25693:1;25676:19;;:5;:19;;;;25668:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25760:9;:16;25770:5;25760:16;;;;;;;;;;;;;;;;25753:23;;25576:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;39772:117::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39841:10:::1;39833:24;;:47;39858:21;39833:47;;;;;;;;;;;;;;;;;;;;;;;39825:56;;;::::0;::::1;;39772:117::o:0;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;39673:::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39744:8:::1;39736:5;:16;;;;39673:87:::0;:::o;39437:121::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39536:14:::1;39521:12;:29;;;;;;;;;;;;:::i;:::-;;39437:121:::0;:::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26321:104;:::o;37966:30::-;;;;:::o;38387:511::-;38452:13;;;;;;;;;;;38444:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;38519:21;;38507:8;:33;;38499:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;37954:5;38614:8;38598:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;38590:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;38691:11;;38680:8;38664:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;38660:138;;;38748:8;38740:5;;:16;;;;:::i;:::-;38727:9;:29;;38719:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38660:138;38813:6;38808:83;38829:8;38825:1;:12;38808:83;;;38859:20;38868:10;38859:8;:20::i;:::-;38839:3;;;;;:::i;:::-;;;;38808:83;;;;38387:511;:::o;28004:155::-;28099:52;28118:12;:10;:12::i;:::-;28132:8;28142;28099:18;:52::i;:::-;28004:155;;:::o;38003:30::-;;;;:::o;29127:328::-;29302:41;29321:12;:10;:12::i;:::-;29335:7;29302:18;:41::i;:::-;29294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;26496:334::-;26569:13;26603:16;26611:7;26603;:16::i;:::-;26595:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26684:21;26708:10;:8;:10::i;:::-;26684:34;;26760:1;26742:7;26736:21;:25;:86;;;;;;;;;;;;;;;;;26788:7;26797:18;:7;:16;:18::i;:::-;26771:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26736:86;26729:93;;;26496:334;;;:::o;38085:33::-;;;;;;;;;;;;;:::o;39570:91::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39640:13:::1;;;;;;;;;;;39639:14;39623:13;;:30;;;;;;;;;;;;;;;;;;39570:91::o:0;39211:97::-;39255:13;39288:12;39281:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39211:97;:::o;28230:164::-;28327:4;28351:18;:25;28370:5;28351:25;;;;;;;;;;;;;;;:35;28377:8;28351:35;;;;;;;;;;;;;;;;;;;;;;;;;28344:42;;28230:164;;;;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;17976:157::-;18061:4;18100:25;18085:40;;;:11;:40;;;;18078:47;;17976:157;;;:::o;30965:127::-;31030:4;31082:1;31054:30;;:7;:16;31062:7;31054:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31047:37;;30965:127;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;34947:174::-;35049:2;35022:15;:24;35038:7;35022:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35105:7;35101:2;35067:46;;35076:23;35091:7;35076:14;:23::i;:::-;35067:46;;;;;;;;;;;;34947:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;31259:348::-;31352:4;31377:16;31385:7;31377;:16::i;:::-;31369:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;31511:16;;:7;:16;;;:51;;;;31555:7;31531:31;;:20;31543:7;31531:11;:20::i;:::-;:31;;;31511:51;:87;;;;31566:32;31583:5;31590:7;31566:16;:32::i;:::-;31511:87;31503:96;;;31259:348;;;;:::o;34251:578::-;34410:4;34383:31;;:23;34398:7;34383:14;:23::i;:::-;:31;;;34375:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34493:1;34479:16;;:2;:16;;;;34471:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34549:39;34570:4;34576:2;34580:7;34549:20;:39::i;:::-;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;34714:1;34695:9;:15;34705:4;34695:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34743:1;34726:9;:13;34736:2;34726:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34774:2;34755:7;:16;34763:7;34755:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34813:7;34809:2;34794:27;;34803:4;34794:27;;;;;;;;;;;;34251:578;;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6814:191;;:::o;38906:180::-;38956:15;38974:25;:15;:23;:25::i;:::-;38956:43;;39010:27;:15;:25;:27::i;:::-;39048:30;39058:2;39072:5;39062:7;:15;;;;:::i;:::-;39048:9;:30::i;:::-;38906:180;;:::o;35263:315::-;35418:8;35409:17;;:5;:17;;;;35401:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35505:8;35467:18;:25;35486:5;35467:25;;;;;;;;;;;;;;;:35;35493:8;35467:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35551:8;35529:41;;35544:5;35529:41;;;35561:8;35529:41;;;;;;:::i;:::-;;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30337:315;;;;:::o;38278:101::-;38330:13;38363:8;38356:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38278:101;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;37514:126::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;:::-;31949:110;;:::o;36143:799::-;36298:4;36319:15;:2;:13;;;:15::i;:::-;36315:620;;;36371:2;36355:36;;;36392:12;:10;:12::i;:::-;36406:4;36412:7;36421:5;36355:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36614:1;36597:6;:13;:18;36593:272;;;36640:60;;;;;;;;;;:::i;:::-;;;;;;;;36593:272;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;36488:41;;;36478:51;;;:6;:51;;;;36471:58;;;;;36315:620;36919:4;36912:11;;36143:799;;;;;;;:::o;32286:321::-;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32286:321;;;:::o;7832:387::-;7892:4;8100:12;8167:7;8155:20;8147:28;;8210:1;8203:4;:8;8196:15;;;7832:387;;;:::o;32943:382::-;33037:1;33023:16;;:2;:16;;;;33015:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33096:16;33104:7;33096;:16::i;:::-;33095:17;33087:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33158:45;33187:1;33191:2;33195:7;33158:20;:45::i;:::-;33233:1;33216:9;:13;33226:2;33216:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33264:2;33245:7;:16;33253:7;33245:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33309:7;33305:2;33284:33;;33301:1;33284:33;;;;;;;;;;;;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:365::-;;9839:66;9903:1;9898:3;9839:66;:::i;:::-;9832:73;;9914:93;10003:3;9914:93;:::i;:::-;10032:2;10027:3;10023:12;10016:19;;9822:219;;;:::o;10047:366::-;;10210:67;10274:2;10269:3;10210:67;:::i;:::-;10203:74;;10286:93;10375:3;10286:93;:::i;:::-;10404:2;10399:3;10395:12;10388:19;;10193:220;;;:::o;10419:366::-;;10582:67;10646:2;10641:3;10582:67;:::i;:::-;10575:74;;10658:93;10747:3;10658:93;:::i;:::-;10776:2;10771:3;10767:12;10760:19;;10565:220;;;:::o;10791:366::-;;10954:67;11018:2;11013:3;10954:67;:::i;:::-;10947:74;;11030:93;11119:3;11030:93;:::i;:::-;11148:2;11143:3;11139:12;11132:19;;10937:220;;;:::o;11163:366::-;;11326:67;11390:2;11385:3;11326:67;:::i;:::-;11319:74;;11402:93;11491:3;11402:93;:::i;:::-;11520:2;11515:3;11511:12;11504:19;;11309:220;;;:::o;11535:366::-;;11698:67;11762:2;11757:3;11698:67;:::i;:::-;11691:74;;11774:93;11863:3;11774:93;:::i;:::-;11892:2;11887:3;11883:12;11876:19;;11681:220;;;:::o;11907:366::-;;12070:67;12134:2;12129:3;12070:67;:::i;:::-;12063:74;;12146:93;12235:3;12146:93;:::i;:::-;12264:2;12259:3;12255:12;12248:19;;12053:220;;;:::o;12279:366::-;;12442:67;12506:2;12501:3;12442:67;:::i;:::-;12435:74;;12518:93;12607:3;12518:93;:::i;:::-;12636:2;12631:3;12627:12;12620:19;;12425:220;;;:::o;12651:366::-;;12814:67;12878:2;12873:3;12814:67;:::i;:::-;12807:74;;12890:93;12979:3;12890:93;:::i;:::-;13008:2;13003:3;12999:12;12992:19;;12797:220;;;:::o;13023:366::-;;13186:67;13250:2;13245:3;13186:67;:::i;:::-;13179:74;;13262:93;13351:3;13262:93;:::i;:::-;13380:2;13375:3;13371:12;13364:19;;13169:220;;;:::o;13395:366::-;;13558:67;13622:2;13617:3;13558:67;:::i;:::-;13551:74;;13634:93;13723:3;13634:93;:::i;:::-;13752:2;13747:3;13743:12;13736:19;;13541:220;;;:::o;13767:366::-;;13930:67;13994:2;13989:3;13930:67;:::i;:::-;13923:74;;14006:93;14095:3;14006:93;:::i;:::-;14124:2;14119:3;14115:12;14108:19;;13913:220;;;:::o;14139:366::-;;14302:67;14366:2;14361:3;14302:67;:::i;:::-;14295:74;;14378:93;14467:3;14378:93;:::i;:::-;14496:2;14491:3;14487:12;14480:19;;14285:220;;;:::o;14511:366::-;;14674:67;14738:2;14733:3;14674:67;:::i;:::-;14667:74;;14750:93;14839:3;14750:93;:::i;:::-;14868:2;14863:3;14859:12;14852:19;;14657:220;;;:::o;14883:118::-;14970:24;14988:5;14970:24;:::i;:::-;14965:3;14958:37;14948:53;;:::o;15007:435::-;;15209:95;15300:3;15291:6;15209:95;:::i;:::-;15202:102;;15321:95;15412:3;15403:6;15321:95;:::i;:::-;15314:102;;15433:3;15426:10;;15191:251;;;;;:::o;15448:222::-;;15579:2;15568:9;15564:18;15556:26;;15592:71;15660:1;15649:9;15645:17;15636:6;15592:71;:::i;:::-;15546:124;;;;:::o;15676:640::-;;15909:3;15898:9;15894:19;15886:27;;15923:71;15991:1;15980:9;15976:17;15967:6;15923:71;:::i;:::-;16004:72;16072:2;16061:9;16057:18;16048:6;16004:72;:::i;:::-;16086;16154:2;16143:9;16139:18;16130:6;16086:72;:::i;:::-;16205:9;16199:4;16195:20;16190:2;16179:9;16175:18;16168:48;16233:76;16304:4;16295:6;16233:76;:::i;:::-;16225:84;;15876:440;;;;;;;:::o;16322:210::-;;16447:2;16436:9;16432:18;16424:26;;16460:65;16522:1;16511:9;16507:17;16498:6;16460:65;:::i;:::-;16414:118;;;;:::o;16538:313::-;;16689:2;16678:9;16674:18;16666:26;;16738:9;16732:4;16728:20;16724:1;16713:9;16709:17;16702:47;16766:78;16839:4;16830:6;16766:78;:::i;:::-;16758:86;;16656:195;;;;:::o;16857:419::-;;17061:2;17050:9;17046:18;17038:26;;17110:9;17104:4;17100:20;17096:1;17085:9;17081:17;17074:47;17138:131;17264:4;17138:131;:::i;:::-;17130:139;;17028:248;;;:::o;17282:419::-;;17486:2;17475:9;17471:18;17463:26;;17535:9;17529:4;17525:20;17521:1;17510:9;17506:17;17499:47;17563:131;17689:4;17563:131;:::i;:::-;17555:139;;17453:248;;;:::o;17707:419::-;;17911:2;17900:9;17896:18;17888:26;;17960:9;17954:4;17950:20;17946:1;17935:9;17931:17;17924:47;17988:131;18114:4;17988:131;:::i;:::-;17980:139;;17878:248;;;:::o;18132:419::-;;18336:2;18325:9;18321:18;18313:26;;18385:9;18379:4;18375:20;18371:1;18360:9;18356:17;18349:47;18413:131;18539:4;18413:131;:::i;:::-;18405:139;;18303:248;;;:::o;18557:419::-;;18761:2;18750:9;18746:18;18738:26;;18810:9;18804:4;18800:20;18796:1;18785:9;18781:17;18774:47;18838:131;18964:4;18838:131;:::i;:::-;18830:139;;18728:248;;;:::o;18982:419::-;;19186:2;19175:9;19171:18;19163:26;;19235:9;19229:4;19225:20;19221:1;19210:9;19206:17;19199:47;19263:131;19389:4;19263:131;:::i;:::-;19255:139;;19153:248;;;:::o;19407:419::-;;19611:2;19600:9;19596:18;19588:26;;19660:9;19654:4;19650:20;19646:1;19635:9;19631:17;19624:47;19688:131;19814:4;19688:131;:::i;:::-;19680:139;;19578:248;;;:::o;19832:419::-;;20036:2;20025:9;20021:18;20013:26;;20085:9;20079:4;20075:20;20071:1;20060:9;20056:17;20049:47;20113:131;20239:4;20113:131;:::i;:::-;20105:139;;20003:248;;;:::o;20257:419::-;;20461:2;20450:9;20446:18;20438:26;;20510:9;20504:4;20500:20;20496:1;20485:9;20481:17;20474:47;20538:131;20664:4;20538:131;:::i;:::-;20530:139;;20428:248;;;:::o;20682:419::-;;20886:2;20875:9;20871:18;20863:26;;20935:9;20929:4;20925:20;20921:1;20910:9;20906:17;20899:47;20963:131;21089:4;20963:131;:::i;:::-;20955:139;;20853:248;;;:::o;21107:419::-;;21311:2;21300:9;21296:18;21288:26;;21360:9;21354:4;21350:20;21346:1;21335:9;21331:17;21324:47;21388:131;21514:4;21388:131;:::i;:::-;21380:139;;21278:248;;;:::o;21532:419::-;;21736:2;21725:9;21721:18;21713:26;;21785:9;21779:4;21775:20;21771:1;21760:9;21756:17;21749:47;21813:131;21939:4;21813:131;:::i;:::-;21805:139;;21703:248;;;:::o;21957:419::-;;22161:2;22150:9;22146:18;22138:26;;22210:9;22204:4;22200:20;22196:1;22185:9;22181:17;22174:47;22238:131;22364:4;22238:131;:::i;:::-;22230:139;;22128:248;;;:::o;22382:419::-;;22586:2;22575:9;22571:18;22563:26;;22635:9;22629:4;22625:20;22621:1;22610:9;22606:17;22599:47;22663:131;22789:4;22663:131;:::i;:::-;22655:139;;22553:248;;;:::o;22807:419::-;;23011:2;23000:9;22996:18;22988:26;;23060:9;23054:4;23050:20;23046:1;23035:9;23031:17;23024:47;23088:131;23214:4;23088:131;:::i;:::-;23080:139;;22978:248;;;:::o;23232:419::-;;23436:2;23425:9;23421:18;23413:26;;23485:9;23479:4;23475:20;23471:1;23460:9;23456:17;23449:47;23513:131;23639:4;23513:131;:::i;:::-;23505:139;;23403:248;;;:::o;23657:419::-;;23861:2;23850:9;23846:18;23838:26;;23910:9;23904:4;23900:20;23896:1;23885:9;23881:17;23874:47;23938:131;24064:4;23938:131;:::i;:::-;23930:139;;23828:248;;;:::o;24082:419::-;;24286:2;24275:9;24271:18;24263:26;;24335:9;24329:4;24325:20;24321:1;24310:9;24306:17;24299:47;24363:131;24489:4;24363:131;:::i;:::-;24355:139;;24253:248;;;:::o;24507:419::-;;24711:2;24700:9;24696:18;24688:26;;24760:9;24754:4;24750:20;24746:1;24735:9;24731:17;24724:47;24788:131;24914:4;24788:131;:::i;:::-;24780:139;;24678:248;;;:::o;24932:419::-;;25136:2;25125:9;25121:18;25113:26;;25185:9;25179:4;25175:20;25171:1;25160:9;25156:17;25149:47;25213:131;25339:4;25213:131;:::i;:::-;25205:139;;25103:248;;;:::o;25357:222::-;;25488:2;25477:9;25473:18;25465:26;;25501:71;25569:1;25558:9;25554:17;25545:6;25501:71;:::i;:::-;25455:124;;;;:::o;25585:129::-;;25646:20;;:::i;:::-;25636:30;;25675:33;25703:4;25695:6;25675:33;:::i;:::-;25626:88;;;:::o;25720:75::-;;25786:2;25780:9;25770:19;;25760:35;:::o;25801:307::-;;25952:18;25944:6;25941:30;25938:2;;;25974:18;;:::i;:::-;25938:2;26012:29;26034:6;26012:29;:::i;:::-;26004:37;;26096:4;26090;26086:15;26078:23;;25867:241;;;:::o;26114:308::-;;26266:18;26258:6;26255:30;26252:2;;;26288:18;;:::i;:::-;26252:2;26326:29;26348:6;26326:29;:::i;:::-;26318:37;;26410:4;26404;26400:15;26392:23;;26181:241;;;:::o;26428:98::-;;26513:5;26507:12;26497:22;;26486:40;;;:::o;26532:99::-;;26618:5;26612:12;26602:22;;26591:40;;;:::o;26637:168::-;;26754:6;26749:3;26742:19;26794:4;26789:3;26785:14;26770:29;;26732:73;;;;:::o;26811:169::-;;26929:6;26924:3;26917:19;26969:4;26964:3;26960:14;26945:29;;26907:73;;;;:::o;26986:148::-;;27125:3;27110:18;;27100:34;;;;:::o;27140:305::-;;27199:20;27217:1;27199:20;:::i;:::-;27194:25;;27233:20;27251:1;27233:20;:::i;:::-;27228:25;;27387:1;27319:66;27315:74;27312:1;27309:81;27306:2;;;27393:18;;:::i;:::-;27306:2;27437:1;27434;27430:9;27423:16;;27184:261;;;;:::o;27451:185::-;;27508:20;27526:1;27508:20;:::i;:::-;27503:25;;27542:20;27560:1;27542:20;:::i;:::-;27537:25;;27581:1;27571:2;;27586:18;;:::i;:::-;27571:2;27628:1;27625;27621:9;27616:14;;27493:143;;;;:::o;27642:348::-;;27705:20;27723:1;27705:20;:::i;:::-;27700:25;;27739:20;27757:1;27739:20;:::i;:::-;27734:25;;27927:1;27859:66;27855:74;27852:1;27849:81;27844:1;27837:9;27830:17;27826:105;27823:2;;;27934:18;;:::i;:::-;27823:2;27982:1;27979;27975:9;27964:20;;27690:300;;;;:::o;27996:191::-;;28056:20;28074:1;28056:20;:::i;:::-;28051:25;;28090:20;28108:1;28090:20;:::i;:::-;28085:25;;28129:1;28126;28123:8;28120:2;;;28134:18;;:::i;:::-;28120:2;28179:1;28176;28172:9;28164:17;;28041:146;;;;:::o;28193:96::-;;28259:24;28277:5;28259:24;:::i;:::-;28248:35;;28238:51;;;:::o;28295:90::-;;28372:5;28365:13;28358:21;28347:32;;28337:48;;;:::o;28391:149::-;;28467:66;28460:5;28456:78;28445:89;;28435:105;;;:::o;28546:126::-;;28623:42;28616:5;28612:54;28601:65;;28591:81;;;:::o;28678:77::-;;28744:5;28733:16;;28723:32;;;:::o;28761:154::-;28845:6;28840:3;28835;28822:30;28907:1;28898:6;28893:3;28889:16;28882:27;28812:103;;;:::o;28921:307::-;28989:1;28999:113;29013:6;29010:1;29007:13;28999:113;;;29098:1;29093:3;29089:11;29083:18;29079:1;29074:3;29070:11;29063:39;29035:2;29032:1;29028:10;29023:15;;28999:113;;;29130:6;29127:1;29124:13;29121:2;;;29210:1;29201:6;29196:3;29192:16;29185:27;29121:2;28970:258;;;;:::o;29234:320::-;;29315:1;29309:4;29305:12;29295:22;;29362:1;29356:4;29352:12;29383:18;29373:2;;29439:4;29431:6;29427:17;29417:27;;29373:2;29501;29493:6;29490:14;29470:18;29467:38;29464:2;;;29520:18;;:::i;:::-;29464:2;29285:269;;;;:::o;29560:281::-;29643:27;29665:4;29643:27;:::i;:::-;29635:6;29631:40;29773:6;29761:10;29758:22;29737:18;29725:10;29722:34;29719:62;29716:2;;;29784:18;;:::i;:::-;29716:2;29824:10;29820:2;29813:22;29603:238;;;:::o;29847:233::-;;29909:24;29927:5;29909:24;:::i;:::-;29900:33;;29955:66;29948:5;29945:77;29942:2;;;30025:18;;:::i;:::-;29942:2;30072:1;30065:5;30061:13;30054:20;;29890:190;;;:::o;30086:176::-;;30135:20;30153:1;30135:20;:::i;:::-;30130:25;;30169:20;30187:1;30169:20;:::i;:::-;30164:25;;30208:1;30198:2;;30213:18;;:::i;:::-;30198:2;30254:1;30251;30247:9;30242:14;;30120:142;;;;:::o;30268:180::-;30316:77;30313:1;30306:88;30413:4;30410:1;30403:15;30437:4;30434:1;30427:15;30454:180;30502:77;30499:1;30492:88;30599:4;30596:1;30589:15;30623:4;30620:1;30613:15;30640:180;30688:77;30685:1;30678:88;30785:4;30782:1;30775:15;30809:4;30806:1;30799:15;30826:180;30874:77;30871:1;30864:88;30971:4;30968:1;30961:15;30995:4;30992:1;30985:15;31012:102;;31104:2;31100:7;31095:2;31088:5;31084:14;31080:28;31070:38;;31060:54;;;:::o;31120:237::-;31260:34;31256:1;31248:6;31244:14;31237:58;31329:20;31324:2;31316:6;31312:15;31305:45;31226:131;:::o;31363:225::-;31503:34;31499:1;31491:6;31487:14;31480:58;31572:8;31567:2;31559:6;31555:15;31548:33;31469:119;:::o;31594:178::-;31734:30;31730:1;31722:6;31718:14;31711:54;31700:72;:::o;31778:223::-;31918:34;31914:1;31906:6;31902:14;31895:58;31987:6;31982:2;31974:6;31970:15;31963:31;31884:117;:::o;32007:175::-;32147:27;32143:1;32135:6;32131:14;32124:51;32113:69;:::o;32188:231::-;32328:34;32324:1;32316:6;32312:14;32305:58;32397:14;32392:2;32384:6;32380:15;32373:39;32294:125;:::o;32425:158::-;32565:10;32561:1;32553:6;32549:14;32542:34;32531:52;:::o;32589:168::-;32729:20;32725:1;32717:6;32713:14;32706:44;32695:62;:::o;32763:243::-;32903:34;32899:1;32891:6;32887:14;32880:58;32972:26;32967:2;32959:6;32955:15;32948:51;32869:137;:::o;33012:175::-;33152:27;33148:1;33140:6;33136:14;33129:51;33118:69;:::o;33193:229::-;33333:34;33329:1;33321:6;33317:14;33310:58;33402:12;33397:2;33389:6;33385:15;33378:37;33299:123;:::o;33428:228::-;33568:34;33564:1;33556:6;33552:14;33545:58;33637:11;33632:2;33624:6;33620:15;33613:36;33534:122;:::o;33662:182::-;33802:34;33798:1;33790:6;33786:14;33779:58;33768:76;:::o;33850:221::-;33990:34;33986:1;33978:6;33974:14;33967:58;34059:4;34054:2;34046:6;34042:15;34035:29;33956:115;:::o;34077:231::-;34217:34;34213:1;34205:6;34201:14;34194:58;34286:14;34281:2;34273:6;34269:15;34262:39;34183:125;:::o;34314:182::-;34454:34;34450:1;34442:6;34438:14;34431:58;34420:76;:::o;34502:228::-;34642:34;34638:1;34630:6;34626:14;34619:58;34711:11;34706:2;34698:6;34694:15;34687:36;34608:122;:::o;34736:234::-;34876:34;34872:1;34864:6;34860:14;34853:58;34945:17;34940:2;34932:6;34928:15;34921:42;34842:128;:::o;34976:220::-;35116:34;35112:1;35104:6;35100:14;35093:58;35185:3;35180:2;35172:6;35168:15;35161:28;35082:114;:::o;35202:236::-;35342:34;35338:1;35330:6;35326:14;35319:58;35411:19;35406:2;35398:6;35394:15;35387:44;35308:130;:::o;35444:122::-;35517:24;35535:5;35517:24;:::i;:::-;35510:5;35507:35;35497:2;;35556:1;35553;35546:12;35497:2;35487:79;:::o;35572:116::-;35642:21;35657:5;35642:21;:::i;:::-;35635:5;35632:32;35622:2;;35678:1;35675;35668:12;35622:2;35612:76;:::o;35694:120::-;35766:23;35783:5;35766:23;:::i;:::-;35759:5;35756:34;35746:2;;35804:1;35801;35794:12;35746:2;35736:78;:::o;35820:122::-;35893:24;35911:5;35893:24;:::i;:::-;35886:5;35883:35;35873:2;;35932:1;35929;35922:12;35873:2;35863:79;:::o

Swarm Source

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