ETH Price: $3,157.17 (-7.66%)
Gas: 4 Gwei

Token

Ethereal Collective Art Supporter (ECAS)
 

Overview

Max Total Supply

618 ECAS

Holders

284

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
vechknightvault.eth
Balance
1 ECAS
0x27013982436c909a685c4e33a768ea0bb671fd73
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:
EtherealCollectiveArtSupporter

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-23
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/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/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/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/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/token/ERC721/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/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
    }
}

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



pragma solidity ^0.8.0;
/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
 
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

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

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;
pragma abicoder v2;

contract EtherealCollectiveArtSupporter is ERC721, Ownable {
    
    using SafeMath for uint256;

    // Basic //
    string public ecasProvenance = ""; // IPFS URL WILL BE ADDED WHEN ALL SOLD OUT
    uint256 public collectiblePrice = 0.128 ether;
    uint256 public constant maxCollectiblePerPurchase = 3; // 1-3 tokens per transaction
    uint256 public constant maxCollectibles = 8168;
    uint256 public presalePurchaseLimit = 3; // PRESALE: 3 tokens per wallet maximum.
    uint256 public purchaseLimit = 10; // PUBLIC SALE: 10 tokens per wallet maximum.
    uint256 public collectibleReserve = 168; // FREE MINT FOR OWNER

    // Arrays //
    mapping(address => bool) public presalerList;
    mapping(address => uint256) public presalerListPurchases;
    mapping(address => uint256) public purchases;

    // Booleans 
    bool public saleIsActive = false;
    bool public presaleIsLive  = false;
    bool public locked = false;

    constructor() ERC721("Ethereal Collective Art Supporter", "ECAS") { }
    
    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }

    function addToPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "Null address");
            require(!presalerList[entry], "Duplicated entry");

            presalerList[entry] = true;
        }   
    }

    function removeFromPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "Null address");
            
            presalerList[entry] = false;
        }
    }

    function reserve(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply() + 1;
        require(_reserveAmount > 0 && _reserveAmount <= collectibleReserve, "Not enough reserve left for team.");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        collectibleReserve = collectibleReserve.sub(_reserveAmount);
    }

    function withdraw() public onlyOwner {
        _withdraw(msg.sender, address(this).balance);
    }
    
    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner notLocked {
        ecasProvenance = provenanceHash;
    }

    function setMintingPrice(uint256 mintingPrice) public onlyOwner notLocked {
        collectiblePrice = mintingPrice;
    }

    function setBaseURI(string memory baseURI) public onlyOwner notLocked {
        _setBaseURI(baseURI);
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() public onlyOwner {
        presaleIsLive = !presaleIsLive;
    }

    function lockMetadata() external onlyOwner {
        locked = true;
    }
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    function mint(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint");
        require(!presaleIsLive, "Only presale");
        require(numberOfTokens > 0 && numberOfTokens <= maxCollectiblePerPurchase, "Can only mint 3 tokens at a time.");
        require(totalSupply().add(numberOfTokens) <= maxCollectibles, "Purchase would exceed max supply");
        require(msg.value >= collectiblePrice.mul(numberOfTokens), "Ether value sent is not correct.");
        require(purchases[msg.sender] + numberOfTokens <= purchaseLimit, "Exceed Alloc");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply() +1;
            if (totalSupply() < maxCollectibles) {
                purchases[msg.sender]++;
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function presaleMint(uint256 numberOfTokens) external payable {
        require(!saleIsActive && presaleIsLive, "Presale closed");
        require(presalerList[msg.sender], "Not qualified");
        require(totalSupply().add(numberOfTokens) <= maxCollectibles, "Purchase would exceed max supply");
        require(presalerListPurchases[msg.sender] + numberOfTokens <= presalePurchaseLimit, "Exceed Alloc");
        require(msg.value >= collectiblePrice.mul(numberOfTokens), "Ether value sent is not correct.");
        
        for (uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply() +1;
            presalerListPurchases[msg.sender]++;
            _safeMint(msg.sender, mintIndex);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectiblePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectibleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ecasProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCollectiblePerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCollectibles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","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":"presaleIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintingPrice","type":"uint256"}],"name":"setMintingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000321565b506701c6bf5263400000600c556003600d55600a600e5560a8600f556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550348015620000a557600080fd5b5060405180606001604052806021815260200162005f78602191396040518060400160405280600481526020017f45434153000000000000000000000000000000000000000000000000000000008152506200010e6301ffc9a760e01b6200024160201b60201c565b81600690805190602001906200012692919062000321565b5080600790805190602001906200013f92919062000321565b50620001586380ac58cd60e01b6200024160201b60201c565b62000170635b5e139f60e01b6200024160201b60201c565b6200018863780e9d6360e01b6200024160201b60201c565b505060006200019c6200031960201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620004b9565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a490620003f8565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b8280546200032f906200042b565b90600052602060002090601f0160209004810192826200035357600085556200039f565b82601f106200036e57805160ff19168380011785556200039f565b828001600101855582156200039f579182015b828111156200039e57825182559160200191906001019062000381565b5b509050620003ae9190620003b2565b5090565b5b80821115620003cd576000816000905550600101620003b3565b5090565b6000620003e0601c836200041a565b9150620003ed8262000490565b602082019050919050565b600060208201905081810360008301526200041381620003d1565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200044457607f821691505b602082108114156200045b576200045a62000461565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b615aaf80620004c96000396000f3fe60806040526004361061027d5760003560e01c8063842f8b511161014f578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c51461097c578063eb8d2444146109b9578063edeb5bcd146109e4578063f032554914610a0f578063f2fde38b14610a26578063f474307014610a4f5761027d565b8063b88d4fde1461087b578063c87b56dd146108a4578063c9b298f1146108e1578063cc47a40b146108fd578063cf30901214610926578063dea08580146109515761027d565b8063989bdbb611610113578063989bdbb61461077c5780639bf80316146107935780639cf2e8d6146107d0578063a0712d681461080d578063a22cb46514610829578063b179e060146108525761027d565b8063842f8b51146106935780638462151c146106be5780638735d933146106fb5780638da5cb5b1461072657806395d89b41146107515761027d565b806334918dfd116101f35780636c0360eb116101ac5780636c0360eb1461058557806370a08231146105b0578063715018a6146105ed5780637204a3c9146106045780638417b47f1461062d578063842a77d3146106565761027d565b806334918dfd1461048b5780633ccfd60b146104a257806342842e0e146104b95780634f6ccce7146104e257806355f804b31461051f5780636352211e146105485761027d565b806318160ddd1161024557806318160ddd1461037957806318602dc8146103a457806318886657146103cf57806323b872dd146103fa57806324fd2790146104235780632f745c591461044e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780631096952314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613fa6565b610a7a565b6040516102b691906147c1565b60405180910390f35b3480156102cb57600080fd5b506102d4610ae1565b6040516102e191906147dc565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190614049565b610b73565b60405161031e9190614738565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613f19565b610bf8565b005b34801561035c57600080fd5b5061037760048036038101906103729190614000565b610d10565b005b34801561038557600080fd5b5061038e610df6565b60405161039b9190614c5e565b60405180910390f35b3480156103b057600080fd5b506103b9610e07565b6040516103c691906147c1565b60405180910390f35b3480156103db57600080fd5b506103e4610e1a565b6040516103f19190614c5e565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613e03565b610e20565b005b34801561042f57600080fd5b50610438610e80565b6040516104459190614c5e565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613f19565b610e85565b6040516104829190614c5e565b60405180910390f35b34801561049757600080fd5b506104a0610ee0565b005b3480156104ae57600080fd5b506104b7610f88565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613e03565b611010565b005b3480156104ee57600080fd5b5061050960048036038101906105049190614049565b611030565b6040516105169190614c5e565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190614000565b611053565b005b34801561055457600080fd5b5061056f600480360381019061056a9190614049565b61112b565b60405161057c9190614738565b60405180910390f35b34801561059157600080fd5b5061059a611162565b6040516105a791906147dc565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613d96565b6111f4565b6040516105e49190614c5e565b60405180910390f35b3480156105f957600080fd5b506106026112b3565b005b34801561061057600080fd5b5061062b60048036038101906106269190613f59565b6113f0565b005b34801561063957600080fd5b50610654600480360381019061064f9190614049565b611614565b005b34801561066257600080fd5b5061067d60048036038101906106789190613d96565b6116ea565b60405161068a9190614c5e565b60405180910390f35b34801561069f57600080fd5b506106a8611702565b6040516106b59190614c5e565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613d96565b611708565b6040516106f2919061479f565b60405180910390f35b34801561070757600080fd5b50610710611812565b60405161071d91906147dc565b60405180910390f35b34801561073257600080fd5b5061073b6118a0565b6040516107489190614738565b60405180910390f35b34801561075d57600080fd5b506107666118ca565b60405161077391906147dc565b60405180910390f35b34801561078857600080fd5b5061079161195c565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613d96565b6119f5565b6040516107c79190614c5e565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613d96565b611a0d565b60405161080491906147c1565b60405180910390f35b61082760048036038101906108229190614049565b611a2d565b005b34801561083557600080fd5b50610850600480360381019061084b9190613ed9565b611d0c565b005b34801561085e57600080fd5b5061087960048036038101906108749190613f59565b611e8d565b005b34801561088757600080fd5b506108a2600480360381019061089d9190613e56565b612024565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190614049565b612086565b6040516108d891906147dc565b60405180910390f35b6108fb60048036038101906108f69190614049565b6121f9565b005b34801561090957600080fd5b50610924600480360381019061091f9190613f19565b6124cb565b005b34801561093257600080fd5b5061093b612604565b60405161094891906147c1565b60405180910390f35b34801561095d57600080fd5b50610966612617565b6040516109739190614c5e565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190613dc3565b61261d565b6040516109b091906147c1565b60405180910390f35b3480156109c557600080fd5b506109ce6126b1565b6040516109db91906147c1565b60405180910390f35b3480156109f057600080fd5b506109f96126c4565b604051610a069190614c5e565b60405180910390f35b348015610a1b57600080fd5b50610a246126ca565b005b348015610a3257600080fd5b50610a4d6004803603810190610a489190613d96565b612772565b005b348015610a5b57600080fd5b50610a6461291e565b604051610a719190614c5e565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054610af090614f52565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c90614f52565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b6000610b7e82612924565b610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490614a9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c038261112b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90614b3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c93612941565b73ffffffffffffffffffffffffffffffffffffffff161480610cc25750610cc181610cbc612941565b61261d565b5b610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906149de565b60405180910390fd5b610d0b8383612949565b505050565b610d18612941565b73ffffffffffffffffffffffffffffffffffffffff16610d366118a0565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390614abe565b60405180910390fd5b601360029054906101000a900460ff1615610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390614b1e565b60405180910390fd5b80600b9080519060200190610df2929190613b54565b5050565b6000610e026002612a02565b905090565b601360019054906101000a900460ff1681565b600e5481565b610e31610e2b612941565b82612a17565b610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790614b9e565b60405180910390fd5b610e7b838383612af5565b505050565b600381565b6000610ed882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d0c90919063ffffffff16565b905092915050565b610ee8612941565b73ffffffffffffffffffffffffffffffffffffffff16610f066118a0565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614abe565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b610f90612941565b73ffffffffffffffffffffffffffffffffffffffff16610fae6118a0565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614abe565b60405180910390fd5b61100e3347612d26565b565b61102b83838360405180602001604052806000815250612024565b505050565b600080611047836002612dd790919063ffffffff16565b50905080915050919050565b61105b612941565b73ffffffffffffffffffffffffffffffffffffffff166110796118a0565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690614abe565b60405180910390fd5b601360029054906101000a900460ff161561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690614b1e565b60405180910390fd5b61112881612e03565b50565b600061115b82604051806060016040528060298152602001615a51602991396002612e1d9092919063ffffffff16565b9050919050565b60606009805461117190614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461119d90614f52565b80156111ea5780601f106111bf576101008083540402835291602001916111ea565b820191906000526020600020905b8154815290600101906020018083116111cd57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c906149fe565b60405180910390fd5b6112ac600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e3c565b9050919050565b6112bb612941565b73ffffffffffffffffffffffffffffffffffffffff166112d96118a0565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690614abe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113f8612941565b73ffffffffffffffffffffffffffffffffffffffff166114166118a0565b73ffffffffffffffffffffffffffffffffffffffff161461146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614abe565b60405180910390fd5b60005b8282905081101561160f57600083838381811061148f5761148e6150eb565b5b90506020020160208101906114a49190613d96565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d9061493e565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906148de565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061160790614fb5565b91505061146f565b505050565b61161c612941565b73ffffffffffffffffffffffffffffffffffffffff1661163a6118a0565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790614abe565b60405180910390fd5b601360029054906101000a900460ff16156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790614b1e565b60405180910390fd5b80600c8190555050565b60126020528060005260406000206000915090505481565b600c5481565b60606000611715836111f4565b9050600081141561177257600067ffffffffffffffff81111561173b5761173a61511a565b5b6040519080825280602002602001820160405280156117695781602001602082028036833780820191505090505b5091505061180d565b60008167ffffffffffffffff81111561178e5761178d61511a565b5b6040519080825280602002602001820160405280156117bc5781602001602082028036833780820191505090505b50905060005b82811015611806576117d48582610e85565b8282815181106117e7576117e66150eb565b5b60200260200101818152505080806117fe90614fb5565b9150506117c2565b8193505050505b919050565b600b805461181f90614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461184b90614f52565b80156118985780601f1061186d57610100808354040283529160200191611898565b820191906000526020600020905b81548152906001019060200180831161187b57829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546118d990614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461190590614f52565b80156119525780601f1061192757610100808354040283529160200191611952565b820191906000526020600020905b81548152906001019060200180831161193557829003601f168201915b5050505050905090565b611964612941565b73ffffffffffffffffffffffffffffffffffffffff166119826118a0565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90614abe565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915090505481565b60106020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900460ff16611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a739061497e565b60405180910390fd5b601360019054906101000a900460ff1615611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390614bde565b60405180910390fd5b600081118015611add575060038111155b611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390614c3e565b60405180910390fd5b611fe8611b3982611b2b610df6565b612e5190919063ffffffff16565b1115611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190614a1e565b60405180910390fd5b611b8f81600c54612eaf90919063ffffffff16565b341015611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc89061481e565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9190614d87565b1115611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614b5e565b60405180910390fd5b60005b81811015611d085760006001611c77610df6565b611c819190614d87565b9050611fe8611c8e610df6565b1015611cf457601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ce490614fb5565b9190505550611cf33382612f2a565b5b508080611d0090614fb5565b915050611c63565b5050565b611d14612941565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d799061491e565b60405180910390fd5b8060056000611d8f612941565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e3c612941565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e8191906147c1565b60405180910390a35050565b611e95612941565b73ffffffffffffffffffffffffffffffffffffffff16611eb36118a0565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614abe565b60405180910390fd5b60005b8282905081101561201f576000838383818110611f2c57611f2b6150eb565b5b9050602002016020810190611f419190613d96565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa9061493e565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061201790614fb5565b915050611f0c565b505050565b61203561202f612941565b83612a17565b612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614b9e565b60405180910390fd5b61208084848484612f48565b50505050565b606061209182612924565b6120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790614afe565b60405180910390fd5b60006008600084815260200190815260200160002080546120f090614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461211c90614f52565b80156121695780601f1061213e57610100808354040283529160200191612169565b820191906000526020600020905b81548152906001019060200180831161214c57829003601f168201915b50505050509050600061217a611162565b90506000815114156121905781925050506121f4565b6000825111156121c55780826040516020016121ad9291906146ff565b604051602081830303815290604052925050506121f4565b806121cf85612fa4565b6040516020016121e09291906146ff565b604051602081830303815290604052925050505b919050565b601360009054906101000a900460ff161580156122225750601360019054906101000a900460ff165b612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614bfe565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e4906148be565b60405180910390fd5b611fe861230a826122fc610df6565b612e5190919063ffffffff16565b111561234b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234290614a1e565b60405180910390fd5b600d5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123999190614d87565b11156123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614b5e565b60405180910390fd5b6123ef81600c54612eaf90919063ffffffff16565b341015612431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124289061481e565b60405180910390fd5b60005b818110156124c75760006001612448610df6565b6124529190614d87565b9050601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124a490614fb5565b91905055506124b33382612f2a565b5080806124bf90614fb5565b915050612434565b5050565b6124d3612941565b73ffffffffffffffffffffffffffffffffffffffff166124f16118a0565b73ffffffffffffffffffffffffffffffffffffffff1614612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e90614abe565b60405180910390fd5b60006001612553610df6565b61255d9190614d87565b90506000821180156125715750600f548211155b6125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a790614c1e565b60405180910390fd5b60005b828110156125e3576125d08482846125cb9190614d87565b612f2a565b80806125db90614fb5565b9150506125b3565b506125f982600f5461310590919063ffffffff16565b600f81905550505050565b601360029054906101000a900460ff1681565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b611fe881565b6126d2612941565b73ffffffffffffffffffffffffffffffffffffffff166126f06118a0565b73ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614abe565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61277a612941565b73ffffffffffffffffffffffffffffffffffffffff166127986118a0565b73ffffffffffffffffffffffffffffffffffffffff16146127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614abe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561285e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128559061485e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600061293a82600261315e90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129bc8361112b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a1082600001613178565b9050919050565b6000612a2282612924565b612a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a58906149be565b60405180910390fd5b6000612a6c8361112b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612adb57508373ffffffffffffffffffffffffffffffffffffffff16612ac384610b73565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aec5750612aeb818561261d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b158261112b565b73ffffffffffffffffffffffffffffffffffffffff1614612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614ade565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd2906148fe565b60405180910390fd5b612be6838383613189565b612bf1600082612949565b612c4281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061318e90919063ffffffff16565b50612c9481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131a890919063ffffffff16565b50612cab818360026131c29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612d1b83600001836131f7565b60001c905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612d4c90614723565b60006040518083038185875af1925050503d8060008114612d89576040519150601f19603f3d011682016040523d82523d6000602084013e612d8e565b606091505b5050905080612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990614b7e565b60405180910390fd5b505050565b600080600080612dea866000018661326b565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612e19929190613b54565b5050565b6000612e30846000018460001b846132f5565b60001c90509392505050565b6000612e4a82600001613396565b9050919050565b6000808284612e609190614d87565b905083811015612ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9c9061489e565b60405180910390fd5b8091505092915050565b600080831415612ec25760009050612f24565b60008284612ed09190614e0e565b9050828482612edf9190614ddd565b14612f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1690614a7e565b60405180910390fd5b809150505b92915050565b612f448282604051806020016040528060008152506133a7565b5050565b612f53848484612af5565b612f5f84848484613402565b612f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f959061483e565b60405180910390fd5b50505050565b60606000821415612fec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613100565b600082905060005b6000821461301e57808061300790614fb5565b915050600a826130179190614ddd565b9150612ff4565b60008167ffffffffffffffff81111561303a5761303961511a565b5b6040519080825280601f01601f19166020018201604052801561306c5781602001600182028036833780820191505090505b5090505b600085146130f9576001826130859190614e68565b9150600a856130949190614ffe565b60306130a09190614d87565b60f81b8183815181106130b6576130b56150eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130f29190614ddd565b9450613070565b8093505050505b919050565b60008282111561314a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131419061495e565b60405180910390fd5b81836131569190614e68565b905092915050565b6000613170836000018360001b613566565b905092915050565b600081600001805490509050919050565b505050565b60006131a0836000018360001b613589565b905092915050565b60006131ba836000018360001b6136a1565b905092915050565b60006131ee846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613711565b90509392505050565b600081836000018054905011613242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613239906147fe565b60405180910390fd5b826000018281548110613258576132576150eb565b5b9060005260206000200154905092915050565b600080828460000180549050116132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae90614a3e565b60405180910390fd5b60008460000184815481106132cf576132ce6150eb565b5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334e91906147dc565b60405180910390fd5b50846000016001826133699190614e68565b8154811061337a576133796150eb565b5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6133b183836137fd565b6133be6000848484613402565b6133fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f49061483e565b60405180910390fd5b505050565b60006134238473ffffffffffffffffffffffffffffffffffffffff1661398b565b613430576001905061355e565b60006134f763150b7a0260e01b613445612941565b88878760405160240161345b9493929190614753565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615a1f603291398773ffffffffffffffffffffffffffffffffffffffff1661399e9092919063ffffffff16565b905060008180602001905181019061350f9190613fd3565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146136955760006001826135bb9190614e68565b90506000600186600001805490506135d39190614e68565b905060008660000182815481106135ed576135ec6150eb565b5b9060005260206000200154905080876000018481548110613611576136106150eb565b5b906000526020600020018190555060018361362c9190614d87565b8760010160008381526020019081526020016000208190555086600001805480613659576136586150bc565b5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061369b565b60009150505b92915050565b60006136ad83836139b6565b61370657826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061370b565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156137b8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506137f6565b82856000016001836137ca9190614e68565b815481106137db576137da6150eb565b5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386490614a5e565b60405180910390fd5b61387681612924565b156138b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ad9061487e565b60405180910390fd5b6138c260008383613189565b61391381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131a890919063ffffffff16565b5061392a818360026131c29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606139ad84846000856139d9565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a159061499e565b60405180910390fd5b613a278561398b565b613a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5d90614bbe565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613a8f91906146e8565b60006040518083038185875af1925050503d8060008114613acc576040519150601f19603f3d011682016040523d82523d6000602084013e613ad1565b606091505b5091509150613ae1828286613aed565b92505050949350505050565b60608315613afd57829050613b4d565b600083511115613b105782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4491906147dc565b60405180910390fd5b9392505050565b828054613b6090614f52565b90600052602060002090601f016020900481019282613b825760008555613bc9565b82601f10613b9b57805160ff1916838001178555613bc9565b82800160010185558215613bc9579182015b82811115613bc8578251825591602001919060010190613bad565b5b509050613bd69190613bda565b5090565b5b80821115613bf3576000816000905550600101613bdb565b5090565b6000613c0a613c0584614c9e565b614c79565b905082815260208101848484011115613c2657613c25615158565b5b613c31848285614f10565b509392505050565b6000613c4c613c4784614ccf565b614c79565b905082815260208101848484011115613c6857613c67615158565b5b613c73848285614f10565b509392505050565b600081359050613c8a816159c2565b92915050565b60008083601f840112613ca657613ca561514e565b5b8235905067ffffffffffffffff811115613cc357613cc2615149565b5b602083019150836020820283011115613cdf57613cde615153565b5b9250929050565b600081359050613cf5816159d9565b92915050565b600081359050613d0a816159f0565b92915050565b600081519050613d1f816159f0565b92915050565b600082601f830112613d3a57613d3961514e565b5b8135613d4a848260208601613bf7565b91505092915050565b600082601f830112613d6857613d6761514e565b5b8135613d78848260208601613c39565b91505092915050565b600081359050613d9081615a07565b92915050565b600060208284031215613dac57613dab615162565b5b6000613dba84828501613c7b565b91505092915050565b60008060408385031215613dda57613dd9615162565b5b6000613de885828601613c7b565b9250506020613df985828601613c7b565b9150509250929050565b600080600060608486031215613e1c57613e1b615162565b5b6000613e2a86828701613c7b565b9350506020613e3b86828701613c7b565b9250506040613e4c86828701613d81565b9150509250925092565b60008060008060808587031215613e7057613e6f615162565b5b6000613e7e87828801613c7b565b9450506020613e8f87828801613c7b565b9350506040613ea087828801613d81565b925050606085013567ffffffffffffffff811115613ec157613ec061515d565b5b613ecd87828801613d25565b91505092959194509250565b60008060408385031215613ef057613eef615162565b5b6000613efe85828601613c7b565b9250506020613f0f85828601613ce6565b9150509250929050565b60008060408385031215613f3057613f2f615162565b5b6000613f3e85828601613c7b565b9250506020613f4f85828601613d81565b9150509250929050565b60008060208385031215613f7057613f6f615162565b5b600083013567ffffffffffffffff811115613f8e57613f8d61515d565b5b613f9a85828601613c90565b92509250509250929050565b600060208284031215613fbc57613fbb615162565b5b6000613fca84828501613cfb565b91505092915050565b600060208284031215613fe957613fe8615162565b5b6000613ff784828501613d10565b91505092915050565b60006020828403121561401657614015615162565b5b600082013567ffffffffffffffff8111156140345761403361515d565b5b61404084828501613d53565b91505092915050565b60006020828403121561405f5761405e615162565b5b600061406d84828501613d81565b91505092915050565b600061408283836146ca565b60208301905092915050565b61409781614e9c565b82525050565b60006140a882614d10565b6140b28185614d3e565b93506140bd83614d00565b8060005b838110156140ee5781516140d58882614076565b97506140e083614d31565b9250506001810190506140c1565b5085935050505092915050565b61410481614eae565b82525050565b600061411582614d1b565b61411f8185614d4f565b935061412f818560208601614f1f565b61413881615167565b840191505092915050565b600061414e82614d1b565b6141588185614d60565b9350614168818560208601614f1f565b80840191505092915050565b600061417f82614d26565b6141898185614d6b565b9350614199818560208601614f1f565b6141a281615167565b840191505092915050565b60006141b882614d26565b6141c28185614d7c565b93506141d2818560208601614f1f565b80840191505092915050565b60006141eb602283614d6b565b91506141f682615178565b604082019050919050565b600061420e602083614d6b565b9150614219826151c7565b602082019050919050565b6000614231603283614d6b565b915061423c826151f0565b604082019050919050565b6000614254602683614d6b565b915061425f8261523f565b604082019050919050565b6000614277601c83614d6b565b91506142828261528e565b602082019050919050565b600061429a601b83614d6b565b91506142a5826152b7565b602082019050919050565b60006142bd600d83614d6b565b91506142c8826152e0565b602082019050919050565b60006142e0601083614d6b565b91506142eb82615309565b602082019050919050565b6000614303602483614d6b565b915061430e82615332565b604082019050919050565b6000614326601983614d6b565b915061433182615381565b602082019050919050565b6000614349600c83614d6b565b9150614354826153aa565b602082019050919050565b600061436c601e83614d6b565b9150614377826153d3565b602082019050919050565b600061438f601b83614d6b565b915061439a826153fc565b602082019050919050565b60006143b2602683614d6b565b91506143bd82615425565b604082019050919050565b60006143d5602c83614d6b565b91506143e082615474565b604082019050919050565b60006143f8603883614d6b565b9150614403826154c3565b604082019050919050565b600061441b602a83614d6b565b915061442682615512565b604082019050919050565b600061443e602083614d6b565b915061444982615561565b602082019050919050565b6000614461602283614d6b565b915061446c8261558a565b604082019050919050565b6000614484602083614d6b565b915061448f826155d9565b602082019050919050565b60006144a7602183614d6b565b91506144b282615602565b604082019050919050565b60006144ca602c83614d6b565b91506144d582615651565b604082019050919050565b60006144ed602083614d6b565b91506144f8826156a0565b602082019050919050565b6000614510602983614d6b565b915061451b826156c9565b604082019050919050565b6000614533602f83614d6b565b915061453e82615718565b604082019050919050565b6000614556602483614d6b565b915061456182615767565b604082019050919050565b6000614579602183614d6b565b9150614584826157b6565b604082019050919050565b600061459c600c83614d6b565b91506145a782615805565b602082019050919050565b60006145bf600083614d60565b91506145ca8261582e565b600082019050919050565b60006145e2601083614d6b565b91506145ed82615831565b602082019050919050565b6000614605603183614d6b565b91506146108261585a565b604082019050919050565b6000614628601d83614d6b565b9150614633826158a9565b602082019050919050565b600061464b600c83614d6b565b9150614656826158d2565b602082019050919050565b600061466e600e83614d6b565b9150614679826158fb565b602082019050919050565b6000614691602183614d6b565b915061469c82615924565b604082019050919050565b60006146b4602183614d6b565b91506146bf82615973565b604082019050919050565b6146d381614f06565b82525050565b6146e281614f06565b82525050565b60006146f48284614143565b915081905092915050565b600061470b82856141ad565b915061471782846141ad565b91508190509392505050565b600061472e826145b2565b9150819050919050565b600060208201905061474d600083018461408e565b92915050565b6000608082019050614768600083018761408e565b614775602083018661408e565b61478260408301856146d9565b8181036060830152614794818461410a565b905095945050505050565b600060208201905081810360008301526147b9818461409d565b905092915050565b60006020820190506147d660008301846140fb565b92915050565b600060208201905081810360008301526147f68184614174565b905092915050565b60006020820190508181036000830152614817816141de565b9050919050565b6000602082019050818103600083015261483781614201565b9050919050565b6000602082019050818103600083015261485781614224565b9050919050565b6000602082019050818103600083015261487781614247565b9050919050565b600060208201905081810360008301526148978161426a565b9050919050565b600060208201905081810360008301526148b78161428d565b9050919050565b600060208201905081810360008301526148d7816142b0565b9050919050565b600060208201905081810360008301526148f7816142d3565b9050919050565b60006020820190508181036000830152614917816142f6565b9050919050565b6000602082019050818103600083015261493781614319565b9050919050565b600060208201905081810360008301526149578161433c565b9050919050565b600060208201905081810360008301526149778161435f565b9050919050565b6000602082019050818103600083015261499781614382565b9050919050565b600060208201905081810360008301526149b7816143a5565b9050919050565b600060208201905081810360008301526149d7816143c8565b9050919050565b600060208201905081810360008301526149f7816143eb565b9050919050565b60006020820190508181036000830152614a178161440e565b9050919050565b60006020820190508181036000830152614a3781614431565b9050919050565b60006020820190508181036000830152614a5781614454565b9050919050565b60006020820190508181036000830152614a7781614477565b9050919050565b60006020820190508181036000830152614a978161449a565b9050919050565b60006020820190508181036000830152614ab7816144bd565b9050919050565b60006020820190508181036000830152614ad7816144e0565b9050919050565b60006020820190508181036000830152614af781614503565b9050919050565b60006020820190508181036000830152614b1781614526565b9050919050565b60006020820190508181036000830152614b3781614549565b9050919050565b60006020820190508181036000830152614b578161456c565b9050919050565b60006020820190508181036000830152614b778161458f565b9050919050565b60006020820190508181036000830152614b97816145d5565b9050919050565b60006020820190508181036000830152614bb7816145f8565b9050919050565b60006020820190508181036000830152614bd78161461b565b9050919050565b60006020820190508181036000830152614bf78161463e565b9050919050565b60006020820190508181036000830152614c1781614661565b9050919050565b60006020820190508181036000830152614c3781614684565b9050919050565b60006020820190508181036000830152614c57816146a7565b9050919050565b6000602082019050614c7360008301846146d9565b92915050565b6000614c83614c94565b9050614c8f8282614f84565b919050565b6000604051905090565b600067ffffffffffffffff821115614cb957614cb861511a565b5b614cc282615167565b9050602081019050919050565b600067ffffffffffffffff821115614cea57614ce961511a565b5b614cf382615167565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d9282614f06565b9150614d9d83614f06565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dd257614dd161502f565b5b828201905092915050565b6000614de882614f06565b9150614df383614f06565b925082614e0357614e0261505e565b5b828204905092915050565b6000614e1982614f06565b9150614e2483614f06565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e5d57614e5c61502f565b5b828202905092915050565b6000614e7382614f06565b9150614e7e83614f06565b925082821015614e9157614e9061502f565b5b828203905092915050565b6000614ea782614ee6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f3d578082015181840152602081019050614f22565b83811115614f4c576000848401525b50505050565b60006002820490506001821680614f6a57607f821691505b60208210811415614f7e57614f7d61508d565b5b50919050565b614f8d82615167565b810181811067ffffffffffffffff82111715614fac57614fab61511a565b5b80604052505050565b6000614fc082614f06565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ff357614ff261502f565b5b600182019050919050565b600061500982614f06565b915061501483614f06565b9250826150245761502361505e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742e600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4e6f74207175616c696669656400000000000000000000000000000000000000600082015250565b7f4475706c69636174656420656e74727900000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e756c6c20616464726573730000000000000000000000000000000000000000600082015250565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656420416c6c6f630000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4f6e6c792070726573616c650000000000000000000000000000000000000000600082015250565b7f50726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203320746f6b656e7320617420612074696d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6159cb81614e9c565b81146159d657600080fd5b50565b6159e281614eae565b81146159ed57600080fd5b50565b6159f981614eba565b8114615a0457600080fd5b50565b615a1081614f06565b8114615a1b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e935b382ec5ad4696dece86881a3adf360d035ca3063a733d12fa8b931991b2264736f6c63430008070033457468657265616c20436f6c6c6563746976652041727420537570706f72746572

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063842f8b511161014f578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c51461097c578063eb8d2444146109b9578063edeb5bcd146109e4578063f032554914610a0f578063f2fde38b14610a26578063f474307014610a4f5761027d565b8063b88d4fde1461087b578063c87b56dd146108a4578063c9b298f1146108e1578063cc47a40b146108fd578063cf30901214610926578063dea08580146109515761027d565b8063989bdbb611610113578063989bdbb61461077c5780639bf80316146107935780639cf2e8d6146107d0578063a0712d681461080d578063a22cb46514610829578063b179e060146108525761027d565b8063842f8b51146106935780638462151c146106be5780638735d933146106fb5780638da5cb5b1461072657806395d89b41146107515761027d565b806334918dfd116101f35780636c0360eb116101ac5780636c0360eb1461058557806370a08231146105b0578063715018a6146105ed5780637204a3c9146106045780638417b47f1461062d578063842a77d3146106565761027d565b806334918dfd1461048b5780633ccfd60b146104a257806342842e0e146104b95780634f6ccce7146104e257806355f804b31461051f5780636352211e146105485761027d565b806318160ddd1161024557806318160ddd1461037957806318602dc8146103a457806318886657146103cf57806323b872dd146103fa57806324fd2790146104235780632f745c591461044e5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780631096952314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613fa6565b610a7a565b6040516102b691906147c1565b60405180910390f35b3480156102cb57600080fd5b506102d4610ae1565b6040516102e191906147dc565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190614049565b610b73565b60405161031e9190614738565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613f19565b610bf8565b005b34801561035c57600080fd5b5061037760048036038101906103729190614000565b610d10565b005b34801561038557600080fd5b5061038e610df6565b60405161039b9190614c5e565b60405180910390f35b3480156103b057600080fd5b506103b9610e07565b6040516103c691906147c1565b60405180910390f35b3480156103db57600080fd5b506103e4610e1a565b6040516103f19190614c5e565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190613e03565b610e20565b005b34801561042f57600080fd5b50610438610e80565b6040516104459190614c5e565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190613f19565b610e85565b6040516104829190614c5e565b60405180910390f35b34801561049757600080fd5b506104a0610ee0565b005b3480156104ae57600080fd5b506104b7610f88565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613e03565b611010565b005b3480156104ee57600080fd5b5061050960048036038101906105049190614049565b611030565b6040516105169190614c5e565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190614000565b611053565b005b34801561055457600080fd5b5061056f600480360381019061056a9190614049565b61112b565b60405161057c9190614738565b60405180910390f35b34801561059157600080fd5b5061059a611162565b6040516105a791906147dc565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190613d96565b6111f4565b6040516105e49190614c5e565b60405180910390f35b3480156105f957600080fd5b506106026112b3565b005b34801561061057600080fd5b5061062b60048036038101906106269190613f59565b6113f0565b005b34801561063957600080fd5b50610654600480360381019061064f9190614049565b611614565b005b34801561066257600080fd5b5061067d60048036038101906106789190613d96565b6116ea565b60405161068a9190614c5e565b60405180910390f35b34801561069f57600080fd5b506106a8611702565b6040516106b59190614c5e565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613d96565b611708565b6040516106f2919061479f565b60405180910390f35b34801561070757600080fd5b50610710611812565b60405161071d91906147dc565b60405180910390f35b34801561073257600080fd5b5061073b6118a0565b6040516107489190614738565b60405180910390f35b34801561075d57600080fd5b506107666118ca565b60405161077391906147dc565b60405180910390f35b34801561078857600080fd5b5061079161195c565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613d96565b6119f5565b6040516107c79190614c5e565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613d96565b611a0d565b60405161080491906147c1565b60405180910390f35b61082760048036038101906108229190614049565b611a2d565b005b34801561083557600080fd5b50610850600480360381019061084b9190613ed9565b611d0c565b005b34801561085e57600080fd5b5061087960048036038101906108749190613f59565b611e8d565b005b34801561088757600080fd5b506108a2600480360381019061089d9190613e56565b612024565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190614049565b612086565b6040516108d891906147dc565b60405180910390f35b6108fb60048036038101906108f69190614049565b6121f9565b005b34801561090957600080fd5b50610924600480360381019061091f9190613f19565b6124cb565b005b34801561093257600080fd5b5061093b612604565b60405161094891906147c1565b60405180910390f35b34801561095d57600080fd5b50610966612617565b6040516109739190614c5e565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190613dc3565b61261d565b6040516109b091906147c1565b60405180910390f35b3480156109c557600080fd5b506109ce6126b1565b6040516109db91906147c1565b60405180910390f35b3480156109f057600080fd5b506109f96126c4565b604051610a069190614c5e565b60405180910390f35b348015610a1b57600080fd5b50610a246126ca565b005b348015610a3257600080fd5b50610a4d6004803603810190610a489190613d96565b612772565b005b348015610a5b57600080fd5b50610a6461291e565b604051610a719190614c5e565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054610af090614f52565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c90614f52565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b6000610b7e82612924565b610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490614a9e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c038261112b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90614b3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c93612941565b73ffffffffffffffffffffffffffffffffffffffff161480610cc25750610cc181610cbc612941565b61261d565b5b610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906149de565b60405180910390fd5b610d0b8383612949565b505050565b610d18612941565b73ffffffffffffffffffffffffffffffffffffffff16610d366118a0565b73ffffffffffffffffffffffffffffffffffffffff1614610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390614abe565b60405180910390fd5b601360029054906101000a900460ff1615610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390614b1e565b60405180910390fd5b80600b9080519060200190610df2929190613b54565b5050565b6000610e026002612a02565b905090565b601360019054906101000a900460ff1681565b600e5481565b610e31610e2b612941565b82612a17565b610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790614b9e565b60405180910390fd5b610e7b838383612af5565b505050565b600381565b6000610ed882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d0c90919063ffffffff16565b905092915050565b610ee8612941565b73ffffffffffffffffffffffffffffffffffffffff16610f066118a0565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614abe565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b610f90612941565b73ffffffffffffffffffffffffffffffffffffffff16610fae6118a0565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614abe565b60405180910390fd5b61100e3347612d26565b565b61102b83838360405180602001604052806000815250612024565b505050565b600080611047836002612dd790919063ffffffff16565b50905080915050919050565b61105b612941565b73ffffffffffffffffffffffffffffffffffffffff166110796118a0565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690614abe565b60405180910390fd5b601360029054906101000a900460ff161561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690614b1e565b60405180910390fd5b61112881612e03565b50565b600061115b82604051806060016040528060298152602001615a51602991396002612e1d9092919063ffffffff16565b9050919050565b60606009805461117190614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461119d90614f52565b80156111ea5780601f106111bf576101008083540402835291602001916111ea565b820191906000526020600020905b8154815290600101906020018083116111cd57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c906149fe565b60405180910390fd5b6112ac600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e3c565b9050919050565b6112bb612941565b73ffffffffffffffffffffffffffffffffffffffff166112d96118a0565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690614abe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113f8612941565b73ffffffffffffffffffffffffffffffffffffffff166114166118a0565b73ffffffffffffffffffffffffffffffffffffffff161461146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614abe565b60405180910390fd5b60005b8282905081101561160f57600083838381811061148f5761148e6150eb565b5b90506020020160208101906114a49190613d96565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d9061493e565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906148de565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061160790614fb5565b91505061146f565b505050565b61161c612941565b73ffffffffffffffffffffffffffffffffffffffff1661163a6118a0565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790614abe565b60405180910390fd5b601360029054906101000a900460ff16156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790614b1e565b60405180910390fd5b80600c8190555050565b60126020528060005260406000206000915090505481565b600c5481565b60606000611715836111f4565b9050600081141561177257600067ffffffffffffffff81111561173b5761173a61511a565b5b6040519080825280602002602001820160405280156117695781602001602082028036833780820191505090505b5091505061180d565b60008167ffffffffffffffff81111561178e5761178d61511a565b5b6040519080825280602002602001820160405280156117bc5781602001602082028036833780820191505090505b50905060005b82811015611806576117d48582610e85565b8282815181106117e7576117e66150eb565b5b60200260200101818152505080806117fe90614fb5565b9150506117c2565b8193505050505b919050565b600b805461181f90614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461184b90614f52565b80156118985780601f1061186d57610100808354040283529160200191611898565b820191906000526020600020905b81548152906001019060200180831161187b57829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546118d990614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461190590614f52565b80156119525780601f1061192757610100808354040283529160200191611952565b820191906000526020600020905b81548152906001019060200180831161193557829003601f168201915b5050505050905090565b611964612941565b73ffffffffffffffffffffffffffffffffffffffff166119826118a0565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90614abe565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b60116020528060005260406000206000915090505481565b60106020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900460ff16611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a739061497e565b60405180910390fd5b601360019054906101000a900460ff1615611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390614bde565b60405180910390fd5b600081118015611add575060038111155b611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390614c3e565b60405180910390fd5b611fe8611b3982611b2b610df6565b612e5190919063ffffffff16565b1115611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190614a1e565b60405180910390fd5b611b8f81600c54612eaf90919063ffffffff16565b341015611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc89061481e565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9190614d87565b1115611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614b5e565b60405180910390fd5b60005b81811015611d085760006001611c77610df6565b611c819190614d87565b9050611fe8611c8e610df6565b1015611cf457601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ce490614fb5565b9190505550611cf33382612f2a565b5b508080611d0090614fb5565b915050611c63565b5050565b611d14612941565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d799061491e565b60405180910390fd5b8060056000611d8f612941565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e3c612941565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e8191906147c1565b60405180910390a35050565b611e95612941565b73ffffffffffffffffffffffffffffffffffffffff16611eb36118a0565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614abe565b60405180910390fd5b60005b8282905081101561201f576000838383818110611f2c57611f2b6150eb565b5b9050602002016020810190611f419190613d96565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa9061493e565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061201790614fb5565b915050611f0c565b505050565b61203561202f612941565b83612a17565b612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614b9e565b60405180910390fd5b61208084848484612f48565b50505050565b606061209182612924565b6120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790614afe565b60405180910390fd5b60006008600084815260200190815260200160002080546120f090614f52565b80601f016020809104026020016040519081016040528092919081815260200182805461211c90614f52565b80156121695780601f1061213e57610100808354040283529160200191612169565b820191906000526020600020905b81548152906001019060200180831161214c57829003601f168201915b50505050509050600061217a611162565b90506000815114156121905781925050506121f4565b6000825111156121c55780826040516020016121ad9291906146ff565b604051602081830303815290604052925050506121f4565b806121cf85612fa4565b6040516020016121e09291906146ff565b604051602081830303815290604052925050505b919050565b601360009054906101000a900460ff161580156122225750601360019054906101000a900460ff165b612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614bfe565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e4906148be565b60405180910390fd5b611fe861230a826122fc610df6565b612e5190919063ffffffff16565b111561234b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234290614a1e565b60405180910390fd5b600d5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123999190614d87565b11156123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614b5e565b60405180910390fd5b6123ef81600c54612eaf90919063ffffffff16565b341015612431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124289061481e565b60405180910390fd5b60005b818110156124c75760006001612448610df6565b6124529190614d87565b9050601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124a490614fb5565b91905055506124b33382612f2a565b5080806124bf90614fb5565b915050612434565b5050565b6124d3612941565b73ffffffffffffffffffffffffffffffffffffffff166124f16118a0565b73ffffffffffffffffffffffffffffffffffffffff1614612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e90614abe565b60405180910390fd5b60006001612553610df6565b61255d9190614d87565b90506000821180156125715750600f548211155b6125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a790614c1e565b60405180910390fd5b60005b828110156125e3576125d08482846125cb9190614d87565b612f2a565b80806125db90614fb5565b9150506125b3565b506125f982600f5461310590919063ffffffff16565b600f81905550505050565b601360029054906101000a900460ff1681565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b611fe881565b6126d2612941565b73ffffffffffffffffffffffffffffffffffffffff166126f06118a0565b73ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614abe565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b61277a612941565b73ffffffffffffffffffffffffffffffffffffffff166127986118a0565b73ffffffffffffffffffffffffffffffffffffffff16146127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614abe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561285e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128559061485e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b600061293a82600261315e90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129bc8361112b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a1082600001613178565b9050919050565b6000612a2282612924565b612a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a58906149be565b60405180910390fd5b6000612a6c8361112b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612adb57508373ffffffffffffffffffffffffffffffffffffffff16612ac384610b73565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aec5750612aeb818561261d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b158261112b565b73ffffffffffffffffffffffffffffffffffffffff1614612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614ade565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd2906148fe565b60405180910390fd5b612be6838383613189565b612bf1600082612949565b612c4281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061318e90919063ffffffff16565b50612c9481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131a890919063ffffffff16565b50612cab818360026131c29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612d1b83600001836131f7565b60001c905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612d4c90614723565b60006040518083038185875af1925050503d8060008114612d89576040519150601f19603f3d011682016040523d82523d6000602084013e612d8e565b606091505b5050905080612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990614b7e565b60405180910390fd5b505050565b600080600080612dea866000018661326b565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612e19929190613b54565b5050565b6000612e30846000018460001b846132f5565b60001c90509392505050565b6000612e4a82600001613396565b9050919050565b6000808284612e609190614d87565b905083811015612ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9c9061489e565b60405180910390fd5b8091505092915050565b600080831415612ec25760009050612f24565b60008284612ed09190614e0e565b9050828482612edf9190614ddd565b14612f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1690614a7e565b60405180910390fd5b809150505b92915050565b612f448282604051806020016040528060008152506133a7565b5050565b612f53848484612af5565b612f5f84848484613402565b612f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f959061483e565b60405180910390fd5b50505050565b60606000821415612fec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613100565b600082905060005b6000821461301e57808061300790614fb5565b915050600a826130179190614ddd565b9150612ff4565b60008167ffffffffffffffff81111561303a5761303961511a565b5b6040519080825280601f01601f19166020018201604052801561306c5781602001600182028036833780820191505090505b5090505b600085146130f9576001826130859190614e68565b9150600a856130949190614ffe565b60306130a09190614d87565b60f81b8183815181106130b6576130b56150eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130f29190614ddd565b9450613070565b8093505050505b919050565b60008282111561314a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131419061495e565b60405180910390fd5b81836131569190614e68565b905092915050565b6000613170836000018360001b613566565b905092915050565b600081600001805490509050919050565b505050565b60006131a0836000018360001b613589565b905092915050565b60006131ba836000018360001b6136a1565b905092915050565b60006131ee846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613711565b90509392505050565b600081836000018054905011613242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613239906147fe565b60405180910390fd5b826000018281548110613258576132576150eb565b5b9060005260206000200154905092915050565b600080828460000180549050116132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae90614a3e565b60405180910390fd5b60008460000184815481106132cf576132ce6150eb565b5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334e91906147dc565b60405180910390fd5b50846000016001826133699190614e68565b8154811061337a576133796150eb565b5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6133b183836137fd565b6133be6000848484613402565b6133fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f49061483e565b60405180910390fd5b505050565b60006134238473ffffffffffffffffffffffffffffffffffffffff1661398b565b613430576001905061355e565b60006134f763150b7a0260e01b613445612941565b88878760405160240161345b9493929190614753565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615a1f603291398773ffffffffffffffffffffffffffffffffffffffff1661399e9092919063ffffffff16565b905060008180602001905181019061350f9190613fd3565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146136955760006001826135bb9190614e68565b90506000600186600001805490506135d39190614e68565b905060008660000182815481106135ed576135ec6150eb565b5b9060005260206000200154905080876000018481548110613611576136106150eb565b5b906000526020600020018190555060018361362c9190614d87565b8760010160008381526020019081526020016000208190555086600001805480613659576136586150bc565b5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061369b565b60009150505b92915050565b60006136ad83836139b6565b61370657826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061370b565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156137b8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506137f6565b82856000016001836137ca9190614e68565b815481106137db576137da6150eb565b5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386490614a5e565b60405180910390fd5b61387681612924565b156138b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ad9061487e565b60405180910390fd5b6138c260008383613189565b61391381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206131a890919063ffffffff16565b5061392a818360026131c29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606139ad84846000856139d9565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a159061499e565b60405180910390fd5b613a278561398b565b613a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5d90614bbe565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613a8f91906146e8565b60006040518083038185875af1925050503d8060008114613acc576040519150601f19603f3d011682016040523d82523d6000602084013e613ad1565b606091505b5091509150613ae1828286613aed565b92505050949350505050565b60608315613afd57829050613b4d565b600083511115613b105782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4491906147dc565b60405180910390fd5b9392505050565b828054613b6090614f52565b90600052602060002090601f016020900481019282613b825760008555613bc9565b82601f10613b9b57805160ff1916838001178555613bc9565b82800160010185558215613bc9579182015b82811115613bc8578251825591602001919060010190613bad565b5b509050613bd69190613bda565b5090565b5b80821115613bf3576000816000905550600101613bdb565b5090565b6000613c0a613c0584614c9e565b614c79565b905082815260208101848484011115613c2657613c25615158565b5b613c31848285614f10565b509392505050565b6000613c4c613c4784614ccf565b614c79565b905082815260208101848484011115613c6857613c67615158565b5b613c73848285614f10565b509392505050565b600081359050613c8a816159c2565b92915050565b60008083601f840112613ca657613ca561514e565b5b8235905067ffffffffffffffff811115613cc357613cc2615149565b5b602083019150836020820283011115613cdf57613cde615153565b5b9250929050565b600081359050613cf5816159d9565b92915050565b600081359050613d0a816159f0565b92915050565b600081519050613d1f816159f0565b92915050565b600082601f830112613d3a57613d3961514e565b5b8135613d4a848260208601613bf7565b91505092915050565b600082601f830112613d6857613d6761514e565b5b8135613d78848260208601613c39565b91505092915050565b600081359050613d9081615a07565b92915050565b600060208284031215613dac57613dab615162565b5b6000613dba84828501613c7b565b91505092915050565b60008060408385031215613dda57613dd9615162565b5b6000613de885828601613c7b565b9250506020613df985828601613c7b565b9150509250929050565b600080600060608486031215613e1c57613e1b615162565b5b6000613e2a86828701613c7b565b9350506020613e3b86828701613c7b565b9250506040613e4c86828701613d81565b9150509250925092565b60008060008060808587031215613e7057613e6f615162565b5b6000613e7e87828801613c7b565b9450506020613e8f87828801613c7b565b9350506040613ea087828801613d81565b925050606085013567ffffffffffffffff811115613ec157613ec061515d565b5b613ecd87828801613d25565b91505092959194509250565b60008060408385031215613ef057613eef615162565b5b6000613efe85828601613c7b565b9250506020613f0f85828601613ce6565b9150509250929050565b60008060408385031215613f3057613f2f615162565b5b6000613f3e85828601613c7b565b9250506020613f4f85828601613d81565b9150509250929050565b60008060208385031215613f7057613f6f615162565b5b600083013567ffffffffffffffff811115613f8e57613f8d61515d565b5b613f9a85828601613c90565b92509250509250929050565b600060208284031215613fbc57613fbb615162565b5b6000613fca84828501613cfb565b91505092915050565b600060208284031215613fe957613fe8615162565b5b6000613ff784828501613d10565b91505092915050565b60006020828403121561401657614015615162565b5b600082013567ffffffffffffffff8111156140345761403361515d565b5b61404084828501613d53565b91505092915050565b60006020828403121561405f5761405e615162565b5b600061406d84828501613d81565b91505092915050565b600061408283836146ca565b60208301905092915050565b61409781614e9c565b82525050565b60006140a882614d10565b6140b28185614d3e565b93506140bd83614d00565b8060005b838110156140ee5781516140d58882614076565b97506140e083614d31565b9250506001810190506140c1565b5085935050505092915050565b61410481614eae565b82525050565b600061411582614d1b565b61411f8185614d4f565b935061412f818560208601614f1f565b61413881615167565b840191505092915050565b600061414e82614d1b565b6141588185614d60565b9350614168818560208601614f1f565b80840191505092915050565b600061417f82614d26565b6141898185614d6b565b9350614199818560208601614f1f565b6141a281615167565b840191505092915050565b60006141b882614d26565b6141c28185614d7c565b93506141d2818560208601614f1f565b80840191505092915050565b60006141eb602283614d6b565b91506141f682615178565b604082019050919050565b600061420e602083614d6b565b9150614219826151c7565b602082019050919050565b6000614231603283614d6b565b915061423c826151f0565b604082019050919050565b6000614254602683614d6b565b915061425f8261523f565b604082019050919050565b6000614277601c83614d6b565b91506142828261528e565b602082019050919050565b600061429a601b83614d6b565b91506142a5826152b7565b602082019050919050565b60006142bd600d83614d6b565b91506142c8826152e0565b602082019050919050565b60006142e0601083614d6b565b91506142eb82615309565b602082019050919050565b6000614303602483614d6b565b915061430e82615332565b604082019050919050565b6000614326601983614d6b565b915061433182615381565b602082019050919050565b6000614349600c83614d6b565b9150614354826153aa565b602082019050919050565b600061436c601e83614d6b565b9150614377826153d3565b602082019050919050565b600061438f601b83614d6b565b915061439a826153fc565b602082019050919050565b60006143b2602683614d6b565b91506143bd82615425565b604082019050919050565b60006143d5602c83614d6b565b91506143e082615474565b604082019050919050565b60006143f8603883614d6b565b9150614403826154c3565b604082019050919050565b600061441b602a83614d6b565b915061442682615512565b604082019050919050565b600061443e602083614d6b565b915061444982615561565b602082019050919050565b6000614461602283614d6b565b915061446c8261558a565b604082019050919050565b6000614484602083614d6b565b915061448f826155d9565b602082019050919050565b60006144a7602183614d6b565b91506144b282615602565b604082019050919050565b60006144ca602c83614d6b565b91506144d582615651565b604082019050919050565b60006144ed602083614d6b565b91506144f8826156a0565b602082019050919050565b6000614510602983614d6b565b915061451b826156c9565b604082019050919050565b6000614533602f83614d6b565b915061453e82615718565b604082019050919050565b6000614556602483614d6b565b915061456182615767565b604082019050919050565b6000614579602183614d6b565b9150614584826157b6565b604082019050919050565b600061459c600c83614d6b565b91506145a782615805565b602082019050919050565b60006145bf600083614d60565b91506145ca8261582e565b600082019050919050565b60006145e2601083614d6b565b91506145ed82615831565b602082019050919050565b6000614605603183614d6b565b91506146108261585a565b604082019050919050565b6000614628601d83614d6b565b9150614633826158a9565b602082019050919050565b600061464b600c83614d6b565b9150614656826158d2565b602082019050919050565b600061466e600e83614d6b565b9150614679826158fb565b602082019050919050565b6000614691602183614d6b565b915061469c82615924565b604082019050919050565b60006146b4602183614d6b565b91506146bf82615973565b604082019050919050565b6146d381614f06565b82525050565b6146e281614f06565b82525050565b60006146f48284614143565b915081905092915050565b600061470b82856141ad565b915061471782846141ad565b91508190509392505050565b600061472e826145b2565b9150819050919050565b600060208201905061474d600083018461408e565b92915050565b6000608082019050614768600083018761408e565b614775602083018661408e565b61478260408301856146d9565b8181036060830152614794818461410a565b905095945050505050565b600060208201905081810360008301526147b9818461409d565b905092915050565b60006020820190506147d660008301846140fb565b92915050565b600060208201905081810360008301526147f68184614174565b905092915050565b60006020820190508181036000830152614817816141de565b9050919050565b6000602082019050818103600083015261483781614201565b9050919050565b6000602082019050818103600083015261485781614224565b9050919050565b6000602082019050818103600083015261487781614247565b9050919050565b600060208201905081810360008301526148978161426a565b9050919050565b600060208201905081810360008301526148b78161428d565b9050919050565b600060208201905081810360008301526148d7816142b0565b9050919050565b600060208201905081810360008301526148f7816142d3565b9050919050565b60006020820190508181036000830152614917816142f6565b9050919050565b6000602082019050818103600083015261493781614319565b9050919050565b600060208201905081810360008301526149578161433c565b9050919050565b600060208201905081810360008301526149778161435f565b9050919050565b6000602082019050818103600083015261499781614382565b9050919050565b600060208201905081810360008301526149b7816143a5565b9050919050565b600060208201905081810360008301526149d7816143c8565b9050919050565b600060208201905081810360008301526149f7816143eb565b9050919050565b60006020820190508181036000830152614a178161440e565b9050919050565b60006020820190508181036000830152614a3781614431565b9050919050565b60006020820190508181036000830152614a5781614454565b9050919050565b60006020820190508181036000830152614a7781614477565b9050919050565b60006020820190508181036000830152614a978161449a565b9050919050565b60006020820190508181036000830152614ab7816144bd565b9050919050565b60006020820190508181036000830152614ad7816144e0565b9050919050565b60006020820190508181036000830152614af781614503565b9050919050565b60006020820190508181036000830152614b1781614526565b9050919050565b60006020820190508181036000830152614b3781614549565b9050919050565b60006020820190508181036000830152614b578161456c565b9050919050565b60006020820190508181036000830152614b778161458f565b9050919050565b60006020820190508181036000830152614b97816145d5565b9050919050565b60006020820190508181036000830152614bb7816145f8565b9050919050565b60006020820190508181036000830152614bd78161461b565b9050919050565b60006020820190508181036000830152614bf78161463e565b9050919050565b60006020820190508181036000830152614c1781614661565b9050919050565b60006020820190508181036000830152614c3781614684565b9050919050565b60006020820190508181036000830152614c57816146a7565b9050919050565b6000602082019050614c7360008301846146d9565b92915050565b6000614c83614c94565b9050614c8f8282614f84565b919050565b6000604051905090565b600067ffffffffffffffff821115614cb957614cb861511a565b5b614cc282615167565b9050602081019050919050565b600067ffffffffffffffff821115614cea57614ce961511a565b5b614cf382615167565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d9282614f06565b9150614d9d83614f06565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dd257614dd161502f565b5b828201905092915050565b6000614de882614f06565b9150614df383614f06565b925082614e0357614e0261505e565b5b828204905092915050565b6000614e1982614f06565b9150614e2483614f06565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e5d57614e5c61502f565b5b828202905092915050565b6000614e7382614f06565b9150614e7e83614f06565b925082821015614e9157614e9061502f565b5b828203905092915050565b6000614ea782614ee6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f3d578082015181840152602081019050614f22565b83811115614f4c576000848401525b50505050565b60006002820490506001821680614f6a57607f821691505b60208210811415614f7e57614f7d61508d565b5b50919050565b614f8d82615167565b810181811067ffffffffffffffff82111715614fac57614fab61511a565b5b80604052505050565b6000614fc082614f06565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ff357614ff261502f565b5b600182019050919050565b600061500982614f06565b915061501483614f06565b9250826150245761502361505e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742e600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4e6f74207175616c696669656400000000000000000000000000000000000000600082015250565b7f4475706c69636174656420656e74727900000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e756c6c20616464726573730000000000000000000000000000000000000000600082015250565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656420416c6c6f630000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4f6e6c792070726573616c650000000000000000000000000000000000000000600082015250565b7f50726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203320746f6b656e7320617420612074696d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6159cb81614e9c565b81146159d657600080fd5b50565b6159e281614eae565b81146159ed57600080fd5b50565b6159f981614eba565b8114615a0457600080fd5b50565b615a1081614f06565b8114615a1b57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e935b382ec5ad4696dece86881a3adf360d035ca3063a733d12fa8b931991b2264736f6c63430008070033

Deployed Bytecode Sourcemap

66686:5392:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10169:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51381:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54167:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53697:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69254:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53175:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67575:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67176:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55057:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66946:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52937:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69645:89;;;;;;;;;;;;;:::i;:::-;;68954:100;;;;;;;;;;;;;:::i;:::-;;55433:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53463:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69528:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51137:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52756:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50854:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66084:148;;;;;;;;;;;;;:::i;:::-;;67846:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69396:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67465:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66894:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69931:502;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66810:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65433:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51550:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69844:75;;;;;;;;;;;;;:::i;:::-;;67402:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67351:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70445:881;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54460:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68211:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55655:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51725:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71334:741;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68527:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67616:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67262:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54826:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67536:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67036:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69742:94;;;;;;;;;;;;;:::i;:::-;;66387:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67089:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10169:150;10254:4;10278:20;:33;10299:11;10278:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10271:40;;10169:150;;;:::o;51381:100::-;51435:13;51468:5;51461:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51381:100;:::o;54167:221::-;54243:7;54271:16;54279:7;54271;:16::i;:::-;54263:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54356:15;:24;54372:7;54356:24;;;;;;;;;;;;;;;;;;;;;54349:31;;54167:221;;;:::o;53697:404::-;53778:13;53794:23;53809:7;53794:14;:23::i;:::-;53778:39;;53842:5;53836:11;;:2;:11;;;;53828:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53922:5;53906:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;53931:44;53955:5;53962:12;:10;:12::i;:::-;53931:23;:44::i;:::-;53906:69;53898:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54072:21;54081:2;54085:7;54072:8;:21::i;:::-;53767:334;53697:404;;:::o;69254:134::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67771:6:::1;;;;;;;;;;;67770:7;67762:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;69366:14:::2;69349;:31;;;;;;;;;;;;:::i;:::-;;69254:134:::0;:::o;53175:211::-;53236:7;53357:21;:12;:19;:21::i;:::-;53350:28;;53175:211;:::o;67575:34::-;;;;;;;;;;;;;:::o;67176:33::-;;;;:::o;55057:305::-;55218:41;55237:12;:10;:12::i;:::-;55251:7;55218:18;:41::i;:::-;55210:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55326:28;55336:4;55342:2;55346:7;55326:9;:28::i;:::-;55057:305;;;:::o;66946:53::-;66998:1;66946:53;:::o;52937:162::-;53034:7;53061:30;53085:5;53061:13;:20;53075:5;53061:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53054:37;;52937:162;;;;:::o;69645:89::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69714:12:::1;;;;;;;;;;;69713:13;69698:12;;:28;;;;;;;;;;;;;;;;;;69645:89::o:0;68954:100::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69002:44:::1;69012:10;69024:21;69002:9;:44::i;:::-;68954:100::o:0;55433:151::-;55537:39;55554:4;55560:2;55564:7;55537:39;;;;;;;;;;;;:16;:39::i;:::-;55433:151;;;:::o;53463:172::-;53538:7;53559:15;53580:22;53596:5;53580:12;:15;;:22;;;;:::i;:::-;53558:44;;;53620:7;53613:14;;;53463:172;;;:::o;69528:109::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67771:6:::1;;;;;;;;;;;67770:7;67762:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;69609:20:::2;69621:7;69609:11;:20::i;:::-;69528:109:::0;:::o;51137:177::-;51209:7;51236:70;51253:7;51236:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51229:77;;51137:177;;;:::o;52756:97::-;52804:13;52837:8;52830:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52756:97;:::o;50854:221::-;50926:7;50971:1;50954:19;;:5;:19;;;;50946:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51038:29;:13;:20;51052:5;51038:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51031:36;;50854:221;;;:::o;66084:148::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66191:1:::1;66154:40;;66175:6;;;;;;;;;;;66154:40;;;;;;;;;;;;66222:1;66205:6;;:19;;;;;;;;;;;;;;;;;;66084:148::o:0;67846:357::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67934:9:::1;67930:263;67953:7;;:14;;67949:1;:18;67930:263;;;67989:13;68005:7;;68013:1;68005:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;67989:26;;68055:1;68038:19;;:5;:19;;;;68030:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;68098:12;:19;68111:5;68098:19;;;;;;;;;;;;;;;;;;;;;;;;;68097:20;68089:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;68177:4;68155:12;:19;68168:5;68155:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;67974:219;67969:3;;;;;:::i;:::-;;;;67930:263;;;;67846:357:::0;;:::o;69396:124::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67771:6:::1;;;;;;;;;;;67770:7;67762:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;69500:12:::2;69481:16;:31;;;;69396:124:::0;:::o;67465:44::-;;;;;;;;;;;;;;;;;:::o;66894:45::-;;;;:::o;69931:502::-;69992:16;70022:18;70043:17;70053:6;70043:9;:17::i;:::-;70022:38;;70089:1;70075:10;:15;70071:355;;;70128:1;70114:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70107:23;;;;;70071:355;70163:23;70203:10;70189:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70163:51;;70229:13;70257:130;70281:10;70273:5;:18;70257:130;;;70337:34;70357:6;70365:5;70337:19;:34::i;:::-;70321:6;70328:5;70321:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;70293:7;;;;;:::i;:::-;;;;70257:130;;;70408:6;70401:13;;;;;69931:502;;;;:::o;66810:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65433:87::-;65479:7;65506:6;;;;;;;;;;;65499:13;;65433:87;:::o;51550:104::-;51606:13;51639:7;51632:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51550:104;:::o;69844:75::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69907:4:::1;69898:6;;:13;;;;;;;;;;;;;;;;;;69844:75::o:0;67402:56::-;;;;;;;;;;;;;;;;;:::o;67351:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;70445:881::-;70517:12;;;;;;;;;;;70509:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;70581:13;;;;;;;;;;;70580:14;70572:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;70647:1;70630:14;:18;:65;;;;;66998:1;70652:14;:43;;70630:65;70622:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;67078:4;70752:33;70770:14;70752:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:52;;70744:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;70873:36;70894:14;70873:16;;:20;;:36;;;;:::i;:::-;70860:9;:49;;70852:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;71007:13;;70989:14;70965:9;:21;70975:10;70965:21;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:55;;70957:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;71062:6;71058:261;71078:14;71074:1;:18;71058:261;;;71114:14;71146:1;71131:13;:11;:13::i;:::-;:16;;;;:::i;:::-;71114:33;;67078:4;71166:13;:11;:13::i;:::-;:31;71162:146;;;71218:9;:21;71228:10;71218:21;;;;;;;;;;;;;;;;:23;;;;;;;;;:::i;:::-;;;;;;71260:32;71270:10;71282:9;71260;:32::i;:::-;71162:146;71099:220;71094:3;;;;;:::i;:::-;;;;71058:261;;;;70445:881;:::o;54460:295::-;54575:12;:10;:12::i;:::-;54563:24;;:8;:24;;;;54555:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54675:8;54630:18;:32;54649:12;:10;:12::i;:::-;54630:32;;;;;;;;;;;;;;;:42;54663:8;54630:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54728:8;54699:48;;54714:12;:10;:12::i;:::-;54699:48;;;54738:8;54699:48;;;;;;:::i;:::-;;;;;;;;54460:295;;:::o;68211:308::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68304:9:::1;68300:212;68323:7;;:14;;68319:1;:18;68300:212;;;68359:13;68375:7;;68383:1;68375:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;68359:26;;68425:1;68408:19;;:5;:19;;;;68400:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;68495:5;68473:12;:19;68486:5;68473:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;68344:168;68339:3;;;;;:::i;:::-;;;;68300:212;;;;68211:308:::0;;:::o;55655:285::-;55787:41;55806:12;:10;:12::i;:::-;55820:7;55787:18;:41::i;:::-;55779:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55893:39;55907:4;55913:2;55917:7;55926:5;55893:13;:39::i;:::-;55655:285;;;;:::o;51725:792::-;51798:13;51832:16;51840:7;51832;:16::i;:::-;51824:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51913:23;51939:10;:19;51950:7;51939:19;;;;;;;;;;;51913:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51969:18;51990:9;:7;:9::i;:::-;51969:30;;52097:1;52081:4;52075:18;:23;52071:72;;;52122:9;52115:16;;;;;;52071:72;52273:1;52253:9;52247:23;:27;52243:108;;;52322:4;52328:9;52305:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52291:48;;;;;;52243:108;52483:4;52489:18;:7;:16;:18::i;:::-;52466:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52452:57;;;;51725:792;;;;:::o;71334:741::-;71416:12;;;;;;;;;;;71415:13;:30;;;;;71432:13;;;;;;;;;;;71415:30;71407:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71483:12;:24;71496:10;71483:24;;;;;;;;;;;;;;;;;;;;;;;;;71475:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;67078:4;71544:33;71562:14;71544:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:52;;71536:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;71706:20;;71688:14;71652:21;:33;71674:10;71652:33;;;;;;;;;;;;;;;;:50;;;;:::i;:::-;:74;;71644:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;71775:36;71796:14;71775:16;;:20;;:36;;;;:::i;:::-;71762:9;:49;;71754:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;71874:6;71869:199;71890:14;71886:1;:18;71869:199;;;71926:14;71958:1;71943:13;:11;:13::i;:::-;:16;;;;:::i;:::-;71926:33;;71974:21;:33;71996:10;71974:33;;;;;;;;;;;;;;;;:35;;;;;;;;;:::i;:::-;;;;;;72024:32;72034:10;72046:9;72024;:32::i;:::-;71911:157;71906:3;;;;;:::i;:::-;;;;71869:199;;;;71334:741;:::o;68527:419::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68617:11:::1;68647:1;68631:13;:11;:13::i;:::-;:17;;;;:::i;:::-;68617:31;;68684:1;68667:14;:18;:58;;;;;68707:18;;68689:14;:36;;68667:58;68659:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;68779:6;68774:95;68795:14;68791:1;:18;68774:95;;;68831:26;68841:3;68855:1;68846:6;:10;;;;:::i;:::-;68831:9;:26::i;:::-;68811:3;;;;;:::i;:::-;;;;68774:95;;;;68900:38;68923:14;68900:18;;:22;;:38;;;;:::i;:::-;68879:18;:59;;;;68598:348;68527:419:::0;;:::o;67616:26::-;;;;;;;;;;;;;:::o;67262:39::-;;;;:::o;54826:164::-;54923:4;54947:18;:25;54966:5;54947:25;;;;;;;;;;;;;;;:35;54973:8;54947:35;;;;;;;;;;;;;;;;;;;;;;;;;54940:42;;54826:164;;;;:::o;67536:32::-;;;;;;;;;;;;;:::o;67036:46::-;67078:4;67036:46;:::o;69742:94::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69815:13:::1;;;;;;;;;;;69814:14;69798:13;;:30;;;;;;;;;;;;;;;;;;69742:94::o:0;66387:244::-;65664:12;:10;:12::i;:::-;65653:23;;:7;:5;:7::i;:::-;:23;;;65645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66496:1:::1;66476:22;;:8;:22;;;;66468:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66586:8;66557:38;;66578:6;;;;;;;;;;;66557:38;;;;;;;;;;;;66615:8;66606:6;;:17;;;;;;;;;;;;;;;;;;66387:244:::0;:::o;67089:39::-;;;;:::o;57407:127::-;57472:4;57496:30;57518:7;57496:12;:21;;:30;;;;:::i;:::-;57489:37;;57407:127;;;:::o;657:98::-;710:7;737:10;730:17;;657:98;:::o;63425:192::-;63527:2;63500:15;:24;63516:7;63500:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63583:7;63579:2;63545:46;;63554:23;63569:7;63554:14;:23::i;:::-;63545:46;;;;;;;;;;;;63425:192;;:::o;44180:123::-;44249:7;44276:19;44284:3;:10;;44276:7;:19::i;:::-;44269:26;;44180:123;;;:::o;57701:355::-;57794:4;57819:16;57827:7;57819;:16::i;:::-;57811:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57895:13;57911:23;57926:7;57911:14;:23::i;:::-;57895:39;;57964:5;57953:16;;:7;:16;;;:51;;;;57997:7;57973:31;;:20;57985:7;57973:11;:20::i;:::-;:31;;;57953:51;:94;;;;58008:39;58032:5;58039:7;58008:23;:39::i;:::-;57953:94;57945:103;;;57701:355;;;;:::o;60837:599::-;60962:4;60935:31;;:23;60950:7;60935:14;:23::i;:::-;:31;;;60927:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61063:1;61049:16;;:2;:16;;;;61041:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61119:39;61140:4;61146:2;61150:7;61119:20;:39::i;:::-;61223:29;61240:1;61244:7;61223:8;:29::i;:::-;61265:35;61292:7;61265:13;:19;61279:4;61265:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61311:30;61333:7;61311:13;:17;61325:2;61311:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61354:29;61371:7;61380:2;61354:12;:16;;:29;;;;;:::i;:::-;;61420:7;61416:2;61401:27;;61410:4;61401:27;;;;;;;;;;;;60837:599;;;:::o;35979:137::-;36050:7;36085:22;36089:3;:10;;36101:5;36085:3;:22::i;:::-;36077:31;;36070:38;;35979:137;;;;:::o;69066:180::-;69140:12;69158:8;:13;;69179:7;69158:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69139:52;;;69210:7;69202:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;69128:118;69066:180;;:::o;44642:236::-;44722:7;44731;44752:11;44765:13;44782:22;44786:3;:10;;44798:5;44782:3;:22::i;:::-;44751:53;;;;44831:3;44823:12;;44861:5;44853:14;;44815:55;;;;;;44642:236;;;;;:::o;62037:100::-;62121:8;62110;:19;;;;;;;;;;;;:::i;:::-;;62037:100;:::o;45928:213::-;46035:7;46086:44;46091:3;:10;;46111:3;46103:12;;46117;46086:4;:44::i;:::-;46078:53;;46055:78;;45928:213;;;;;:::o;35521:114::-;35581:7;35608:19;35616:3;:10;;35608:7;:19::i;:::-;35601:26;;35521:114;;;:::o;13723:179::-;13781:7;13801:9;13817:1;13813;:5;;;;:::i;:::-;13801:17;;13842:1;13837;:6;;13829:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13893:1;13886:8;;;13723:179;;;;:::o;14602:220::-;14660:7;14689:1;14684;:6;14680:20;;;14699:1;14692:8;;;;14680:20;14711:9;14727:1;14723;:5;;;;:::i;:::-;14711:17;;14756:1;14751;14747;:5;;;;:::i;:::-;:10;14739:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14813:1;14806:8;;;14602:220;;;;;:::o;58399:110::-;58475:26;58485:2;58489:7;58475:26;;;;;;;;;;;;:9;:26::i;:::-;58399:110;;:::o;56822:272::-;56936:28;56946:4;56952:2;56956:7;56936:9;:28::i;:::-;56983:48;57006:4;57012:2;57016:7;57025:5;56983:22;:48::i;:::-;56975:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56822:272;;;;:::o;46384:723::-;46440:13;46670:1;46661:5;:10;46657:53;;;46688:10;;;;;;;;;;;;;;;;;;;;;46657:53;46720:12;46735:5;46720:20;;46751:14;46776:78;46791:1;46783:4;:9;46776:78;;46809:8;;;;;:::i;:::-;;;;46840:2;46832:10;;;;;:::i;:::-;;;46776:78;;;46864:19;46896:6;46886:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46864:39;;46914:154;46930:1;46921:5;:10;46914:154;;46958:1;46948:11;;;;;:::i;:::-;;;47025:2;47017:5;:10;;;;:::i;:::-;47004:2;:24;;;;:::i;:::-;46991:39;;46974:6;46981;46974:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;47054:2;47045:11;;;;;:::i;:::-;;;46914:154;;;47092:6;47078:21;;;;;46384:723;;;;:::o;14185:158::-;14243:7;14276:1;14271;:6;;14263:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14334:1;14330;:5;;;;:::i;:::-;14323:12;;14185:158;;;;:::o;43941:151::-;44025:4;44049:35;44059:3;:10;;44079:3;44071:12;;44049:9;:35::i;:::-;44042:42;;43941:151;;;;:::o;40759:110::-;40815:7;40842:3;:12;;:19;;;;40835:26;;40759:110;;;:::o;64230:93::-;;;;:::o;35066:137::-;35136:4;35160:35;35168:3;:10;;35188:5;35180:14;;35160:7;:35::i;:::-;35153:42;;35066:137;;;;:::o;34759:131::-;34826:4;34850:32;34855:3;:10;;34875:5;34867:14;;34850:4;:32::i;:::-;34843:39;;34759:131;;;;:::o;43364:185::-;43453:4;43477:64;43482:3;:10;;43502:3;43494:12;;43532:5;43516:23;;43508:32;;43477:4;:64::i;:::-;43470:71;;43364:185;;;;;:::o;31017:204::-;31084:7;31133:5;31112:3;:11;;:18;;;;:26;31104:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31195:3;:11;;31207:5;31195:18;;;;;;;;:::i;:::-;;;;;;;;;;31188:25;;31017:204;;;;:::o;41224:279::-;41291:7;41300;41350:5;41328:3;:12;;:19;;;;:27;41320:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41407:22;41432:3;:12;;41445:5;41432:19;;;;;;;;:::i;:::-;;;;;;;;;;;;41407:44;;41470:5;:10;;;41482:5;:12;;;41462:33;;;;;41224:279;;;;;:::o;42721:319::-;42815:7;42835:16;42854:3;:12;;:17;42867:3;42854:17;;;;;;;;;;;;42835:36;;42902:1;42890:8;:13;;42905:12;42882:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;42972:3;:12;;42996:1;42985:8;:12;;;;:::i;:::-;42972:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:33;;;42965:40;;;42721:319;;;;;:::o;30564:109::-;30620:7;30647:3;:11;;:18;;;;30640:25;;30564:109;;;:::o;58736:250::-;58832:18;58838:2;58842:7;58832:5;:18::i;:::-;58869:54;58900:1;58904:2;58908:7;58917:5;58869:22;:54::i;:::-;58861:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58736:250;;;:::o;62702:604::-;62823:4;62850:15;:2;:13;;;:15::i;:::-;62845:60;;62889:4;62882:11;;;;62845:60;62915:23;62941:252;62994:45;;;63054:12;:10;:12::i;:::-;63081:4;63100:7;63122:5;62957:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62941:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;62915:278;;63204:13;63231:10;63220:32;;;;;;;;;;;;:::i;:::-;63204:48;;47851:10;63281:16;;63271:26;;;:6;:26;;;;63263:35;;;;62702:604;;;;;;;:::o;40539:125::-;40610:4;40655:1;40634:3;:12;;:17;40647:3;40634:17;;;;;;;;;;;;:22;;40627:29;;40539:125;;;;:::o;28719:1544::-;28785:4;28903:18;28924:3;:12;;:19;28937:5;28924:19;;;;;;;;;;;;28903:40;;28974:1;28960:10;:15;28956:1300;;29322:21;29359:1;29346:10;:14;;;;:::i;:::-;29322:38;;29375:17;29416:1;29395:3;:11;;:18;;;;:22;;;;:::i;:::-;29375:42;;29662:17;29682:3;:11;;29694:9;29682:22;;;;;;;;:::i;:::-;;;;;;;;;;29662:42;;29828:9;29799:3;:11;;29811:13;29799:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;29947:1;29931:13;:17;;;;:::i;:::-;29905:3;:12;;:23;29918:9;29905:23;;;;;;;;;;;:43;;;;30057:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30152:3;:12;;:19;30165:5;30152:19;;;;;;;;;;;30145:26;;;30195:4;30188:11;;;;;;;;28956:1300;30239:5;30232:12;;;28719:1544;;;;;:::o;28129:414::-;28192:4;28214:21;28224:3;28229:5;28214:9;:21::i;:::-;28209:327;;28252:3;:11;;28269:5;28252:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28435:3;:11;;:18;;;;28413:3;:12;;:19;28426:5;28413:19;;;;;;;;;;;:40;;;;28475:4;28468:11;;;;28209:327;28519:5;28512:12;;28129:414;;;;;:::o;38039:692::-;38115:4;38231:16;38250:3;:12;;:17;38263:3;38250:17;;;;;;;;;;;;38231:36;;38296:1;38284:8;:13;38280:444;;;38351:3;:12;;38369:38;;;;;;;;38386:3;38369:38;;;;38399:5;38369:38;;;38351:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38566:3;:12;;:19;;;;38546:3;:12;;:17;38559:3;38546:17;;;;;;;;;;;:39;;;;38607:4;38600:11;;;;;38280:444;38680:5;38644:3;:12;;38668:1;38657:8;:12;;;;:::i;:::-;38644:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:33;;:41;;;;38707:5;38700:12;;;38039:692;;;;;;:::o;59322:404::-;59416:1;59402:16;;:2;:16;;;;59394:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59475:16;59483:7;59475;:16::i;:::-;59474:17;59466:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59537:45;59566:1;59570:2;59574:7;59537:20;:45::i;:::-;59595:30;59617:7;59595:13;:17;59609:2;59595:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59638:29;59655:7;59664:2;59638:12;:16;;:29;;;;;:::i;:::-;;59710:7;59706:2;59685:33;;59702:1;59685:33;;;;;;;;;;;;59322:404;;:::o;19156:422::-;19216:4;19424:12;19535:7;19523:20;19515:28;;19569:1;19562:4;:8;19555:15;;;19156:422;;;:::o;22074:195::-;22177:12;22209:52;22231:6;22239:4;22245:1;22248:12;22209:21;:52::i;:::-;22202:59;;22074:195;;;;;:::o;30349:129::-;30422:4;30469:1;30446:3;:12;;:19;30459:5;30446:19;;;;;;;;;;;;:24;;30439:31;;30349:129;;;;:::o;23126:530::-;23253:12;23311:5;23286:21;:30;;23278:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23378:18;23389:6;23378:10;:18::i;:::-;23370:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23504:12;23518:23;23545:6;:11;;23565:5;23573:4;23545:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23503:75;;;;23596:52;23614:7;23623:10;23635:12;23596:17;:52::i;:::-;23589:59;;;;23126:530;;;;;;:::o;25666:742::-;25781:12;25810:7;25806:595;;;25841:10;25834:17;;;;25806:595;25975:1;25955:10;:17;:21;25951:439;;;26218:10;26212:17;26279:15;26266:10;26262:2;26258:19;26251:44;25951:439;26361:12;26354:20;;;;;;;;;;;:::i;:::-;;;;;;;;25666:742;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8314:179;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8499:118;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;8653:732;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9391:109;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;9506:360;;;;:::o;9872:373::-;9976:3;10004:38;10036:5;10004:38;:::i;:::-;10058:88;10139:6;10134:3;10058:88;:::i;:::-;10051:95;;10155:52;10200:6;10195:3;10188:4;10181:5;10177:16;10155:52;:::i;:::-;10232:6;10227:3;10223:16;10216:23;;9980:265;9872:373;;;;:::o;10251:364::-;10339:3;10367:39;10400:5;10367:39;:::i;:::-;10422:71;10486:6;10481:3;10422:71;:::i;:::-;10415:78;;10502:52;10547:6;10542:3;10535:4;10528:5;10524:16;10502:52;:::i;:::-;10579:29;10601:6;10579:29;:::i;:::-;10574:3;10570:39;10563:46;;10343:272;10251:364;;;;:::o;10621:377::-;10727:3;10755:39;10788:5;10755:39;:::i;:::-;10810:89;10892:6;10887:3;10810:89;:::i;:::-;10803:96;;10908:52;10953:6;10948:3;10941:4;10934:5;10930:16;10908:52;:::i;:::-;10985:6;10980:3;10976:16;10969:23;;10731:267;10621:377;;;;:::o;11004:366::-;11146:3;11167:67;11231:2;11226:3;11167:67;:::i;:::-;11160:74;;11243:93;11332:3;11243:93;:::i;:::-;11361:2;11356:3;11352:12;11345:19;;11004:366;;;:::o;11376:::-;11518:3;11539:67;11603:2;11598:3;11539:67;:::i;:::-;11532:74;;11615:93;11704:3;11615:93;:::i;:::-;11733:2;11728:3;11724:12;11717:19;;11376:366;;;:::o;11748:::-;11890:3;11911:67;11975:2;11970:3;11911:67;:::i;:::-;11904:74;;11987:93;12076:3;11987:93;:::i;:::-;12105:2;12100:3;12096:12;12089:19;;11748:366;;;:::o;12120:::-;12262:3;12283:67;12347:2;12342:3;12283:67;:::i;:::-;12276:74;;12359:93;12448:3;12359:93;:::i;:::-;12477:2;12472:3;12468:12;12461:19;;12120:366;;;:::o;12492:::-;12634:3;12655:67;12719:2;12714:3;12655:67;:::i;:::-;12648:74;;12731:93;12820:3;12731:93;:::i;:::-;12849:2;12844:3;12840:12;12833:19;;12492:366;;;:::o;12864:::-;13006:3;13027:67;13091:2;13086:3;13027:67;:::i;:::-;13020:74;;13103:93;13192:3;13103:93;:::i;:::-;13221:2;13216:3;13212:12;13205:19;;12864:366;;;:::o;13236:::-;13378:3;13399:67;13463:2;13458:3;13399:67;:::i;:::-;13392:74;;13475:93;13564:3;13475:93;:::i;:::-;13593:2;13588:3;13584:12;13577:19;;13236:366;;;:::o;13608:::-;13750:3;13771:67;13835:2;13830:3;13771:67;:::i;:::-;13764:74;;13847:93;13936:3;13847:93;:::i;:::-;13965:2;13960:3;13956:12;13949:19;;13608:366;;;:::o;13980:::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:::-;14494:3;14515:67;14579:2;14574:3;14515:67;:::i;:::-;14508:74;;14591:93;14680:3;14591:93;:::i;:::-;14709:2;14704:3;14700:12;14693:19;;14352:366;;;:::o;14724:::-;14866:3;14887:67;14951:2;14946:3;14887:67;:::i;:::-;14880:74;;14963:93;15052:3;14963:93;:::i;:::-;15081:2;15076:3;15072:12;15065:19;;14724:366;;;:::o;15096:::-;15238:3;15259:67;15323:2;15318:3;15259:67;:::i;:::-;15252:74;;15335:93;15424:3;15335:93;:::i;:::-;15453:2;15448:3;15444:12;15437:19;;15096:366;;;:::o;15468:::-;15610:3;15631:67;15695:2;15690:3;15631:67;:::i;:::-;15624:74;;15707:93;15796:3;15707:93;:::i;:::-;15825:2;15820:3;15816:12;15809:19;;15468:366;;;:::o;15840:::-;15982:3;16003:67;16067:2;16062:3;16003:67;:::i;:::-;15996:74;;16079:93;16168:3;16079:93;:::i;:::-;16197:2;16192:3;16188:12;16181:19;;15840:366;;;:::o;16212:::-;16354:3;16375:67;16439:2;16434:3;16375:67;:::i;:::-;16368:74;;16451:93;16540:3;16451:93;:::i;:::-;16569:2;16564:3;16560:12;16553:19;;16212:366;;;:::o;16584:::-;16726:3;16747:67;16811:2;16806:3;16747:67;:::i;:::-;16740:74;;16823:93;16912:3;16823:93;:::i;:::-;16941:2;16936:3;16932:12;16925:19;;16584:366;;;:::o;16956:::-;17098:3;17119:67;17183:2;17178:3;17119:67;:::i;:::-;17112:74;;17195:93;17284:3;17195:93;:::i;:::-;17313:2;17308:3;17304:12;17297:19;;16956:366;;;:::o;17328:::-;17470:3;17491:67;17555:2;17550:3;17491:67;:::i;:::-;17484:74;;17567:93;17656:3;17567:93;:::i;:::-;17685:2;17680:3;17676:12;17669:19;;17328:366;;;:::o;17700:::-;17842:3;17863:67;17927:2;17922:3;17863:67;:::i;:::-;17856:74;;17939:93;18028:3;17939:93;:::i;:::-;18057:2;18052:3;18048:12;18041:19;;17700:366;;;:::o;18072:::-;18214:3;18235:67;18299:2;18294:3;18235:67;:::i;:::-;18228:74;;18311:93;18400:3;18311:93;:::i;:::-;18429:2;18424:3;18420:12;18413:19;;18072:366;;;:::o;18444:::-;18586:3;18607:67;18671:2;18666:3;18607:67;:::i;:::-;18600:74;;18683:93;18772:3;18683:93;:::i;:::-;18801:2;18796:3;18792:12;18785:19;;18444:366;;;:::o;18816:::-;18958:3;18979:67;19043:2;19038:3;18979:67;:::i;:::-;18972:74;;19055:93;19144:3;19055:93;:::i;:::-;19173:2;19168:3;19164:12;19157:19;;18816:366;;;:::o;19188:::-;19330:3;19351:67;19415:2;19410:3;19351:67;:::i;:::-;19344:74;;19427:93;19516:3;19427:93;:::i;:::-;19545:2;19540:3;19536:12;19529:19;;19188:366;;;:::o;19560:::-;19702:3;19723:67;19787:2;19782:3;19723:67;:::i;:::-;19716:74;;19799:93;19888:3;19799:93;:::i;:::-;19917:2;19912:3;19908:12;19901:19;;19560:366;;;:::o;19932:::-;20074:3;20095:67;20159:2;20154:3;20095:67;:::i;:::-;20088:74;;20171:93;20260:3;20171:93;:::i;:::-;20289:2;20284:3;20280:12;20273:19;;19932:366;;;:::o;20304:::-;20446:3;20467:67;20531:2;20526:3;20467:67;:::i;:::-;20460:74;;20543:93;20632:3;20543:93;:::i;:::-;20661:2;20656:3;20652:12;20645:19;;20304:366;;;:::o;20676:::-;20818:3;20839:67;20903:2;20898:3;20839:67;:::i;:::-;20832:74;;20915:93;21004:3;20915:93;:::i;:::-;21033:2;21028:3;21024:12;21017:19;;20676:366;;;:::o;21048:::-;21190:3;21211:67;21275:2;21270:3;21211:67;:::i;:::-;21204:74;;21287:93;21376:3;21287:93;:::i;:::-;21405:2;21400:3;21396:12;21389:19;;21048:366;;;:::o;21420:398::-;21579:3;21600:83;21681:1;21676:3;21600:83;:::i;:::-;21593:90;;21692:93;21781:3;21692:93;:::i;:::-;21810:1;21805:3;21801:11;21794:18;;21420:398;;;:::o;21824:366::-;21966:3;21987:67;22051:2;22046:3;21987:67;:::i;:::-;21980:74;;22063:93;22152:3;22063:93;:::i;:::-;22181:2;22176:3;22172:12;22165:19;;21824:366;;;:::o;22196:::-;22338:3;22359:67;22423:2;22418:3;22359:67;:::i;:::-;22352:74;;22435:93;22524:3;22435:93;:::i;:::-;22553:2;22548:3;22544:12;22537:19;;22196:366;;;:::o;22568:::-;22710:3;22731:67;22795:2;22790:3;22731:67;:::i;:::-;22724:74;;22807:93;22896:3;22807:93;:::i;:::-;22925:2;22920:3;22916:12;22909:19;;22568:366;;;:::o;22940:::-;23082:3;23103:67;23167:2;23162:3;23103:67;:::i;:::-;23096:74;;23179:93;23268:3;23179:93;:::i;:::-;23297:2;23292:3;23288:12;23281:19;;22940:366;;;:::o;23312:::-;23454:3;23475:67;23539:2;23534:3;23475:67;:::i;:::-;23468:74;;23551:93;23640:3;23551:93;:::i;:::-;23669:2;23664:3;23660:12;23653:19;;23312:366;;;:::o;23684:::-;23826:3;23847:67;23911:2;23906:3;23847:67;:::i;:::-;23840:74;;23923:93;24012:3;23923:93;:::i;:::-;24041:2;24036:3;24032:12;24025:19;;23684:366;;;:::o;24056:::-;24198:3;24219:67;24283:2;24278:3;24219:67;:::i;:::-;24212:74;;24295:93;24384:3;24295:93;:::i;:::-;24413:2;24408:3;24404:12;24397:19;;24056:366;;;:::o;24428:108::-;24505:24;24523:5;24505:24;:::i;:::-;24500:3;24493:37;24428:108;;:::o;24542:118::-;24629:24;24647:5;24629:24;:::i;:::-;24624:3;24617:37;24542:118;;:::o;24666:271::-;24796:3;24818:93;24907:3;24898:6;24818:93;:::i;:::-;24811:100;;24928:3;24921:10;;24666:271;;;;:::o;24943:435::-;25123:3;25145:95;25236:3;25227:6;25145:95;:::i;:::-;25138:102;;25257:95;25348:3;25339:6;25257:95;:::i;:::-;25250:102;;25369:3;25362:10;;24943:435;;;;;:::o;25384:379::-;25568:3;25590:147;25733:3;25590:147;:::i;:::-;25583:154;;25754:3;25747:10;;25384:379;;;:::o;25769:222::-;25862:4;25900:2;25889:9;25885:18;25877:26;;25913:71;25981:1;25970:9;25966:17;25957:6;25913:71;:::i;:::-;25769:222;;;;:::o;25997:640::-;26192:4;26230:3;26219:9;26215:19;26207:27;;26244:71;26312:1;26301:9;26297:17;26288:6;26244:71;:::i;:::-;26325:72;26393:2;26382:9;26378:18;26369:6;26325:72;:::i;:::-;26407;26475:2;26464:9;26460:18;26451:6;26407:72;:::i;:::-;26526:9;26520:4;26516:20;26511:2;26500:9;26496:18;26489:48;26554:76;26625:4;26616:6;26554:76;:::i;:::-;26546:84;;25997:640;;;;;;;:::o;26643:373::-;26786:4;26824:2;26813:9;26809:18;26801:26;;26873:9;26867:4;26863:20;26859:1;26848:9;26844:17;26837:47;26901:108;27004:4;26995:6;26901:108;:::i;:::-;26893:116;;26643:373;;;;:::o;27022:210::-;27109:4;27147:2;27136:9;27132:18;27124:26;;27160:65;27222:1;27211:9;27207:17;27198:6;27160:65;:::i;:::-;27022:210;;;;:::o;27238:313::-;27351:4;27389:2;27378:9;27374:18;27366:26;;27438:9;27432:4;27428:20;27424:1;27413:9;27409:17;27402:47;27466:78;27539:4;27530:6;27466:78;:::i;:::-;27458:86;;27238:313;;;;:::o;27557:419::-;27723:4;27761:2;27750:9;27746:18;27738:26;;27810:9;27804:4;27800:20;27796:1;27785:9;27781:17;27774:47;27838:131;27964:4;27838:131;:::i;:::-;27830:139;;27557:419;;;:::o;27982:::-;28148:4;28186:2;28175:9;28171:18;28163:26;;28235:9;28229:4;28225:20;28221:1;28210:9;28206:17;28199:47;28263:131;28389:4;28263:131;:::i;:::-;28255:139;;27982:419;;;:::o;28407:::-;28573:4;28611:2;28600:9;28596:18;28588:26;;28660:9;28654:4;28650:20;28646:1;28635:9;28631:17;28624:47;28688:131;28814:4;28688:131;:::i;:::-;28680:139;;28407:419;;;:::o;28832:::-;28998:4;29036:2;29025:9;29021:18;29013:26;;29085:9;29079:4;29075:20;29071:1;29060:9;29056:17;29049:47;29113:131;29239:4;29113:131;:::i;:::-;29105:139;;28832:419;;;:::o;29257:::-;29423:4;29461:2;29450:9;29446:18;29438:26;;29510:9;29504:4;29500:20;29496:1;29485:9;29481:17;29474:47;29538:131;29664:4;29538:131;:::i;:::-;29530:139;;29257:419;;;:::o;29682:::-;29848:4;29886:2;29875:9;29871:18;29863:26;;29935:9;29929:4;29925:20;29921:1;29910:9;29906:17;29899:47;29963:131;30089:4;29963:131;:::i;:::-;29955:139;;29682:419;;;:::o;30107:::-;30273:4;30311:2;30300:9;30296:18;30288:26;;30360:9;30354:4;30350:20;30346:1;30335:9;30331:17;30324:47;30388:131;30514:4;30388:131;:::i;:::-;30380:139;;30107:419;;;:::o;30532:::-;30698:4;30736:2;30725:9;30721:18;30713:26;;30785:9;30779:4;30775:20;30771:1;30760:9;30756:17;30749:47;30813:131;30939:4;30813:131;:::i;:::-;30805:139;;30532:419;;;:::o;30957:::-;31123:4;31161:2;31150:9;31146:18;31138:26;;31210:9;31204:4;31200:20;31196:1;31185:9;31181:17;31174:47;31238:131;31364:4;31238:131;:::i;:::-;31230:139;;30957:419;;;:::o;31382:::-;31548:4;31586:2;31575:9;31571:18;31563:26;;31635:9;31629:4;31625:20;31621:1;31610:9;31606:17;31599:47;31663:131;31789:4;31663:131;:::i;:::-;31655:139;;31382:419;;;:::o;31807:::-;31973:4;32011:2;32000:9;31996:18;31988:26;;32060:9;32054:4;32050:20;32046:1;32035:9;32031:17;32024:47;32088:131;32214:4;32088:131;:::i;:::-;32080:139;;31807:419;;;:::o;32232:::-;32398:4;32436:2;32425:9;32421:18;32413:26;;32485:9;32479:4;32475:20;32471:1;32460:9;32456:17;32449:47;32513:131;32639:4;32513:131;:::i;:::-;32505:139;;32232:419;;;:::o;32657:::-;32823:4;32861:2;32850:9;32846:18;32838:26;;32910:9;32904:4;32900:20;32896:1;32885:9;32881:17;32874:47;32938:131;33064:4;32938:131;:::i;:::-;32930:139;;32657:419;;;:::o;33082:::-;33248:4;33286:2;33275:9;33271:18;33263:26;;33335:9;33329:4;33325:20;33321:1;33310:9;33306:17;33299:47;33363:131;33489:4;33363:131;:::i;:::-;33355:139;;33082:419;;;:::o;33507:::-;33673:4;33711:2;33700:9;33696:18;33688:26;;33760:9;33754:4;33750:20;33746:1;33735:9;33731:17;33724:47;33788:131;33914:4;33788:131;:::i;:::-;33780:139;;33507:419;;;:::o;33932:::-;34098:4;34136:2;34125:9;34121:18;34113:26;;34185:9;34179:4;34175:20;34171:1;34160:9;34156:17;34149:47;34213:131;34339:4;34213:131;:::i;:::-;34205:139;;33932:419;;;:::o;34357:::-;34523:4;34561:2;34550:9;34546:18;34538:26;;34610:9;34604:4;34600:20;34596:1;34585:9;34581:17;34574:47;34638:131;34764:4;34638:131;:::i;:::-;34630:139;;34357:419;;;:::o;34782:::-;34948:4;34986:2;34975:9;34971:18;34963:26;;35035:9;35029:4;35025:20;35021:1;35010:9;35006:17;34999:47;35063:131;35189:4;35063:131;:::i;:::-;35055:139;;34782:419;;;:::o;35207:::-;35373:4;35411:2;35400:9;35396:18;35388:26;;35460:9;35454:4;35450:20;35446:1;35435:9;35431:17;35424:47;35488:131;35614:4;35488:131;:::i;:::-;35480:139;;35207:419;;;:::o;35632:::-;35798:4;35836:2;35825:9;35821:18;35813:26;;35885:9;35879:4;35875:20;35871:1;35860:9;35856:17;35849:47;35913:131;36039:4;35913:131;:::i;:::-;35905:139;;35632:419;;;:::o;36057:::-;36223:4;36261:2;36250:9;36246:18;36238:26;;36310:9;36304:4;36300:20;36296:1;36285:9;36281:17;36274:47;36338:131;36464:4;36338:131;:::i;:::-;36330:139;;36057:419;;;:::o;36482:::-;36648:4;36686:2;36675:9;36671:18;36663:26;;36735:9;36729:4;36725:20;36721:1;36710:9;36706:17;36699:47;36763:131;36889:4;36763:131;:::i;:::-;36755:139;;36482:419;;;:::o;36907:::-;37073:4;37111:2;37100:9;37096:18;37088:26;;37160:9;37154:4;37150:20;37146:1;37135:9;37131:17;37124:47;37188:131;37314:4;37188:131;:::i;:::-;37180:139;;36907:419;;;:::o;37332:::-;37498:4;37536:2;37525:9;37521:18;37513:26;;37585:9;37579:4;37575:20;37571:1;37560:9;37556:17;37549:47;37613:131;37739:4;37613:131;:::i;:::-;37605:139;;37332:419;;;:::o;37757:::-;37923:4;37961:2;37950:9;37946:18;37938:26;;38010:9;38004:4;38000:20;37996:1;37985:9;37981:17;37974:47;38038:131;38164:4;38038:131;:::i;:::-;38030:139;;37757:419;;;:::o;38182:::-;38348:4;38386:2;38375:9;38371:18;38363:26;;38435:9;38429:4;38425:20;38421:1;38410:9;38406:17;38399:47;38463:131;38589:4;38463:131;:::i;:::-;38455:139;;38182:419;;;:::o;38607:::-;38773:4;38811:2;38800:9;38796:18;38788:26;;38860:9;38854:4;38850:20;38846:1;38835:9;38831:17;38824:47;38888:131;39014:4;38888:131;:::i;:::-;38880:139;;38607:419;;;:::o;39032:::-;39198:4;39236:2;39225:9;39221:18;39213:26;;39285:9;39279:4;39275:20;39271:1;39260:9;39256:17;39249:47;39313:131;39439:4;39313:131;:::i;:::-;39305:139;;39032:419;;;:::o;39457:::-;39623:4;39661:2;39650:9;39646:18;39638:26;;39710:9;39704:4;39700:20;39696:1;39685:9;39681:17;39674:47;39738:131;39864:4;39738:131;:::i;:::-;39730:139;;39457:419;;;:::o;39882:::-;40048:4;40086:2;40075:9;40071:18;40063:26;;40135:9;40129:4;40125:20;40121:1;40110:9;40106:17;40099:47;40163:131;40289:4;40163:131;:::i;:::-;40155:139;;39882:419;;;:::o;40307:::-;40473:4;40511:2;40500:9;40496:18;40488:26;;40560:9;40554:4;40550:20;40546:1;40535:9;40531:17;40524:47;40588:131;40714:4;40588:131;:::i;:::-;40580:139;;40307:419;;;:::o;40732:::-;40898:4;40936:2;40925:9;40921:18;40913:26;;40985:9;40979:4;40975:20;40971:1;40960:9;40956:17;40949:47;41013:131;41139:4;41013:131;:::i;:::-;41005:139;;40732:419;;;:::o;41157:::-;41323:4;41361:2;41350:9;41346:18;41338:26;;41410:9;41404:4;41400:20;41396:1;41385:9;41381:17;41374:47;41438:131;41564:4;41438:131;:::i;:::-;41430:139;;41157:419;;;:::o;41582:::-;41748:4;41786:2;41775:9;41771:18;41763:26;;41835:9;41829:4;41825:20;41821:1;41810:9;41806:17;41799:47;41863:131;41989:4;41863:131;:::i;:::-;41855:139;;41582:419;;;:::o;42007:::-;42173:4;42211:2;42200:9;42196:18;42188:26;;42260:9;42254:4;42250:20;42246:1;42235:9;42231:17;42224:47;42288:131;42414:4;42288:131;:::i;:::-;42280:139;;42007:419;;;:::o;42432:222::-;42525:4;42563:2;42552:9;42548:18;42540:26;;42576:71;42644:1;42633:9;42629:17;42620:6;42576:71;:::i;:::-;42432:222;;;;:::o;42660:129::-;42694:6;42721:20;;:::i;:::-;42711:30;;42750:33;42778:4;42770:6;42750:33;:::i;:::-;42660:129;;;:::o;42795:75::-;42828:6;42861:2;42855:9;42845:19;;42795:75;:::o;42876:307::-;42937:4;43027:18;43019:6;43016:30;43013:56;;;43049:18;;:::i;:::-;43013:56;43087:29;43109:6;43087:29;:::i;:::-;43079:37;;43171:4;43165;43161:15;43153:23;;42876:307;;;:::o;43189:308::-;43251:4;43341:18;43333:6;43330:30;43327:56;;;43363:18;;:::i;:::-;43327:56;43401:29;43423:6;43401:29;:::i;:::-;43393:37;;43485:4;43479;43475:15;43467:23;;43189:308;;;:::o;43503:132::-;43570:4;43593:3;43585:11;;43623:4;43618:3;43614:14;43606:22;;43503:132;;;:::o;43641:114::-;43708:6;43742:5;43736:12;43726:22;;43641:114;;;:::o;43761:98::-;43812:6;43846:5;43840:12;43830:22;;43761:98;;;:::o;43865:99::-;43917:6;43951:5;43945:12;43935:22;;43865:99;;;:::o;43970:113::-;44040:4;44072;44067:3;44063:14;44055:22;;43970:113;;;:::o;44089:184::-;44188:11;44222:6;44217:3;44210:19;44262:4;44257:3;44253:14;44238:29;;44089:184;;;;:::o;44279:168::-;44362:11;44396:6;44391:3;44384:19;44436:4;44431:3;44427:14;44412:29;;44279:168;;;;:::o;44453:147::-;44554:11;44591:3;44576:18;;44453:147;;;;:::o;44606:169::-;44690:11;44724:6;44719:3;44712:19;44764:4;44759:3;44755:14;44740:29;;44606:169;;;;:::o;44781:148::-;44883:11;44920:3;44905:18;;44781:148;;;;:::o;44935:305::-;44975:3;44994:20;45012:1;44994:20;:::i;:::-;44989:25;;45028:20;45046:1;45028:20;:::i;:::-;45023:25;;45182:1;45114:66;45110:74;45107:1;45104:81;45101:107;;;45188:18;;:::i;:::-;45101:107;45232:1;45229;45225:9;45218:16;;44935:305;;;;:::o;45246:185::-;45286:1;45303:20;45321:1;45303:20;:::i;:::-;45298:25;;45337:20;45355:1;45337:20;:::i;:::-;45332:25;;45376:1;45366:35;;45381:18;;:::i;:::-;45366:35;45423:1;45420;45416:9;45411:14;;45246:185;;;;:::o;45437:348::-;45477:7;45500:20;45518:1;45500:20;:::i;:::-;45495:25;;45534:20;45552:1;45534:20;:::i;:::-;45529:25;;45722:1;45654:66;45650:74;45647:1;45644:81;45639:1;45632:9;45625:17;45621:105;45618:131;;;45729:18;;:::i;:::-;45618:131;45777:1;45774;45770:9;45759:20;;45437:348;;;;:::o;45791:191::-;45831:4;45851:20;45869:1;45851:20;:::i;:::-;45846:25;;45885:20;45903:1;45885:20;:::i;:::-;45880:25;;45924:1;45921;45918:8;45915:34;;;45929:18;;:::i;:::-;45915:34;45974:1;45971;45967:9;45959:17;;45791:191;;;;:::o;45988:96::-;46025:7;46054:24;46072:5;46054:24;:::i;:::-;46043:35;;45988:96;;;:::o;46090:90::-;46124:7;46167:5;46160:13;46153:21;46142:32;;46090:90;;;:::o;46186:149::-;46222:7;46262:66;46255:5;46251:78;46240:89;;46186:149;;;:::o;46341:126::-;46378:7;46418:42;46411:5;46407:54;46396:65;;46341:126;;;:::o;46473:77::-;46510:7;46539:5;46528:16;;46473:77;;;:::o;46556:154::-;46640:6;46635:3;46630;46617:30;46702:1;46693:6;46688:3;46684:16;46677:27;46556:154;;;:::o;46716:307::-;46784:1;46794:113;46808:6;46805:1;46802:13;46794:113;;;46893:1;46888:3;46884:11;46878:18;46874:1;46869:3;46865:11;46858:39;46830:2;46827:1;46823:10;46818:15;;46794:113;;;46925:6;46922:1;46919:13;46916:101;;;47005:1;46996:6;46991:3;46987:16;46980:27;46916:101;46765:258;46716:307;;;:::o;47029:320::-;47073:6;47110:1;47104:4;47100:12;47090:22;;47157:1;47151:4;47147:12;47178:18;47168:81;;47234:4;47226:6;47222:17;47212:27;;47168:81;47296:2;47288:6;47285:14;47265:18;47262:38;47259:84;;;47315:18;;:::i;:::-;47259:84;47080:269;47029:320;;;:::o;47355:281::-;47438:27;47460:4;47438:27;:::i;:::-;47430:6;47426:40;47568:6;47556:10;47553:22;47532:18;47520:10;47517:34;47514:62;47511:88;;;47579:18;;:::i;:::-;47511:88;47619:10;47615:2;47608:22;47398:238;47355:281;;:::o;47642:233::-;47681:3;47704:24;47722:5;47704:24;:::i;:::-;47695:33;;47750:66;47743:5;47740:77;47737:103;;;47820:18;;:::i;:::-;47737:103;47867:1;47860:5;47856:13;47849:20;;47642:233;;;:::o;47881:176::-;47913:1;47930:20;47948:1;47930:20;:::i;:::-;47925:25;;47964:20;47982:1;47964:20;:::i;:::-;47959:25;;48003:1;47993:35;;48008:18;;:::i;:::-;47993:35;48049:1;48046;48042:9;48037:14;;47881:176;;;;:::o;48063:180::-;48111:77;48108:1;48101:88;48208:4;48205:1;48198:15;48232:4;48229:1;48222:15;48249:180;48297:77;48294:1;48287:88;48394:4;48391:1;48384:15;48418:4;48415:1;48408:15;48435:180;48483:77;48480:1;48473:88;48580:4;48577:1;48570:15;48604:4;48601:1;48594:15;48621:180;48669:77;48666:1;48659:88;48766:4;48763:1;48756:15;48790:4;48787:1;48780:15;48807:180;48855:77;48852:1;48845:88;48952:4;48949:1;48942:15;48976:4;48973:1;48966:15;48993:180;49041:77;49038:1;49031:88;49138:4;49135:1;49128:15;49162:4;49159:1;49152:15;49179:117;49288:1;49285;49278:12;49302:117;49411:1;49408;49401:12;49425:117;49534:1;49531;49524:12;49548:117;49657:1;49654;49647:12;49671:117;49780:1;49777;49770:12;49794:117;49903:1;49900;49893:12;49917:102;49958:6;50009:2;50005:7;50000:2;49993:5;49989:14;49985:28;49975:38;;49917:102;;;:::o;50025:221::-;50165:34;50161:1;50153:6;50149:14;50142:58;50234:4;50229:2;50221:6;50217:15;50210:29;50025:221;:::o;50252:182::-;50392:34;50388:1;50380:6;50376:14;50369:58;50252:182;:::o;50440:237::-;50580:34;50576:1;50568:6;50564:14;50557:58;50649:20;50644:2;50636:6;50632:15;50625:45;50440:237;:::o;50683:225::-;50823:34;50819:1;50811:6;50807:14;50800:58;50892:8;50887:2;50879:6;50875:15;50868:33;50683:225;:::o;50914:178::-;51054:30;51050:1;51042:6;51038:14;51031:54;50914:178;:::o;51098:177::-;51238:29;51234:1;51226:6;51222:14;51215:53;51098:177;:::o;51281:163::-;51421:15;51417:1;51409:6;51405:14;51398:39;51281:163;:::o;51450:166::-;51590:18;51586:1;51578:6;51574:14;51567:42;51450:166;:::o;51622:223::-;51762:34;51758:1;51750:6;51746:14;51739:58;51831:6;51826:2;51818:6;51814:15;51807:31;51622:223;:::o;51851:175::-;51991:27;51987:1;51979:6;51975:14;51968:51;51851:175;:::o;52032:162::-;52172:14;52168:1;52160:6;52156:14;52149:38;52032:162;:::o;52200:180::-;52340:32;52336:1;52328:6;52324:14;52317:56;52200:180;:::o;52386:177::-;52526:29;52522:1;52514:6;52510:14;52503:53;52386:177;:::o;52569:225::-;52709:34;52705:1;52697:6;52693:14;52686:58;52778:8;52773:2;52765:6;52761:15;52754:33;52569:225;:::o;52800:231::-;52940:34;52936:1;52928:6;52924:14;52917:58;53009:14;53004:2;52996:6;52992:15;52985:39;52800:231;:::o;53037:243::-;53177:34;53173:1;53165:6;53161:14;53154:58;53246:26;53241:2;53233:6;53229:15;53222:51;53037:243;:::o;53286:229::-;53426:34;53422:1;53414:6;53410:14;53403:58;53495:12;53490:2;53482:6;53478:15;53471:37;53286:229;:::o;53521:182::-;53661:34;53657:1;53649:6;53645:14;53638:58;53521:182;:::o;53709:221::-;53849:34;53845:1;53837:6;53833:14;53826:58;53918:4;53913:2;53905:6;53901:15;53894:29;53709:221;:::o;53936:182::-;54076:34;54072:1;54064:6;54060:14;54053:58;53936:182;:::o;54124:220::-;54264:34;54260:1;54252:6;54248:14;54241:58;54333:3;54328:2;54320:6;54316:15;54309:28;54124:220;:::o;54350:231::-;54490:34;54486:1;54478:6;54474:14;54467:58;54559:14;54554:2;54546:6;54542:15;54535:39;54350:231;:::o;54587:182::-;54727:34;54723:1;54715:6;54711:14;54704:58;54587:182;:::o;54775:228::-;54915:34;54911:1;54903:6;54899:14;54892:58;54984:11;54979:2;54971:6;54967:15;54960:36;54775:228;:::o;55009:234::-;55149:34;55145:1;55137:6;55133:14;55126:58;55218:17;55213:2;55205:6;55201:15;55194:42;55009:234;:::o;55249:223::-;55389:34;55385:1;55377:6;55373:14;55366:58;55458:6;55453:2;55445:6;55441:15;55434:31;55249:223;:::o;55478:220::-;55618:34;55614:1;55606:6;55602:14;55595:58;55687:3;55682:2;55674:6;55670:15;55663:28;55478:220;:::o;55704:162::-;55844:14;55840:1;55832:6;55828:14;55821:38;55704:162;:::o;55872:114::-;;:::o;55992:166::-;56132:18;56128:1;56120:6;56116:14;56109:42;55992:166;:::o;56164:236::-;56304:34;56300:1;56292:6;56288:14;56281:58;56373:19;56368:2;56360:6;56356:15;56349:44;56164:236;:::o;56406:179::-;56546:31;56542:1;56534:6;56530:14;56523:55;56406:179;:::o;56591:162::-;56731:14;56727:1;56719:6;56715:14;56708:38;56591:162;:::o;56759:164::-;56899:16;56895:1;56887:6;56883:14;56876:40;56759:164;:::o;56929:220::-;57069:34;57065:1;57057:6;57053:14;57046:58;57138:3;57133:2;57125:6;57121:15;57114:28;56929:220;:::o;57155:::-;57295:34;57291:1;57283:6;57279:14;57272:58;57364:3;57359:2;57351:6;57347:15;57340:28;57155:220;:::o;57381:122::-;57454:24;57472:5;57454:24;:::i;:::-;57447:5;57444:35;57434:63;;57493:1;57490;57483:12;57434:63;57381:122;:::o;57509:116::-;57579:21;57594:5;57579:21;:::i;:::-;57572:5;57569:32;57559:60;;57615:1;57612;57605:12;57559:60;57509:116;:::o;57631:120::-;57703:23;57720:5;57703:23;:::i;:::-;57696:5;57693:34;57683:62;;57741:1;57738;57731:12;57683:62;57631:120;:::o;57757:122::-;57830:24;57848:5;57830:24;:::i;:::-;57823:5;57820:35;57810:63;;57869:1;57866;57859:12;57810:63;57757:122;:::o

Swarm Source

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