ETH Price: $2,614.83 (+0.88%)

Token

Sunken Squids (SQUIDS)
 

Overview

Max Total Supply

1,081 SQUIDS

Holders

346

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 SQUIDS
0xec70538beac744eec5edec4b329205a4b29ba8ae
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:
SunkenSquids

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
  ___ _   _ _  _ _  _____ _  _   ___  ___  _   _ ___ ___  ___ 
 / __| | | | \| | |/ / __| \| | / __|/ _ \| | | |_ _|   \/ __|
 \__ \ |_| | .` | ' <| _|| .` | \__ \ (_) | |_| || || |) \__ \
 |___/\___/|_|\_|_|\_\___|_|\_| |___/\__\_\\___/|___|___/|___/
                                                              

*/

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

pragma solidity >=0.6.0 <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 payable) {
        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.6.0 <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.6.2 <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.6.2 <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.6.2 <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.6.0 <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.6.0 <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.6.0 <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.6.2 <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.6.0 <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.6.0 <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.6.0 <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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <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.6.0 <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;
    }
}


/*
  ___ _   _ _  _ _  _____ _  _   ___  ___  _   _ ___ ___  ___ 
 / __| | | | \| | |/ / __| \| | / __|/ _ \| | | |_ _|   \/ __|
 \__ \ |_| | .` | ' <| _|| .` | \__ \ (_) | |_| || || |) \__ \
 |___/\___/|_|\_|_|\_\___|_|\_| |___/\__\_\\___/|___|___/|___/
                                                              
10,000 squids living on the Ethereum Blockchain, just trying to make the world a better place.


*/

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public NFT_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN NFT ARE ALL SOLD OUT
    
    string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS
    
    bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE

    uint256 public constant nftPrice = 50000000000000000; // .05 ETH

    uint public constant maxNftPurchase = 20; // Max NFT per purchase

    uint256 public constant MAX_NFT = 10000; // Max Supply

    bool public saleIsActive = false;
        
    // Reserve 125 Tokens for giveaways, prizes, and team members
    uint public nftReserveAmount = 125;
    
    
    event licenseisLocked(string _licenseText);

    constructor() ERC721("Sunken Squids", "SQUIDS") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveNFTs(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= nftReserveAmount, "You are trying to mint more than what's left in the reserve.");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        nftReserveAmount = nftReserveAmount.sub(_reserveAmount);
    }


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

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            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;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A TOKEN WITHIN RANGE");
        return LICENSE_TEXT;
    }
    
    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    
    function mintNFT(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint token");
        require(numberOfTokens > 0 && numberOfTokens <= maxNftPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_NFT, "Purchase would exceed max supply of tokens");
        require(msg.value >= nftPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_NFT) {
                _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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","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":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxNftPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftReserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveNFTs","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":"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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000334565b5060405180602001604052806000815250600c90805190602001906200005392919062000334565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550607d600e553480156200009c57600080fd5b506040518060400160405280600d81526020017f53756e6b656e20537175696473000000000000000000000000000000000000008152506040518060400160405280600681526020017f5351554944530000000000000000000000000000000000000000000000000000815250620001216301ffc9a760e01b6200025460201b60201c565b81600690805190602001906200013992919062000334565b5080600790805190602001906200015292919062000334565b506200016b6380ac58cd60e01b6200025460201b60201c565b62000183635b5e139f60e01b6200025460201b60201c565b6200019b63780e9d6360e01b6200025460201b60201c565b50506000620001af6200032c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200045f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b7906200042c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b6000620003f9601c836200044e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200044781620003ea565b9050919050565b600082825260208201905092915050565b614928806200046f6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063b09904b5116100ab578063c87b56dd1161006f578063c87b56dd1461078c578063d9b137b2146107c9578063e985e9c514610806578063eb8d244414610843578063f2fde38b1461086e5761021a565b8063b09904b5146106cd578063b88d4fde146106f6578063bde708f41461071f578063bf4702fc1461074a578063c80d3b6f146107615761021a565b80638da5cb5b116100f25780638da5cb5b14610607578063926427441461063257806395d89b411461064e5780639c3e72bd14610679578063a22cb465146106a45761021a565b806370a082311461054d57806370a8de861461058a578063715018a6146105b35780638462151c146105ca5761021a565b80632f745c59116101a65780634f6ccce7116101755780634f6ccce71461045457806355f804b3146104915780636352211e146104ba5780636c0360eb146104f75780636fdaddf1146105225761021a565b80632f745c59146103c057806334918dfd146103fd5780633ccfd60b1461041457806342842e0e1461042b5761021a565b80630d39fc81116101ed5780630d39fc81146102ed578063109695231461031857806318160ddd146103415780631bc347271461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613463565b610897565b6040516102539190614219565b60405180910390f35b34801561026857600080fd5b506102716108fe565b60405161027e9190614234565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906134f6565b6109a0565b6040516102bb9190614190565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613427565b610a25565b005b3480156102f957600080fd5b50610302610b3d565b60405161030f9190614618565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906134b5565b610b48565b005b34801561034d57600080fd5b50610356610bde565b6040516103639190614618565b60405180910390f35b34801561037857600080fd5b50610381610bef565b60405161038e9190614234565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613321565b610c8d565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613427565b610ced565b6040516103f49190614618565b60405180910390f35b34801561040957600080fd5b50610412610d48565b005b34801561042057600080fd5b50610429610df0565b005b34801561043757600080fd5b50610452600480360381019061044d9190613321565b610ebb565b005b34801561046057600080fd5b5061047b600480360381019061047691906134f6565b610edb565b6040516104889190614618565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906134b5565b610efe565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906134f6565b610f86565b6040516104ee9190614190565b60405180910390f35b34801561050357600080fd5b5061050c610fbd565b6040516105199190614234565b60405180910390f35b34801561052e57600080fd5b5061053761105f565b6040516105449190614618565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f91906132bc565b611065565b6040516105819190614618565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613427565b611124565b005b3480156105bf57600080fd5b506105c8611242565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906132bc565b61137f565b6040516105fe91906141f7565b60405180910390f35b34801561061357600080fd5b5061061c611478565b6040516106299190614190565b60405180910390f35b61064c600480360381019061064791906134f6565b6114a2565b005b34801561065a57600080fd5b50610663611640565b6040516106709190614234565b60405180910390f35b34801561068557600080fd5b5061068e6116e2565b60405161069b9190614234565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906133eb565b611780565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906134b5565b611901565b005b34801561070257600080fd5b5061071d60048036038101906107189190613370565b6119ed565b005b34801561072b57600080fd5b50610734611a4f565b6040516107419190614618565b60405180910390f35b34801561075657600080fd5b5061075f611a54565b005b34801561076d57600080fd5b50610776611b25565b6040516107839190614618565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae91906134f6565b611b2b565b6040516107c09190614234565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb91906134f6565b611cae565b6040516107fd9190614234565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906132e5565b611d9b565b60405161083a9190614219565b60405180910390f35b34801561084f57600080fd5b50610858611e2f565b6040516108659190614219565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906132bc565b611e42565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ab82611fee565b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e1906144f8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3082610f86565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890614598565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac061200b565b73ffffffffffffffffffffffffffffffffffffffff161480610aef5750610aee81610ae961200b565b611d9b565b5b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590614438565b60405180910390fd5b610b388383612013565b505050565b66b1a2bc2ec5000081565b610b5061200b565b73ffffffffffffffffffffffffffffffffffffffff16610b6e611478565b73ffffffffffffffffffffffffffffffffffffffff1614610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90614518565b60405180910390fd5b80600b9080519060200190610bda9291906130d8565b5050565b6000610bea60026120cc565b905090565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c855780601f10610c5a57610100808354040283529160200191610c85565b820191906000526020600020905b815481529060010190602001808311610c6857829003601f168201915b505050505081565b610c9e610c9861200b565b826120e1565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906145d8565b60405180910390fd5b610ce88383836121bf565b505050565b6000610d4082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123d690919063ffffffff16565b905092915050565b610d5061200b565b73ffffffffffffffffffffffffffffffffffffffff16610d6e611478565b73ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614518565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610df861200b565b73ffffffffffffffffffffffffffffffffffffffff16610e16611478565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614518565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb7573d6000803e3d6000fd5b5050565b610ed6838383604051806020016040528060008152506119ed565b505050565b600080610ef28360026123f090919063ffffffff16565b50905080915050919050565b610f0661200b565b73ffffffffffffffffffffffffffffffffffffffff16610f24611478565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190614518565b60405180910390fd5b610f838161241c565b50565b6000610fb6826040518060600160405280602981526020016148ca6029913960026124369092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110555780601f1061102a57610100808354040283529160200191611055565b820191906000526020600020905b81548152906001019060200180831161103857829003601f168201915b5050505050905090565b61271081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614458565b60405180910390fd5b61111d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612455565b9050919050565b61112c61200b565b73ffffffffffffffffffffffffffffffffffffffff1661114a611478565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790614518565b60405180910390fd5b60006111aa610bde565b90506000821180156111be5750600e548211155b6111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490614578565b60405180910390fd5b60005b82811015611221576112148482840161246a565b8080600101915050611200565b5061123782600e5461248890919063ffffffff16565b600e81905550505050565b61124a61200b565b73ffffffffffffffffffffffffffffffffffffffff16611268611478565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061138c83611065565b905060008114156113e757600067ffffffffffffffff811180156113af57600080fd5b506040519080825280602002602001820160405280156113de5781602001602082028036833780820191505090505b50915050611473565b60008167ffffffffffffffff8111801561140057600080fd5b5060405190808252806020026020018201604052801561142f5781602001602082028036833780820191505090505b50905060005b8281101561146c576114478582610ced565b82828151811061145357fe5b6020026020010181815250508080600101915050611435565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60019054906101000a900460ff166114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890614298565b60405180910390fd5b600081118015611502575060148111155b611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614418565b60405180910390fd5b61271061155e82611550610bde565b6124d890919063ffffffff16565b111561159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614478565b60405180910390fd5b6115b98166b1a2bc2ec5000061252d90919063ffffffff16565b3410156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614378565b60405180910390fd5b60005b8181101561163c576000611610610bde565b905061271061161d610bde565b101561162e5761162d338261246a565b5b5080806001019150506115fe565b5050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116d85780601f106116ad576101008083540402835291602001916116d8565b820191906000526020600020905b8154815290600101906020018083116116bb57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117785780601f1061174d57610100808354040283529160200191611778565b820191906000526020600020905b81548152906001019060200180831161175b57829003601f168201915b505050505081565b61178861200b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90614358565b60405180910390fd5b806005600061180361200b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118b061200b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118f59190614219565b60405180910390a35050565b61190961200b565b73ffffffffffffffffffffffffffffffffffffffff16611927611478565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614518565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca906145b8565b60405180910390fd5b80600c90805190602001906119e99291906130d8565b5050565b6119fe6119f861200b565b836120e1565b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a34906145d8565b60405180910390fd5b611a498484848461259d565b50505050565b601481565b611a5c61200b565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611478565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790614518565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611b1b9190614256565b60405180910390a1565b600e5481565b6060611b3682611fee565b611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614558565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b505050505090506000611c2f610fbd565b9050600081511415611c45578192505050611ca9565b600082511115611c7a578082604051602001611c6292919061416c565b60405160208183030381529060405292505050611ca9565b80611c84856125f9565b604051602001611c9592919061416c565b604051602081830303815290604052925050505b919050565b6060611cb8610bde565b8210611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf0906143b8565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d8f5780601f10611d6457610100808354040283529160200191611d8f565b820191906000526020600020905b815481529060010190602001808311611d7257829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611e4a61200b565b73ffffffffffffffffffffffffffffffffffffffff16611e68611478565b73ffffffffffffffffffffffffffffffffffffffff1614611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590614518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906142d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061200482600261274090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661208683610f86565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120da8260000161275a565b9050919050565b60006120ec82611fee565b61212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906143f8565b60405180910390fd5b600061213683610f86565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121a557508373ffffffffffffffffffffffffffffffffffffffff1661218d846109a0565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b657506121b58185611d9b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121df82610f86565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90614338565b60405180910390fd5b6122b083838361276b565b6122bb600082612013565b61230c81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277090919063ffffffff16565b5061235e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612375818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006123e583600001836127d9565b60001c905092915050565b6000806000806124038660000186612846565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906124329291906130d8565b5050565b6000612449846000018460001b846128c9565b60001c90509392505050565b60006124638260000161295a565b9050919050565b61248482826040518060200160405280600081525061296b565b5050565b6000828211156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614398565b60405180910390fd5b818303905092915050565b600080828401905083811015612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a90614318565b60405180910390fd5b8091505092915050565b6000808314156125405760009050612597565b600082840290508284828161255157fe5b0414612592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612589906144d8565b60405180910390fd5b809150505b92915050565b6125a88484846121bf565b6125b4848484846129c6565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea906142b8565b60405180910390fd5b50505050565b60606000821415612641576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061273b565b600082905060005b6000821461266b578080600101915050600a828161266357fe5b049150612649565b60008167ffffffffffffffff8111801561268457600080fd5b506040519080825280601f01601f1916602001820160405280156126b75781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461273357600a84816126d857fe5b0660300160f81b828280600190039350815181106126f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161272b57fe5b0493506126c6565b819450505050505b919050565b6000612752836000018360001b612b2a565b905092915050565b600081600001805490509050919050565b505050565b6000612782836000018360001b612b4d565b905092915050565b600061279c836000018360001b612c35565b905092915050565b60006127d0846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612ca5565b90509392505050565b600081836000018054905011612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90614278565b60405180910390fd5b82600001828154811061283357fe5b9060005260206000200154905092915050565b60008082846000018054905011612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990614498565b60405180910390fd5b60008460000184815481106128a357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061292b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129229190614234565b60405180910390fd5b5084600001600182038154811061293e57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6129758383612d81565b61298260008484846129c6565b6129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b8906142b8565b60405180910390fd5b505050565b60006129e78473ffffffffffffffffffffffffffffffffffffffff16612f0f565b6129f45760019050612b22565b6000612abb63150b7a0260e01b612a0961200b565b888787604051602401612a1f94939291906141ab565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614898603291398773ffffffffffffffffffffffffffffffffffffffff16612f229092919063ffffffff16565b9050600081806020019051810190612ad3919061348c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c295760006001820390506000600186600001805490500390506000866000018281548110612b9857fe5b9060005260206000200154905080876000018481548110612bb557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612bed57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c2f565b60009150505b92915050565b6000612c418383612f3a565b612c9a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c9f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d4c57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d7a565b82856000016001830381548110612d5f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de8906144b8565b60405180910390fd5b612dfa81611fee565b15612e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e31906142f8565b60405180910390fd5b612e466000838361276b565b612e9781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612eae818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f318484600085612f5d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f99906143d8565b60405180910390fd5b612fab85612f0f565b612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe1906145f8565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130139190614155565b60006040518083038185875af1925050503d8060008114613050576040519150601f19603f3d011682016040523d82523d6000602084013e613055565b606091505b5091509150613065828286613071565b92505050949350505050565b60608315613081578290506130d1565b6000835111156130945782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c89190614234565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261310e5760008555613155565b82601f1061312757805160ff1916838001178555613155565b82800160010185558215613155579182015b82811115613154578251825591602001919060010190613139565b5b5090506131629190613166565b5090565b5b8082111561317f576000816000905550600101613167565b5090565b600061319661319184614664565b614633565b9050828152602081018484840111156131ae57600080fd5b6131b98482856147e6565b509392505050565b60006131d46131cf84614694565b614633565b9050828152602081018484840111156131ec57600080fd5b6131f78482856147e6565b509392505050565b60008135905061320e8161483b565b92915050565b60008135905061322381614852565b92915050565b60008135905061323881614869565b92915050565b60008151905061324d81614869565b92915050565b600082601f83011261326457600080fd5b8135613274848260208601613183565b91505092915050565b600082601f83011261328e57600080fd5b813561329e8482602086016131c1565b91505092915050565b6000813590506132b681614880565b92915050565b6000602082840312156132ce57600080fd5b60006132dc848285016131ff565b91505092915050565b600080604083850312156132f857600080fd5b6000613306858286016131ff565b9250506020613317858286016131ff565b9150509250929050565b60008060006060848603121561333657600080fd5b6000613344868287016131ff565b9350506020613355868287016131ff565b9250506040613366868287016132a7565b9150509250925092565b6000806000806080858703121561338657600080fd5b6000613394878288016131ff565b94505060206133a5878288016131ff565b93505060406133b6878288016132a7565b925050606085013567ffffffffffffffff8111156133d357600080fd5b6133df87828801613253565b91505092959194509250565b600080604083850312156133fe57600080fd5b600061340c858286016131ff565b925050602061341d85828601613214565b9150509250929050565b6000806040838503121561343a57600080fd5b6000613448858286016131ff565b9250506020613459858286016132a7565b9150509250929050565b60006020828403121561347557600080fd5b600061348384828501613229565b91505092915050565b60006020828403121561349e57600080fd5b60006134ac8482850161323e565b91505092915050565b6000602082840312156134c757600080fd5b600082013567ffffffffffffffff8111156134e157600080fd5b6134ed8482850161327d565b91505092915050565b60006020828403121561350857600080fd5b6000613516848285016132a7565b91505092915050565b600061352b8383614137565b60208301905092915050565b61354081614772565b82525050565b61354f81614760565b82525050565b6000613560826146e9565b61356a8185614717565b9350613575836146c4565b8060005b838110156135a657815161358d888261351f565b97506135988361470a565b925050600181019050613579565b5085935050505092915050565b6135bc81614784565b82525050565b60006135cd826146f4565b6135d78185614728565b93506135e78185602086016147f5565b6135f08161482a565b840191505092915050565b6000613606826146f4565b6136108185614739565b93506136208185602086016147f5565b80840191505092915050565b6000613637826146ff565b6136418185614744565b93506136518185602086016147f5565b61365a8161482a565b840191505092915050565b6000613670826146ff565b61367a8185614755565b935061368a8185602086016147f5565b80840191505092915050565b6000815460018116600081146136b357600181146136d95761371d565b607f60028304166136c48187614744565b955060ff19831686526020860193505061371d565b600282046136e78187614744565b95506136f2856146d4565b60005b82811015613714578154818901526001820191506020810190506136f5565b80880195505050505b505092915050565b6000613732602283614744565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613798602183614744565b91507f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008301527f6e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137fe603283614744565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613864602683614744565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ca601c83614744565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061390a601b83614744565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061394a602483614744565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139b0601983614744565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006139f0601f83614744565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613a30601e83614744565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613a70601b83614744565b91507f43484f4f5345204120544f4b454e2057495448494e2052414e474500000000006000830152602082019050919050565b6000613ab0602683614744565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b16602c83614744565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b7c602183614744565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be2603883614744565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c48602a83614744565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cae602a83614744565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620746f6b656e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d14602283614744565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d7a602083614744565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613dba602183614744565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e20602c83614744565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e86602083614744565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ec6602983614744565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f2c602f83614744565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f92603c83614744565b91507f596f752061726520747279696e6720746f206d696e74206d6f7265207468616e60008301527f20776861742773206c65667420696e2074686520726573657276652e000000006020830152604082019050919050565b6000613ff8602183614744565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061405e601683614744565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061409e603183614744565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614104601d83614744565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b614140816147dc565b82525050565b61414f816147dc565b82525050565b600061416182846135fb565b915081905092915050565b60006141788285613665565b91506141848284613665565b91508190509392505050565b60006020820190506141a56000830184613546565b92915050565b60006080820190506141c06000830187613537565b6141cd6020830186613546565b6141da6040830185614146565b81810360608301526141ec81846135c2565b905095945050505050565b600060208201905081810360008301526142118184613555565b905092915050565b600060208201905061422e60008301846135b3565b92915050565b6000602082019050818103600083015261424e818461362c565b905092915050565b600060208201905081810360008301526142708184613696565b905092915050565b6000602082019050818103600083015261429181613725565b9050919050565b600060208201905081810360008301526142b18161378b565b9050919050565b600060208201905081810360008301526142d1816137f1565b9050919050565b600060208201905081810360008301526142f181613857565b9050919050565b60006020820190508181036000830152614311816138bd565b9050919050565b60006020820190508181036000830152614331816138fd565b9050919050565b600060208201905081810360008301526143518161393d565b9050919050565b60006020820190508181036000830152614371816139a3565b9050919050565b60006020820190508181036000830152614391816139e3565b9050919050565b600060208201905081810360008301526143b181613a23565b9050919050565b600060208201905081810360008301526143d181613a63565b9050919050565b600060208201905081810360008301526143f181613aa3565b9050919050565b6000602082019050818103600083015261441181613b09565b9050919050565b6000602082019050818103600083015261443181613b6f565b9050919050565b6000602082019050818103600083015261445181613bd5565b9050919050565b6000602082019050818103600083015261447181613c3b565b9050919050565b6000602082019050818103600083015261449181613ca1565b9050919050565b600060208201905081810360008301526144b181613d07565b9050919050565b600060208201905081810360008301526144d181613d6d565b9050919050565b600060208201905081810360008301526144f181613dad565b9050919050565b6000602082019050818103600083015261451181613e13565b9050919050565b6000602082019050818103600083015261453181613e79565b9050919050565b6000602082019050818103600083015261455181613eb9565b9050919050565b6000602082019050818103600083015261457181613f1f565b9050919050565b6000602082019050818103600083015261459181613f85565b9050919050565b600060208201905081810360008301526145b181613feb565b9050919050565b600060208201905081810360008301526145d181614051565b9050919050565b600060208201905081810360008301526145f181614091565b9050919050565b60006020820190508181036000830152614611816140f7565b9050919050565b600060208201905061462d6000830184614146565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561465a57614659614828565b5b8060405250919050565b600067ffffffffffffffff82111561467f5761467e614828565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146af576146ae614828565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061476b826147bc565b9050919050565b600061477d826147bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148135780820151818401526020810190506147f8565b83811115614822576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61484481614760565b811461484f57600080fd5b50565b61485b81614784565b811461486657600080fd5b50565b61487281614790565b811461487d57600080fd5b50565b614889816147dc565b811461489457600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205d2fd83c9268e5db2fe6f5a150e91940b821b5c8d9449c24ee99e5aee029d20b64736f6c63430007060033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063b09904b5116100ab578063c87b56dd1161006f578063c87b56dd1461078c578063d9b137b2146107c9578063e985e9c514610806578063eb8d244414610843578063f2fde38b1461086e5761021a565b8063b09904b5146106cd578063b88d4fde146106f6578063bde708f41461071f578063bf4702fc1461074a578063c80d3b6f146107615761021a565b80638da5cb5b116100f25780638da5cb5b14610607578063926427441461063257806395d89b411461064e5780639c3e72bd14610679578063a22cb465146106a45761021a565b806370a082311461054d57806370a8de861461058a578063715018a6146105b35780638462151c146105ca5761021a565b80632f745c59116101a65780634f6ccce7116101755780634f6ccce71461045457806355f804b3146104915780636352211e146104ba5780636c0360eb146104f75780636fdaddf1146105225761021a565b80632f745c59146103c057806334918dfd146103fd5780633ccfd60b1461041457806342842e0e1461042b5761021a565b80630d39fc81116101ed5780630d39fc81146102ed578063109695231461031857806318160ddd146103415780631bc347271461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613463565b610897565b6040516102539190614219565b60405180910390f35b34801561026857600080fd5b506102716108fe565b60405161027e9190614234565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906134f6565b6109a0565b6040516102bb9190614190565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613427565b610a25565b005b3480156102f957600080fd5b50610302610b3d565b60405161030f9190614618565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906134b5565b610b48565b005b34801561034d57600080fd5b50610356610bde565b6040516103639190614618565b60405180910390f35b34801561037857600080fd5b50610381610bef565b60405161038e9190614234565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613321565b610c8d565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613427565b610ced565b6040516103f49190614618565b60405180910390f35b34801561040957600080fd5b50610412610d48565b005b34801561042057600080fd5b50610429610df0565b005b34801561043757600080fd5b50610452600480360381019061044d9190613321565b610ebb565b005b34801561046057600080fd5b5061047b600480360381019061047691906134f6565b610edb565b6040516104889190614618565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b391906134b5565b610efe565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906134f6565b610f86565b6040516104ee9190614190565b60405180910390f35b34801561050357600080fd5b5061050c610fbd565b6040516105199190614234565b60405180910390f35b34801561052e57600080fd5b5061053761105f565b6040516105449190614618565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f91906132bc565b611065565b6040516105819190614618565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613427565b611124565b005b3480156105bf57600080fd5b506105c8611242565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906132bc565b61137f565b6040516105fe91906141f7565b60405180910390f35b34801561061357600080fd5b5061061c611478565b6040516106299190614190565b60405180910390f35b61064c600480360381019061064791906134f6565b6114a2565b005b34801561065a57600080fd5b50610663611640565b6040516106709190614234565b60405180910390f35b34801561068557600080fd5b5061068e6116e2565b60405161069b9190614234565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c691906133eb565b611780565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906134b5565b611901565b005b34801561070257600080fd5b5061071d60048036038101906107189190613370565b6119ed565b005b34801561072b57600080fd5b50610734611a4f565b6040516107419190614618565b60405180910390f35b34801561075657600080fd5b5061075f611a54565b005b34801561076d57600080fd5b50610776611b25565b6040516107839190614618565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae91906134f6565b611b2b565b6040516107c09190614234565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb91906134f6565b611cae565b6040516107fd9190614234565b60405180910390f35b34801561081257600080fd5b5061082d600480360381019061082891906132e5565b611d9b565b60405161083a9190614219565b60405180910390f35b34801561084f57600080fd5b50610858611e2f565b6040516108659190614219565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906132bc565b611e42565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ab82611fee565b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e1906144f8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3082610f86565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890614598565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac061200b565b73ffffffffffffffffffffffffffffffffffffffff161480610aef5750610aee81610ae961200b565b611d9b565b5b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590614438565b60405180910390fd5b610b388383612013565b505050565b66b1a2bc2ec5000081565b610b5061200b565b73ffffffffffffffffffffffffffffffffffffffff16610b6e611478565b73ffffffffffffffffffffffffffffffffffffffff1614610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90614518565b60405180910390fd5b80600b9080519060200190610bda9291906130d8565b5050565b6000610bea60026120cc565b905090565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c855780601f10610c5a57610100808354040283529160200191610c85565b820191906000526020600020905b815481529060010190602001808311610c6857829003601f168201915b505050505081565b610c9e610c9861200b565b826120e1565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906145d8565b60405180910390fd5b610ce88383836121bf565b505050565b6000610d4082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123d690919063ffffffff16565b905092915050565b610d5061200b565b73ffffffffffffffffffffffffffffffffffffffff16610d6e611478565b73ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614518565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610df861200b565b73ffffffffffffffffffffffffffffffffffffffff16610e16611478565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614518565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb7573d6000803e3d6000fd5b5050565b610ed6838383604051806020016040528060008152506119ed565b505050565b600080610ef28360026123f090919063ffffffff16565b50905080915050919050565b610f0661200b565b73ffffffffffffffffffffffffffffffffffffffff16610f24611478565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190614518565b60405180910390fd5b610f838161241c565b50565b6000610fb6826040518060600160405280602981526020016148ca6029913960026124369092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110555780601f1061102a57610100808354040283529160200191611055565b820191906000526020600020905b81548152906001019060200180831161103857829003601f168201915b5050505050905090565b61271081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614458565b60405180910390fd5b61111d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612455565b9050919050565b61112c61200b565b73ffffffffffffffffffffffffffffffffffffffff1661114a611478565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790614518565b60405180910390fd5b60006111aa610bde565b90506000821180156111be5750600e548211155b6111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490614578565b60405180910390fd5b60005b82811015611221576112148482840161246a565b8080600101915050611200565b5061123782600e5461248890919063ffffffff16565b600e81905550505050565b61124a61200b565b73ffffffffffffffffffffffffffffffffffffffff16611268611478565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6060600061138c83611065565b905060008114156113e757600067ffffffffffffffff811180156113af57600080fd5b506040519080825280602002602001820160405280156113de5781602001602082028036833780820191505090505b50915050611473565b60008167ffffffffffffffff8111801561140057600080fd5b5060405190808252806020026020018201604052801561142f5781602001602082028036833780820191505090505b50905060005b8281101561146c576114478582610ced565b82828151811061145357fe5b6020026020010181815250508080600101915050611435565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60019054906101000a900460ff166114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890614298565b60405180910390fd5b600081118015611502575060148111155b611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614418565b60405180910390fd5b61271061155e82611550610bde565b6124d890919063ffffffff16565b111561159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614478565b60405180910390fd5b6115b98166b1a2bc2ec5000061252d90919063ffffffff16565b3410156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614378565b60405180910390fd5b60005b8181101561163c576000611610610bde565b905061271061161d610bde565b101561162e5761162d338261246a565b5b5080806001019150506115fe565b5050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116d85780601f106116ad576101008083540402835291602001916116d8565b820191906000526020600020905b8154815290600101906020018083116116bb57829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117785780601f1061174d57610100808354040283529160200191611778565b820191906000526020600020905b81548152906001019060200180831161175b57829003601f168201915b505050505081565b61178861200b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90614358565b60405180910390fd5b806005600061180361200b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118b061200b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118f59190614219565b60405180910390a35050565b61190961200b565b73ffffffffffffffffffffffffffffffffffffffff16611927611478565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490614518565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca906145b8565b60405180910390fd5b80600c90805190602001906119e99291906130d8565b5050565b6119fe6119f861200b565b836120e1565b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a34906145d8565b60405180910390fd5b611a498484848461259d565b50505050565b601481565b611a5c61200b565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611478565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790614518565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c604051611b1b9190614256565b60405180910390a1565b600e5481565b6060611b3682611fee565b611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614558565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c1e5780601f10611bf357610100808354040283529160200191611c1e565b820191906000526020600020905b815481529060010190602001808311611c0157829003601f168201915b505050505090506000611c2f610fbd565b9050600081511415611c45578192505050611ca9565b600082511115611c7a578082604051602001611c6292919061416c565b60405160208183030381529060405292505050611ca9565b80611c84856125f9565b604051602001611c9592919061416c565b604051602081830303815290604052925050505b919050565b6060611cb8610bde565b8210611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf0906143b8565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d8f5780601f10611d6457610100808354040283529160200191611d8f565b820191906000526020600020905b815481529060010190602001808311611d7257829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60019054906101000a900460ff1681565b611e4a61200b565b73ffffffffffffffffffffffffffffffffffffffff16611e68611478565b73ffffffffffffffffffffffffffffffffffffffff1614611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590614518565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906142d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061200482600261274090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661208683610f86565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120da8260000161275a565b9050919050565b60006120ec82611fee565b61212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906143f8565b60405180910390fd5b600061213683610f86565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121a557508373ffffffffffffffffffffffffffffffffffffffff1661218d846109a0565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b657506121b58185611d9b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121df82610f86565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90614338565b60405180910390fd5b6122b083838361276b565b6122bb600082612013565b61230c81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277090919063ffffffff16565b5061235e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612375818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006123e583600001836127d9565b60001c905092915050565b6000806000806124038660000186612846565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906124329291906130d8565b5050565b6000612449846000018460001b846128c9565b60001c90509392505050565b60006124638260000161295a565b9050919050565b61248482826040518060200160405280600081525061296b565b5050565b6000828211156124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490614398565b60405180910390fd5b818303905092915050565b600080828401905083811015612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a90614318565b60405180910390fd5b8091505092915050565b6000808314156125405760009050612597565b600082840290508284828161255157fe5b0414612592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612589906144d8565b60405180910390fd5b809150505b92915050565b6125a88484846121bf565b6125b4848484846129c6565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea906142b8565b60405180910390fd5b50505050565b60606000821415612641576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061273b565b600082905060005b6000821461266b578080600101915050600a828161266357fe5b049150612649565b60008167ffffffffffffffff8111801561268457600080fd5b506040519080825280601f01601f1916602001820160405280156126b75781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461273357600a84816126d857fe5b0660300160f81b828280600190039350815181106126f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161272b57fe5b0493506126c6565b819450505050505b919050565b6000612752836000018360001b612b2a565b905092915050565b600081600001805490509050919050565b505050565b6000612782836000018360001b612b4d565b905092915050565b600061279c836000018360001b612c35565b905092915050565b60006127d0846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612ca5565b90509392505050565b600081836000018054905011612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90614278565b60405180910390fd5b82600001828154811061283357fe5b9060005260206000200154905092915050565b60008082846000018054905011612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990614498565b60405180910390fd5b60008460000184815481106128a357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061292b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129229190614234565b60405180910390fd5b5084600001600182038154811061293e57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6129758383612d81565b61298260008484846129c6565b6129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b8906142b8565b60405180910390fd5b505050565b60006129e78473ffffffffffffffffffffffffffffffffffffffff16612f0f565b6129f45760019050612b22565b6000612abb63150b7a0260e01b612a0961200b565b888787604051602401612a1f94939291906141ab565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614898603291398773ffffffffffffffffffffffffffffffffffffffff16612f229092919063ffffffff16565b9050600081806020019051810190612ad3919061348c565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c295760006001820390506000600186600001805490500390506000866000018281548110612b9857fe5b9060005260206000200154905080876000018481548110612bb557fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612bed57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c2f565b60009150505b92915050565b6000612c418383612f3a565b612c9a578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c9f565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d4c57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d7a565b82856000016001830381548110612d5f57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de8906144b8565b60405180910390fd5b612dfa81611fee565b15612e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e31906142f8565b60405180910390fd5b612e466000838361276b565b612e9781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278a90919063ffffffff16565b50612eae818360026127a49092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f318484600085612f5d565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f99906143d8565b60405180910390fd5b612fab85612f0f565b612fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe1906145f8565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516130139190614155565b60006040518083038185875af1925050503d8060008114613050576040519150601f19603f3d011682016040523d82523d6000602084013e613055565b606091505b5091509150613065828286613071565b92505050949350505050565b60608315613081578290506130d1565b6000835111156130945782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c89190614234565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261310e5760008555613155565b82601f1061312757805160ff1916838001178555613155565b82800160010185558215613155579182015b82811115613154578251825591602001919060010190613139565b5b5090506131629190613166565b5090565b5b8082111561317f576000816000905550600101613167565b5090565b600061319661319184614664565b614633565b9050828152602081018484840111156131ae57600080fd5b6131b98482856147e6565b509392505050565b60006131d46131cf84614694565b614633565b9050828152602081018484840111156131ec57600080fd5b6131f78482856147e6565b509392505050565b60008135905061320e8161483b565b92915050565b60008135905061322381614852565b92915050565b60008135905061323881614869565b92915050565b60008151905061324d81614869565b92915050565b600082601f83011261326457600080fd5b8135613274848260208601613183565b91505092915050565b600082601f83011261328e57600080fd5b813561329e8482602086016131c1565b91505092915050565b6000813590506132b681614880565b92915050565b6000602082840312156132ce57600080fd5b60006132dc848285016131ff565b91505092915050565b600080604083850312156132f857600080fd5b6000613306858286016131ff565b9250506020613317858286016131ff565b9150509250929050565b60008060006060848603121561333657600080fd5b6000613344868287016131ff565b9350506020613355868287016131ff565b9250506040613366868287016132a7565b9150509250925092565b6000806000806080858703121561338657600080fd5b6000613394878288016131ff565b94505060206133a5878288016131ff565b93505060406133b6878288016132a7565b925050606085013567ffffffffffffffff8111156133d357600080fd5b6133df87828801613253565b91505092959194509250565b600080604083850312156133fe57600080fd5b600061340c858286016131ff565b925050602061341d85828601613214565b9150509250929050565b6000806040838503121561343a57600080fd5b6000613448858286016131ff565b9250506020613459858286016132a7565b9150509250929050565b60006020828403121561347557600080fd5b600061348384828501613229565b91505092915050565b60006020828403121561349e57600080fd5b60006134ac8482850161323e565b91505092915050565b6000602082840312156134c757600080fd5b600082013567ffffffffffffffff8111156134e157600080fd5b6134ed8482850161327d565b91505092915050565b60006020828403121561350857600080fd5b6000613516848285016132a7565b91505092915050565b600061352b8383614137565b60208301905092915050565b61354081614772565b82525050565b61354f81614760565b82525050565b6000613560826146e9565b61356a8185614717565b9350613575836146c4565b8060005b838110156135a657815161358d888261351f565b97506135988361470a565b925050600181019050613579565b5085935050505092915050565b6135bc81614784565b82525050565b60006135cd826146f4565b6135d78185614728565b93506135e78185602086016147f5565b6135f08161482a565b840191505092915050565b6000613606826146f4565b6136108185614739565b93506136208185602086016147f5565b80840191505092915050565b6000613637826146ff565b6136418185614744565b93506136518185602086016147f5565b61365a8161482a565b840191505092915050565b6000613670826146ff565b61367a8185614755565b935061368a8185602086016147f5565b80840191505092915050565b6000815460018116600081146136b357600181146136d95761371d565b607f60028304166136c48187614744565b955060ff19831686526020860193505061371d565b600282046136e78187614744565b95506136f2856146d4565b60005b82811015613714578154818901526001820191506020810190506136f5565b80880195505050505b505092915050565b6000613732602283614744565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613798602183614744565b91507f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008301527f6e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137fe603283614744565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613864602683614744565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ca601c83614744565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061390a601b83614744565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061394a602483614744565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139b0601983614744565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006139f0601f83614744565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613a30601e83614744565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613a70601b83614744565b91507f43484f4f5345204120544f4b454e2057495448494e2052414e474500000000006000830152602082019050919050565b6000613ab0602683614744565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b16602c83614744565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b7c602183614744565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be2603883614744565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c48602a83614744565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cae602a83614744565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620746f6b656e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d14602283614744565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d7a602083614744565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613dba602183614744565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e20602c83614744565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e86602083614744565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ec6602983614744565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f2c602f83614744565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f92603c83614744565b91507f596f752061726520747279696e6720746f206d696e74206d6f7265207468616e60008301527f20776861742773206c65667420696e2074686520726573657276652e000000006020830152604082019050919050565b6000613ff8602183614744565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061405e601683614744565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b600061409e603183614744565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614104601d83614744565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b614140816147dc565b82525050565b61414f816147dc565b82525050565b600061416182846135fb565b915081905092915050565b60006141788285613665565b91506141848284613665565b91508190509392505050565b60006020820190506141a56000830184613546565b92915050565b60006080820190506141c06000830187613537565b6141cd6020830186613546565b6141da6040830185614146565b81810360608301526141ec81846135c2565b905095945050505050565b600060208201905081810360008301526142118184613555565b905092915050565b600060208201905061422e60008301846135b3565b92915050565b6000602082019050818103600083015261424e818461362c565b905092915050565b600060208201905081810360008301526142708184613696565b905092915050565b6000602082019050818103600083015261429181613725565b9050919050565b600060208201905081810360008301526142b18161378b565b9050919050565b600060208201905081810360008301526142d1816137f1565b9050919050565b600060208201905081810360008301526142f181613857565b9050919050565b60006020820190508181036000830152614311816138bd565b9050919050565b60006020820190508181036000830152614331816138fd565b9050919050565b600060208201905081810360008301526143518161393d565b9050919050565b60006020820190508181036000830152614371816139a3565b9050919050565b60006020820190508181036000830152614391816139e3565b9050919050565b600060208201905081810360008301526143b181613a23565b9050919050565b600060208201905081810360008301526143d181613a63565b9050919050565b600060208201905081810360008301526143f181613aa3565b9050919050565b6000602082019050818103600083015261441181613b09565b9050919050565b6000602082019050818103600083015261443181613b6f565b9050919050565b6000602082019050818103600083015261445181613bd5565b9050919050565b6000602082019050818103600083015261447181613c3b565b9050919050565b6000602082019050818103600083015261449181613ca1565b9050919050565b600060208201905081810360008301526144b181613d07565b9050919050565b600060208201905081810360008301526144d181613d6d565b9050919050565b600060208201905081810360008301526144f181613dad565b9050919050565b6000602082019050818103600083015261451181613e13565b9050919050565b6000602082019050818103600083015261453181613e79565b9050919050565b6000602082019050818103600083015261455181613eb9565b9050919050565b6000602082019050818103600083015261457181613f1f565b9050919050565b6000602082019050818103600083015261459181613f85565b9050919050565b600060208201905081810360008301526145b181613feb565b9050919050565b600060208201905081810360008301526145d181614051565b9050919050565b600060208201905081810360008301526145f181614091565b9050919050565b60006020820190508181036000830152614611816140f7565b9050919050565b600060208201905061462d6000830184614146565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561465a57614659614828565b5b8060405250919050565b600067ffffffffffffffff82111561467f5761467e614828565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146af576146ae614828565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061476b826147bc565b9050919050565b600061477d826147bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148135780820151818401526020810190506147f8565b83811115614822576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61484481614760565b811461484f57600080fd5b50565b61485b81614784565b811461486657600080fd5b50565b61487281614790565b811461487d57600080fd5b50565b614889816147dc565b811461489457600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205d2fd83c9268e5db2fe6f5a150e91940b821b5c8d9449c24ee99e5aee029d20b64736f6c63430007060033

Deployed Bytecode Sourcemap

67597:3645:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10567:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51852:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54638:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54168:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67937:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69020:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53646:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67686:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55528:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53408:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69261:89;;;;;;;;;;;;;:::i;:::-;;68427:131;;;;;;;;;;;;;:::i;:::-;;55904:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53934:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69152:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51608:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53227:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68082:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51325:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68570:440;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66563:148;;;;;;;;;;;;;:::i;:::-;;69368:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65912:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70556:677;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52021:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67784:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54931:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70364:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56126:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68009:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70200:125;;;;;;;;;;;;;:::i;:::-;;68260:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52196:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69959:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55297:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68144:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66866:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10567:150;10652:4;10676:20;:33;10697:11;10676:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10669:40;;10567:150;;;:::o;51852:100::-;51906:13;51939:5;51932:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51852:100;:::o;54638:221::-;54714:7;54742:16;54750:7;54742;:16::i;:::-;54734:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54827:15;:24;54843:7;54827:24;;;;;;;;;;;;;;;;;;;;;54820:31;;54638:221;;;:::o;54168:404::-;54249:13;54265:23;54280:7;54265:14;:23::i;:::-;54249:39;;54313:5;54307:11;;:2;:11;;;;54299:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54393:5;54377:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54402:44;54426:5;54433:12;:10;:12::i;:::-;54402:23;:44::i;:::-;54377:69;54369:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54543:21;54552:2;54556:7;54543:8;:21::i;:::-;54168:404;;;:::o;67937:52::-;67972:17;67937:52;:::o;69020:124::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69122:14:::1;69105;:31;;;;;;;;;;;;:::i;:::-;;69020:124:::0;:::o;53646:211::-;53707:7;53828:21;:12;:19;:21::i;:::-;53821:28;;53646:211;:::o;67686:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55528:305::-;55689:41;55708:12;:10;:12::i;:::-;55722:7;55689:18;:41::i;:::-;55681:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55797:28;55807:4;55813:2;55817:7;55797:9;:28::i;:::-;55528:305;;;:::o;53408:162::-;53505:7;53532:30;53556:5;53532:13;:20;53546:5;53532:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53525:37;;53408:162;;;;:::o;69261:89::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69330:12:::1;;;;;;;;;;;69329:13;69314:12;;:28;;;;;;;;;;;;;;;;;;69261:89::o:0;68427:131::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68475:12:::1;68490:21;68475:36;;68522:10;:19;;:28;68542:7;68522:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66203:1;68427:131::o:0;55904:151::-;56008:39;56025:4;56031:2;56035:7;56008:39;;;;;;;;;;;;:16;:39::i;:::-;55904:151;;;:::o;53934:172::-;54009:7;54030:15;54051:22;54067:5;54051:12;:15;;:22;;;;:::i;:::-;54029:44;;;54091:7;54084:14;;;53934:172;;;:::o;69152:99::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69223:20:::1;69235:7;69223:11;:20::i;:::-;69152:99:::0;:::o;51608:177::-;51680:7;51707:70;51724:7;51707:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51700:77;;51608:177;;;:::o;53227:97::-;53275:13;53308:8;53301:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53227:97;:::o;68082:39::-;68116:5;68082:39;:::o;51325:221::-;51397:7;51442:1;51425:19;;:5;:19;;;;51417:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51509:29;:13;:20;51523:5;51509:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51502:36;;51325:221;;;:::o;68570:440::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68664:11:::1;68678:13;:11;:13::i;:::-;68664:27;;68727:1;68710:14;:18;:56;;;;;68750:16;;68732:14;:34;;68710:56;68702:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;68847:6;68842:95;68863:14;68859:1;:18;68842:95;;;68899:26;68909:3;68923:1;68914:6;:10;68899:9;:26::i;:::-;68879:3;;;;;;;68842:95;;;;68966:36;68987:14;68966:16;;:20;;:36;;;;:::i;:::-;68947:16;:55;;;;66203:1;68570:440:::0;;:::o;66563:148::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66670:1:::1;66633:40;;66654:6;;;;;;;;;;;66633:40;;;;;;;;;;;;66701:1;66684:6;;:19;;;;;;;;;;;;;;;;;;66563:148::o:0;69368:540::-;69429:16;69459:18;69480:17;69490:6;69480:9;:17::i;:::-;69459:38;;69526:1;69512:10;:15;69508:393;;;69603:1;69589:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69582:23;;;;;69508:393;69638:23;69678:10;69664:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69638:51;;69704:13;69732:130;69756:10;69748:5;:18;69732:130;;;69812:34;69832:6;69840:5;69812:19;:34::i;:::-;69796:6;69803:5;69796:13;;;;;;;;;;;;;:50;;;;;69768:7;;;;;;;69732:130;;;69883:6;69876:13;;;;;69368:540;;;;:::o;65912:87::-;65958:7;65985:6;;;;;;;;;;;65978:13;;65912:87;:::o;70556:677::-;70628:12;;;;;;;;;;;70620:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;70714:1;70697:14;:18;:54;;;;;68047:2;70719:14;:32;;70697:54;70689:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;68116:5;70808:33;70826:14;70808:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:44;;70800:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;70931:28;70944:14;67972:17;70931:12;;:28;;;;:::i;:::-;70918:9;:41;;70910:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;71020:6;71016:208;71036:14;71032:1;:18;71016:208;;;71072:14;71089:13;:11;:13::i;:::-;71072:30;;68116:5;71121:13;:11;:13::i;:::-;:23;71117:96;;;71165:32;71175:10;71187:9;71165;:32::i;:::-;71117:96;71016:208;71052:3;;;;;;;71016:208;;;;70556:677;:::o;52021:104::-;52077:13;52110:7;52103:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52021:104;:::o;67784:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54931:295::-;55046:12;:10;:12::i;:::-;55034:24;;:8;:24;;;;55026:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55146:8;55101:18;:32;55120:12;:10;:12::i;:::-;55101:32;;;;;;;;;;;;;;;:42;55134:8;55101:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55199:8;55170:48;;55185:12;:10;:12::i;:::-;55170:48;;;55209:8;55170:48;;;;;;:::i;:::-;;;;;;;;54931:295;;:::o;70364:174::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70464:5:::1;70447:22;;:13;;;;;;;;;;;:22;;;70439:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;70522:8;70507:12;:23;;;;;;;;;;;;:::i;:::-;;70364:174:::0;:::o;56126:285::-;56258:41;56277:12;:10;:12::i;:::-;56291:7;56258:18;:41::i;:::-;56250:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56364:39;56378:4;56384:2;56388:7;56397:5;56364:13;:39::i;:::-;56126:285;;;;:::o;68009:40::-;68047:2;68009:40;:::o;70200:125::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70268:4:::1;70251:13;;:21;;;;;;;;;;;;;;;;;;70288:29;70304:12;70288:29;;;;;;:::i;:::-;;;;;;;;70200:125::o:0;68260:34::-;;;;:::o;52196:792::-;52269:13;52303:16;52311:7;52303;:16::i;:::-;52295:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52384:23;52410:10;:19;52421:7;52410:19;;;;;;;;;;;52384:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52440:18;52461:9;:7;:9::i;:::-;52440:30;;52568:1;52552:4;52546:18;:23;52542:72;;;52593:9;52586:16;;;;;;52542:72;52744:1;52724:9;52718:23;:27;52714:108;;;52793:4;52799:9;52776:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52762:48;;;;;;52714:108;52954:4;52960:18;:7;:16;:18::i;:::-;52937:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52923:57;;;;52196:792;;;;:::o;69959:175::-;70011:13;70051;:11;:13::i;:::-;70045:3;:19;70037:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;70114:12;70107:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69959:175;;;:::o;55297:164::-;55394:4;55418:18;:25;55437:5;55418:25;;;;;;;;;;;;;;;:35;55444:8;55418:35;;;;;;;;;;;;;;;;;;;;;;;;;55411:42;;55297:164;;;;:::o;68144:32::-;;;;;;;;;;;;;:::o;66866:244::-;66143:12;:10;:12::i;:::-;66132:23;;:7;:5;:7::i;:::-;:23;;;66124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66975:1:::1;66955:22;;:8;:22;;;;66947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;67065:8;67036:38;;67057:6;;;;;;;;;;;67036:38;;;;;;;;;;;;67094:8;67085:6;;:17;;;;;;;;;;;;;;;;;;66866:244:::0;:::o;57878:127::-;57943:4;57967:30;57989:7;57967:12;:21;;:30;;;;:::i;:::-;57960:37;;57878:127;;;:::o;999:106::-;1052:15;1087:10;1080:17;;999:106;:::o;63896:192::-;63998:2;63971:15;:24;63987:7;63971:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64054:7;64050:2;64016:46;;64025:23;64040:7;64025:14;:23::i;:::-;64016:46;;;;;;;;;;;;63896:192;;:::o;44610:123::-;44679:7;44706:19;44714:3;:10;;44706:7;:19::i;:::-;44699:26;;44610:123;;;:::o;58172:355::-;58265:4;58290:16;58298:7;58290;:16::i;:::-;58282:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58366:13;58382:23;58397:7;58382:14;:23::i;:::-;58366:39;;58435:5;58424:16;;:7;:16;;;:51;;;;58468:7;58444:31;;:20;58456:7;58444:11;:20::i;:::-;:31;;;58424:51;:94;;;;58479:39;58503:5;58510:7;58479:23;:39::i;:::-;58424:94;58416:103;;;58172:355;;;;:::o;61308:599::-;61433:4;61406:31;;:23;61421:7;61406:14;:23::i;:::-;:31;;;61398:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61534:1;61520:16;;:2;:16;;;;61512:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61590:39;61611:4;61617:2;61621:7;61590:20;:39::i;:::-;61694:29;61711:1;61715:7;61694:8;:29::i;:::-;61736:35;61763:7;61736:13;:19;61750:4;61736:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61782:30;61804:7;61782:13;:17;61796:2;61782:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61825:29;61842:7;61851:2;61825:12;:16;;:29;;;;;:::i;:::-;;61891:7;61887:2;61872:27;;61881:4;61872:27;;;;;;;;;;;;61308:599;;;:::o;36401:137::-;36472:7;36507:22;36511:3;:10;;36523:5;36507:3;:22::i;:::-;36499:31;;36492:38;;36401:137;;;;:::o;45072:236::-;45152:7;45161;45182:11;45195:13;45212:22;45216:3;:10;;45228:5;45212:3;:22::i;:::-;45181:53;;;;45261:3;45253:12;;45291:5;45283:14;;45245:55;;;;;;45072:236;;;;;:::o;62508:100::-;62592:8;62581;:19;;;;;;;;;;;;:::i;:::-;;62508:100;:::o;46358:213::-;46465:7;46516:44;46521:3;:10;;46541:3;46533:12;;46547;46516:4;:44::i;:::-;46508:53;;46485:78;;46358:213;;;;;:::o;35943:114::-;36003:7;36030:19;36038:3;:10;;36030:7;:19::i;:::-;36023:26;;35943:114;;;:::o;58870:110::-;58946:26;58956:2;58960:7;58946:26;;;;;;;;;;;;:9;:26::i;:::-;58870:110;;:::o;14591:158::-;14649:7;14682:1;14677;:6;;14669:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14740:1;14736;:5;14729:12;;14591:158;;;;:::o;14129:179::-;14187:7;14207:9;14223:1;14219;:5;14207:17;;14248:1;14243;:6;;14235:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14299:1;14292:8;;;14129:179;;;;:::o;15008:220::-;15066:7;15095:1;15090;:6;15086:20;;;15105:1;15098:8;;;;15086:20;15117:9;15133:1;15129;:5;15117:17;;15162:1;15157;15153;:5;;;;;;:10;15145:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;15219:1;15212:8;;;15008:220;;;;;:::o;57293:272::-;57407:28;57417:4;57423:2;57427:7;57407:9;:28::i;:::-;57454:48;57477:4;57483:2;57487:7;57496:5;57454:22;:48::i;:::-;57446:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57293:272;;;;:::o;46822:746::-;46878:13;47108:1;47099:5;:10;47095:53;;;47126:10;;;;;;;;;;;;;;;;;;;;;47095:53;47158:12;47173:5;47158:20;;47189:14;47214:78;47229:1;47221:4;:9;47214:78;;47247:8;;;;;;;47278:2;47270:10;;;;;;;;;47214:78;;;47302:19;47334:6;47324:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47302:39;;47352:13;47377:1;47368:6;:10;47352:26;;47396:5;47389:12;;47412:117;47427:1;47419:4;:9;47412:117;;47488:2;47481:4;:9;;;;;;47476:2;:14;47463:29;;47445:6;47452:7;;;;;;;47445:15;;;;;;;;;;;:47;;;;;;;;;;;47515:2;47507:10;;;;;;;;;47412:117;;;47553:6;47539:21;;;;;;46822:746;;;;:::o;44371:151::-;44455:4;44479:35;44489:3;:10;;44509:3;44501:12;;44479:9;:35::i;:::-;44472:42;;44371:151;;;;:::o;41189:110::-;41245:7;41272:3;:12;;:19;;;;41265:26;;41189:110;;;:::o;64701:93::-;;;;:::o;35488:137::-;35558:4;35582:35;35590:3;:10;;35610:5;35602:14;;35582:7;:35::i;:::-;35575:42;;35488:137;;;;:::o;35181:131::-;35248:4;35272:32;35277:3;:10;;35297:5;35289:14;;35272:4;:32::i;:::-;35265:39;;35181:131;;;;:::o;43794:185::-;43883:4;43907:64;43912:3;:10;;43932:3;43924:12;;43962:5;43946:23;;43938:32;;43907:4;:64::i;:::-;43900:71;;43794:185;;;;;:::o;31439:204::-;31506:7;31555:5;31534:3;:11;;:18;;;;:26;31526:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31617:3;:11;;31629:5;31617:18;;;;;;;;;;;;;;;;31610:25;;31439:204;;;;:::o;41654:279::-;41721:7;41730;41780:5;41758:3;:12;;:19;;;;:27;41750:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41837:22;41862:3;:12;;41875:5;41862:19;;;;;;;;;;;;;;;;;;41837:44;;41900:5;:10;;;41912:5;:12;;;41892:33;;;;;41654:279;;;;;:::o;43151:319::-;43245:7;43265:16;43284:3;:12;;:17;43297:3;43284:17;;;;;;;;;;;;43265:36;;43332:1;43320:8;:13;;43335:12;43312:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43402:3;:12;;43426:1;43415:8;:12;43402:26;;;;;;;;;;;;;;;;;;:33;;;43395:40;;;43151:319;;;;;:::o;30986:109::-;31042:7;31069:3;:11;;:18;;;;31062:25;;30986:109;;;:::o;59207:250::-;59303:18;59309:2;59313:7;59303:5;:18::i;:::-;59340:54;59371:1;59375:2;59379:7;59388:5;59340:22;:54::i;:::-;59332:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;59207:250;;;:::o;63173:604::-;63294:4;63321:15;:2;:13;;;:15::i;:::-;63316:60;;63360:4;63353:11;;;;63316:60;63386:23;63412:252;63465:45;;;63525:12;:10;:12::i;:::-;63552:4;63571:7;63593:5;63428:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63412:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63386:278;;63675:13;63702:10;63691:32;;;;;;;;;;;;:::i;:::-;63675:48;;48322:10;63752:16;;63742:26;;;:6;:26;;;;63734:35;;;;63173:604;;;;;;;:::o;40969:125::-;41040:4;41085:1;41064:3;:12;;:17;41077:3;41064:17;;;;;;;;;;;;:22;;41057:29;;40969:125;;;;:::o;29141:1544::-;29207:4;29325:18;29346:3;:12;;:19;29359:5;29346:19;;;;;;;;;;;;29325:40;;29396:1;29382:10;:15;29378:1300;;29744:21;29781:1;29768:10;:14;29744:38;;29797:17;29838:1;29817:3;:11;;:18;;;;:22;29797:42;;30084:17;30104:3;:11;;30116:9;30104:22;;;;;;;;;;;;;;;;30084:42;;30250:9;30221:3;:11;;30233:13;30221:26;;;;;;;;;;;;;;;:38;;;;30369:1;30353:13;:17;30327:3;:12;;:23;30340:9;30327:23;;;;;;;;;;;:43;;;;30479:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30574:3;:12;;:19;30587:5;30574:19;;;;;;;;;;;30567:26;;;30617:4;30610:11;;;;;;;;29378:1300;30661:5;30654:12;;;29141:1544;;;;;:::o;28551:414::-;28614:4;28636:21;28646:3;28651:5;28636:9;:21::i;:::-;28631:327;;28674:3;:11;;28691:5;28674:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28857:3;:11;;:18;;;;28835:3;:12;;:19;28848:5;28835:19;;;;;;;;;;;:40;;;;28897:4;28890:11;;;;28631:327;28941:5;28934:12;;28551:414;;;;;:::o;38469:692::-;38545:4;38661:16;38680:3;:12;;:17;38693:3;38680:17;;;;;;;;;;;;38661:36;;38726:1;38714:8;:13;38710:444;;;38781:3;:12;;38799:38;;;;;;;;38816:3;38799:38;;;;38829:5;38799:38;;;38781:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38996:3;:12;;:19;;;;38976:3;:12;;:17;38989:3;38976:17;;;;;;;;;;;:39;;;;39037:4;39030:11;;;;;38710:444;39110:5;39074:3;:12;;39098:1;39087:8;:12;39074:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39137:5;39130:12;;;38469:692;;;;;;:::o;59793:404::-;59887:1;59873:16;;:2;:16;;;;59865:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59946:16;59954:7;59946;:16::i;:::-;59945:17;59937:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60008:45;60037:1;60041:2;60045:7;60008:20;:45::i;:::-;60066:30;60088:7;60066:13;:17;60080:2;60066:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;60109:29;60126:7;60135:2;60109:12;:16;;:29;;;;;:::i;:::-;;60181:7;60177:2;60156:33;;60173:1;60156:33;;;;;;;;;;;;59793:404;;:::o;19570:422::-;19630:4;19838:12;19949:7;19937:20;19929:28;;19983:1;19976:4;:8;19969:15;;;19570:422;;;:::o;22488:195::-;22591:12;22623:52;22645:6;22653:4;22659:1;22662:12;22623:21;:52::i;:::-;22616:59;;22488:195;;;;;:::o;30771:129::-;30844:4;30891:1;30868:3;:12;;:19;30881:5;30868:19;;;;;;;;;;;;:24;;30861:31;;30771:129;;;;:::o;23540:530::-;23667:12;23725:5;23700:21;:30;;23692:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23792:18;23803:6;23792:10;:18::i;:::-;23784:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23918:12;23932:23;23959:6;:11;;23979:5;23987:4;23959:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23917:75;;;;24010:52;24028:7;24037:10;24049:12;24010:17;:52::i;:::-;24003:59;;;;23540:530;;;;;;:::o;26080:742::-;26195:12;26224:7;26220:595;;;26255:10;26248:17;;;;26220:595;26389:1;26369:10;:17;:21;26365:439;;;26632:10;26626:17;26693:15;26680:10;26676:2;26672:19;26665:44;26580:148;26775:12;26768:20;;;;;;;;;;;:::i;:::-;;;;;;;;26080:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8946:937::-;;9068:5;9062:12;9105:1;9094:9;9090:17;9121:1;9116:281;;;;9411:1;9406:471;;;;9083:794;;9116:281;9206:4;9202:1;9191:9;9187:17;9183:28;9231:71;9295:6;9290:3;9231:71;:::i;:::-;9224:78;;9346:4;9342:9;9331;9327:25;9322:3;9315:38;9382:4;9377:3;9373:14;9366:21;;9123:274;9116:281;;9406:471;9487:1;9476:9;9472:17;9509:71;9573:6;9568:3;9509:71;:::i;:::-;9502:78;;9608:38;9640:5;9608:38;:::i;:::-;9668:1;9682:154;9696:6;9693:1;9690:13;9682:154;;;9770:7;9764:14;9760:1;9755:3;9751:11;9744:35;9820:1;9811:7;9807:15;9796:26;;9718:4;9715:1;9711:12;9706:17;;9682:154;;;9865:1;9860:3;9856:11;9849:18;;9413:464;;;9083:794;;9035:848;;;;;:::o;9889:366::-;;10052:67;10116:2;10111:3;10052:67;:::i;:::-;10045:74;;10149:34;10145:1;10140:3;10136:11;10129:55;10215:4;10210:2;10205:3;10201:12;10194:26;10246:2;10241:3;10237:12;10230:19;;10035:220;;;:::o;10261:365::-;;10424:67;10488:2;10483:3;10424:67;:::i;:::-;10417:74;;10521:34;10517:1;10512:3;10508:11;10501:55;10587:3;10582:2;10577:3;10573:12;10566:25;10617:2;10612:3;10608:12;10601:19;;10407:219;;;:::o;10632:382::-;;10795:67;10859:2;10854:3;10795:67;:::i;:::-;10788:74;;10892:34;10888:1;10883:3;10879:11;10872:55;10958:20;10953:2;10948:3;10944:12;10937:42;11005:2;11000:3;10996:12;10989:19;;10778:236;;;:::o;11020:370::-;;11183:67;11247:2;11242:3;11183:67;:::i;:::-;11176:74;;11280:34;11276:1;11271:3;11267:11;11260:55;11346:8;11341:2;11336:3;11332:12;11325:30;11381:2;11376:3;11372:12;11365:19;;11166:224;;;:::o;11396:326::-;;11559:67;11623:2;11618:3;11559:67;:::i;:::-;11552:74;;11656:30;11652:1;11647:3;11643:11;11636:51;11713:2;11708:3;11704:12;11697:19;;11542:180;;;:::o;11728:325::-;;11891:67;11955:2;11950:3;11891:67;:::i;:::-;11884:74;;11988:29;11984:1;11979:3;11975:11;11968:50;12044:2;12039:3;12035:12;12028:19;;11874:179;;;:::o;12059:368::-;;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12319:34;12315:1;12310:3;12306:11;12299:55;12385:6;12380:2;12375:3;12371:12;12364:28;12418:2;12413:3;12409:12;12402:19;;12205:222;;;:::o;12433:323::-;;12596:67;12660:2;12655:3;12596:67;:::i;:::-;12589:74;;12693:27;12689:1;12684:3;12680:11;12673:48;12747:2;12742:3;12738:12;12731:19;;12579:177;;;:::o;12762:329::-;;12925:67;12989:2;12984:3;12925:67;:::i;:::-;12918:74;;13022:33;13018:1;13013:3;13009:11;13002:54;13082:2;13077:3;13073:12;13066:19;;12908:183;;;:::o;13097:328::-;;13260:67;13324:2;13319:3;13260:67;:::i;:::-;13253:74;;13357:32;13353:1;13348:3;13344:11;13337:53;13416:2;13411:3;13407:12;13400:19;;13243:182;;;:::o;13431:325::-;;13594:67;13658:2;13653:3;13594:67;:::i;:::-;13587:74;;13691:29;13687:1;13682:3;13678:11;13671:50;13747:2;13742:3;13738:12;13731:19;;13577:179;;;:::o;13762:370::-;;13925:67;13989:2;13984:3;13925:67;:::i;:::-;13918:74;;14022:34;14018:1;14013:3;14009:11;14002:55;14088:8;14083:2;14078:3;14074:12;14067:30;14123:2;14118:3;14114:12;14107:19;;13908:224;;;:::o;14138:376::-;;14301:67;14365:2;14360:3;14301:67;:::i;:::-;14294:74;;14398:34;14394:1;14389:3;14385:11;14378:55;14464:14;14459:2;14454:3;14450:12;14443:36;14505:2;14500:3;14496:12;14489:19;;14284:230;;;:::o;14520:365::-;;14683:67;14747:2;14742:3;14683:67;:::i;:::-;14676:74;;14780:34;14776:1;14771:3;14767:11;14760:55;14846:3;14841:2;14836:3;14832:12;14825:25;14876:2;14871:3;14867:12;14860:19;;14666:219;;;:::o;14891:388::-;;15054:67;15118:2;15113:3;15054:67;:::i;:::-;15047:74;;15151:34;15147:1;15142:3;15138:11;15131:55;15217:26;15212:2;15207:3;15203:12;15196:48;15270:2;15265:3;15261:12;15254:19;;15037:242;;;:::o;15285:374::-;;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15545:34;15541:1;15536:3;15532:11;15525:55;15611:12;15606:2;15601:3;15597:12;15590:34;15650:2;15645:3;15641:12;15634:19;;15431:228;;;:::o;15665:374::-;;15828:67;15892:2;15887:3;15828:67;:::i;:::-;15821:74;;15925:34;15921:1;15916:3;15912:11;15905:55;15991:12;15986:2;15981:3;15977:12;15970:34;16030:2;16025:3;16021:12;16014:19;;15811:228;;;:::o;16045:366::-;;16208:67;16272:2;16267:3;16208:67;:::i;:::-;16201:74;;16305:34;16301:1;16296:3;16292:11;16285:55;16371:4;16366:2;16361:3;16357:12;16350:26;16402:2;16397:3;16393:12;16386:19;;16191:220;;;:::o;16417:330::-;;16580:67;16644:2;16639:3;16580:67;:::i;:::-;16573:74;;16677:34;16673:1;16668:3;16664:11;16657:55;16738:2;16733:3;16729:12;16722:19;;16563:184;;;:::o;16753:365::-;;16916:67;16980:2;16975:3;16916:67;:::i;:::-;16909:74;;17013:34;17009:1;17004:3;17000:11;16993:55;17079:3;17074:2;17069:3;17065:12;17058:25;17109:2;17104:3;17100:12;17093:19;;16899:219;;;:::o;17124:376::-;;17287:67;17351:2;17346:3;17287:67;:::i;:::-;17280:74;;17384:34;17380:1;17375:3;17371:11;17364:55;17450:14;17445:2;17440:3;17436:12;17429:36;17491:2;17486:3;17482:12;17475:19;;17270:230;;;:::o;17506:330::-;;17669:67;17733:2;17728:3;17669:67;:::i;:::-;17662:74;;17766:34;17762:1;17757:3;17753:11;17746:55;17827:2;17822:3;17818:12;17811:19;;17652:184;;;:::o;17842:373::-;;18005:67;18069:2;18064:3;18005:67;:::i;:::-;17998:74;;18102:34;18098:1;18093:3;18089:11;18082:55;18168:11;18163:2;18158:3;18154:12;18147:33;18206:2;18201:3;18197:12;18190:19;;17988:227;;;:::o;18221:379::-;;18384:67;18448:2;18443:3;18384:67;:::i;:::-;18377:74;;18481:34;18477:1;18472:3;18468:11;18461:55;18547:17;18542:2;18537:3;18533:12;18526:39;18591:2;18586:3;18582:12;18575:19;;18367:233;;;:::o;18606:392::-;;18769:67;18833:2;18828:3;18769:67;:::i;:::-;18762:74;;18866:34;18862:1;18857:3;18853:11;18846:55;18932:30;18927:2;18922:3;18918:12;18911:52;18989:2;18984:3;18980:12;18973:19;;18752:246;;;:::o;19004:365::-;;19167:67;19231:2;19226:3;19167:67;:::i;:::-;19160:74;;19264:34;19260:1;19255:3;19251:11;19244:55;19330:3;19325:2;19320:3;19316:12;19309:25;19360:2;19355:3;19351:12;19344:19;;19150:219;;;:::o;19375:320::-;;19538:67;19602:2;19597:3;19538:67;:::i;:::-;19531:74;;19635:24;19631:1;19626:3;19622:11;19615:45;19686:2;19681:3;19677:12;19670:19;;19521:174;;;:::o;19701:381::-;;19864:67;19928:2;19923:3;19864:67;:::i;:::-;19857:74;;19961:34;19957:1;19952:3;19948:11;19941:55;20027:19;20022:2;20017:3;20013:12;20006:41;20073:2;20068:3;20064:12;20057:19;;19847:235;;;:::o;20088:327::-;;20251:67;20315:2;20310:3;20251:67;:::i;:::-;20244:74;;20348:31;20344:1;20339:3;20335:11;20328:52;20406:2;20401:3;20397:12;20390:19;;20234:181;;;:::o;20421:108::-;20498:24;20516:5;20498:24;:::i;:::-;20493:3;20486:37;20476:53;;:::o;20535:118::-;20622:24;20640:5;20622:24;:::i;:::-;20617:3;20610:37;20600:53;;:::o;20659:271::-;;20811:93;20900:3;20891:6;20811:93;:::i;:::-;20804:100;;20921:3;20914:10;;20793:137;;;;:::o;20936:435::-;;21138:95;21229:3;21220:6;21138:95;:::i;:::-;21131:102;;21250:95;21341:3;21332:6;21250:95;:::i;:::-;21243:102;;21362:3;21355:10;;21120:251;;;;;:::o;21377:222::-;;21508:2;21497:9;21493:18;21485:26;;21521:71;21589:1;21578:9;21574:17;21565:6;21521:71;:::i;:::-;21475:124;;;;:::o;21605:672::-;;21854:3;21843:9;21839:19;21831:27;;21868:87;21952:1;21941:9;21937:17;21928:6;21868:87;:::i;:::-;21965:72;22033:2;22022:9;22018:18;22009:6;21965:72;:::i;:::-;22047;22115:2;22104:9;22100:18;22091:6;22047:72;:::i;:::-;22166:9;22160:4;22156:20;22151:2;22140:9;22136:18;22129:48;22194:76;22265:4;22256:6;22194:76;:::i;:::-;22186:84;;21821:456;;;;;;;:::o;22283:373::-;;22464:2;22453:9;22449:18;22441:26;;22513:9;22507:4;22503:20;22499:1;22488:9;22484:17;22477:47;22541:108;22644:4;22635:6;22541:108;:::i;:::-;22533:116;;22431:225;;;;:::o;22662:210::-;;22787:2;22776:9;22772:18;22764:26;;22800:65;22862:1;22851:9;22847:17;22838:6;22800:65;:::i;:::-;22754:118;;;;:::o;22878:313::-;;23029:2;23018:9;23014:18;23006:26;;23078:9;23072:4;23068:20;23064:1;23053:9;23049:17;23042:47;23106:78;23179:4;23170:6;23106:78;:::i;:::-;23098:86;;22996:195;;;;:::o;23197:307::-;;23345:2;23334:9;23330:18;23322:26;;23394:9;23388:4;23384:20;23380:1;23369:9;23365:17;23358:47;23422:75;23492:4;23483:6;23422:75;:::i;:::-;23414:83;;23312:192;;;;:::o;23510:419::-;;23714:2;23703:9;23699:18;23691:26;;23763:9;23757:4;23753:20;23749:1;23738:9;23734:17;23727:47;23791:131;23917:4;23791:131;:::i;:::-;23783:139;;23681:248;;;:::o;23935:419::-;;24139:2;24128:9;24124:18;24116:26;;24188:9;24182:4;24178:20;24174:1;24163:9;24159:17;24152:47;24216:131;24342:4;24216:131;:::i;:::-;24208:139;;24106:248;;;:::o;24360:419::-;;24564:2;24553:9;24549:18;24541:26;;24613:9;24607:4;24603:20;24599:1;24588:9;24584:17;24577:47;24641:131;24767:4;24641:131;:::i;:::-;24633:139;;24531:248;;;:::o;24785:419::-;;24989:2;24978:9;24974:18;24966:26;;25038:9;25032:4;25028:20;25024:1;25013:9;25009:17;25002:47;25066:131;25192:4;25066:131;:::i;:::-;25058:139;;24956:248;;;:::o;25210:419::-;;25414:2;25403:9;25399:18;25391:26;;25463:9;25457:4;25453:20;25449:1;25438:9;25434:17;25427:47;25491:131;25617:4;25491:131;:::i;:::-;25483:139;;25381:248;;;:::o;25635:419::-;;25839:2;25828:9;25824:18;25816:26;;25888:9;25882:4;25878:20;25874:1;25863:9;25859:17;25852:47;25916:131;26042:4;25916:131;:::i;:::-;25908:139;;25806:248;;;:::o;26060:419::-;;26264:2;26253:9;26249:18;26241:26;;26313:9;26307:4;26303:20;26299:1;26288:9;26284:17;26277:47;26341:131;26467:4;26341:131;:::i;:::-;26333:139;;26231:248;;;:::o;26485:419::-;;26689:2;26678:9;26674:18;26666:26;;26738:9;26732:4;26728:20;26724:1;26713:9;26709:17;26702:47;26766:131;26892:4;26766:131;:::i;:::-;26758:139;;26656:248;;;:::o;26910:419::-;;27114:2;27103:9;27099:18;27091:26;;27163:9;27157:4;27153:20;27149:1;27138:9;27134:17;27127:47;27191:131;27317:4;27191:131;:::i;:::-;27183:139;;27081:248;;;:::o;27335:419::-;;27539:2;27528:9;27524:18;27516:26;;27588:9;27582:4;27578:20;27574:1;27563:9;27559:17;27552:47;27616:131;27742:4;27616:131;:::i;:::-;27608:139;;27506:248;;;:::o;27760:419::-;;27964:2;27953:9;27949:18;27941:26;;28013:9;28007:4;28003:20;27999:1;27988:9;27984:17;27977:47;28041:131;28167:4;28041:131;:::i;:::-;28033:139;;27931:248;;;:::o;28185:419::-;;28389:2;28378:9;28374:18;28366:26;;28438:9;28432:4;28428:20;28424:1;28413:9;28409:17;28402:47;28466:131;28592:4;28466:131;:::i;:::-;28458:139;;28356:248;;;:::o;28610:419::-;;28814:2;28803:9;28799:18;28791:26;;28863:9;28857:4;28853:20;28849:1;28838:9;28834:17;28827:47;28891:131;29017:4;28891:131;:::i;:::-;28883:139;;28781:248;;;:::o;29035:419::-;;29239:2;29228:9;29224:18;29216:26;;29288:9;29282:4;29278:20;29274:1;29263:9;29259:17;29252:47;29316:131;29442:4;29316:131;:::i;:::-;29308:139;;29206:248;;;:::o;29460:419::-;;29664:2;29653:9;29649:18;29641:26;;29713:9;29707:4;29703:20;29699:1;29688:9;29684:17;29677:47;29741:131;29867:4;29741:131;:::i;:::-;29733:139;;29631:248;;;:::o;29885:419::-;;30089:2;30078:9;30074:18;30066:26;;30138:9;30132:4;30128:20;30124:1;30113:9;30109:17;30102:47;30166:131;30292:4;30166:131;:::i;:::-;30158:139;;30056:248;;;:::o;30310:419::-;;30514:2;30503:9;30499:18;30491:26;;30563:9;30557:4;30553:20;30549:1;30538:9;30534:17;30527:47;30591:131;30717:4;30591:131;:::i;:::-;30583:139;;30481:248;;;:::o;30735:419::-;;30939:2;30928:9;30924:18;30916:26;;30988:9;30982:4;30978:20;30974:1;30963:9;30959:17;30952:47;31016:131;31142:4;31016:131;:::i;:::-;31008:139;;30906:248;;;:::o;31160:419::-;;31364:2;31353:9;31349:18;31341:26;;31413:9;31407:4;31403:20;31399:1;31388:9;31384:17;31377:47;31441:131;31567:4;31441:131;:::i;:::-;31433:139;;31331:248;;;:::o;31585:419::-;;31789:2;31778:9;31774:18;31766:26;;31838:9;31832:4;31828:20;31824:1;31813:9;31809:17;31802:47;31866:131;31992:4;31866:131;:::i;:::-;31858:139;;31756:248;;;:::o;32010:419::-;;32214:2;32203:9;32199:18;32191:26;;32263:9;32257:4;32253:20;32249:1;32238:9;32234:17;32227:47;32291:131;32417:4;32291:131;:::i;:::-;32283:139;;32181:248;;;:::o;32435:419::-;;32639:2;32628:9;32624:18;32616:26;;32688:9;32682:4;32678:20;32674:1;32663:9;32659:17;32652:47;32716:131;32842:4;32716:131;:::i;:::-;32708:139;;32606:248;;;:::o;32860:419::-;;33064:2;33053:9;33049:18;33041:26;;33113:9;33107:4;33103:20;33099:1;33088:9;33084:17;33077:47;33141:131;33267:4;33141:131;:::i;:::-;33133:139;;33031:248;;;:::o;33285:419::-;;33489:2;33478:9;33474:18;33466:26;;33538:9;33532:4;33528:20;33524:1;33513:9;33509:17;33502:47;33566:131;33692:4;33566:131;:::i;:::-;33558:139;;33456:248;;;:::o;33710:419::-;;33914:2;33903:9;33899:18;33891:26;;33963:9;33957:4;33953:20;33949:1;33938:9;33934:17;33927:47;33991:131;34117:4;33991:131;:::i;:::-;33983:139;;33881:248;;;:::o;34135:419::-;;34339:2;34328:9;34324:18;34316:26;;34388:9;34382:4;34378:20;34374:1;34363:9;34359:17;34352:47;34416:131;34542:4;34416:131;:::i;:::-;34408:139;;34306:248;;;:::o;34560:419::-;;34764:2;34753:9;34749:18;34741:26;;34813:9;34807:4;34803:20;34799:1;34788:9;34784:17;34777:47;34841:131;34967:4;34841:131;:::i;:::-;34833:139;;34731:248;;;:::o;34985:419::-;;35189:2;35178:9;35174:18;35166:26;;35238:9;35232:4;35228:20;35224:1;35213:9;35209:17;35202:47;35266:131;35392:4;35266:131;:::i;:::-;35258:139;;35156:248;;;:::o;35410:419::-;;35614:2;35603:9;35599:18;35591:26;;35663:9;35657:4;35653:20;35649:1;35638:9;35634:17;35627:47;35691:131;35817:4;35691:131;:::i;:::-;35683:139;;35581:248;;;:::o;35835:222::-;;35966:2;35955:9;35951:18;35943:26;;35979:71;36047:1;36036:9;36032:17;36023:6;35979:71;:::i;:::-;35933:124;;;;:::o;36063:278::-;;36129:2;36123:9;36113:19;;36171:4;36163:6;36159:17;36278:6;36266:10;36263:22;36242:18;36230:10;36227:34;36224:62;36221:2;;;36289:13;;:::i;:::-;36221:2;36324:10;36320:2;36313:22;36103:238;;;;:::o;36347:326::-;;36498:18;36490:6;36487:30;36484:2;;;36520:13;;:::i;:::-;36484:2;36600:4;36596:9;36589:4;36581:6;36577:17;36573:33;36565:41;;36661:4;36655;36651:15;36643:23;;36413:260;;;:::o;36679:327::-;;36831:18;36823:6;36820:30;36817:2;;;36853:13;;:::i;:::-;36817:2;36933:4;36929:9;36922:4;36914:6;36910:17;36906:33;36898:41;;36994:4;36988;36984:15;36976:23;;36746:260;;;:::o;37012:132::-;;37102:3;37094:11;;37132:4;37127:3;37123:14;37115:22;;37084:60;;;:::o;37150:141::-;;37222:3;37214:11;;37245:3;37242:1;37235:14;37279:4;37276:1;37266:18;37258:26;;37204:87;;;:::o;37297:114::-;;37398:5;37392:12;37382:22;;37371:40;;;:::o;37417:98::-;;37502:5;37496:12;37486:22;;37475:40;;;:::o;37521:99::-;;37607:5;37601:12;37591:22;;37580:40;;;:::o;37626:113::-;;37728:4;37723:3;37719:14;37711:22;;37701:38;;;:::o;37745:184::-;;37878:6;37873:3;37866:19;37918:4;37913:3;37909:14;37894:29;;37856:73;;;;:::o;37935:168::-;;38052:6;38047:3;38040:19;38092:4;38087:3;38083:14;38068:29;;38030:73;;;;:::o;38109:147::-;;38247:3;38232:18;;38222:34;;;;:::o;38262:169::-;;38380:6;38375:3;38368:19;38420:4;38415:3;38411:14;38396:29;;38358:73;;;;:::o;38437:148::-;;38576:3;38561:18;;38551:34;;;;:::o;38591:96::-;;38657:24;38675:5;38657:24;:::i;:::-;38646:35;;38636:51;;;:::o;38693:104::-;;38767:24;38785:5;38767:24;:::i;:::-;38756:35;;38746:51;;;:::o;38803:90::-;;38880:5;38873:13;38866:21;38855:32;;38845:48;;;:::o;38899:149::-;;38975:66;38968:5;38964:78;38953:89;;38943:105;;;:::o;39054:126::-;;39131:42;39124:5;39120:54;39109:65;;39099:81;;;:::o;39186:77::-;;39252:5;39241:16;;39231:32;;;:::o;39269:154::-;39353:6;39348:3;39343;39330:30;39415:1;39406:6;39401:3;39397:16;39390:27;39320:103;;;:::o;39429:307::-;39497:1;39507:113;39521:6;39518:1;39515:13;39507:113;;;39606:1;39601:3;39597:11;39591:18;39587:1;39582:3;39578:11;39571:39;39543:2;39540:1;39536:10;39531:15;;39507:113;;;39638:6;39635:1;39632:13;39629:2;;;39718:1;39709:6;39704:3;39700:16;39693:27;39629:2;39478:258;;;;:::o;39742:48::-;39775:9;39796:102;;39888:2;39884:7;39879:2;39872:5;39868:14;39864:28;39854:38;;39844:54;;;:::o;39904:122::-;39977:24;39995:5;39977:24;:::i;:::-;39970:5;39967:35;39957:2;;40016:1;40013;40006:12;39957:2;39947:79;:::o;40032:116::-;40102:21;40117:5;40102:21;:::i;:::-;40095:5;40092:32;40082:2;;40138:1;40135;40128:12;40082:2;40072:76;:::o;40154:120::-;40226:23;40243:5;40226:23;:::i;:::-;40219:5;40216:34;40206:2;;40264:1;40261;40254:12;40206:2;40196:78;:::o;40280:122::-;40353:24;40371:5;40353:24;:::i;:::-;40346:5;40343:35;40333:2;;40392:1;40389;40382:12;40333:2;40323:79;:::o

Swarm Source

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