ETH Price: $3,288.07 (+0.36%)

Token

Ape Vampires (AV)
 

Overview

Max Total Supply

119 AV

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 AV
0x1ed619f85d521bdcb374371eb0755a5f7c20cd7d
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:
apeVampires

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-26
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: 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));
        }

        return super.tokenURI(tokenId);
    }

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

    /**
     * @dev 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 override {
        super._burn(tokenId);

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: apeVampires.sol

//SPDX-License-Identifier: Unlicense

// @title: Ape Vampires
// @author: Ape Vampires Team

pragma solidity ^0.8.0;









contract apeVampires is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {

    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;
    Counters.Counter private _freeCount;
    mapping(address => bool) private _wlist;
    uint256 private _mFree = 10;
    bool private presale;
    bool private sale;
    bool private earlybird;
    uint256 public constant MAX_ITEMS = 6666;
    uint256 public constant MAX_PRESALE_ITEMS = 1666;
    uint256 public constant MAX_EARLY_ITEMS = 555;
    address public constant creatorAddress = 0x3200D0A67919Aff1314A86e8085EddD01F175860;
    address public constant marketingAddress = 0x24b227B3da037fa73d980469292A288C018321d8;
    uint256 public constant MAX_MINT = 20;
    uint256 public constant MAX_MINT_PRESALE = 2;
    uint256 public constant MAX_MINT_EARLY = 2;
    string public baseTokenURI;
    uint256 public EARLY_PRICE = 5E16; // 0.05 ETH
    uint256 public PRESALE_PRICE = 7E16; // 0.07 ETH
    uint256 public PRICE = 1E15; // 0.1 ETH

    event CreateApeVampire(uint256 indexed id);
    event AttributeChanged(uint256 indexed _tokenId, string _key, string _value);

    constructor(string memory baseURI) ERC721("Ape Vampires", "AV") {
        setBaseURI(baseURI);
        pause(true);
        presale = false;
        sale = false;
        earlybird = false;
    }

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ITEMS, "Sale ended");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
    function mintReserve(uint256 _count, address _to) public onlyOwner {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_ITEMS, "Max limit");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    function totalFree() public view returns (uint) {
        return _mFree - _freeCount.current();
    }
    function setWhiteList(address _wl) public onlyOwner {
        _wlist[_wl]=true;
    }
    function setMFree(uint256 _count) public onlyOwner {
        _mFree=_count;
    }
    function freeMint(address _to,address _wl) public saleIsOpen {
        uint256 total = _totalSupply();
        require(total + 1 <= MAX_ITEMS, "Max limit");
        require(_wlist[_wl], "not in whitelist");
        require(_freeCount.current()+1 <= _mFree, "Free limit");
        _freeCount.increment();
        _mintAnElement(_to);
    }
    function startEarly() public onlyOwner {
        earlybird = true;
    }
    function earlyMint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(earlybird == true, "Sale not started");
        require(total + _count <= MAX_EARLY_ITEMS, "Max limit");
        require(_count <= MAX_MINT_EARLY, "Exceeds number");
        require(msg.value >= EARLY_PRICE.mul(_count), "Below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
   function startPresale() public onlyOwner {
        presale = true;
    }
    function presaleMint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(presale == true, "Sale not started");
        require(total + _count <= MAX_PRESALE_ITEMS, "Max limit");
        require(_count <= MAX_MINT_PRESALE, "Exceeds number");
        require(msg.value >= PRESALE_PRICE.mul(_count), "Below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    function startSale() public onlyOwner {
        sale = true;
    }
    function newMint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(sale == true, "Sale not started");
        require(total + _count <= MAX_ITEMS, "Max limit");
        require(_count <= MAX_MINT, "Exceeds number");
        require(msg.value >= PRICE.mul(_count), "Below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
    function mint(address _to, uint256 _count) public payable saleIsOpen {
        newMint(_to,_count);
    }
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateApeVampire(id);
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }
    function setEarlyPrice(uint256 _price) public onlyOwner {
        EARLY_PRICE = _price;
    }
    function setPresalePrice(uint256 _price) public onlyOwner {
        PRESALE_PRICE = _price;
    }
    function setPrice(uint256 _price) public onlyOwner {
        PRICE = _price;
    }
    function changeAttribute(uint256 tokenId, string memory key, string memory value) public {
        address owner = ERC721.ownerOf(tokenId);
        require(_msgSender() == owner, "This is not your ApeVampire.");
        emit AttributeChanged(tokenId, key, value);
    }
    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(marketingAddress, balance.mul(40).div(100));
        _widthdraw(creatorAddress, address(this).balance);
    }
    function _widthdraw(address _address, uint256 _amount) private {
        (bool success,) = _address.call{value : _amount}("");
        require(success, "Transfer failed.");
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_key","type":"string"},{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"AttributeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateApeVampire","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"EARLY_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EARLY_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_EARLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"key","type":"string"},{"internalType":"string","name":"value","type":"string"}],"name":"changeAttribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"earlyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_wl","type":"address"}],"name":"freeMint","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":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"newMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setEarlyPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wl","type":"address"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a600e5566b1a2bc2ec5000060115566f8b0a10e47000060125566038d7ea4c680006013553480156200003757600080fd5b50604051620067173803806200671783398181016040528101906200005d9190620006c5565b6040518060400160405280600c81526020017f4170652056616d706972657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f41560000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e1929190620005a3565b508060019080519060200190620000fa929190620005a3565b5050506200011d62000111620001b360201b60201c565b620001bb60201b60201c565b6000600a60146101000a81548160ff02191690831515021790555062000149816200028160201b60201c565b6200015b60016200032c60201b60201c565b6000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff02191690831515021790555050620009da565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000291620001b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b7620003f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003079062000842565b60405180910390fd5b806010908051906020019062000328929190620005a3565b5050565b6200033c620001b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000362620003f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b29062000842565b60405180910390fd5b600115158115151415620003df57620003d96200041d60201b60201c565b620003f0565b620003ef620004d560201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200042d6200058c60201b60201c565b1562000470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004679062000820565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004bc620001b360201b60201c565b604051620004cb9190620007e1565b60405180910390a1565b620004e56200058c60201b60201c565b62000527576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051e90620007fe565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa62000573620001b360201b60201c565b604051620005829190620007e1565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b828054620005b19062000946565b90600052602060002090601f016020900481019282620005d5576000855562000621565b82601f10620005f057805160ff191683800117855562000621565b8280016001018555821562000621579182015b828111156200062057825182559160200191906001019062000603565b5b50905062000630919062000634565b5090565b5b808211156200064f57600081600090555060010162000635565b5090565b60006200066a620006648462000898565b62000864565b9050828152602081018484840111156200068357600080fd5b6200069084828562000910565b509392505050565b600082601f830112620006aa57600080fd5b8151620006bc84826020860162000653565b91505092915050565b600060208284031215620006d857600080fd5b600082015167ffffffffffffffff811115620006f357600080fd5b620007018482850162000698565b91505092915050565b6200071581620008dc565b82525050565b60006200072a601483620008cb565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006200076c601083620008cb565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000620007ae602083620008cb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000602082019050620007f860008301846200070a565b92915050565b6000602082019050818103600083015262000819816200071b565b9050919050565b600060208201905081810360008301526200083b816200075d565b9050919050565b600060208201905081810360008301526200085d816200079f565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200088e576200088d620009ab565b5b8060405250919050565b600067ffffffffffffffff821115620008b657620008b5620009ab565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008e982620008f0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200093057808201518184015260208101905062000913565b8381111562000940576000848401525b50505050565b600060028204905060018216806200095f57607f821691505b602082108114156200097657620009756200097c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615d2d80620009ea6000396000f3fe6080604052600436106103355760003560e01c80637e95eac4116101ab578063c4245690116100f7578063e985e9c511610095578063f0292a031161006f578063f0292a0314610b79578063f2fde38b14610ba4578063f8ce973b14610bcd578063fca633c114610bf657610335565b8063e985e9c514610af7578063ed16e3a614610b34578063ee5277ca14610b5d57610335565b8063d6720685116100d1578063d672068514610a5a578063dd27a00b14610a76578063e621575614610aa1578063e927fc5c14610acc57610335565b8063c4245690146109db578063c87b56dd146109f2578063d547cfb714610a2f57610335565b806395d89b4111610164578063a5ece9411161013e578063a5ece94114610945578063b66a0e5d14610970578063b88d4fde14610987578063b90738fa146109b057610335565b806395d89b41146108d55780639b6a670914610900578063a22cb4651461091c57610335565b80637e95eac4146107f8578063850dd09114610823578063853828b61461084c5780638d859f3e146108565780638da5cb5b1461088157806391b7f5ed146108ac57610335565b806339e899ee1161028557806357d4c4ee1161022357806362dc6e21116101fd57806362dc6e211461073c5780636352211e1461076757806370a08231146107a4578063715018a6146107e157610335565b806357d4c4ee146106bb57806359a7715a146106e65780635c975abb1461071157610335565b806342966c681161025f57806342966c68146105ef578063438b6300146106185780634f6ccce71461065557806355f804b31461069257610335565b806339e899ee1461058157806340c10f19146105aa57806342842e0e146105c657610335565b80630ffc6728116102f25780632f745c59116102cc5780632f745c59146104c7578063333e44e6146105045780633549345e1461052f57806339217bb81461055857610335565b80630ffc67281461044857806318160ddd1461047357806323b872dd1461049e57610335565b806301ffc9a71461033a57806302329a291461037757806304c98b2b146103a057806306fdde03146103b7578063081812fc146103e2578063095ea7b31461041f575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614608565b610c1f565b60405161036e91906153d0565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906145df565b610c31565b005b3480156103ac57600080fd5b506103b5610cd3565b005b3480156103c357600080fd5b506103cc610d6c565b6040516103d991906153eb565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061469b565b610dfe565b6040516104169190615347565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906145a3565b610e83565b005b34801561045457600080fd5b5061045d610f9b565b60405161046a9190615824565b60405180910390f35b34801561047f57600080fd5b50610488610fa1565b6040516104959190615824565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c0919061449d565b610fae565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906145a3565b61100e565b6040516104fb9190615824565b60405180910390f35b34801561051057600080fd5b506105196110b3565b6040516105269190615824565b60405180910390f35b34801561053b57600080fd5b506105566004803603810190610551919061469b565b6110d1565b005b34801561056457600080fd5b5061057f600480360381019061057a919061469b565b611157565b005b34801561058d57600080fd5b506105a860048036038101906105a39190614438565b6111dd565b005b6105c460048036038101906105bf91906145a3565b6112b4565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061449d565b611398565b005b3480156105fb57600080fd5b506106166004803603810190610611919061469b565b6113b8565b005b34801561062457600080fd5b5061063f600480360381019061063a9190614438565b611414565b60405161064c91906153ae565b60405180910390f35b34801561066157600080fd5b5061067c6004803603810190610677919061469b565b61150e565b6040516106899190615824565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061465a565b6115a5565b005b3480156106c757600080fd5b506106d061163b565b6040516106dd9190615824565b60405180910390f35b3480156106f257600080fd5b506106fb611641565b6040516107089190615824565b60405180910390f35b34801561071d57600080fd5b50610726611650565b60405161073391906153d0565b60405180910390f35b34801561074857600080fd5b50610751611667565b60405161075e9190615824565b60405180910390f35b34801561077357600080fd5b5061078e6004803603810190610789919061469b565b61166d565b60405161079b9190615347565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190614438565b61171f565b6040516107d89190615824565b60405180910390f35b3480156107ed57600080fd5b506107f66117d7565b005b34801561080457600080fd5b5061080d61185f565b60405161081a9190615824565b60405180910390f35b34801561082f57600080fd5b5061084a600480360381019061084591906146c4565b611864565b005b610854611969565b005b34801561086257600080fd5b5061086b611a5c565b6040516108789190615824565b60405180910390f35b34801561088d57600080fd5b50610896611a62565b6040516108a39190615347565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce919061469b565b611a8c565b005b3480156108e157600080fd5b506108ea611b12565b6040516108f791906153eb565b60405180910390f35b61091a600480360381019061091591906145a3565b611ba4565b005b34801561092857600080fd5b50610943600480360381019061093e9190614567565b611df4565b005b34801561095157600080fd5b5061095a611e0a565b6040516109679190615347565b60405180910390f35b34801561097c57600080fd5b50610985611e22565b005b34801561099357600080fd5b506109ae60048036038101906109a991906144ec565b611ebb565b005b3480156109bc57600080fd5b506109c5611f1d565b6040516109d29190615824565b60405180910390f35b3480156109e757600080fd5b506109f0611f23565b005b3480156109fe57600080fd5b50610a196004803603810190610a14919061469b565b611fbc565b604051610a2691906153eb565b60405180910390f35b348015610a3b57600080fd5b50610a44612063565b604051610a5191906153eb565b60405180910390f35b610a746004803603810190610a6f91906145a3565b6120f1565b005b348015610a8257600080fd5b50610a8b612341565b604051610a989190615824565b60405180910390f35b348015610aad57600080fd5b50610ab6612346565b604051610ac39190615824565b60405180910390f35b348015610ad857600080fd5b50610ae161234c565b604051610aee9190615347565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b199190614461565b612364565b604051610b2b91906153d0565b60405180910390f35b348015610b4057600080fd5b50610b5b6004803603810190610b569190614700565b6123f8565b005b610b776004803603810190610b7291906145a3565b6124ba565b005b348015610b8557600080fd5b50610b8e61270a565b604051610b9b9190615824565b60405180910390f35b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614438565b61270f565b005b348015610bd957600080fd5b50610bf46004803603810190610bef9190614461565b612807565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061469b565b612a38565b005b6000610c2a82612abe565b9050919050565b610c39612b38565b73ffffffffffffffffffffffffffffffffffffffff16610c57611a62565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca4906156a4565b60405180910390fd5b600115158115151415610cc757610cc2612b40565b610cd0565b610ccf612be3565b5b50565b610cdb612b38565b73ffffffffffffffffffffffffffffffffffffffff16610cf9611a62565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906156a4565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b606060008054610d7b90615b22565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790615b22565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b5050505050905090565b6000610e0982612c85565b610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90615684565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e8e8261166d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690615744565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f1e612b38565b73ffffffffffffffffffffffffffffffffffffffff161480610f4d5750610f4c81610f47612b38565b612364565b5b610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390615604565b60405180910390fd5b610f968383612cf1565b505050565b61068281565b6000600880549050905090565b610fbf610fb9612b38565b82612daa565b610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590615784565b60405180910390fd5b611009838383612e88565b505050565b60006110198361171f565b821061105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906154a4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006110bf600c6130e4565b600e546110cc9190615a38565b905090565b6110d9612b38565b73ffffffffffffffffffffffffffffffffffffffff166110f7611a62565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611144906156a4565b60405180910390fd5b8060128190555050565b61115f612b38565b73ffffffffffffffffffffffffffffffffffffffff1661117d611a62565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906156a4565b60405180910390fd5b80600e8190555050565b6111e5612b38565b73ffffffffffffffffffffffffffffffffffffffff16611203611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906156a4565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611a0a6112bf6130f2565b1115611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790615724565b60405180910390fd5b611308611a62565b73ffffffffffffffffffffffffffffffffffffffff16611326612b38565b73ffffffffffffffffffffffffffffffffffffffff161461138a57611349611650565b15611389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611380906155c4565b60405180910390fd5b5b61139482826124ba565b5050565b6113b383838360405180602001604052806000815250611ebb565b505050565b6113c96113c3612b38565b82612daa565b611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90615804565b60405180910390fd5b61141181613103565b50565b606060006114218361171f565b905060008167ffffffffffffffff811115611465577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114935781602001602082028036833780820191505090505b50905060005b82811015611503576114ab858261100e565b8282815181106114e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114fb90615b54565b915050611499565b508092505050919050565b6000611518610fa1565b8210611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906157a4565b60405180910390fd5b60088281548110611593577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115ad612b38565b73ffffffffffffffffffffffffffffffffffffffff166115cb611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906156a4565b60405180910390fd5b806010908051906020019061163792919061425c565b5050565b611a0a81565b600061164b6130f2565b905090565b6000600a60149054906101000a900460ff16905090565b60125481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90615644565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790615624565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117df612b38565b73ffffffffffffffffffffffffffffffffffffffff166117fd611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906156a4565b60405180910390fd5b61185d6000613214565b565b600281565b61186c612b38565b73ffffffffffffffffffffffffffffffffffffffff1661188a611a62565b73ffffffffffffffffffffffffffffffffffffffff16146118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906156a4565b60405180910390fd5b60006118ea6130f2565b9050611a0a83826118fb9190615957565b111561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390615584565b60405180910390fd5b60005b8381101561196357611950836132da565b808061195b90615b54565b91505061193f565b50505050565b611971612b38565b73ffffffffffffffffffffffffffffffffffffffff1661198f611a62565b73ffffffffffffffffffffffffffffffffffffffff16146119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906156a4565b60405180910390fd5b6000479050600081116119f757600080fd5b611a3b7324b227b3da037fa73d980469292a288c018321d8611a366064611a2860288661332b90919063ffffffff16565b61334190919063ffffffff16565b613357565b611a59733200d0a67919aff1314a86e8085eddd01f17586047613357565b50565b60135481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a94612b38565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906156a4565b60405180910390fd5b8060138190555050565b606060018054611b2190615b22565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4d90615b22565b8015611b9a5780601f10611b6f57610100808354040283529160200191611b9a565b820191906000526020600020905b815481529060010190602001808311611b7d57829003601f168201915b5050505050905090565b611a0a611baf6130f2565b1115611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790615724565b60405180910390fd5b611bf8611a62565b73ffffffffffffffffffffffffffffffffffffffff16611c16612b38565b73ffffffffffffffffffffffffffffffffffffffff1614611c7a57611c39611650565b15611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c70906155c4565b60405180910390fd5b5b6000611c846130f2565b905060011515600f60009054906101000a900460ff16151514611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd3906155e4565b60405180910390fd5b6106828282611ceb9190615957565b1115611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390615584565b60405180910390fd5b6002821115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790615484565b60405180910390fd5b611d858260125461332b90919063ffffffff16565b341015611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90615704565b60405180910390fd5b60005b82811015611dee57611ddb846132da565b8080611de690615b54565b915050611dca565b50505050565b611e06611dff612b38565b8383613408565b5050565b7324b227b3da037fa73d980469292a288c018321d881565b611e2a612b38565b73ffffffffffffffffffffffffffffffffffffffff16611e48611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906156a4565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b611ecc611ec6612b38565b83612daa565b611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290615784565b60405180910390fd5b611f1784848484613575565b50505050565b61022b81565b611f2b612b38565b73ffffffffffffffffffffffffffffffffffffffff16611f49611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f96906156a4565b60405180910390fd5b6001600f60026101000a81548160ff021916908315150217905550565b6060611fc782612c85565b612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd906156e4565b60405180910390fd5b60006120106135d1565b90506000815111612030576040518060200160405280600081525061205b565b8061203a84613663565b60405160200161204b92919061530e565b6040516020818303038152906040525b915050919050565b6010805461207090615b22565b80601f016020809104026020016040519081016040528092919081815260200182805461209c90615b22565b80156120e95780601f106120be576101008083540402835291602001916120e9565b820191906000526020600020905b8154815290600101906020018083116120cc57829003601f168201915b505050505081565b611a0a6120fc6130f2565b111561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490615724565b60405180910390fd5b612145611a62565b73ffffffffffffffffffffffffffffffffffffffff16612163612b38565b73ffffffffffffffffffffffffffffffffffffffff16146121c757612186611650565b156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd906155c4565b60405180910390fd5b5b60006121d16130f2565b905060011515600f60029054906101000a900460ff16151514612229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612220906155e4565b60405180910390fd5b61022b82826122389190615957565b1115612279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227090615584565b60405180910390fd5b60028211156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490615484565b60405180910390fd5b6122d28260115461332b90919063ffffffff16565b341015612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90615704565b60405180910390fd5b60005b8281101561233b57612328846132da565b808061233390615b54565b915050612317565b50505050565b600281565b60115481565b733200d0a67919aff1314a86e8085eddd01f17586081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006124038461166d565b90508073ffffffffffffffffffffffffffffffffffffffff16612424612b38565b73ffffffffffffffffffffffffffffffffffffffff161461247a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247190615524565b60405180910390fd5b837f071e2b5b04043a73f97c13dbdcd19e7f2d114c2277c6f5d4c6403e547756e45d84846040516124ac92919061540d565b60405180910390a250505050565b611a0a6124c56130f2565b1115612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90615724565b60405180910390fd5b61250e611a62565b73ffffffffffffffffffffffffffffffffffffffff1661252c612b38565b73ffffffffffffffffffffffffffffffffffffffff16146125905761254f611650565b1561258f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612586906155c4565b60405180910390fd5b5b600061259a6130f2565b905060011515600f60019054906101000a900460ff161515146125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e9906155e4565b60405180910390fd5b611a0a82826126019190615957565b1115612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990615584565b60405180910390fd5b6014821115612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d90615484565b60405180910390fd5b61269b8260135461332b90919063ffffffff16565b3410156126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490615704565b60405180910390fd5b60005b82811015612704576126f1846132da565b80806126fc90615b54565b9150506126e0565b50505050565b601481565b612717612b38565b73ffffffffffffffffffffffffffffffffffffffff16612735611a62565b73ffffffffffffffffffffffffffffffffffffffff161461278b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612782906156a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f2906154e4565b60405180910390fd5b61280481613214565b50565b611a0a6128126130f2565b1115612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a90615724565b60405180910390fd5b61285b611a62565b73ffffffffffffffffffffffffffffffffffffffff16612879612b38565b73ffffffffffffffffffffffffffffffffffffffff16146128dd5761289c611650565b156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d3906155c4565b60405180910390fd5b5b60006128e76130f2565b9050611a0a6001826128f99190615957565b111561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190615584565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bd906157e4565b60405180910390fd5b600e5460016129d5600c6130e4565b6129df9190615957565b1115612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a17906157c4565b60405180910390fd5b612a2a600c613810565b612a33836132da565b505050565b612a40612b38565b73ffffffffffffffffffffffffffffffffffffffff16612a5e611a62565b73ffffffffffffffffffffffffffffffffffffffff1614612ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aab906156a4565b60405180910390fd5b8060118190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b315750612b3082613826565b5b9050919050565b600033905090565b612b48611650565b15612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f906155c4565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bcc612b38565b604051612bd99190615347565b60405180910390a1565b612beb611650565b612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2190615464565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c6e612b38565b604051612c7b9190615347565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d648361166d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612db582612c85565b612df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612deb906155a4565b60405180910390fd5b6000612dff8361166d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e6e57508373ffffffffffffffffffffffffffffffffffffffff16612e5684610dfe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e7f5750612e7e8185612364565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ea88261166d565b73ffffffffffffffffffffffffffffffffffffffff1614612efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef5906156c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6590615544565b60405180910390fd5b612f79838383613908565b612f84600082612cf1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd49190615a38565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302b9190615957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60006130fe600b6130e4565b905090565b600061310e8261166d565b905061311c81600084613908565b613127600083612cf1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131779190615a38565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006132e46130f2565b90506132f0600b613810565b6132fa8282613918565b807f754c1a3093a7e3683c2ed81797540ef2ca4241336198c8bf8f502ed458edc83060405160405180910390a25050565b6000818361333991906159de565b905092915050565b6000818361334f91906159ad565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161337d90615332565b60006040518083038185875af1925050503d80600081146133ba576040519150601f19603f3d011682016040523d82523d6000602084013e6133bf565b606091505b5050905080613403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fa90615764565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e90615564565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161356891906153d0565b60405180910390a3505050565b613580848484612e88565b61358c84848484613936565b6135cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c2906154c4565b60405180910390fd5b50505050565b6060601080546135e090615b22565b80601f016020809104026020016040519081016040528092919081815260200182805461360c90615b22565b80156136595780601f1061362e57610100808354040283529160200191613659565b820191906000526020600020905b81548152906001019060200180831161363c57829003601f168201915b5050505050905090565b606060008214156136ab576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061380b565b600082905060005b600082146136dd5780806136c690615b54565b915050600a826136d691906159ad565b91506136b3565b60008167ffffffffffffffff81111561371f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137515781602001600182028036833780820191505090505b5090505b600085146138045760018261376a9190615a38565b9150600a856137799190615b9d565b60306137859190615957565b60f81b8183815181106137c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137fd91906159ad565b9450613755565b8093505050505b919050565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806138f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613901575061390082613acd565b5b9050919050565b613913838383613b37565b505050565b613932828260405180602001604052806000815250613b8f565b5050565b60006139578473ffffffffffffffffffffffffffffffffffffffff16613bea565b15613ac0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613980612b38565b8786866040518563ffffffff1660e01b81526004016139a29493929190615362565b602060405180830381600087803b1580156139bc57600080fd5b505af19250505080156139ed57506040513d601f19601f820116820180604052508101906139ea9190614631565b60015b613a70573d8060008114613a1d576040519150601f19603f3d011682016040523d82523d6000602084013e613a22565b606091505b50600081511415613a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5f906154c4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613ac5565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613b42838383613bfd565b613b4a611650565b15613b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8190615444565b60405180910390fd5b505050565b613b998383613d11565b613ba66000848484613936565b613be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bdc906154c4565b60405180910390fd5b505050565b600080823b905060008111915050919050565b613c08838383613edf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c4b57613c4681613ee4565b613c8a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613c8957613c888382613f2d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ccd57613cc88161409a565b613d0c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613d0b57613d0a82826141dd565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7890615664565b60405180910390fd5b613d8a81612c85565b15613dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc190615504565b60405180910390fd5b613dd660008383613908565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e269190615957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613f3a8461171f565b613f449190615a38565b9050600060076000848152602001908152602001600020549050818114614029576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506140ae9190615a38565b9050600060096000848152602001908152602001600020549050600060088381548110614104577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061414c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806141c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006141e88361171f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461426890615b22565b90600052602060002090601f01602090048101928261428a57600085556142d1565b82601f106142a357805160ff19168380011785556142d1565b828001600101855582156142d1579182015b828111156142d05782518255916020019190600101906142b5565b5b5090506142de91906142e2565b5090565b5b808211156142fb5760008160009055506001016142e3565b5090565b600061431261430d84615870565b61583f565b90508281526020810184848401111561432a57600080fd5b614335848285615ae0565b509392505050565b600061435061434b846158a0565b61583f565b90508281526020810184848401111561436857600080fd5b614373848285615ae0565b509392505050565b60008135905061438a81615c9b565b92915050565b60008135905061439f81615cb2565b92915050565b6000813590506143b481615cc9565b92915050565b6000815190506143c981615cc9565b92915050565b600082601f8301126143e057600080fd5b81356143f08482602086016142ff565b91505092915050565b600082601f83011261440a57600080fd5b813561441a84826020860161433d565b91505092915050565b60008135905061443281615ce0565b92915050565b60006020828403121561444a57600080fd5b60006144588482850161437b565b91505092915050565b6000806040838503121561447457600080fd5b60006144828582860161437b565b92505060206144938582860161437b565b9150509250929050565b6000806000606084860312156144b257600080fd5b60006144c08682870161437b565b93505060206144d18682870161437b565b92505060406144e286828701614423565b9150509250925092565b6000806000806080858703121561450257600080fd5b60006145108782880161437b565b94505060206145218782880161437b565b935050604061453287828801614423565b925050606085013567ffffffffffffffff81111561454f57600080fd5b61455b878288016143cf565b91505092959194509250565b6000806040838503121561457a57600080fd5b60006145888582860161437b565b925050602061459985828601614390565b9150509250929050565b600080604083850312156145b657600080fd5b60006145c48582860161437b565b92505060206145d585828601614423565b9150509250929050565b6000602082840312156145f157600080fd5b60006145ff84828501614390565b91505092915050565b60006020828403121561461a57600080fd5b6000614628848285016143a5565b91505092915050565b60006020828403121561464357600080fd5b6000614651848285016143ba565b91505092915050565b60006020828403121561466c57600080fd5b600082013567ffffffffffffffff81111561468657600080fd5b614692848285016143f9565b91505092915050565b6000602082840312156146ad57600080fd5b60006146bb84828501614423565b91505092915050565b600080604083850312156146d757600080fd5b60006146e585828601614423565b92505060206146f68582860161437b565b9150509250929050565b60008060006060848603121561471557600080fd5b600061472386828701614423565b935050602084013567ffffffffffffffff81111561474057600080fd5b61474c868287016143f9565b925050604084013567ffffffffffffffff81111561476957600080fd5b614775868287016143f9565b9150509250925092565b600061478b83836152f0565b60208301905092915050565b6147a081615a6c565b82525050565b60006147b1826158e0565b6147bb818561590e565b93506147c6836158d0565b8060005b838110156147f75781516147de888261477f565b97506147e983615901565b9250506001810190506147ca565b5085935050505092915050565b61480d81615a7e565b82525050565b600061481e826158eb565b614828818561591f565b9350614838818560208601615aef565b61484181615c8a565b840191505092915050565b6000614857826158f6565b614861818561593b565b9350614871818560208601615aef565b61487a81615c8a565b840191505092915050565b6000614890826158f6565b61489a818561594c565b93506148aa818560208601615aef565b80840191505092915050565b60006148c3602b8361593b565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b600061492960148361593b565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614969600e8361593b565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b60006149a9602b8361593b565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614a0f60328361593b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a7560268361593b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614adb601c8361593b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614b1b601c8361593b565b91507f54686973206973206e6f7420796f75722041706556616d706972652e000000006000830152602082019050919050565b6000614b5b60248361593b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bc160198361593b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614c0160098361593b565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614c41602c8361593b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ca760108361593b565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614ce760108361593b565b91507f53616c65206e6f742073746172746564000000000000000000000000000000006000830152602082019050919050565b6000614d2760388361593b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614d8d602a8361593b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614df360298361593b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e5960208361593b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614e99602c8361593b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614eff60208361593b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614f3f60298361593b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614fa5602f8361593b565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061500b600b8361593b565b91507f42656c6f772070726963650000000000000000000000000000000000000000006000830152602082019050919050565b600061504b600a8361593b565b91507f53616c6520656e646564000000000000000000000000000000000000000000006000830152602082019050919050565b600061508b60218361593b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150f1600083615930565b9150600082019050919050565b600061510b60108361593b565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b600061514b60318361593b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006151b1602c8361593b565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615217600a8361593b565b91507f46726565206c696d6974000000000000000000000000000000000000000000006000830152602082019050919050565b600061525760108361593b565b91507f6e6f7420696e2077686974656c697374000000000000000000000000000000006000830152602082019050919050565b600061529760308361593b565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b6152f981615ad6565b82525050565b61530881615ad6565b82525050565b600061531a8285614885565b91506153268284614885565b91508190509392505050565b600061533d826150e4565b9150819050919050565b600060208201905061535c6000830184614797565b92915050565b60006080820190506153776000830187614797565b6153846020830186614797565b61539160408301856152ff565b81810360608301526153a38184614813565b905095945050505050565b600060208201905081810360008301526153c881846147a6565b905092915050565b60006020820190506153e56000830184614804565b92915050565b60006020820190508181036000830152615405818461484c565b905092915050565b60006040820190508181036000830152615427818561484c565b9050818103602083015261543b818461484c565b90509392505050565b6000602082019050818103600083015261545d816148b6565b9050919050565b6000602082019050818103600083015261547d8161491c565b9050919050565b6000602082019050818103600083015261549d8161495c565b9050919050565b600060208201905081810360008301526154bd8161499c565b9050919050565b600060208201905081810360008301526154dd81614a02565b9050919050565b600060208201905081810360008301526154fd81614a68565b9050919050565b6000602082019050818103600083015261551d81614ace565b9050919050565b6000602082019050818103600083015261553d81614b0e565b9050919050565b6000602082019050818103600083015261555d81614b4e565b9050919050565b6000602082019050818103600083015261557d81614bb4565b9050919050565b6000602082019050818103600083015261559d81614bf4565b9050919050565b600060208201905081810360008301526155bd81614c34565b9050919050565b600060208201905081810360008301526155dd81614c9a565b9050919050565b600060208201905081810360008301526155fd81614cda565b9050919050565b6000602082019050818103600083015261561d81614d1a565b9050919050565b6000602082019050818103600083015261563d81614d80565b9050919050565b6000602082019050818103600083015261565d81614de6565b9050919050565b6000602082019050818103600083015261567d81614e4c565b9050919050565b6000602082019050818103600083015261569d81614e8c565b9050919050565b600060208201905081810360008301526156bd81614ef2565b9050919050565b600060208201905081810360008301526156dd81614f32565b9050919050565b600060208201905081810360008301526156fd81614f98565b9050919050565b6000602082019050818103600083015261571d81614ffe565b9050919050565b6000602082019050818103600083015261573d8161503e565b9050919050565b6000602082019050818103600083015261575d8161507e565b9050919050565b6000602082019050818103600083015261577d816150fe565b9050919050565b6000602082019050818103600083015261579d8161513e565b9050919050565b600060208201905081810360008301526157bd816151a4565b9050919050565b600060208201905081810360008301526157dd8161520a565b9050919050565b600060208201905081810360008301526157fd8161524a565b9050919050565b6000602082019050818103600083015261581d8161528a565b9050919050565b600060208201905061583960008301846152ff565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561586657615865615c5b565b5b8060405250919050565b600067ffffffffffffffff82111561588b5761588a615c5b565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156158bb576158ba615c5b565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061596282615ad6565b915061596d83615ad6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156159a2576159a1615bce565b5b828201905092915050565b60006159b882615ad6565b91506159c383615ad6565b9250826159d3576159d2615bfd565b5b828204905092915050565b60006159e982615ad6565b91506159f483615ad6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615a2d57615a2c615bce565b5b828202905092915050565b6000615a4382615ad6565b9150615a4e83615ad6565b925082821015615a6157615a60615bce565b5b828203905092915050565b6000615a7782615ab6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615b0d578082015181840152602081019050615af2565b83811115615b1c576000848401525b50505050565b60006002820490506001821680615b3a57607f821691505b60208210811415615b4e57615b4d615c2c565b5b50919050565b6000615b5f82615ad6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b9257615b91615bce565b5b600182019050919050565b6000615ba882615ad6565b9150615bb383615ad6565b925082615bc357615bc2615bfd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615ca481615a6c565b8114615caf57600080fd5b50565b615cbb81615a7e565b8114615cc657600080fd5b50565b615cd281615a8a565b8114615cdd57600080fd5b50565b615ce981615ad6565b8114615cf457600080fd5b5056fea2646970667358221220d1bb24a9dd7729b84a87b1bcc2ca63ff45c72011e8e73bb87d8459167eae046364736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f61706576616d70697265732e636f6d2f6a736f6e2f000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c80637e95eac4116101ab578063c4245690116100f7578063e985e9c511610095578063f0292a031161006f578063f0292a0314610b79578063f2fde38b14610ba4578063f8ce973b14610bcd578063fca633c114610bf657610335565b8063e985e9c514610af7578063ed16e3a614610b34578063ee5277ca14610b5d57610335565b8063d6720685116100d1578063d672068514610a5a578063dd27a00b14610a76578063e621575614610aa1578063e927fc5c14610acc57610335565b8063c4245690146109db578063c87b56dd146109f2578063d547cfb714610a2f57610335565b806395d89b4111610164578063a5ece9411161013e578063a5ece94114610945578063b66a0e5d14610970578063b88d4fde14610987578063b90738fa146109b057610335565b806395d89b41146108d55780639b6a670914610900578063a22cb4651461091c57610335565b80637e95eac4146107f8578063850dd09114610823578063853828b61461084c5780638d859f3e146108565780638da5cb5b1461088157806391b7f5ed146108ac57610335565b806339e899ee1161028557806357d4c4ee1161022357806362dc6e21116101fd57806362dc6e211461073c5780636352211e1461076757806370a08231146107a4578063715018a6146107e157610335565b806357d4c4ee146106bb57806359a7715a146106e65780635c975abb1461071157610335565b806342966c681161025f57806342966c68146105ef578063438b6300146106185780634f6ccce71461065557806355f804b31461069257610335565b806339e899ee1461058157806340c10f19146105aa57806342842e0e146105c657610335565b80630ffc6728116102f25780632f745c59116102cc5780632f745c59146104c7578063333e44e6146105045780633549345e1461052f57806339217bb81461055857610335565b80630ffc67281461044857806318160ddd1461047357806323b872dd1461049e57610335565b806301ffc9a71461033a57806302329a291461037757806304c98b2b146103a057806306fdde03146103b7578063081812fc146103e2578063095ea7b31461041f575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614608565b610c1f565b60405161036e91906153d0565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906145df565b610c31565b005b3480156103ac57600080fd5b506103b5610cd3565b005b3480156103c357600080fd5b506103cc610d6c565b6040516103d991906153eb565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061469b565b610dfe565b6040516104169190615347565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906145a3565b610e83565b005b34801561045457600080fd5b5061045d610f9b565b60405161046a9190615824565b60405180910390f35b34801561047f57600080fd5b50610488610fa1565b6040516104959190615824565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c0919061449d565b610fae565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906145a3565b61100e565b6040516104fb9190615824565b60405180910390f35b34801561051057600080fd5b506105196110b3565b6040516105269190615824565b60405180910390f35b34801561053b57600080fd5b506105566004803603810190610551919061469b565b6110d1565b005b34801561056457600080fd5b5061057f600480360381019061057a919061469b565b611157565b005b34801561058d57600080fd5b506105a860048036038101906105a39190614438565b6111dd565b005b6105c460048036038101906105bf91906145a3565b6112b4565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061449d565b611398565b005b3480156105fb57600080fd5b506106166004803603810190610611919061469b565b6113b8565b005b34801561062457600080fd5b5061063f600480360381019061063a9190614438565b611414565b60405161064c91906153ae565b60405180910390f35b34801561066157600080fd5b5061067c6004803603810190610677919061469b565b61150e565b6040516106899190615824565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061465a565b6115a5565b005b3480156106c757600080fd5b506106d061163b565b6040516106dd9190615824565b60405180910390f35b3480156106f257600080fd5b506106fb611641565b6040516107089190615824565b60405180910390f35b34801561071d57600080fd5b50610726611650565b60405161073391906153d0565b60405180910390f35b34801561074857600080fd5b50610751611667565b60405161075e9190615824565b60405180910390f35b34801561077357600080fd5b5061078e6004803603810190610789919061469b565b61166d565b60405161079b9190615347565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190614438565b61171f565b6040516107d89190615824565b60405180910390f35b3480156107ed57600080fd5b506107f66117d7565b005b34801561080457600080fd5b5061080d61185f565b60405161081a9190615824565b60405180910390f35b34801561082f57600080fd5b5061084a600480360381019061084591906146c4565b611864565b005b610854611969565b005b34801561086257600080fd5b5061086b611a5c565b6040516108789190615824565b60405180910390f35b34801561088d57600080fd5b50610896611a62565b6040516108a39190615347565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce919061469b565b611a8c565b005b3480156108e157600080fd5b506108ea611b12565b6040516108f791906153eb565b60405180910390f35b61091a600480360381019061091591906145a3565b611ba4565b005b34801561092857600080fd5b50610943600480360381019061093e9190614567565b611df4565b005b34801561095157600080fd5b5061095a611e0a565b6040516109679190615347565b60405180910390f35b34801561097c57600080fd5b50610985611e22565b005b34801561099357600080fd5b506109ae60048036038101906109a991906144ec565b611ebb565b005b3480156109bc57600080fd5b506109c5611f1d565b6040516109d29190615824565b60405180910390f35b3480156109e757600080fd5b506109f0611f23565b005b3480156109fe57600080fd5b50610a196004803603810190610a14919061469b565b611fbc565b604051610a2691906153eb565b60405180910390f35b348015610a3b57600080fd5b50610a44612063565b604051610a5191906153eb565b60405180910390f35b610a746004803603810190610a6f91906145a3565b6120f1565b005b348015610a8257600080fd5b50610a8b612341565b604051610a989190615824565b60405180910390f35b348015610aad57600080fd5b50610ab6612346565b604051610ac39190615824565b60405180910390f35b348015610ad857600080fd5b50610ae161234c565b604051610aee9190615347565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b199190614461565b612364565b604051610b2b91906153d0565b60405180910390f35b348015610b4057600080fd5b50610b5b6004803603810190610b569190614700565b6123f8565b005b610b776004803603810190610b7291906145a3565b6124ba565b005b348015610b8557600080fd5b50610b8e61270a565b604051610b9b9190615824565b60405180910390f35b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614438565b61270f565b005b348015610bd957600080fd5b50610bf46004803603810190610bef9190614461565b612807565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061469b565b612a38565b005b6000610c2a82612abe565b9050919050565b610c39612b38565b73ffffffffffffffffffffffffffffffffffffffff16610c57611a62565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca4906156a4565b60405180910390fd5b600115158115151415610cc757610cc2612b40565b610cd0565b610ccf612be3565b5b50565b610cdb612b38565b73ffffffffffffffffffffffffffffffffffffffff16610cf9611a62565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906156a4565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b606060008054610d7b90615b22565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790615b22565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b5050505050905090565b6000610e0982612c85565b610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90615684565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e8e8261166d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690615744565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f1e612b38565b73ffffffffffffffffffffffffffffffffffffffff161480610f4d5750610f4c81610f47612b38565b612364565b5b610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390615604565b60405180910390fd5b610f968383612cf1565b505050565b61068281565b6000600880549050905090565b610fbf610fb9612b38565b82612daa565b610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590615784565b60405180910390fd5b611009838383612e88565b505050565b60006110198361171f565b821061105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906154a4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006110bf600c6130e4565b600e546110cc9190615a38565b905090565b6110d9612b38565b73ffffffffffffffffffffffffffffffffffffffff166110f7611a62565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611144906156a4565b60405180910390fd5b8060128190555050565b61115f612b38565b73ffffffffffffffffffffffffffffffffffffffff1661117d611a62565b73ffffffffffffffffffffffffffffffffffffffff16146111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906156a4565b60405180910390fd5b80600e8190555050565b6111e5612b38565b73ffffffffffffffffffffffffffffffffffffffff16611203611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906156a4565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611a0a6112bf6130f2565b1115611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790615724565b60405180910390fd5b611308611a62565b73ffffffffffffffffffffffffffffffffffffffff16611326612b38565b73ffffffffffffffffffffffffffffffffffffffff161461138a57611349611650565b15611389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611380906155c4565b60405180910390fd5b5b61139482826124ba565b5050565b6113b383838360405180602001604052806000815250611ebb565b505050565b6113c96113c3612b38565b82612daa565b611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90615804565b60405180910390fd5b61141181613103565b50565b606060006114218361171f565b905060008167ffffffffffffffff811115611465577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114935781602001602082028036833780820191505090505b50905060005b82811015611503576114ab858261100e565b8282815181106114e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114fb90615b54565b915050611499565b508092505050919050565b6000611518610fa1565b8210611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906157a4565b60405180910390fd5b60088281548110611593577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6115ad612b38565b73ffffffffffffffffffffffffffffffffffffffff166115cb611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906156a4565b60405180910390fd5b806010908051906020019061163792919061425c565b5050565b611a0a81565b600061164b6130f2565b905090565b6000600a60149054906101000a900460ff16905090565b60125481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90615644565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790615624565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117df612b38565b73ffffffffffffffffffffffffffffffffffffffff166117fd611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906156a4565b60405180910390fd5b61185d6000613214565b565b600281565b61186c612b38565b73ffffffffffffffffffffffffffffffffffffffff1661188a611a62565b73ffffffffffffffffffffffffffffffffffffffff16146118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906156a4565b60405180910390fd5b60006118ea6130f2565b9050611a0a83826118fb9190615957565b111561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390615584565b60405180910390fd5b60005b8381101561196357611950836132da565b808061195b90615b54565b91505061193f565b50505050565b611971612b38565b73ffffffffffffffffffffffffffffffffffffffff1661198f611a62565b73ffffffffffffffffffffffffffffffffffffffff16146119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc906156a4565b60405180910390fd5b6000479050600081116119f757600080fd5b611a3b7324b227b3da037fa73d980469292a288c018321d8611a366064611a2860288661332b90919063ffffffff16565b61334190919063ffffffff16565b613357565b611a59733200d0a67919aff1314a86e8085eddd01f17586047613357565b50565b60135481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a94612b38565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906156a4565b60405180910390fd5b8060138190555050565b606060018054611b2190615b22565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4d90615b22565b8015611b9a5780601f10611b6f57610100808354040283529160200191611b9a565b820191906000526020600020905b815481529060010190602001808311611b7d57829003601f168201915b5050505050905090565b611a0a611baf6130f2565b1115611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790615724565b60405180910390fd5b611bf8611a62565b73ffffffffffffffffffffffffffffffffffffffff16611c16612b38565b73ffffffffffffffffffffffffffffffffffffffff1614611c7a57611c39611650565b15611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c70906155c4565b60405180910390fd5b5b6000611c846130f2565b905060011515600f60009054906101000a900460ff16151514611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd3906155e4565b60405180910390fd5b6106828282611ceb9190615957565b1115611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390615584565b60405180910390fd5b6002821115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790615484565b60405180910390fd5b611d858260125461332b90919063ffffffff16565b341015611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90615704565b60405180910390fd5b60005b82811015611dee57611ddb846132da565b8080611de690615b54565b915050611dca565b50505050565b611e06611dff612b38565b8383613408565b5050565b7324b227b3da037fa73d980469292a288c018321d881565b611e2a612b38565b73ffffffffffffffffffffffffffffffffffffffff16611e48611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906156a4565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b611ecc611ec6612b38565b83612daa565b611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290615784565b60405180910390fd5b611f1784848484613575565b50505050565b61022b81565b611f2b612b38565b73ffffffffffffffffffffffffffffffffffffffff16611f49611a62565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f96906156a4565b60405180910390fd5b6001600f60026101000a81548160ff021916908315150217905550565b6060611fc782612c85565b612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd906156e4565b60405180910390fd5b60006120106135d1565b90506000815111612030576040518060200160405280600081525061205b565b8061203a84613663565b60405160200161204b92919061530e565b6040516020818303038152906040525b915050919050565b6010805461207090615b22565b80601f016020809104026020016040519081016040528092919081815260200182805461209c90615b22565b80156120e95780601f106120be576101008083540402835291602001916120e9565b820191906000526020600020905b8154815290600101906020018083116120cc57829003601f168201915b505050505081565b611a0a6120fc6130f2565b111561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490615724565b60405180910390fd5b612145611a62565b73ffffffffffffffffffffffffffffffffffffffff16612163612b38565b73ffffffffffffffffffffffffffffffffffffffff16146121c757612186611650565b156121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd906155c4565b60405180910390fd5b5b60006121d16130f2565b905060011515600f60029054906101000a900460ff16151514612229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612220906155e4565b60405180910390fd5b61022b82826122389190615957565b1115612279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227090615584565b60405180910390fd5b60028211156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490615484565b60405180910390fd5b6122d28260115461332b90919063ffffffff16565b341015612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90615704565b60405180910390fd5b60005b8281101561233b57612328846132da565b808061233390615b54565b915050612317565b50505050565b600281565b60115481565b733200d0a67919aff1314a86e8085eddd01f17586081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006124038461166d565b90508073ffffffffffffffffffffffffffffffffffffffff16612424612b38565b73ffffffffffffffffffffffffffffffffffffffff161461247a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247190615524565b60405180910390fd5b837f071e2b5b04043a73f97c13dbdcd19e7f2d114c2277c6f5d4c6403e547756e45d84846040516124ac92919061540d565b60405180910390a250505050565b611a0a6124c56130f2565b1115612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fd90615724565b60405180910390fd5b61250e611a62565b73ffffffffffffffffffffffffffffffffffffffff1661252c612b38565b73ffffffffffffffffffffffffffffffffffffffff16146125905761254f611650565b1561258f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612586906155c4565b60405180910390fd5b5b600061259a6130f2565b905060011515600f60019054906101000a900460ff161515146125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e9906155e4565b60405180910390fd5b611a0a82826126019190615957565b1115612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990615584565b60405180910390fd5b6014821115612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d90615484565b60405180910390fd5b61269b8260135461332b90919063ffffffff16565b3410156126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490615704565b60405180910390fd5b60005b82811015612704576126f1846132da565b80806126fc90615b54565b9150506126e0565b50505050565b601481565b612717612b38565b73ffffffffffffffffffffffffffffffffffffffff16612735611a62565b73ffffffffffffffffffffffffffffffffffffffff161461278b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612782906156a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f2906154e4565b60405180910390fd5b61280481613214565b50565b611a0a6128126130f2565b1115612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a90615724565b60405180910390fd5b61285b611a62565b73ffffffffffffffffffffffffffffffffffffffff16612879612b38565b73ffffffffffffffffffffffffffffffffffffffff16146128dd5761289c611650565b156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d3906155c4565b60405180910390fd5b5b60006128e76130f2565b9050611a0a6001826128f99190615957565b111561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190615584565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bd906157e4565b60405180910390fd5b600e5460016129d5600c6130e4565b6129df9190615957565b1115612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a17906157c4565b60405180910390fd5b612a2a600c613810565b612a33836132da565b505050565b612a40612b38565b73ffffffffffffffffffffffffffffffffffffffff16612a5e611a62565b73ffffffffffffffffffffffffffffffffffffffff1614612ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aab906156a4565b60405180910390fd5b8060118190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b315750612b3082613826565b5b9050919050565b600033905090565b612b48611650565b15612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f906155c4565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bcc612b38565b604051612bd99190615347565b60405180910390a1565b612beb611650565b612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2190615464565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c6e612b38565b604051612c7b9190615347565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d648361166d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612db582612c85565b612df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612deb906155a4565b60405180910390fd5b6000612dff8361166d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e6e57508373ffffffffffffffffffffffffffffffffffffffff16612e5684610dfe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e7f5750612e7e8185612364565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ea88261166d565b73ffffffffffffffffffffffffffffffffffffffff1614612efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef5906156c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6590615544565b60405180910390fd5b612f79838383613908565b612f84600082612cf1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd49190615a38565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302b9190615957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60006130fe600b6130e4565b905090565b600061310e8261166d565b905061311c81600084613908565b613127600083612cf1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131779190615a38565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006132e46130f2565b90506132f0600b613810565b6132fa8282613918565b807f754c1a3093a7e3683c2ed81797540ef2ca4241336198c8bf8f502ed458edc83060405160405180910390a25050565b6000818361333991906159de565b905092915050565b6000818361334f91906159ad565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161337d90615332565b60006040518083038185875af1925050503d80600081146133ba576040519150601f19603f3d011682016040523d82523d6000602084013e6133bf565b606091505b5050905080613403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fa90615764565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e90615564565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161356891906153d0565b60405180910390a3505050565b613580848484612e88565b61358c84848484613936565b6135cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c2906154c4565b60405180910390fd5b50505050565b6060601080546135e090615b22565b80601f016020809104026020016040519081016040528092919081815260200182805461360c90615b22565b80156136595780601f1061362e57610100808354040283529160200191613659565b820191906000526020600020905b81548152906001019060200180831161363c57829003601f168201915b5050505050905090565b606060008214156136ab576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061380b565b600082905060005b600082146136dd5780806136c690615b54565b915050600a826136d691906159ad565b91506136b3565b60008167ffffffffffffffff81111561371f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137515781602001600182028036833780820191505090505b5090505b600085146138045760018261376a9190615a38565b9150600a856137799190615b9d565b60306137859190615957565b60f81b8183815181106137c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137fd91906159ad565b9450613755565b8093505050505b919050565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806138f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613901575061390082613acd565b5b9050919050565b613913838383613b37565b505050565b613932828260405180602001604052806000815250613b8f565b5050565b60006139578473ffffffffffffffffffffffffffffffffffffffff16613bea565b15613ac0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613980612b38565b8786866040518563ffffffff1660e01b81526004016139a29493929190615362565b602060405180830381600087803b1580156139bc57600080fd5b505af19250505080156139ed57506040513d601f19601f820116820180604052508101906139ea9190614631565b60015b613a70573d8060008114613a1d576040519150601f19603f3d011682016040523d82523d6000602084013e613a22565b606091505b50600081511415613a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5f906154c4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613ac5565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613b42838383613bfd565b613b4a611650565b15613b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8190615444565b60405180910390fd5b505050565b613b998383613d11565b613ba66000848484613936565b613be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bdc906154c4565b60405180910390fd5b505050565b600080823b905060008111915050919050565b613c08838383613edf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c4b57613c4681613ee4565b613c8a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613c8957613c888382613f2d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ccd57613cc88161409a565b613d0c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613d0b57613d0a82826141dd565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7890615664565b60405180910390fd5b613d8a81612c85565b15613dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc190615504565b60405180910390fd5b613dd660008383613908565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e269190615957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613f3a8461171f565b613f449190615a38565b9050600060076000848152602001908152602001600020549050818114614029576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506140ae9190615a38565b9050600060096000848152602001908152602001600020549050600060088381548110614104577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061414c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806141c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006141e88361171f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461426890615b22565b90600052602060002090601f01602090048101928261428a57600085556142d1565b82601f106142a357805160ff19168380011785556142d1565b828001600101855582156142d1579182015b828111156142d05782518255916020019190600101906142b5565b5b5090506142de91906142e2565b5090565b5b808211156142fb5760008160009055506001016142e3565b5090565b600061431261430d84615870565b61583f565b90508281526020810184848401111561432a57600080fd5b614335848285615ae0565b509392505050565b600061435061434b846158a0565b61583f565b90508281526020810184848401111561436857600080fd5b614373848285615ae0565b509392505050565b60008135905061438a81615c9b565b92915050565b60008135905061439f81615cb2565b92915050565b6000813590506143b481615cc9565b92915050565b6000815190506143c981615cc9565b92915050565b600082601f8301126143e057600080fd5b81356143f08482602086016142ff565b91505092915050565b600082601f83011261440a57600080fd5b813561441a84826020860161433d565b91505092915050565b60008135905061443281615ce0565b92915050565b60006020828403121561444a57600080fd5b60006144588482850161437b565b91505092915050565b6000806040838503121561447457600080fd5b60006144828582860161437b565b92505060206144938582860161437b565b9150509250929050565b6000806000606084860312156144b257600080fd5b60006144c08682870161437b565b93505060206144d18682870161437b565b92505060406144e286828701614423565b9150509250925092565b6000806000806080858703121561450257600080fd5b60006145108782880161437b565b94505060206145218782880161437b565b935050604061453287828801614423565b925050606085013567ffffffffffffffff81111561454f57600080fd5b61455b878288016143cf565b91505092959194509250565b6000806040838503121561457a57600080fd5b60006145888582860161437b565b925050602061459985828601614390565b9150509250929050565b600080604083850312156145b657600080fd5b60006145c48582860161437b565b92505060206145d585828601614423565b9150509250929050565b6000602082840312156145f157600080fd5b60006145ff84828501614390565b91505092915050565b60006020828403121561461a57600080fd5b6000614628848285016143a5565b91505092915050565b60006020828403121561464357600080fd5b6000614651848285016143ba565b91505092915050565b60006020828403121561466c57600080fd5b600082013567ffffffffffffffff81111561468657600080fd5b614692848285016143f9565b91505092915050565b6000602082840312156146ad57600080fd5b60006146bb84828501614423565b91505092915050565b600080604083850312156146d757600080fd5b60006146e585828601614423565b92505060206146f68582860161437b565b9150509250929050565b60008060006060848603121561471557600080fd5b600061472386828701614423565b935050602084013567ffffffffffffffff81111561474057600080fd5b61474c868287016143f9565b925050604084013567ffffffffffffffff81111561476957600080fd5b614775868287016143f9565b9150509250925092565b600061478b83836152f0565b60208301905092915050565b6147a081615a6c565b82525050565b60006147b1826158e0565b6147bb818561590e565b93506147c6836158d0565b8060005b838110156147f75781516147de888261477f565b97506147e983615901565b9250506001810190506147ca565b5085935050505092915050565b61480d81615a7e565b82525050565b600061481e826158eb565b614828818561591f565b9350614838818560208601615aef565b61484181615c8a565b840191505092915050565b6000614857826158f6565b614861818561593b565b9350614871818560208601615aef565b61487a81615c8a565b840191505092915050565b6000614890826158f6565b61489a818561594c565b93506148aa818560208601615aef565b80840191505092915050565b60006148c3602b8361593b565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b600061492960148361593b565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614969600e8361593b565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b60006149a9602b8361593b565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614a0f60328361593b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614a7560268361593b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614adb601c8361593b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614b1b601c8361593b565b91507f54686973206973206e6f7420796f75722041706556616d706972652e000000006000830152602082019050919050565b6000614b5b60248361593b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bc160198361593b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614c0160098361593b565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614c41602c8361593b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ca760108361593b565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614ce760108361593b565b91507f53616c65206e6f742073746172746564000000000000000000000000000000006000830152602082019050919050565b6000614d2760388361593b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614d8d602a8361593b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614df360298361593b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e5960208361593b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614e99602c8361593b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614eff60208361593b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614f3f60298361593b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614fa5602f8361593b565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061500b600b8361593b565b91507f42656c6f772070726963650000000000000000000000000000000000000000006000830152602082019050919050565b600061504b600a8361593b565b91507f53616c6520656e646564000000000000000000000000000000000000000000006000830152602082019050919050565b600061508b60218361593b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150f1600083615930565b9150600082019050919050565b600061510b60108361593b565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b600061514b60318361593b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006151b1602c8361593b565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615217600a8361593b565b91507f46726565206c696d6974000000000000000000000000000000000000000000006000830152602082019050919050565b600061525760108361593b565b91507f6e6f7420696e2077686974656c697374000000000000000000000000000000006000830152602082019050919050565b600061529760308361593b565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b6152f981615ad6565b82525050565b61530881615ad6565b82525050565b600061531a8285614885565b91506153268284614885565b91508190509392505050565b600061533d826150e4565b9150819050919050565b600060208201905061535c6000830184614797565b92915050565b60006080820190506153776000830187614797565b6153846020830186614797565b61539160408301856152ff565b81810360608301526153a38184614813565b905095945050505050565b600060208201905081810360008301526153c881846147a6565b905092915050565b60006020820190506153e56000830184614804565b92915050565b60006020820190508181036000830152615405818461484c565b905092915050565b60006040820190508181036000830152615427818561484c565b9050818103602083015261543b818461484c565b90509392505050565b6000602082019050818103600083015261545d816148b6565b9050919050565b6000602082019050818103600083015261547d8161491c565b9050919050565b6000602082019050818103600083015261549d8161495c565b9050919050565b600060208201905081810360008301526154bd8161499c565b9050919050565b600060208201905081810360008301526154dd81614a02565b9050919050565b600060208201905081810360008301526154fd81614a68565b9050919050565b6000602082019050818103600083015261551d81614ace565b9050919050565b6000602082019050818103600083015261553d81614b0e565b9050919050565b6000602082019050818103600083015261555d81614b4e565b9050919050565b6000602082019050818103600083015261557d81614bb4565b9050919050565b6000602082019050818103600083015261559d81614bf4565b9050919050565b600060208201905081810360008301526155bd81614c34565b9050919050565b600060208201905081810360008301526155dd81614c9a565b9050919050565b600060208201905081810360008301526155fd81614cda565b9050919050565b6000602082019050818103600083015261561d81614d1a565b9050919050565b6000602082019050818103600083015261563d81614d80565b9050919050565b6000602082019050818103600083015261565d81614de6565b9050919050565b6000602082019050818103600083015261567d81614e4c565b9050919050565b6000602082019050818103600083015261569d81614e8c565b9050919050565b600060208201905081810360008301526156bd81614ef2565b9050919050565b600060208201905081810360008301526156dd81614f32565b9050919050565b600060208201905081810360008301526156fd81614f98565b9050919050565b6000602082019050818103600083015261571d81614ffe565b9050919050565b6000602082019050818103600083015261573d8161503e565b9050919050565b6000602082019050818103600083015261575d8161507e565b9050919050565b6000602082019050818103600083015261577d816150fe565b9050919050565b6000602082019050818103600083015261579d8161513e565b9050919050565b600060208201905081810360008301526157bd816151a4565b9050919050565b600060208201905081810360008301526157dd8161520a565b9050919050565b600060208201905081810360008301526157fd8161524a565b9050919050565b6000602082019050818103600083015261581d8161528a565b9050919050565b600060208201905061583960008301846152ff565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561586657615865615c5b565b5b8060405250919050565b600067ffffffffffffffff82111561588b5761588a615c5b565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156158bb576158ba615c5b565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061596282615ad6565b915061596d83615ad6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156159a2576159a1615bce565b5b828201905092915050565b60006159b882615ad6565b91506159c383615ad6565b9250826159d3576159d2615bfd565b5b828204905092915050565b60006159e982615ad6565b91506159f483615ad6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615a2d57615a2c615bce565b5b828202905092915050565b6000615a4382615ad6565b9150615a4e83615ad6565b925082821015615a6157615a60615bce565b5b828203905092915050565b6000615a7782615ab6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615b0d578082015181840152602081019050615af2565b83811115615b1c576000848401525b50505050565b60006002820490506001821680615b3a57607f821691505b60208210811415615b4e57615b4d615c2c565b5b50919050565b6000615b5f82615ad6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b9257615b91615bce565b5b600182019050919050565b6000615ba882615ad6565b9150615bb383615ad6565b925082615bc357615bc2615bfd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615ca481615a6c565b8114615caf57600080fd5b50565b615cbb81615a7e565b8114615cc657600080fd5b50565b615cd281615a8a565b8114615cdd57600080fd5b50565b615ce981615ad6565b8114615cf457600080fd5b5056fea2646970667358221220d1bb24a9dd7729b84a87b1bcc2ca63ff45c72011e8e73bb87d8459167eae046364736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f61706576616d70697265732e636f6d2f6a736f6e2f000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://apevampires.com/json/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [2] : 68747470733a2f2f61706576616d70697265732e636f6d2f6a736f6e2f000000


Deployed Bytecode Sourcemap

59146:6927:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65891:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60783:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62626:74;;;;;;;;;;;;;:::i;:::-;;36570:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38129:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37652:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59610:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52681:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38879:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52349:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61425:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64717:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61627:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61534:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63721:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39289:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58725:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64257:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52871:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64150:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59563:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61053:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15171:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60128:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36264:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35994:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13222:103;;;;;;;;;;;;;:::i;:::-;;59943:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61150:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65191:262;;;:::i;:::-;;60182:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12571:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64822:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36739:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62706:480;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38422:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59807:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63192:68;;;;;;;;;;;;;:::i;:::-;;39545:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59665:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62067:74;;;;;;;;;;;;;:::i;:::-;;36914:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60043:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62147:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59994:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60076:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59717:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38648:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64912:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63266:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59899:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13480:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61716:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64616:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65891:179;66002:4;66026:36;66050:11;66026:23;:36::i;:::-;66019:43;;65891:179;;;:::o;60783:154::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60847:4:::1;60840:11;;:3;:11;;;60836:73;;;60868:8;:6;:8::i;:::-;60891:7;;60836:73;60919:10;:8;:10::i;:::-;12862:1;60783:154:::0;:::o;62626:74::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62688:4:::1;62678:7;;:14;;;;;;;;;;;;;;;;;;62626:74::o:0;36570:100::-;36624:13;36657:5;36650:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36570:100;:::o;38129:221::-;38205:7;38233:16;38241:7;38233;:16::i;:::-;38225:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38318:15;:24;38334:7;38318:24;;;;;;;;;;;;;;;;;;;;;38311:31;;38129:221;;;:::o;37652:411::-;37733:13;37749:23;37764:7;37749:14;:23::i;:::-;37733:39;;37797:5;37791:11;;:2;:11;;;;37783:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37891:5;37875:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37900:37;37917:5;37924:12;:10;:12::i;:::-;37900:16;:37::i;:::-;37875:62;37853:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;38034:21;38043:2;38047:7;38034:8;:21::i;:::-;37652:411;;;:::o;59610:48::-;59654:4;59610:48;:::o;52681:113::-;52742:7;52769:10;:17;;;;52762:24;;52681:113;:::o;38879:339::-;39074:41;39093:12;:10;:12::i;:::-;39107:7;39074:18;:41::i;:::-;39066:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;39182:28;39192:4;39198:2;39202:7;39182:9;:28::i;:::-;38879:339;;;:::o;52349:256::-;52446:7;52482:23;52499:5;52482:16;:23::i;:::-;52474:5;:31;52466:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;52571:12;:19;52584:5;52571:19;;;;;;;;;;;;;;;:26;52591:5;52571:26;;;;;;;;;;;;52564:33;;52349:256;;;;:::o;61425:103::-;61467:4;61500:20;:10;:18;:20::i;:::-;61491:6;;:29;;;;:::i;:::-;61484:36;;61425:103;:::o;64717:99::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64802:6:::1;64786:13;:22;;;;64717:99:::0;:::o;61627:83::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61696:6:::1;61689;:13;;;;61627:83:::0;:::o;61534:87::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61609:4:::1;61597:6;:11;61604:3;61597:11;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;61534:87:::0;:::o;63721:107::-;59599:4;60611:14;:12;:14::i;:::-;:27;;60603:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60684:7;:5;:7::i;:::-;60668:23;;:12;:10;:12::i;:::-;:23;;;60664:94;;60717:8;:6;:8::i;:::-;60716:9;60708:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60664:94;63801:19:::1;63809:3;63813:6;63801:7;:19::i;:::-;63721:107:::0;;:::o;39289:185::-;39427:39;39444:4;39450:2;39454:7;39427:39;;;;;;;;;;;;:16;:39::i;:::-;39289:185;;;:::o;58725:245::-;58843:41;58862:12;:10;:12::i;:::-;58876:7;58843:18;:41::i;:::-;58835:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;58948:14;58954:7;58948:5;:14::i;:::-;58725:245;:::o;64257:353::-;64319:16;64348:18;64369:17;64379:6;64369:9;:17::i;:::-;64348:38;;64399:25;64441:10;64427:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64399:53;;64468:9;64463:112;64487:10;64483:1;:14;64463:112;;;64533:30;64553:6;64561:1;64533:19;:30::i;:::-;64519:8;64528:1;64519:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;64499:3;;;;;:::i;:::-;;;;64463:112;;;;64594:8;64587:15;;;;64257:353;;;:::o;52871:233::-;52946:7;52982:30;:28;:30::i;:::-;52974:5;:38;52966:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;53079:10;53090:5;53079:17;;;;;;;;;;;;;;;;;;;;;;;;53072:24;;52871:233;;;:::o;64150:101::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64236:7:::1;64221:12;:22;;;;;;;;;;;;:::i;:::-;;64150:101:::0;:::o;59563:40::-;59599:4;59563:40;:::o;61053:91::-;61095:7;61122:14;:12;:14::i;:::-;61115:21;;61053:91;:::o;15171:86::-;15218:4;15242:7;;;;;;;;;;;15235:14;;15171:86;:::o;60128:35::-;;;;:::o;36264:239::-;36336:7;36356:13;36372:7;:16;36380:7;36372:16;;;;;;;;;;;;;;;;;;;;;36356:32;;36424:1;36407:19;;:5;:19;;;;36399:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36490:5;36483:12;;;36264:239;;;:::o;35994:208::-;36066:7;36111:1;36094:19;;:5;:19;;;;36086:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;36178:9;:16;36188:5;36178:16;;;;;;;;;;;;;;;;36171:23;;35994:208;;;:::o;13222:103::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13287:30:::1;13314:1;13287:18;:30::i;:::-;13222:103::o:0;59943:44::-;59986:1;59943:44;:::o;61150:269::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61228:13:::1;61244:14;:12;:14::i;:::-;61228:30;;59599:4;61285:6;61277:5;:14;;;;:::i;:::-;:27;;61269:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;61334:9;61329:83;61353:6;61349:1;:10;61329:83;;;61381:19;61396:3;61381:14;:19::i;:::-;61361:3;;;;;:::i;:::-;;;;61329:83;;;;12862:1;61150:269:::0;;:::o;65191:262::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65250:15:::1;65268:21;65250:39;;65318:1;65308:7;:11;65300:20;;;::::0;::::1;;65331:54;59850:42;65360:24;65380:3;65360:15;65372:2;65360:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;65331:10;:54::i;:::-;65396:49;59758:42;65423:21;65396:10;:49::i;:::-;12862:1;65191:262::o:0;60182:27::-;;;;:::o;12571:87::-;12617:7;12644:6;;;;;;;;;;;12637:13;;12571:87;:::o;64822:84::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64892:6:::1;64884:5;:14;;;;64822:84:::0;:::o;36739:104::-;36795:13;36828:7;36821:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36739:104;:::o;62706:480::-;59599:4;60611:14;:12;:14::i;:::-;:27;;60603:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60684:7;:5;:7::i;:::-;60668:23;;:12;:10;:12::i;:::-;:23;;;60664:94;;60717:8;:6;:8::i;:::-;60716:9;60708:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60664:94;62793:13:::1;62809:14;:12;:14::i;:::-;62793:30;;62853:4;62842:15;;:7;;;;;;;;;;;:15;;;62834:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;59654:4;62905:6;62897:5;:14;;;;:::i;:::-;:35;;62889:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;59986:1;62965:6;:26;;62957:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;63042:25;63060:6;63042:13;;:17;;:25;;;;:::i;:::-;63029:9;:38;;63021:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;63101:9;63096:83;63120:6;63116:1;:10;63096:83;;;63148:19;63163:3;63148:14;:19::i;:::-;63128:3;;;;;:::i;:::-;;;;63096:83;;;;60768:1;62706:480:::0;;:::o;38422:155::-;38517:52;38536:12;:10;:12::i;:::-;38550:8;38560;38517:18;:52::i;:::-;38422:155;;:::o;59807:85::-;59850:42;59807:85;:::o;63192:68::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63248:4:::1;63241;;:11;;;;;;;;;;;;;;;;;;63192:68::o:0;39545:328::-;39720:41;39739:12;:10;:12::i;:::-;39753:7;39720:18;:41::i;:::-;39712:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;39826:39;39840:4;39846:2;39850:7;39859:5;39826:13;:39::i;:::-;39545:328;;;;:::o;59665:45::-;59707:3;59665:45;:::o;62067:74::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62129:4:::1;62117:9;;:16;;;;;;;;;;;;;;;;;;62067:74::o:0;36914:334::-;36987:13;37021:16;37029:7;37021;:16::i;:::-;37013:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;37102:21;37126:10;:8;:10::i;:::-;37102:34;;37178:1;37160:7;37154:21;:25;:86;;;;;;;;;;;;;;;;;37206:7;37215:18;:7;:16;:18::i;:::-;37189:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37154:86;37147:93;;;36914:334;;;:::o;60043:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62147:474::-;59599:4;60611:14;:12;:14::i;:::-;:27;;60603:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60684:7;:5;:7::i;:::-;60668:23;;:12;:10;:12::i;:::-;:23;;;60664:94;;60717:8;:6;:8::i;:::-;60716:9;60708:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60664:94;62232:13:::1;62248:14;:12;:14::i;:::-;62232:30;;62294:4;62281:17;;:9;;;;;;;;;;;:17;;;62273:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59707:3;62346:6;62338:5;:14;;;;:::i;:::-;:33;;62330:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;60035:1;62404:6;:24;;62396:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;62479:23;62495:6;62479:11;;:15;;:23;;;;:::i;:::-;62466:9;:36;;62458:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;62536:9;62531:83;62555:6;62551:1;:10;62531:83;;;62583:19;62598:3;62583:14;:19::i;:::-;62563:3;;;;;:::i;:::-;;;;62531:83;;;;60768:1;62147:474:::0;;:::o;59994:42::-;60035:1;59994:42;:::o;60076:33::-;;;;:::o;59717:83::-;59758:42;59717:83;:::o;38648:164::-;38745:4;38769:18;:25;38788:5;38769:25;;;;;;;;;;;;;;;:35;38795:8;38769:35;;;;;;;;;;;;;;;;;;;;;;;;;38762:42;;38648:164;;;;:::o;64912:273::-;65012:13;65028:23;65043:7;65028:14;:23::i;:::-;65012:39;;65086:5;65070:21;;:12;:10;:12::i;:::-;:21;;;65062:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;65157:7;65140:37;65166:3;65171:5;65140:37;;;;;;;:::i;:::-;;;;;;;;64912:273;;;;:::o;63266:449::-;59599:4;60611:14;:12;:14::i;:::-;:27;;60603:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60684:7;:5;:7::i;:::-;60668:23;;:12;:10;:12::i;:::-;:23;;;60664:94;;60717:8;:6;:8::i;:::-;60716:9;60708:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60664:94;63349:13:::1;63365:14;:12;:14::i;:::-;63349:30;;63406:4;63398:12;;:4;;;;;;;;;;;:12;;;63390:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;59599:4;63458:6;63450:5;:14;;;;:::i;:::-;:27;;63442:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;59934:2;63510:6;:18;;63502:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;63579:17;63589:6;63579:5;;:9;;:17;;;;:::i;:::-;63566:9;:30;;63558:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;63630:9;63625:83;63649:6;63645:1;:10;63625:83;;;63677:19;63692:3;63677:14;:19::i;:::-;63657:3;;;;;:::i;:::-;;;;63625:83;;;;60768:1;63266:449:::0;;:::o;59899:37::-;59934:2;59899:37;:::o;13480:201::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13589:1:::1;13569:22;;:8;:22;;;;13561:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13645:28;13664:8;13645:18;:28::i;:::-;13480:201:::0;:::o;61716:345::-;59599:4;60611:14;:12;:14::i;:::-;:27;;60603:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60684:7;:5;:7::i;:::-;60668:23;;:12;:10;:12::i;:::-;:23;;;60664:94;;60717:8;:6;:8::i;:::-;60716:9;60708:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60664:94;61788:13:::1;61804:14;:12;:14::i;:::-;61788:30;;59599:4;61845:1;61837:5;:9;;;;:::i;:::-;:22;;61829:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;61892:6;:11;61899:3;61892:11;;;;;;;;;;;;;;;;;;;;;;;;;61884:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;61969:6;;61964:1;61943:20;:10;:18;:20::i;:::-;:22;;;;:::i;:::-;:32;;61935:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;62001:22;:10;:20;:22::i;:::-;62034:19;62049:3;62034:14;:19::i;:::-;60768:1;61716:345:::0;;:::o;64616:95::-;12802:12;:10;:12::i;:::-;12791:23;;:7;:5;:7::i;:::-;:23;;;12783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64697:6:::1;64683:11;:20;;;;64616:95:::0;:::o;52041:224::-;52143:4;52182:35;52167:50;;;:11;:50;;;;:90;;;;52221:36;52245:11;52221:23;:36::i;:::-;52167:90;52160:97;;52041:224;;;:::o;11295:98::-;11348:7;11375:10;11368:17;;11295:98;:::o;15971:118::-;15497:8;:6;:8::i;:::-;15496:9;15488:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;16041:4:::1;16031:7;;:14;;;;;;;;;;;;;;;;;;16061:20;16068:12;:10;:12::i;:::-;16061:20;;;;;;:::i;:::-;;;;;;;;15971:118::o:0;16230:120::-;15774:8;:6;:8::i;:::-;15766:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;16299:5:::1;16289:7;;:15;;;;;;;;;;;;;;;;;;16320:22;16329:12;:10;:12::i;:::-;16320:22;;;;;;:::i;:::-;;;;;;;;16230:120::o:0;41383:127::-;41448:4;41500:1;41472:30;;:7;:16;41480:7;41472:16;;;;;;;;;;;;;;;;;;;;;:30;;;;41465:37;;41383:127;;;:::o;45365:174::-;45467:2;45440:15;:24;45456:7;45440:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45523:7;45519:2;45485:46;;45494:23;45509:7;45494:14;:23::i;:::-;45485:46;;;;;;;;;;;;45365:174;;:::o;41677:348::-;41770:4;41795:16;41803:7;41795;:16::i;:::-;41787:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41871:13;41887:23;41902:7;41887:14;:23::i;:::-;41871:39;;41940:5;41929:16;;:7;:16;;;:51;;;;41973:7;41949:31;;:20;41961:7;41949:11;:20::i;:::-;:31;;;41929:51;:87;;;;41984:32;42001:5;42008:7;41984:16;:32::i;:::-;41929:87;41921:96;;;41677:348;;;;:::o;44669:578::-;44828:4;44801:31;;:23;44816:7;44801:14;:23::i;:::-;:31;;;44793:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;44911:1;44897:16;;:2;:16;;;;44889:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44967:39;44988:4;44994:2;44998:7;44967:20;:39::i;:::-;45071:29;45088:1;45092:7;45071:8;:29::i;:::-;45132:1;45113:9;:15;45123:4;45113:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;45161:1;45144:9;:13;45154:2;45144:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;45192:2;45173:7;:16;45181:7;45173:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;45231:7;45227:2;45212:27;;45221:4;45212:27;;;;;;;;;;;;44669:578;;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;60943:104::-;60990:4;61014:25;:15;:23;:25::i;:::-;61007:32;;60943:104;:::o;43972:360::-;44032:13;44048:23;44063:7;44048:14;:23::i;:::-;44032:39;;44084:48;44105:5;44120:1;44124:7;44084:20;:48::i;:::-;44173:29;44190:1;44194:7;44173:8;:29::i;:::-;44235:1;44215:9;:16;44225:5;44215:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;44254:7;:16;44262:7;44254:16;;;;;;;;;;;;44247:23;;;;;;;;;;;44316:7;44312:1;44288:36;;44297:5;44288:36;;;;;;;;;;;;43972:360;;:::o;13841:191::-;13915:16;13934:6;;;;;;;;;;;13915:25;;13960:8;13951:6;;:17;;;;;;;;;;;;;;;;;;14015:8;13984:40;;14005:8;13984:40;;;;;;;;;;;;13841:191;;:::o;63834:::-;63890:7;63900:14;:12;:14::i;:::-;63890:24;;63925:27;:15;:25;:27::i;:::-;63963:18;63973:3;63978:2;63963:9;:18::i;:::-;64014:2;63997:20;;;;;;;;;;63834:191;;:::o;5065:98::-;5123:7;5154:1;5150;:5;;;;:::i;:::-;5143:12;;5065:98;;;;:::o;5464:::-;5522:7;5553:1;5549;:5;;;;:::i;:::-;5542:12;;5464:98;;;;:::o;65459:181::-;65534:12;65551:8;:13;;65573:7;65551:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65533:52;;;65604:7;65596:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;65459:181;;;:::o;45681:315::-;45836:8;45827:17;;:5;:17;;;;45819:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45923:8;45885:18;:25;45904:5;45885:25;;;;;;;;;;;;;;;:35;45911:8;45885:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45969:8;45947:41;;45962:5;45947:41;;;45979:8;45947:41;;;;;;:::i;:::-;;;;;;;;45681:315;;;:::o;40755:::-;40912:28;40922:4;40928:2;40932:7;40912:9;:28::i;:::-;40959:48;40982:4;40988:2;40992:7;41001:5;40959:22;:48::i;:::-;40951:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;40755:315;;;;:::o;64031:113::-;64091:13;64124:12;64117:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64031:113;:::o;8857:723::-;8913:13;9143:1;9134:5;:10;9130:53;;;9161:10;;;;;;;;;;;;;;;;;;;;;9130:53;9193:12;9208:5;9193:20;;9224:14;9249:78;9264:1;9256:4;:9;9249:78;;9282:8;;;;;:::i;:::-;;;;9313:2;9305:10;;;;;:::i;:::-;;;9249:78;;;9337:19;9369:6;9359:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9337:39;;9387:154;9403:1;9394:5;:10;9387:154;;9431:1;9421:11;;;;;:::i;:::-;;;9498:2;9490:5;:10;;;;:::i;:::-;9477:2;:24;;;;:::i;:::-;9464:39;;9447:6;9454;9447:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;9527:2;9518:11;;;;;:::i;:::-;;;9387:154;;;9565:6;9551:21;;;;;8857:723;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;35625:305::-;35727:4;35779:25;35764:40;;;:11;:40;;;;:105;;;;35836:33;35821:48;;;:11;:48;;;;35764:105;:158;;;;35886:36;35910:11;35886:23;:36::i;:::-;35764:158;35744:178;;35625:305;;;:::o;65646:239::-;65832:45;65859:4;65865:2;65869:7;65832:26;:45::i;:::-;65646:239;;;:::o;42367:110::-;42443:26;42453:2;42457:7;42443:26;;;;;;;;;;;;:9;:26::i;:::-;42367:110;;:::o;46561:799::-;46716:4;46737:15;:2;:13;;;:15::i;:::-;46733:620;;;46789:2;46773:36;;;46810:12;:10;:12::i;:::-;46824:4;46830:7;46839:5;46773:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46769:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47032:1;47015:6;:13;:18;47011:272;;;47058:60;;;;;;;;;;:::i;:::-;;;;;;;;47011:272;47233:6;47227:13;47218:6;47214:2;47210:15;47203:38;46769:529;46906:41;;;46896:51;;;:6;:51;;;;46889:58;;;;;46733:620;47337:4;47330:11;;46561:799;;;;;;;:::o;27321:157::-;27406:4;27445:25;27430:40;;;:11;:40;;;;27423:47;;27321:157;;;:::o;50748:275::-;50892:45;50919:4;50925:2;50929:7;50892:26;:45::i;:::-;50959:8;:6;:8::i;:::-;50958:9;50950:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50748:275;;;:::o;42704:321::-;42834:18;42840:2;42844:7;42834:5;:18::i;:::-;42885:54;42916:1;42920:2;42924:7;42933:5;42885:22;:54::i;:::-;42863:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;42704:321;;;:::o;17177:387::-;17237:4;17445:12;17512:7;17500:20;17492:28;;17555:1;17548:4;:8;17541:15;;;17177:387;;;:::o;53717:589::-;53861:45;53888:4;53894:2;53898:7;53861:26;:45::i;:::-;53939:1;53923:18;;:4;:18;;;53919:187;;;53958:40;53990:7;53958:31;:40::i;:::-;53919:187;;;54028:2;54020:10;;:4;:10;;;54016:90;;54047:47;54080:4;54086:7;54047:32;:47::i;:::-;54016:90;53919:187;54134:1;54120:16;;:2;:16;;;54116:183;;;54153:45;54190:7;54153:36;:45::i;:::-;54116:183;;;54226:4;54220:10;;:2;:10;;;54216:83;;54247:40;54275:2;54279:7;54247:27;:40::i;:::-;54216:83;54116:183;53717:589;;;:::o;43361:382::-;43455:1;43441:16;;:2;:16;;;;43433:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43514:16;43522:7;43514;:16::i;:::-;43513:17;43505:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43576:45;43605:1;43609:2;43613:7;43576:20;:45::i;:::-;43651:1;43634:9;:13;43644:2;43634:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43682:2;43663:7;:16;43671:7;43663:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43727:7;43723:2;43702:33;;43719:1;43702:33;;;;;;;;;;;;43361:382;;:::o;47932:126::-;;;;:::o;55029:164::-;55133:10;:17;;;;55106:15;:24;55122:7;55106:24;;;;;;;;;;;:44;;;;55161:10;55177:7;55161:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55029:164;:::o;55820:988::-;56086:22;56136:1;56111:22;56128:4;56111:16;:22::i;:::-;:26;;;;:::i;:::-;56086:51;;56148:18;56169:17;:26;56187:7;56169:26;;;;;;;;;;;;56148:47;;56316:14;56302:10;:28;56298:328;;56347:19;56369:12;:18;56382:4;56369:18;;;;;;;;;;;;;;;:34;56388:14;56369:34;;;;;;;;;;;;56347:56;;56453:11;56420:12;:18;56433:4;56420:18;;;;;;;;;;;;;;;:30;56439:10;56420:30;;;;;;;;;;;:44;;;;56570:10;56537:17;:30;56555:11;56537:30;;;;;;;;;;;:43;;;;56298:328;;56722:17;:26;56740:7;56722:26;;;;;;;;;;;56715:33;;;56766:12;:18;56779:4;56766:18;;;;;;;;;;;;;;;:34;56785:14;56766:34;;;;;;;;;;;56759:41;;;55820:988;;;;:::o;57103:1079::-;57356:22;57401:1;57381:10;:17;;;;:21;;;;:::i;:::-;57356:46;;57413:18;57434:15;:24;57450:7;57434:24;;;;;;;;;;;;57413:45;;57785:19;57807:10;57818:14;57807:26;;;;;;;;;;;;;;;;;;;;;;;;57785:48;;57871:11;57846:10;57857;57846:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;57982:10;57951:15;:28;57967:11;57951:28;;;;;;;;;;;:41;;;;58123:15;:24;58139:7;58123:24;;;;;;;;;;;58116:31;;;58158:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57103:1079;;;;:::o;54607:221::-;54692:14;54709:20;54726:2;54709:16;:20::i;:::-;54692:37;;54767:7;54740:12;:16;54753:2;54740:16;;;;;;;;;;;;;;;:24;54757:6;54740:24;;;;;;;;;;;:34;;;;54814:6;54785:17;:26;54803:7;54785:26;;;;;;;;;;;:35;;;;54607:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:407::-;;;6471:2;6459:9;6450:7;6446:23;6442:32;6439:2;;;6487:1;6484;6477:12;6439:2;6530:1;6555:53;6600:7;6591:6;6580:9;6576:22;6555:53;:::i;:::-;6545:63;;6501:117;6657:2;6683:53;6728:7;6719:6;6708:9;6704:22;6683:53;:::i;:::-;6673:63;;6628:118;6429:324;;;;;:::o;6759:778::-;;;;6921:2;6909:9;6900:7;6896:23;6892:32;6889:2;;;6937:1;6934;6927:12;6889:2;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7135:2;7124:9;7120:18;7107:32;7166:18;7158:6;7155:30;7152:2;;;7198:1;7195;7188:12;7152:2;7226:63;7281:7;7272:6;7261:9;7257:22;7226:63;:::i;:::-;7216:73;;7078:221;7366:2;7355:9;7351:18;7338:32;7397:18;7389:6;7386:30;7383:2;;;7429:1;7426;7419:12;7383:2;7457:63;7512:7;7503:6;7492:9;7488:22;7457:63;:::i;:::-;7447:73;;7309:221;6879:658;;;;;:::o;7543:179::-;;7633:46;7675:3;7667:6;7633:46;:::i;:::-;7711:4;7706:3;7702:14;7688:28;;7623:99;;;;:::o;7728:118::-;7815:24;7833:5;7815:24;:::i;:::-;7810:3;7803:37;7793:53;;:::o;7882:732::-;;8030:54;8078:5;8030:54;:::i;:::-;8100:86;8179:6;8174:3;8100:86;:::i;:::-;8093:93;;8210:56;8260:5;8210:56;:::i;:::-;8289:7;8320:1;8305:284;8330:6;8327:1;8324:13;8305:284;;;8406:6;8400:13;8433:63;8492:3;8477:13;8433:63;:::i;:::-;8426:70;;8519:60;8572:6;8519:60;:::i;:::-;8509:70;;8365:224;8352:1;8349;8345:9;8340:14;;8305:284;;;8309:14;8605:3;8598:10;;8006:608;;;;;;;:::o;8620:109::-;8701:21;8716:5;8701:21;:::i;:::-;8696:3;8689:34;8679:50;;:::o;8735:360::-;;8849:38;8881:5;8849:38;:::i;:::-;8903:70;8966:6;8961:3;8903:70;:::i;:::-;8896:77;;8982:52;9027:6;9022:3;9015:4;9008:5;9004:16;8982:52;:::i;:::-;9059:29;9081:6;9059:29;:::i;:::-;9054:3;9050:39;9043:46;;8825:270;;;;;:::o;9101:364::-;;9217:39;9250:5;9217:39;:::i;:::-;9272:71;9336:6;9331:3;9272:71;:::i;:::-;9265:78;;9352:52;9397:6;9392:3;9385:4;9378:5;9374:16;9352:52;:::i;:::-;9429:29;9451:6;9429:29;:::i;:::-;9424:3;9420:39;9413:46;;9193:272;;;;;:::o;9471:377::-;;9605:39;9638:5;9605:39;:::i;:::-;9660:89;9742:6;9737:3;9660:89;:::i;:::-;9653:96;;9758:52;9803:6;9798:3;9791:4;9784:5;9780:16;9758:52;:::i;:::-;9835:6;9830:3;9826:16;9819:23;;9581:267;;;;;:::o;9854:375::-;;10017:67;10081:2;10076:3;10017:67;:::i;:::-;10010:74;;10114:34;10110:1;10105:3;10101:11;10094:55;10180:13;10175:2;10170:3;10166:12;10159:35;10220:2;10215:3;10211:12;10204:19;;10000:229;;;:::o;10235:318::-;;10398:67;10462:2;10457:3;10398:67;:::i;:::-;10391:74;;10495:22;10491:1;10486:3;10482:11;10475:43;10544:2;10539:3;10535:12;10528:19;;10381:172;;;:::o;10559:312::-;;10722:67;10786:2;10781:3;10722:67;:::i;:::-;10715:74;;10819:16;10815:1;10810:3;10806:11;10799:37;10862:2;10857:3;10853:12;10846:19;;10705:166;;;:::o;10877:375::-;;11040:67;11104:2;11099:3;11040:67;:::i;:::-;11033:74;;11137:34;11133:1;11128:3;11124:11;11117:55;11203:13;11198:2;11193:3;11189:12;11182:35;11243:2;11238:3;11234:12;11227:19;;11023:229;;;:::o;11258:382::-;;11421:67;11485:2;11480:3;11421:67;:::i;:::-;11414:74;;11518:34;11514:1;11509:3;11505:11;11498:55;11584:20;11579:2;11574:3;11570:12;11563:42;11631:2;11626:3;11622:12;11615:19;;11404:236;;;:::o;11646:370::-;;11809:67;11873:2;11868:3;11809:67;:::i;:::-;11802:74;;11906:34;11902:1;11897:3;11893:11;11886:55;11972:8;11967:2;11962:3;11958:12;11951:30;12007:2;12002:3;11998:12;11991:19;;11792:224;;;:::o;12022:326::-;;12185:67;12249:2;12244:3;12185:67;:::i;:::-;12178:74;;12282:30;12278:1;12273:3;12269:11;12262:51;12339:2;12334:3;12330:12;12323:19;;12168:180;;;:::o;12354:326::-;;12517:67;12581:2;12576:3;12517:67;:::i;:::-;12510:74;;12614:30;12610:1;12605:3;12601:11;12594:51;12671:2;12666:3;12662:12;12655:19;;12500:180;;;:::o;12686:368::-;;12849:67;12913:2;12908:3;12849:67;:::i;:::-;12842:74;;12946:34;12942:1;12937:3;12933:11;12926:55;13012:6;13007:2;13002:3;12998:12;12991:28;13045:2;13040:3;13036:12;13029:19;;12832:222;;;:::o;13060:323::-;;13223:67;13287:2;13282:3;13223:67;:::i;:::-;13216:74;;13320:27;13316:1;13311:3;13307:11;13300:48;13374:2;13369:3;13365:12;13358:19;;13206:177;;;:::o;13389:306::-;;13552:66;13616:1;13611:3;13552:66;:::i;:::-;13545:73;;13648:11;13644:1;13639:3;13635:11;13628:32;13686:2;13681:3;13677:12;13670:19;;13535:160;;;:::o;13701:376::-;;13864:67;13928:2;13923:3;13864:67;:::i;:::-;13857:74;;13961:34;13957:1;13952:3;13948:11;13941:55;14027:14;14022:2;14017:3;14013:12;14006:36;14068:2;14063:3;14059:12;14052:19;;13847:230;;;:::o;14083:314::-;;14246:67;14310:2;14305:3;14246:67;:::i;:::-;14239:74;;14343:18;14339:1;14334:3;14330:11;14323:39;14388:2;14383:3;14379:12;14372:19;;14229:168;;;:::o;14403:314::-;;14566:67;14630:2;14625:3;14566:67;:::i;:::-;14559:74;;14663:18;14659:1;14654:3;14650:11;14643:39;14708:2;14703:3;14699:12;14692:19;;14549:168;;;:::o;14723:388::-;;14886:67;14950:2;14945:3;14886:67;:::i;:::-;14879:74;;14983:34;14979:1;14974:3;14970:11;14963:55;15049:26;15044:2;15039:3;15035:12;15028:48;15102:2;15097:3;15093:12;15086:19;;14869:242;;;:::o;15117:374::-;;15280:67;15344:2;15339:3;15280:67;:::i;:::-;15273:74;;15377:34;15373:1;15368:3;15364:11;15357:55;15443:12;15438:2;15433:3;15429:12;15422:34;15482:2;15477:3;15473:12;15466:19;;15263:228;;;:::o;15497:373::-;;15660:67;15724:2;15719:3;15660:67;:::i;:::-;15653:74;;15757:34;15753:1;15748:3;15744:11;15737:55;15823:11;15818:2;15813:3;15809:12;15802:33;15861:2;15856:3;15852:12;15845:19;;15643:227;;;:::o;15876:330::-;;16039:67;16103:2;16098:3;16039:67;:::i;:::-;16032:74;;16136:34;16132:1;16127:3;16123:11;16116:55;16197:2;16192:3;16188:12;16181:19;;16022:184;;;:::o;16212:376::-;;16375:67;16439:2;16434:3;16375:67;:::i;:::-;16368:74;;16472:34;16468:1;16463:3;16459:11;16452:55;16538:14;16533:2;16528:3;16524:12;16517:36;16579:2;16574:3;16570:12;16563:19;;16358:230;;;:::o;16594:330::-;;16757:67;16821:2;16816:3;16757:67;:::i;:::-;16750:74;;16854:34;16850:1;16845:3;16841:11;16834:55;16915:2;16910:3;16906:12;16899:19;;16740:184;;;:::o;16930:373::-;;17093:67;17157:2;17152:3;17093:67;:::i;:::-;17086:74;;17190:34;17186:1;17181:3;17177:11;17170:55;17256:11;17251:2;17246:3;17242:12;17235:33;17294:2;17289:3;17285:12;17278:19;;17076:227;;;:::o;17309:379::-;;17472:67;17536:2;17531:3;17472:67;:::i;:::-;17465:74;;17569:34;17565:1;17560:3;17556:11;17549:55;17635:17;17630:2;17625:3;17621:12;17614:39;17679:2;17674:3;17670:12;17663:19;;17455:233;;;:::o;17694:309::-;;17857:67;17921:2;17916:3;17857:67;:::i;:::-;17850:74;;17954:13;17950:1;17945:3;17941:11;17934:34;17994:2;17989:3;17985:12;17978:19;;17840:163;;;:::o;18009:308::-;;18172:67;18236:2;18231:3;18172:67;:::i;:::-;18165:74;;18269:12;18265:1;18260:3;18256:11;18249:33;18308:2;18303:3;18299:12;18292:19;;18155:162;;;:::o;18323:365::-;;18486:67;18550:2;18545:3;18486:67;:::i;:::-;18479:74;;18583:34;18579:1;18574:3;18570:11;18563:55;18649:3;18644:2;18639:3;18635:12;18628:25;18679:2;18674:3;18670:12;18663:19;;18469:219;;;:::o;18694:297::-;;18874:83;18955:1;18950:3;18874:83;:::i;:::-;18867:90;;18983:1;18978:3;18974:11;18967:18;;18857:134;;;:::o;18997:314::-;;19160:67;19224:2;19219:3;19160:67;:::i;:::-;19153:74;;19257:18;19253:1;19248:3;19244:11;19237:39;19302:2;19297:3;19293:12;19286:19;;19143:168;;;:::o;19317:381::-;;19480:67;19544:2;19539:3;19480:67;:::i;:::-;19473:74;;19577:34;19573:1;19568:3;19564:11;19557:55;19643:19;19638:2;19633:3;19629:12;19622:41;19689:2;19684:3;19680:12;19673:19;;19463:235;;;:::o;19704:376::-;;19867:67;19931:2;19926:3;19867:67;:::i;:::-;19860:74;;19964:34;19960:1;19955:3;19951:11;19944:55;20030:14;20025:2;20020:3;20016:12;20009:36;20071:2;20066:3;20062:12;20055:19;;19850:230;;;:::o;20086:308::-;;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20346:12;20342:1;20337:3;20333:11;20326:33;20385:2;20380:3;20376:12;20369:19;;20232:162;;;:::o;20400:314::-;;20563:67;20627:2;20622:3;20563:67;:::i;:::-;20556:74;;20660:18;20656:1;20651:3;20647:11;20640:39;20705:2;20700:3;20696:12;20689:19;;20546:168;;;:::o;20720:380::-;;20883:67;20947:2;20942:3;20883:67;:::i;:::-;20876:74;;20980:34;20976:1;20971:3;20967:11;20960:55;21046:18;21041:2;21036:3;21032:12;21025:40;21091:2;21086:3;21082:12;21075:19;;20866:234;;;:::o;21106:108::-;21183:24;21201:5;21183:24;:::i;:::-;21178:3;21171:37;21161:53;;:::o;21220:118::-;21307:24;21325:5;21307:24;:::i;:::-;21302:3;21295:37;21285:53;;:::o;21344:435::-;;21546:95;21637:3;21628:6;21546:95;:::i;:::-;21539:102;;21658:95;21749:3;21740:6;21658:95;:::i;:::-;21651:102;;21770:3;21763:10;;21528:251;;;;;:::o;21785:379::-;;21991:147;22134:3;21991:147;:::i;:::-;21984:154;;22155:3;22148:10;;21973:191;;;:::o;22170:222::-;;22301:2;22290:9;22286:18;22278:26;;22314:71;22382:1;22371:9;22367:17;22358:6;22314:71;:::i;:::-;22268:124;;;;:::o;22398:640::-;;22631:3;22620:9;22616:19;22608:27;;22645:71;22713:1;22702:9;22698:17;22689:6;22645:71;:::i;:::-;22726:72;22794:2;22783:9;22779:18;22770:6;22726:72;:::i;:::-;22808;22876:2;22865:9;22861:18;22852:6;22808:72;:::i;:::-;22927:9;22921:4;22917:20;22912:2;22901:9;22897:18;22890:48;22955:76;23026:4;23017:6;22955:76;:::i;:::-;22947:84;;22598:440;;;;;;;:::o;23044:373::-;;23225:2;23214:9;23210:18;23202:26;;23274:9;23268:4;23264:20;23260:1;23249:9;23245:17;23238:47;23302:108;23405:4;23396:6;23302:108;:::i;:::-;23294:116;;23192:225;;;;:::o;23423:210::-;;23548:2;23537:9;23533:18;23525:26;;23561:65;23623:1;23612:9;23608:17;23599:6;23561:65;:::i;:::-;23515:118;;;;:::o;23639:313::-;;23790:2;23779:9;23775:18;23767:26;;23839:9;23833:4;23829:20;23825:1;23814:9;23810:17;23803:47;23867:78;23940:4;23931:6;23867:78;:::i;:::-;23859:86;;23757:195;;;;:::o;23958:514::-;;24157:2;24146:9;24142:18;24134:26;;24206:9;24200:4;24196:20;24192:1;24181:9;24177:17;24170:47;24234:78;24307:4;24298:6;24234:78;:::i;:::-;24226:86;;24359:9;24353:4;24349:20;24344:2;24333:9;24329:18;24322:48;24387:78;24460:4;24451:6;24387:78;:::i;:::-;24379:86;;24124:348;;;;;:::o;24478:419::-;;24682:2;24671:9;24667:18;24659:26;;24731:9;24725:4;24721:20;24717:1;24706:9;24702:17;24695:47;24759:131;24885:4;24759:131;:::i;:::-;24751:139;;24649:248;;;:::o;24903:419::-;;25107:2;25096:9;25092:18;25084:26;;25156:9;25150:4;25146:20;25142:1;25131:9;25127:17;25120:47;25184:131;25310:4;25184:131;:::i;:::-;25176:139;;25074:248;;;:::o;25328:419::-;;25532:2;25521:9;25517:18;25509:26;;25581:9;25575:4;25571:20;25567:1;25556:9;25552:17;25545:47;25609:131;25735:4;25609:131;:::i;:::-;25601:139;;25499:248;;;:::o;25753:419::-;;25957:2;25946:9;25942:18;25934:26;;26006:9;26000:4;25996:20;25992:1;25981:9;25977:17;25970:47;26034:131;26160:4;26034:131;:::i;:::-;26026:139;;25924:248;;;:::o;26178:419::-;;26382:2;26371:9;26367:18;26359:26;;26431:9;26425:4;26421:20;26417:1;26406:9;26402:17;26395:47;26459:131;26585:4;26459:131;:::i;:::-;26451:139;;26349:248;;;:::o;26603:419::-;;26807:2;26796:9;26792:18;26784:26;;26856:9;26850:4;26846:20;26842:1;26831:9;26827:17;26820:47;26884:131;27010:4;26884:131;:::i;:::-;26876:139;;26774:248;;;:::o;27028:419::-;;27232:2;27221:9;27217:18;27209:26;;27281:9;27275:4;27271:20;27267:1;27256:9;27252:17;27245:47;27309:131;27435:4;27309:131;:::i;:::-;27301:139;;27199:248;;;:::o;27453:419::-;;27657:2;27646:9;27642:18;27634:26;;27706:9;27700:4;27696:20;27692:1;27681:9;27677:17;27670:47;27734:131;27860:4;27734:131;:::i;:::-;27726:139;;27624:248;;;:::o;27878:419::-;;28082:2;28071:9;28067:18;28059:26;;28131:9;28125:4;28121:20;28117:1;28106:9;28102:17;28095:47;28159:131;28285:4;28159:131;:::i;:::-;28151:139;;28049:248;;;:::o;28303:419::-;;28507:2;28496:9;28492:18;28484:26;;28556:9;28550:4;28546:20;28542:1;28531:9;28527:17;28520:47;28584:131;28710:4;28584:131;:::i;:::-;28576:139;;28474:248;;;:::o;28728:419::-;;28932:2;28921:9;28917:18;28909:26;;28981:9;28975:4;28971:20;28967:1;28956:9;28952:17;28945:47;29009:131;29135:4;29009:131;:::i;:::-;29001:139;;28899:248;;;:::o;29153:419::-;;29357:2;29346:9;29342:18;29334:26;;29406:9;29400:4;29396:20;29392:1;29381:9;29377:17;29370:47;29434:131;29560:4;29434:131;:::i;:::-;29426:139;;29324:248;;;:::o;29578:419::-;;29782:2;29771:9;29767:18;29759:26;;29831:9;29825:4;29821:20;29817:1;29806:9;29802:17;29795:47;29859:131;29985:4;29859:131;:::i;:::-;29851:139;;29749:248;;;:::o;30003:419::-;;30207:2;30196:9;30192:18;30184:26;;30256:9;30250:4;30246:20;30242:1;30231:9;30227:17;30220:47;30284:131;30410:4;30284:131;:::i;:::-;30276:139;;30174:248;;;:::o;30428:419::-;;30632:2;30621:9;30617:18;30609:26;;30681:9;30675:4;30671:20;30667:1;30656:9;30652:17;30645:47;30709:131;30835:4;30709:131;:::i;:::-;30701:139;;30599:248;;;:::o;30853:419::-;;31057:2;31046:9;31042:18;31034:26;;31106:9;31100:4;31096:20;31092:1;31081:9;31077:17;31070:47;31134:131;31260:4;31134:131;:::i;:::-;31126:139;;31024:248;;;:::o;31278:419::-;;31482:2;31471:9;31467:18;31459:26;;31531:9;31525:4;31521:20;31517:1;31506:9;31502:17;31495:47;31559:131;31685:4;31559:131;:::i;:::-;31551:139;;31449:248;;;:::o;31703:419::-;;31907:2;31896:9;31892:18;31884:26;;31956:9;31950:4;31946:20;31942:1;31931:9;31927:17;31920:47;31984:131;32110:4;31984:131;:::i;:::-;31976:139;;31874:248;;;:::o;32128:419::-;;32332:2;32321:9;32317:18;32309:26;;32381:9;32375:4;32371:20;32367:1;32356:9;32352:17;32345:47;32409:131;32535:4;32409:131;:::i;:::-;32401:139;;32299:248;;;:::o;32553:419::-;;32757:2;32746:9;32742:18;32734:26;;32806:9;32800:4;32796:20;32792:1;32781:9;32777:17;32770:47;32834:131;32960:4;32834:131;:::i;:::-;32826:139;;32724:248;;;:::o;32978:419::-;;33182:2;33171:9;33167:18;33159:26;;33231:9;33225:4;33221:20;33217:1;33206:9;33202:17;33195:47;33259:131;33385:4;33259:131;:::i;:::-;33251:139;;33149:248;;;:::o;33403:419::-;;33607:2;33596:9;33592:18;33584:26;;33656:9;33650:4;33646:20;33642:1;33631:9;33627:17;33620:47;33684:131;33810:4;33684:131;:::i;:::-;33676:139;;33574:248;;;:::o;33828:419::-;;34032:2;34021:9;34017:18;34009:26;;34081:9;34075:4;34071:20;34067:1;34056:9;34052:17;34045:47;34109:131;34235:4;34109:131;:::i;:::-;34101:139;;33999:248;;;:::o;34253:419::-;;34457:2;34446:9;34442:18;34434:26;;34506:9;34500:4;34496:20;34492:1;34481:9;34477:17;34470:47;34534:131;34660:4;34534:131;:::i;:::-;34526:139;;34424:248;;;:::o;34678:419::-;;34882:2;34871:9;34867:18;34859:26;;34931:9;34925:4;34921:20;34917:1;34906:9;34902:17;34895:47;34959:131;35085:4;34959:131;:::i;:::-;34951:139;;34849:248;;;:::o;35103:419::-;;35307:2;35296:9;35292:18;35284:26;;35356:9;35350:4;35346:20;35342:1;35331:9;35327:17;35320:47;35384:131;35510:4;35384:131;:::i;:::-;35376:139;;35274:248;;;:::o;35528:419::-;;35732:2;35721:9;35717:18;35709:26;;35781:9;35775:4;35771:20;35767:1;35756:9;35752:17;35745:47;35809:131;35935:4;35809:131;:::i;:::-;35801:139;;35699:248;;;:::o;35953:419::-;;36157:2;36146:9;36142:18;36134:26;;36206:9;36200:4;36196:20;36192:1;36181:9;36177:17;36170:47;36234:131;36360:4;36234:131;:::i;:::-;36226:139;;36124:248;;;:::o;36378:419::-;;36582:2;36571:9;36567:18;36559:26;;36631:9;36625:4;36621:20;36617:1;36606:9;36602:17;36595:47;36659:131;36785:4;36659:131;:::i;:::-;36651:139;;36549:248;;;:::o;36803:419::-;;37007:2;36996:9;36992:18;36984:26;;37056:9;37050:4;37046:20;37042:1;37031:9;37027:17;37020:47;37084:131;37210:4;37084:131;:::i;:::-;37076:139;;36974:248;;;:::o;37228:419::-;;37432:2;37421:9;37417:18;37409:26;;37481:9;37475:4;37471:20;37467:1;37456:9;37452:17;37445:47;37509:131;37635:4;37509:131;:::i;:::-;37501:139;;37399:248;;;:::o;37653:222::-;;37784:2;37773:9;37769:18;37761:26;;37797:71;37865:1;37854:9;37850:17;37841:6;37797:71;:::i;:::-;37751:124;;;;:::o;37881:283::-;;37947:2;37941:9;37931:19;;37989:4;37981:6;37977:17;38096:6;38084:10;38081:22;38060:18;38048:10;38045:34;38042:62;38039:2;;;38107:18;;:::i;:::-;38039:2;38147:10;38143:2;38136:22;37921:243;;;;:::o;38170:331::-;;38321:18;38313:6;38310:30;38307:2;;;38343:18;;:::i;:::-;38307:2;38428:4;38424:9;38417:4;38409:6;38405:17;38401:33;38393:41;;38489:4;38483;38479:15;38471:23;;38236:265;;;:::o;38507:332::-;;38659:18;38651:6;38648:30;38645:2;;;38681:18;;:::i;:::-;38645:2;38766:4;38762:9;38755:4;38747:6;38743:17;38739:33;38731:41;;38827:4;38821;38817:15;38809:23;;38574:265;;;:::o;38845:132::-;;38935:3;38927:11;;38965:4;38960:3;38956:14;38948:22;;38917:60;;;:::o;38983:114::-;;39084:5;39078:12;39068:22;;39057:40;;;:::o;39103:98::-;;39188:5;39182:12;39172:22;;39161:40;;;:::o;39207:99::-;;39293:5;39287:12;39277:22;;39266:40;;;:::o;39312:113::-;;39414:4;39409:3;39405:14;39397:22;;39387:38;;;:::o;39431:184::-;;39564:6;39559:3;39552:19;39604:4;39599:3;39595:14;39580:29;;39542:73;;;;:::o;39621:168::-;;39738:6;39733:3;39726:19;39778:4;39773:3;39769:14;39754:29;;39716:73;;;;:::o;39795:147::-;;39933:3;39918:18;;39908:34;;;;:::o;39948:169::-;;40066:6;40061:3;40054:19;40106:4;40101:3;40097:14;40082:29;;40044:73;;;;:::o;40123:148::-;;40262:3;40247:18;;40237:34;;;;:::o;40277:305::-;;40336:20;40354:1;40336:20;:::i;:::-;40331:25;;40370:20;40388:1;40370:20;:::i;:::-;40365:25;;40524:1;40456:66;40452:74;40449:1;40446:81;40443:2;;;40530:18;;:::i;:::-;40443:2;40574:1;40571;40567:9;40560:16;;40321:261;;;;:::o;40588:185::-;;40645:20;40663:1;40645:20;:::i;:::-;40640:25;;40679:20;40697:1;40679:20;:::i;:::-;40674:25;;40718:1;40708:2;;40723:18;;:::i;:::-;40708:2;40765:1;40762;40758:9;40753:14;;40630:143;;;;:::o;40779:348::-;;40842:20;40860:1;40842:20;:::i;:::-;40837:25;;40876:20;40894:1;40876:20;:::i;:::-;40871:25;;41064:1;40996:66;40992:74;40989:1;40986:81;40981:1;40974:9;40967:17;40963:105;40960:2;;;41071:18;;:::i;:::-;40960:2;41119:1;41116;41112:9;41101:20;;40827:300;;;;:::o;41133:191::-;;41193:20;41211:1;41193:20;:::i;:::-;41188:25;;41227:20;41245:1;41227:20;:::i;:::-;41222:25;;41266:1;41263;41260:8;41257:2;;;41271:18;;:::i;:::-;41257:2;41316:1;41313;41309:9;41301:17;;41178:146;;;;:::o;41330:96::-;;41396:24;41414:5;41396:24;:::i;:::-;41385:35;;41375:51;;;:::o;41432:90::-;;41509:5;41502:13;41495:21;41484:32;;41474:48;;;:::o;41528:149::-;;41604:66;41597:5;41593:78;41582:89;;41572:105;;;:::o;41683:126::-;;41760:42;41753:5;41749:54;41738:65;;41728:81;;;:::o;41815:77::-;;41881:5;41870:16;;41860:32;;;:::o;41898:154::-;41982:6;41977:3;41972;41959:30;42044:1;42035:6;42030:3;42026:16;42019:27;41949:103;;;:::o;42058:307::-;42126:1;42136:113;42150:6;42147:1;42144:13;42136:113;;;42235:1;42230:3;42226:11;42220:18;42216:1;42211:3;42207:11;42200:39;42172:2;42169:1;42165:10;42160:15;;42136:113;;;42267:6;42264:1;42261:13;42258:2;;;42347:1;42338:6;42333:3;42329:16;42322:27;42258:2;42107:258;;;;:::o;42371:320::-;;42452:1;42446:4;42442:12;42432:22;;42499:1;42493:4;42489:12;42520:18;42510:2;;42576:4;42568:6;42564:17;42554:27;;42510:2;42638;42630:6;42627:14;42607:18;42604:38;42601:2;;;42657:18;;:::i;:::-;42601:2;42422:269;;;;:::o;42697:233::-;;42759:24;42777:5;42759:24;:::i;:::-;42750:33;;42805:66;42798:5;42795:77;42792:2;;;42875:18;;:::i;:::-;42792:2;42922:1;42915:5;42911:13;42904:20;;42740:190;;;:::o;42936:176::-;;42985:20;43003:1;42985:20;:::i;:::-;42980:25;;43019:20;43037:1;43019:20;:::i;:::-;43014:25;;43058:1;43048:2;;43063:18;;:::i;:::-;43048:2;43104:1;43101;43097:9;43092:14;;42970:142;;;;:::o;43118:180::-;43166:77;43163:1;43156:88;43263:4;43260:1;43253:15;43287:4;43284:1;43277:15;43304:180;43352:77;43349:1;43342:88;43449:4;43446:1;43439:15;43473:4;43470:1;43463:15;43490:180;43538:77;43535:1;43528:88;43635:4;43632:1;43625:15;43659:4;43656:1;43649:15;43676:180;43724:77;43721:1;43714:88;43821:4;43818:1;43811:15;43845:4;43842:1;43835:15;43862:102;;43954:2;43950:7;43945:2;43938:5;43934:14;43930:28;43920:38;;43910:54;;;:::o;43970:122::-;44043:24;44061:5;44043:24;:::i;:::-;44036:5;44033:35;44023:2;;44082:1;44079;44072:12;44023:2;44013:79;:::o;44098:116::-;44168:21;44183:5;44168:21;:::i;:::-;44161:5;44158:32;44148:2;;44204:1;44201;44194:12;44148:2;44138:76;:::o;44220:120::-;44292:23;44309:5;44292:23;:::i;:::-;44285:5;44282:34;44272:2;;44330:1;44327;44320:12;44272:2;44262:78;:::o;44346:122::-;44419:24;44437:5;44419:24;:::i;:::-;44412:5;44409:35;44399:2;;44458:1;44455;44448:12;44399:2;44389:79;:::o

Swarm Source

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