ETH Price: $2,445.36 (+3.06%)

Token

Doodle X (DoodleX)
 

Overview

Max Total Supply

1,048 DoodleX

Holders

149

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 DoodleX
0x4c97361f6d41f1e27daf636114f0abaa61459167
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:
DoodleX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-12-31
*/

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: coven/coven.sol

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;









contract DoodleX is ERC721, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmadRXV4jiKeYqDkU1F1fbY99z8QKeWFnrimJNb5QNP7H9";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 10;
    uint256 public maxSupply = 3333;

    uint256 public constant PUBLIC_SALE_PRICE = 0.015 ether;
    uint256 public constant NUM_FREE_MINTS = 1000;
    bool public isPublicSaleActive = true;


    uint256 public numGiftedWitches;



    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            tokenCounter.current() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(tokenCounter.current()>NUM_FREE_MINTS){
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        }
        _;
    }


    constructor(
    ) ERC721("Doodle X", "DoodleX") {
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {
        //require(numberOfTokens <= MAX_MINTS_PER_TX);
        //if(tokenCounter.current()>NUM_FREE_MINTS){
        //    require((PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value);
        //}
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
    }




    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    function getLastTokenId() external view returns (uint256) {
        return tokenCounter.current();
    }

    function totalSupply() external view returns (uint256) {
        return tokenCounter.current();
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", tokenId.toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numGiftedWitches","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603581526020016200433160359139600990805190602001906200003592919062000271565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60146101000a81548160ff021916908315150217905550610d05600b556001600c60006101000a81548160ff021916908315150217905550348015620000d457600080fd5b506040518060400160405280600881526020017f446f6f646c6520580000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f446f6f646c65580000000000000000000000000000000000000000000000000081525081600090805190602001906200015992919062000271565b5080600190805190602001906200017292919062000271565b5050506200019562000189620001a360201b60201c565b620001ab60201b60201c565b600160078190555062000386565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027f9062000321565b90600052602060002090601f016020900481019282620002a35760008555620002ef565b82601f10620002be57805160ff1916838001178555620002ef565b82800160010185558215620002ef579182015b82811115620002ee578251825591602001919060010190620002d1565b5b509050620002fe919062000302565b5090565b5b808211156200031d57600081600090555060010162000303565b5090565b600060028204905060018216806200033a57607f821691505b6020821081141562000351576200035062000357565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f9b80620003966000396000f3fe6080604052600436106101e35760003560e01c8063714c539811610102578063aff2adec11610095578063d5abeb0111610064578063d5abeb01146106c2578063e43082f7146106ed578063e985e9c514610716578063f2fde38b14610753576101e3565b8063aff2adec14610606578063b88d4fde14610631578063c6a91b421461065a578063c87b56dd14610685576101e3565b806395d89b41116100d157806395d89b411461056b578063982d669e14610596578063a0712d68146105c1578063a22cb465146105dd576101e3565b8063714c5398146104d3578063715018a6146104fe57806383c4c00d146105155780638da5cb5b14610540576101e3565b806328cad13d1161017a57806349df728c1161014957806349df728c1461040757806355f804b3146104305780636352211e1461045957806370a0823114610496576101e3565b806328cad13d146103605780632a55205a146103895780633ccfd60b146103c757806342842e0e146103de576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ab6565b61077c565b60405161021c919061318b565b60405180910390f35b34801561023157600080fd5b5061023a6107f6565b60405161024791906131a6565b60405180910390f35b34801561025c57600080fd5b50610265610888565b6040516102729190613468565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612bb3565b610893565b6040516102af91906130fb565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612a1c565b610918565b005b3480156102ed57600080fd5b506102f6610a30565b6040516103039190613468565b60405180910390f35b34801561031857600080fd5b50610321610a41565b60405161032e919061318b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612906565b610a54565b005b34801561036c57600080fd5b5061038760048036038101906103829190612a5c565b610ab4565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612c0d565b610b4d565b6040516103be929190613162565b60405180910390f35b3480156103d357600080fd5b506103dc610bb9565b005b3480156103ea57600080fd5b5061040560048036038101906104009190612906565b610c84565b005b34801561041357600080fd5b5061042e60048036038101906104299190612b10565b610ca4565b005b34801561043c57600080fd5b5061045760048036038101906104529190612b6a565b610e3f565b005b34801561046557600080fd5b50610480600480360381019061047b9190612bb3565b610ed5565b60405161048d91906130fb565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612899565b610f87565b6040516104ca9190613468565b60405180910390f35b3480156104df57600080fd5b506104e861103f565b6040516104f591906131a6565b60405180910390f35b34801561050a57600080fd5b506105136110d1565b005b34801561052157600080fd5b5061052a611159565b6040516105379190613468565b60405180910390f35b34801561054c57600080fd5b5061055561116a565b60405161056291906130fb565b60405180910390f35b34801561057757600080fd5b50610580611194565b60405161058d91906131a6565b60405180910390f35b3480156105a257600080fd5b506105ab611226565b6040516105b89190613468565b60405180910390f35b6105db60048036038101906105d69190612bb3565b61122c565b005b3480156105e957600080fd5b5061060460048036038101906105ff91906129dc565b611411565b005b34801561061257600080fd5b5061061b611427565b6040516106289190613468565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612959565b61142d565b005b34801561066657600080fd5b5061066f61148f565b60405161067c9190613468565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612bb3565b611494565b6040516106b991906131a6565b60405180910390f35b3480156106ce57600080fd5b506106d7611510565b6040516106e49190613468565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612a5c565b611516565b005b34801561072257600080fd5b5061073d600480360381019061073891906128c6565b6115af565b60405161074a919061318b565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612899565b6116c9565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57506107ee826117c1565b5b9050919050565b60606000805461080590613751565b80601f016020809104026020016040519081016040528092919081815260200182805461083190613751565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b66354a6ba7a1800081565b600061089e826118a3565b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490613368565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092382610ed5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098b906133c8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b361190f565b73ffffffffffffffffffffffffffffffffffffffff1614806109e257506109e1816109dc61190f565b6115af565b5b610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906132c8565b60405180910390fd5b610a2b8383611917565b505050565b6000610a3c60086119d0565b905090565b600c60009054906101000a900460ff1681565b610a65610a5f61190f565b826119de565b610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906133e8565b60405180910390fd5b610aaf838383611abc565b505050565b610abc61190f565b73ffffffffffffffffffffffffffffffffffffffff16610ada61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790613388565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600080610b59846118a3565b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906132e8565b60405180910390fd5b30610bae610ba7856005611d18565b6064611d2e565b915091509250929050565b610bc161190f565b73ffffffffffffffffffffffffffffffffffffffff16610bdf61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613388565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c80573d6000803e3d6000fd5b5050565b610c9f8383836040518060200160405280600081525061142d565b505050565b610cac61190f565b73ffffffffffffffffffffffffffffffffffffffff16610cca61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613388565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d5b91906130fb565b60206040518083038186803b158015610d7357600080fd5b505afa158015610d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dab9190612be0565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610de8929190613162565b602060405180830381600087803b158015610e0257600080fd5b505af1158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190612a89565b505050565b610e4761190f565b73ffffffffffffffffffffffffffffffffffffffff16610e6561116a565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613388565b60405180910390fd5b8060099080519060200190610ed1929190612659565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613328565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90613308565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606009805461104e90613751565b80601f016020809104026020016040519081016040528092919081815260200182805461107a90613751565b80156110c75780601f1061109c576101008083540402835291602001916110c7565b820191906000526020600020905b8154815290600101906020018083116110aa57829003601f168201915b5050505050905090565b6110d961190f565b73ffffffffffffffffffffffffffffffffffffffff166110f761116a565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490613388565b60405180910390fd5b6111576000611d44565b565b600061116560086119d0565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a390613751565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90613751565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b5050505050905090565b6103e881565b60026007541415611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613428565b60405180910390fd5b600260078190555066354a6ba7a18000816103e861129060086119d0565b11156112e4573481836112a391906135e9565b146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90613408565b60405180910390fd5b5b600c60009054906101000a900460ff16611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613448565b60405180910390fd5b82600b548161134260086119d0565b61134c9190613562565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613228565b60405180910390fd5b83600a8111156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906132a8565b60405180910390fd5b60005b85811015611401576113ee336113e9611e0a565b611e25565b80806113f9906137b4565b9150506113d5565b5050505050600160078190555050565b61142361141c61190f565b8383611e43565b5050565b600d5481565b61143e61143861190f565b836119de565b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906133e8565b60405180910390fd5b61148984848484611fb0565b50505050565b600a81565b606061149f826118a3565b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d5906132e8565b60405180910390fd5b60096114e98361200c565b6040516020016114fa9291906130c1565b6040516020818303038152906040529050919050565b600b5481565b61151e61190f565b73ffffffffffffffffffffffffffffffffffffffff1661153c61116a565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613388565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60149054906101000a900460ff1680156116a657508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161163e91906130fb565b60206040518083038186803b15801561165657600080fd5b505afa15801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e9190612b3d565b73ffffffffffffffffffffffffffffffffffffffff16145b156116b55760019150506116c3565b6116bf848461216d565b9150505b92915050565b6116d161190f565b73ffffffffffffffffffffffffffffffffffffffff166116ef61116a565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613388565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906131e8565b60405180910390fd5b6117be81611d44565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061188c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061189c575061189b82612201565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661198a83610ed5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006119e9826118a3565b611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613288565b60405180910390fd5b6000611a3383610ed5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611aa257508373ffffffffffffffffffffffffffffffffffffffff16611a8a84610893565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ab35750611ab281856115af565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611adc82610ed5565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906133a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613248565b60405180910390fd5b611bad83838361226b565b611bb8600082611917565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c089190613643565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5f9190613562565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611d2691906135e9565b905092915050565b60008183611d3c91906135b8565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611e166008612270565b611e2060086119d0565b905090565b611e3f828260405180602001604052806000815250612286565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990613268565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fa3919061318b565b60405180910390a3505050565b611fbb848484611abc565b611fc7848484846122e1565b612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd906131c8565b60405180910390fd5b50505050565b60606000821415612054576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612168565b600082905060005b6000821461208657808061206f906137b4565b915050600a8261207f91906135b8565b915061205c565b60008167ffffffffffffffff8111156120a2576120a16138ea565b5b6040519080825280601f01601f1916602001820160405280156120d45781602001600182028036833780820191505090505b5090505b60008514612161576001826120ed9190613643565b9150600a856120fc91906137fd565b60306121089190613562565b60f81b81838151811061211e5761211d6138bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561215a91906135b8565b94506120d8565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6001816000016000828254019250508190555050565b6122908383612478565b61229d60008484846122e1565b6122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d3906131c8565b60405180910390fd5b505050565b60006123028473ffffffffffffffffffffffffffffffffffffffff16612646565b1561246b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261232b61190f565b8786866040518563ffffffff1660e01b815260040161234d9493929190613116565b602060405180830381600087803b15801561236757600080fd5b505af192505050801561239857506040513d601f19601f820116820180604052508101906123959190612ae3565b60015b61241b573d80600081146123c8576040519150601f19603f3d011682016040523d82523d6000602084013e6123cd565b606091505b50600081511415612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a906131c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612470565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df90613348565b60405180910390fd5b6124f1816118a3565b15612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890613208565b60405180910390fd5b61253d6000838361226b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258d9190613562565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461266590613751565b90600052602060002090601f01602090048101928261268757600085556126ce565b82601f106126a057805160ff19168380011785556126ce565b828001600101855582156126ce579182015b828111156126cd5782518255916020019190600101906126b2565b5b5090506126db91906126df565b5090565b5b808211156126f85760008160009055506001016126e0565b5090565b600061270f61270a846134a8565b613483565b90508281526020810184848401111561272b5761272a61391e565b5b61273684828561370f565b509392505050565b600061275161274c846134d9565b613483565b90508281526020810184848401111561276d5761276c61391e565b5b61277884828561370f565b509392505050565b60008135905061278f81613edb565b92915050565b6000813590506127a481613ef2565b92915050565b6000815190506127b981613ef2565b92915050565b6000813590506127ce81613f09565b92915050565b6000815190506127e381613f09565b92915050565b600082601f8301126127fe576127fd613919565b5b813561280e8482602086016126fc565b91505092915050565b60008135905061282681613f20565b92915050565b60008151905061283b81613f37565b92915050565b600082601f83011261285657612855613919565b5b813561286684826020860161273e565b91505092915050565b60008135905061287e81613f4e565b92915050565b60008151905061289381613f4e565b92915050565b6000602082840312156128af576128ae613928565b5b60006128bd84828501612780565b91505092915050565b600080604083850312156128dd576128dc613928565b5b60006128eb85828601612780565b92505060206128fc85828601612780565b9150509250929050565b60008060006060848603121561291f5761291e613928565b5b600061292d86828701612780565b935050602061293e86828701612780565b925050604061294f8682870161286f565b9150509250925092565b6000806000806080858703121561297357612972613928565b5b600061298187828801612780565b945050602061299287828801612780565b93505060406129a38782880161286f565b925050606085013567ffffffffffffffff8111156129c4576129c3613923565b5b6129d0878288016127e9565b91505092959194509250565b600080604083850312156129f3576129f2613928565b5b6000612a0185828601612780565b9250506020612a1285828601612795565b9150509250929050565b60008060408385031215612a3357612a32613928565b5b6000612a4185828601612780565b9250506020612a528582860161286f565b9150509250929050565b600060208284031215612a7257612a71613928565b5b6000612a8084828501612795565b91505092915050565b600060208284031215612a9f57612a9e613928565b5b6000612aad848285016127aa565b91505092915050565b600060208284031215612acc57612acb613928565b5b6000612ada848285016127bf565b91505092915050565b600060208284031215612af957612af8613928565b5b6000612b07848285016127d4565b91505092915050565b600060208284031215612b2657612b25613928565b5b6000612b3484828501612817565b91505092915050565b600060208284031215612b5357612b52613928565b5b6000612b618482850161282c565b91505092915050565b600060208284031215612b8057612b7f613928565b5b600082013567ffffffffffffffff811115612b9e57612b9d613923565b5b612baa84828501612841565b91505092915050565b600060208284031215612bc957612bc8613928565b5b6000612bd78482850161286f565b91505092915050565b600060208284031215612bf657612bf5613928565b5b6000612c0484828501612884565b91505092915050565b60008060408385031215612c2457612c23613928565b5b6000612c328582860161286f565b9250506020612c438582860161286f565b9150509250929050565b612c5681613677565b82525050565b612c6581613689565b82525050565b6000612c768261351f565b612c808185613535565b9350612c9081856020860161371e565b612c998161392d565b840191505092915050565b6000612caf8261352a565b612cb98185613546565b9350612cc981856020860161371e565b612cd28161392d565b840191505092915050565b6000612ce88261352a565b612cf28185613557565b9350612d0281856020860161371e565b80840191505092915050565b60008154612d1b81613751565b612d258186613557565b94506001821660008114612d405760018114612d5157612d84565b60ff19831686528186019350612d84565b612d5a8561350a565b60005b83811015612d7c57815481890152600182019150602081019050612d5d565b838801955050505b50505092915050565b6000612d9a603283613546565b9150612da58261393e565b604082019050919050565b6000612dbd602683613546565b9150612dc88261398d565b604082019050919050565b6000612de0601c83613546565b9150612deb826139dc565b602082019050919050565b6000612e03602283613546565b9150612e0e82613a05565b604082019050919050565b6000612e26602483613546565b9150612e3182613a54565b604082019050919050565b6000612e49601983613546565b9150612e5482613aa3565b602082019050919050565b6000612e6c602c83613546565b9150612e7782613acc565b604082019050919050565b6000612e8f602283613546565b9150612e9a82613b1b565b604082019050919050565b6000612eb2603883613546565b9150612ebd82613b6a565b604082019050919050565b6000612ed5601183613546565b9150612ee082613bb9565b602082019050919050565b6000612ef8602a83613546565b9150612f0382613be2565b604082019050919050565b6000612f1b602983613546565b9150612f2682613c31565b604082019050919050565b6000612f3e602083613546565b9150612f4982613c80565b602082019050919050565b6000612f61602c83613546565b9150612f6c82613ca9565b604082019050919050565b6000612f84600583613557565b9150612f8f82613cf8565b600582019050919050565b6000612fa7602083613546565b9150612fb282613d21565b602082019050919050565b6000612fca602983613546565b9150612fd582613d4a565b604082019050919050565b6000612fed602183613546565b9150612ff882613d99565b604082019050919050565b6000613010603183613546565b915061301b82613de8565b604082019050919050565b6000613033601883613546565b915061303e82613e37565b602082019050919050565b6000613056601f83613546565b915061306182613e60565b602082019050919050565b6000613079601783613546565b915061308482613e89565b602082019050919050565b600061309c600183613557565b91506130a782613eb2565b600182019050919050565b6130bb81613705565b82525050565b60006130cd8285612d0e565b91506130d88261308f565b91506130e48284612cdd565b91506130ef82612f77565b91508190509392505050565b60006020820190506131106000830184612c4d565b92915050565b600060808201905061312b6000830187612c4d565b6131386020830186612c4d565b61314560408301856130b2565b81810360608301526131578184612c6b565b905095945050505050565b60006040820190506131776000830185612c4d565b61318460208301846130b2565b9392505050565b60006020820190506131a06000830184612c5c565b92915050565b600060208201905081810360008301526131c08184612ca4565b905092915050565b600060208201905081810360008301526131e181612d8d565b9050919050565b6000602082019050818103600083015261320181612db0565b9050919050565b6000602082019050818103600083015261322181612dd3565b9050919050565b6000602082019050818103600083015261324181612df6565b9050919050565b6000602082019050818103600083015261326181612e19565b9050919050565b6000602082019050818103600083015261328181612e3c565b9050919050565b600060208201905081810360008301526132a181612e5f565b9050919050565b600060208201905081810360008301526132c181612e82565b9050919050565b600060208201905081810360008301526132e181612ea5565b9050919050565b6000602082019050818103600083015261330181612ec8565b9050919050565b6000602082019050818103600083015261332181612eeb565b9050919050565b6000602082019050818103600083015261334181612f0e565b9050919050565b6000602082019050818103600083015261336181612f31565b9050919050565b6000602082019050818103600083015261338181612f54565b9050919050565b600060208201905081810360008301526133a181612f9a565b9050919050565b600060208201905081810360008301526133c181612fbd565b9050919050565b600060208201905081810360008301526133e181612fe0565b9050919050565b6000602082019050818103600083015261340181613003565b9050919050565b6000602082019050818103600083015261342181613026565b9050919050565b6000602082019050818103600083015261344181613049565b9050919050565b600060208201905081810360008301526134618161306c565b9050919050565b600060208201905061347d60008301846130b2565b92915050565b600061348d61349e565b90506134998282613783565b919050565b6000604051905090565b600067ffffffffffffffff8211156134c3576134c26138ea565b5b6134cc8261392d565b9050602081019050919050565b600067ffffffffffffffff8211156134f4576134f36138ea565b5b6134fd8261392d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061356d82613705565b915061357883613705565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ad576135ac61382e565b5b828201905092915050565b60006135c382613705565b91506135ce83613705565b9250826135de576135dd61385d565b5b828204905092915050565b60006135f482613705565b91506135ff83613705565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136385761363761382e565b5b828202905092915050565b600061364e82613705565b915061365983613705565b92508282101561366c5761366b61382e565b5b828203905092915050565b6000613682826136e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006136cc82613677565b9050919050565b60006136de82613677565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373c578082015181840152602081019050613721565b8381111561374b576000848401525b50505050565b6000600282049050600182168061376957607f821691505b6020821081141561377d5761377c61388c565b5b50919050565b61378c8261392d565b810181811067ffffffffffffffff821117156137ab576137aa6138ea565b5b80604052505050565b60006137bf82613705565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137f2576137f161382e565b5b600182019050919050565b600061380882613705565b915061381383613705565b9250826138235761382261385d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613ee481613677565b8114613eef57600080fd5b50565b613efb81613689565b8114613f0657600080fd5b50565b613f1281613695565b8114613f1d57600080fd5b50565b613f29816136c1565b8114613f3457600080fd5b50565b613f40816136d3565b8114613f4b57600080fd5b50565b613f5781613705565b8114613f6257600080fd5b5056fea26469706673582212206312942aa7643a39550f529f9396e3f8fa1793da25a56d8a74bc9b5099831af864736f6c63430008070033697066733a2f2f516d6164525856346a694b655971446b5531463166625939397a38514b6557466e72696d4a4e6235514e50374839

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063714c539811610102578063aff2adec11610095578063d5abeb0111610064578063d5abeb01146106c2578063e43082f7146106ed578063e985e9c514610716578063f2fde38b14610753576101e3565b8063aff2adec14610606578063b88d4fde14610631578063c6a91b421461065a578063c87b56dd14610685576101e3565b806395d89b41116100d157806395d89b411461056b578063982d669e14610596578063a0712d68146105c1578063a22cb465146105dd576101e3565b8063714c5398146104d3578063715018a6146104fe57806383c4c00d146105155780638da5cb5b14610540576101e3565b806328cad13d1161017a57806349df728c1161014957806349df728c1461040757806355f804b3146104305780636352211e1461045957806370a0823114610496576101e3565b806328cad13d146103605780632a55205a146103895780633ccfd60b146103c757806342842e0e146103de576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ab6565b61077c565b60405161021c919061318b565b60405180910390f35b34801561023157600080fd5b5061023a6107f6565b60405161024791906131a6565b60405180910390f35b34801561025c57600080fd5b50610265610888565b6040516102729190613468565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612bb3565b610893565b6040516102af91906130fb565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612a1c565b610918565b005b3480156102ed57600080fd5b506102f6610a30565b6040516103039190613468565b60405180910390f35b34801561031857600080fd5b50610321610a41565b60405161032e919061318b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612906565b610a54565b005b34801561036c57600080fd5b5061038760048036038101906103829190612a5c565b610ab4565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612c0d565b610b4d565b6040516103be929190613162565b60405180910390f35b3480156103d357600080fd5b506103dc610bb9565b005b3480156103ea57600080fd5b5061040560048036038101906104009190612906565b610c84565b005b34801561041357600080fd5b5061042e60048036038101906104299190612b10565b610ca4565b005b34801561043c57600080fd5b5061045760048036038101906104529190612b6a565b610e3f565b005b34801561046557600080fd5b50610480600480360381019061047b9190612bb3565b610ed5565b60405161048d91906130fb565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612899565b610f87565b6040516104ca9190613468565b60405180910390f35b3480156104df57600080fd5b506104e861103f565b6040516104f591906131a6565b60405180910390f35b34801561050a57600080fd5b506105136110d1565b005b34801561052157600080fd5b5061052a611159565b6040516105379190613468565b60405180910390f35b34801561054c57600080fd5b5061055561116a565b60405161056291906130fb565b60405180910390f35b34801561057757600080fd5b50610580611194565b60405161058d91906131a6565b60405180910390f35b3480156105a257600080fd5b506105ab611226565b6040516105b89190613468565b60405180910390f35b6105db60048036038101906105d69190612bb3565b61122c565b005b3480156105e957600080fd5b5061060460048036038101906105ff91906129dc565b611411565b005b34801561061257600080fd5b5061061b611427565b6040516106289190613468565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612959565b61142d565b005b34801561066657600080fd5b5061066f61148f565b60405161067c9190613468565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612bb3565b611494565b6040516106b991906131a6565b60405180910390f35b3480156106ce57600080fd5b506106d7611510565b6040516106e49190613468565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612a5c565b611516565b005b34801561072257600080fd5b5061073d600480360381019061073891906128c6565b6115af565b60405161074a919061318b565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190612899565b6116c9565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57506107ee826117c1565b5b9050919050565b60606000805461080590613751565b80601f016020809104026020016040519081016040528092919081815260200182805461083190613751565b801561087e5780601f106108535761010080835404028352916020019161087e565b820191906000526020600020905b81548152906001019060200180831161086157829003601f168201915b5050505050905090565b66354a6ba7a1800081565b600061089e826118a3565b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490613368565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092382610ed5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098b906133c8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b361190f565b73ffffffffffffffffffffffffffffffffffffffff1614806109e257506109e1816109dc61190f565b6115af565b5b610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906132c8565b60405180910390fd5b610a2b8383611917565b505050565b6000610a3c60086119d0565b905090565b600c60009054906101000a900460ff1681565b610a65610a5f61190f565b826119de565b610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906133e8565b60405180910390fd5b610aaf838383611abc565b505050565b610abc61190f565b73ffffffffffffffffffffffffffffffffffffffff16610ada61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790613388565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b600080610b59846118a3565b610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906132e8565b60405180910390fd5b30610bae610ba7856005611d18565b6064611d2e565b915091509250929050565b610bc161190f565b73ffffffffffffffffffffffffffffffffffffffff16610bdf61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613388565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c80573d6000803e3d6000fd5b5050565b610c9f8383836040518060200160405280600081525061142d565b505050565b610cac61190f565b73ffffffffffffffffffffffffffffffffffffffff16610cca61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613388565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d5b91906130fb565b60206040518083038186803b158015610d7357600080fd5b505afa158015610d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dab9190612be0565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610de8929190613162565b602060405180830381600087803b158015610e0257600080fd5b505af1158015610e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190612a89565b505050565b610e4761190f565b73ffffffffffffffffffffffffffffffffffffffff16610e6561116a565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613388565b60405180910390fd5b8060099080519060200190610ed1929190612659565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613328565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90613308565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606009805461104e90613751565b80601f016020809104026020016040519081016040528092919081815260200182805461107a90613751565b80156110c75780601f1061109c576101008083540402835291602001916110c7565b820191906000526020600020905b8154815290600101906020018083116110aa57829003601f168201915b5050505050905090565b6110d961190f565b73ffffffffffffffffffffffffffffffffffffffff166110f761116a565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490613388565b60405180910390fd5b6111576000611d44565b565b600061116560086119d0565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a390613751565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90613751565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b5050505050905090565b6103e881565b60026007541415611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613428565b60405180910390fd5b600260078190555066354a6ba7a18000816103e861129060086119d0565b11156112e4573481836112a391906135e9565b146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90613408565b60405180910390fd5b5b600c60009054906101000a900460ff16611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613448565b60405180910390fd5b82600b548161134260086119d0565b61134c9190613562565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613228565b60405180910390fd5b83600a8111156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906132a8565b60405180910390fd5b60005b85811015611401576113ee336113e9611e0a565b611e25565b80806113f9906137b4565b9150506113d5565b5050505050600160078190555050565b61142361141c61190f565b8383611e43565b5050565b600d5481565b61143e61143861190f565b836119de565b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906133e8565b60405180910390fd5b61148984848484611fb0565b50505050565b600a81565b606061149f826118a3565b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d5906132e8565b60405180910390fd5b60096114e98361200c565b6040516020016114fa9291906130c1565b6040516020818303038152906040529050919050565b600b5481565b61151e61190f565b73ffffffffffffffffffffffffffffffffffffffff1661153c61116a565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990613388565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60149054906101000a900460ff1680156116a657508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161163e91906130fb565b60206040518083038186803b15801561165657600080fd5b505afa15801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e9190612b3d565b73ffffffffffffffffffffffffffffffffffffffff16145b156116b55760019150506116c3565b6116bf848461216d565b9150505b92915050565b6116d161190f565b73ffffffffffffffffffffffffffffffffffffffff166116ef61116a565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613388565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac906131e8565b60405180910390fd5b6117be81611d44565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061188c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061189c575061189b82612201565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661198a83610ed5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006119e9826118a3565b611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613288565b60405180910390fd5b6000611a3383610ed5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611aa257508373ffffffffffffffffffffffffffffffffffffffff16611a8a84610893565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ab35750611ab281856115af565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611adc82610ed5565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906133a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613248565b60405180910390fd5b611bad83838361226b565b611bb8600082611917565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c089190613643565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5f9190613562565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611d2691906135e9565b905092915050565b60008183611d3c91906135b8565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611e166008612270565b611e2060086119d0565b905090565b611e3f828260405180602001604052806000815250612286565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990613268565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fa3919061318b565b60405180910390a3505050565b611fbb848484611abc565b611fc7848484846122e1565b612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd906131c8565b60405180910390fd5b50505050565b60606000821415612054576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612168565b600082905060005b6000821461208657808061206f906137b4565b915050600a8261207f91906135b8565b915061205c565b60008167ffffffffffffffff8111156120a2576120a16138ea565b5b6040519080825280601f01601f1916602001820160405280156120d45781602001600182028036833780820191505090505b5090505b60008514612161576001826120ed9190613643565b9150600a856120fc91906137fd565b60306121089190613562565b60f81b81838151811061211e5761211d6138bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561215a91906135b8565b94506120d8565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6001816000016000828254019250508190555050565b6122908383612478565b61229d60008484846122e1565b6122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d3906131c8565b60405180910390fd5b505050565b60006123028473ffffffffffffffffffffffffffffffffffffffff16612646565b1561246b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261232b61190f565b8786866040518563ffffffff1660e01b815260040161234d9493929190613116565b602060405180830381600087803b15801561236757600080fd5b505af192505050801561239857506040513d601f19601f820116820180604052508101906123959190612ae3565b60015b61241b573d80600081146123c8576040519150601f19603f3d011682016040523d82523d6000602084013e6123cd565b606091505b50600081511415612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a906131c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612470565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df90613348565b60405180910390fd5b6124f1816118a3565b15612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890613208565b60405180910390fd5b61253d6000838361226b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258d9190613562565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461266590613751565b90600052602060002090601f01602090048101928261268757600085556126ce565b82601f106126a057805160ff19168380011785556126ce565b828001600101855582156126ce579182015b828111156126cd5782518255916020019190600101906126b2565b5b5090506126db91906126df565b5090565b5b808211156126f85760008160009055506001016126e0565b5090565b600061270f61270a846134a8565b613483565b90508281526020810184848401111561272b5761272a61391e565b5b61273684828561370f565b509392505050565b600061275161274c846134d9565b613483565b90508281526020810184848401111561276d5761276c61391e565b5b61277884828561370f565b509392505050565b60008135905061278f81613edb565b92915050565b6000813590506127a481613ef2565b92915050565b6000815190506127b981613ef2565b92915050565b6000813590506127ce81613f09565b92915050565b6000815190506127e381613f09565b92915050565b600082601f8301126127fe576127fd613919565b5b813561280e8482602086016126fc565b91505092915050565b60008135905061282681613f20565b92915050565b60008151905061283b81613f37565b92915050565b600082601f83011261285657612855613919565b5b813561286684826020860161273e565b91505092915050565b60008135905061287e81613f4e565b92915050565b60008151905061289381613f4e565b92915050565b6000602082840312156128af576128ae613928565b5b60006128bd84828501612780565b91505092915050565b600080604083850312156128dd576128dc613928565b5b60006128eb85828601612780565b92505060206128fc85828601612780565b9150509250929050565b60008060006060848603121561291f5761291e613928565b5b600061292d86828701612780565b935050602061293e86828701612780565b925050604061294f8682870161286f565b9150509250925092565b6000806000806080858703121561297357612972613928565b5b600061298187828801612780565b945050602061299287828801612780565b93505060406129a38782880161286f565b925050606085013567ffffffffffffffff8111156129c4576129c3613923565b5b6129d0878288016127e9565b91505092959194509250565b600080604083850312156129f3576129f2613928565b5b6000612a0185828601612780565b9250506020612a1285828601612795565b9150509250929050565b60008060408385031215612a3357612a32613928565b5b6000612a4185828601612780565b9250506020612a528582860161286f565b9150509250929050565b600060208284031215612a7257612a71613928565b5b6000612a8084828501612795565b91505092915050565b600060208284031215612a9f57612a9e613928565b5b6000612aad848285016127aa565b91505092915050565b600060208284031215612acc57612acb613928565b5b6000612ada848285016127bf565b91505092915050565b600060208284031215612af957612af8613928565b5b6000612b07848285016127d4565b91505092915050565b600060208284031215612b2657612b25613928565b5b6000612b3484828501612817565b91505092915050565b600060208284031215612b5357612b52613928565b5b6000612b618482850161282c565b91505092915050565b600060208284031215612b8057612b7f613928565b5b600082013567ffffffffffffffff811115612b9e57612b9d613923565b5b612baa84828501612841565b91505092915050565b600060208284031215612bc957612bc8613928565b5b6000612bd78482850161286f565b91505092915050565b600060208284031215612bf657612bf5613928565b5b6000612c0484828501612884565b91505092915050565b60008060408385031215612c2457612c23613928565b5b6000612c328582860161286f565b9250506020612c438582860161286f565b9150509250929050565b612c5681613677565b82525050565b612c6581613689565b82525050565b6000612c768261351f565b612c808185613535565b9350612c9081856020860161371e565b612c998161392d565b840191505092915050565b6000612caf8261352a565b612cb98185613546565b9350612cc981856020860161371e565b612cd28161392d565b840191505092915050565b6000612ce88261352a565b612cf28185613557565b9350612d0281856020860161371e565b80840191505092915050565b60008154612d1b81613751565b612d258186613557565b94506001821660008114612d405760018114612d5157612d84565b60ff19831686528186019350612d84565b612d5a8561350a565b60005b83811015612d7c57815481890152600182019150602081019050612d5d565b838801955050505b50505092915050565b6000612d9a603283613546565b9150612da58261393e565b604082019050919050565b6000612dbd602683613546565b9150612dc88261398d565b604082019050919050565b6000612de0601c83613546565b9150612deb826139dc565b602082019050919050565b6000612e03602283613546565b9150612e0e82613a05565b604082019050919050565b6000612e26602483613546565b9150612e3182613a54565b604082019050919050565b6000612e49601983613546565b9150612e5482613aa3565b602082019050919050565b6000612e6c602c83613546565b9150612e7782613acc565b604082019050919050565b6000612e8f602283613546565b9150612e9a82613b1b565b604082019050919050565b6000612eb2603883613546565b9150612ebd82613b6a565b604082019050919050565b6000612ed5601183613546565b9150612ee082613bb9565b602082019050919050565b6000612ef8602a83613546565b9150612f0382613be2565b604082019050919050565b6000612f1b602983613546565b9150612f2682613c31565b604082019050919050565b6000612f3e602083613546565b9150612f4982613c80565b602082019050919050565b6000612f61602c83613546565b9150612f6c82613ca9565b604082019050919050565b6000612f84600583613557565b9150612f8f82613cf8565b600582019050919050565b6000612fa7602083613546565b9150612fb282613d21565b602082019050919050565b6000612fca602983613546565b9150612fd582613d4a565b604082019050919050565b6000612fed602183613546565b9150612ff882613d99565b604082019050919050565b6000613010603183613546565b915061301b82613de8565b604082019050919050565b6000613033601883613546565b915061303e82613e37565b602082019050919050565b6000613056601f83613546565b915061306182613e60565b602082019050919050565b6000613079601783613546565b915061308482613e89565b602082019050919050565b600061309c600183613557565b91506130a782613eb2565b600182019050919050565b6130bb81613705565b82525050565b60006130cd8285612d0e565b91506130d88261308f565b91506130e48284612cdd565b91506130ef82612f77565b91508190509392505050565b60006020820190506131106000830184612c4d565b92915050565b600060808201905061312b6000830187612c4d565b6131386020830186612c4d565b61314560408301856130b2565b81810360608301526131578184612c6b565b905095945050505050565b60006040820190506131776000830185612c4d565b61318460208301846130b2565b9392505050565b60006020820190506131a06000830184612c5c565b92915050565b600060208201905081810360008301526131c08184612ca4565b905092915050565b600060208201905081810360008301526131e181612d8d565b9050919050565b6000602082019050818103600083015261320181612db0565b9050919050565b6000602082019050818103600083015261322181612dd3565b9050919050565b6000602082019050818103600083015261324181612df6565b9050919050565b6000602082019050818103600083015261326181612e19565b9050919050565b6000602082019050818103600083015261328181612e3c565b9050919050565b600060208201905081810360008301526132a181612e5f565b9050919050565b600060208201905081810360008301526132c181612e82565b9050919050565b600060208201905081810360008301526132e181612ea5565b9050919050565b6000602082019050818103600083015261330181612ec8565b9050919050565b6000602082019050818103600083015261332181612eeb565b9050919050565b6000602082019050818103600083015261334181612f0e565b9050919050565b6000602082019050818103600083015261336181612f31565b9050919050565b6000602082019050818103600083015261338181612f54565b9050919050565b600060208201905081810360008301526133a181612f9a565b9050919050565b600060208201905081810360008301526133c181612fbd565b9050919050565b600060208201905081810360008301526133e181612fe0565b9050919050565b6000602082019050818103600083015261340181613003565b9050919050565b6000602082019050818103600083015261342181613026565b9050919050565b6000602082019050818103600083015261344181613049565b9050919050565b600060208201905081810360008301526134618161306c565b9050919050565b600060208201905061347d60008301846130b2565b92915050565b600061348d61349e565b90506134998282613783565b919050565b6000604051905090565b600067ffffffffffffffff8211156134c3576134c26138ea565b5b6134cc8261392d565b9050602081019050919050565b600067ffffffffffffffff8211156134f4576134f36138ea565b5b6134fd8261392d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061356d82613705565b915061357883613705565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ad576135ac61382e565b5b828201905092915050565b60006135c382613705565b91506135ce83613705565b9250826135de576135dd61385d565b5b828204905092915050565b60006135f482613705565b91506135ff83613705565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136385761363761382e565b5b828202905092915050565b600061364e82613705565b915061365983613705565b92508282101561366c5761366b61382e565b5b828203905092915050565b6000613682826136e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006136cc82613677565b9050919050565b60006136de82613677565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373c578082015181840152602081019050613721565b8381111561374b576000848401525b50505050565b6000600282049050600182168061376957607f821691505b6020821081141561377d5761377c61388c565b5b50919050565b61378c8261392d565b810181811067ffffffffffffffff821117156137ab576137aa6138ea565b5b80604052505050565b60006137bf82613705565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137f2576137f161382e565b5b600182019050919050565b600061380882613705565b915061381383613705565b9250826138235761382261385d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613ee481613677565b8114613eef57600080fd5b50565b613efb81613689565b8114613f0657600080fd5b50565b613f1281613695565b8114613f1d57600080fd5b50565b613f29816136c1565b8114613f3457600080fd5b50565b613f40816136d3565b8114613f4b57600080fd5b50565b613f5781613705565b8114613f6257600080fd5b5056fea26469706673582212206312942aa7643a39550f529f9396e3f8fa1793da25a56d8a74bc9b5099831af864736f6c63430008070033

Deployed Bytecode Sourcemap

51748:5778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55720:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40022:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52263:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41581:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41104:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54397:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52377:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42331:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54969:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57205:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;55137:143;;;;;;;;;;;;;:::i;:::-;;42741:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55288:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54571:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39716:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39446:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54182:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19097:103;;;;;;;;;;;;;:::i;:::-;;54283:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18446:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40191:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52325:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53518:587;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41874:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52425:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42997:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52171:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56836:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52223:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54795:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56148:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55720:291;55867:4;55924:26;55909:41;;;:11;:41;;;;:94;;;;55967:36;55991:11;55967:23;:36::i;:::-;55909:94;55889:114;;55720:291;;;:::o;40022:100::-;40076:13;40109:5;40102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40022:100;:::o;52263:55::-;52307:11;52263:55;:::o;41581:221::-;41657:7;41685:16;41693:7;41685;:16::i;:::-;41677:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41770:15;:24;41786:7;41770:24;;;;;;;;;;;;;;;;;;;;;41763:31;;41581:221;;;:::o;41104:411::-;41185:13;41201:23;41216:7;41201:14;:23::i;:::-;41185:39;;41249:5;41243:11;;:2;:11;;;;41235:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41343:5;41327:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41352:37;41369:5;41376:12;:10;:12::i;:::-;41352:16;:37::i;:::-;41327:62;41305:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;41486:21;41495:2;41499:7;41486:8;:21::i;:::-;41174:341;41104:411;;:::o;54397:103::-;54443:7;54470:22;:12;:20;:22::i;:::-;54463:29;;54397:103;:::o;52377:37::-;;;;;;;;;;;;;:::o;42331:339::-;42526:41;42545:12;:10;:12::i;:::-;42559:7;42526:18;:41::i;:::-;42518:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;42634:28;42644:4;42650:2;42654:7;42634:9;:28::i;:::-;42331:339;;;:::o;54969:158::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55100:19:::1;55079:18;;:40;;;;;;;;;;;;;;;;;;54969:158:::0;:::o;57205:318::-;57330:16;57348:21;57395:16;57403:7;57395;:16::i;:::-;57387:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57462:4;57469:45;57482:26;57495:9;57506:1;57482:12;:26::i;:::-;57510:3;57469:12;:45::i;:::-;57446:69;;;;57205:318;;;;;:::o;55137:143::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55185:15:::1;55203:21;55185:39;;55243:10;55235:28;;:37;55264:7;55235:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55174:106;55137:143::o:0;42741:185::-;42879:39;42896:4;42902:2;42906:7;42879:39;;;;;;;;;;;;:16;:39::i;:::-;42741:185;;;:::o;55288:168::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55354:15:::1;55372:5;:15;;;55396:4;55372:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55354:48;;55413:5;:14;;;55428:10;55440:7;55413:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55343:113;55288:168:::0;:::o;54571:100::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54655:8:::1;54645:7;:18;;;;;;;;;;;;:::i;:::-;;54571:100:::0;:::o;39716:239::-;39788:7;39808:13;39824:7;:16;39832:7;39824:16;;;;;;;;;;;;;;;;;;;;;39808:32;;39876:1;39859:19;;:5;:19;;;;39851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39942:5;39935:12;;;39716:239;;;:::o;39446:208::-;39518:7;39563:1;39546:19;;:5;:19;;;;39538:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;39630:9;:16;39640:5;39630:16;;;;;;;;;;;;;;;;39623:23;;39446:208;;;:::o;54182:93::-;54227:13;54260:7;54253:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54182:93;:::o;19097:103::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19162:30:::1;19189:1;19162:18;:30::i;:::-;19097:103::o:0;54283:106::-;54332:7;54359:22;:12;:20;:22::i;:::-;54352:29;;54283:106;:::o;18446:87::-;18492:7;18519:6;;;;;;;;;;;18512:13;;18446:87;:::o;40191:104::-;40247:13;40280:7;40273:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40191:104;:::o;52325:45::-;52366:4;52325:45;:::o;53518:587::-;10375:1;10973:7;;:19;;10965:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10375:1;11106:7;:18;;;;52307:11:::1;53658:14;52366:4;53186:22;:12;:20;:22::i;:::-;:37;53183:175;;;53285:9;53266:14;53258:5;:22;;;;:::i;:::-;53257:37;53235:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53183:175;52584:18:::2;;;;;;;;;;;52576:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;53721:14:::3;53004:9;;52969:14;52944:22;:12;:20;:22::i;:::-;:39;;;;:::i;:::-;:69;;52922:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;53760:14:::4;52214:2;52742:14;:34;;52720:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;53995:9:::5;53990:108;54014:14;54010:1;:18;53990:108;;;54050:36;54060:10;54072:13;:11;:13::i;:::-;54050:9;:36::i;:::-;54030:3;;;;;:::i;:::-;;;;53990:108;;;;53086:1:::4;52641::::3;11137::::1;;10331::::0;11285:7;:22;;;;53518:587;:::o;41874:155::-;41969:52;41988:12;:10;:12::i;:::-;42002:8;42012;41969:18;:52::i;:::-;41874:155;;:::o;52425:31::-;;;;:::o;42997:328::-;43172:41;43191:12;:10;:12::i;:::-;43205:7;43172:18;:41::i;:::-;43164:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;43278:39;43292:4;43298:2;43302:7;43311:5;43278:13;:39::i;:::-;42997:328;;;;:::o;52171:45::-;52214:2;52171:45;:::o;56836:303::-;56954:13;56993:16;57001:7;56993;:16::i;:::-;56985:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57088:7;57102:18;:7;:16;:18::i;:::-;57071:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57044:87;;56836:303;;;:::o;52223:31::-;;;;:::o;54795:166::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54932:21:::1;54909:20;;:44;;;;;;;;;;;;;;;;;;54795:166:::0;:::o;56148:617::-;56273:4;56438:27;56496;;;;;;;;;;;56438:96;;56563:20;;;;;;;;;;;:86;;;;;56641:8;56600:49;;56608:13;:21;;;56630:5;56608:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56600:49;;;56563:86;56545:154;;;56683:4;56676:11;;;;;56545:154;56718:39;56741:5;56748:8;56718:22;:39::i;:::-;56711:46;;;56148:617;;;;;:::o;19355:201::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19464:1:::1;19444:22;;:8;:22;;;;19436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19520:28;19539:8;19520:18;:28::i;:::-;19355:201:::0;:::o;39077:305::-;39179:4;39231:25;39216:40;;;:11;:40;;;;:105;;;;39288:33;39273:48;;;:11;:48;;;;39216:105;:158;;;;39338:36;39362:11;39338:23;:36::i;:::-;39216:158;39196:178;;39077:305;;;:::o;44835:127::-;44900:4;44952:1;44924:30;;:7;:16;44932:7;44924:16;;;;;;;;;;;;;;;;;;;;;:30;;;;44917:37;;44835:127;;;:::o;17170:98::-;17223:7;17250:10;17243:17;;17170:98;:::o;48817:174::-;48919:2;48892:15;:24;48908:7;48892:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48975:7;48971:2;48937:46;;48946:23;48961:7;48946:14;:23::i;:::-;48937:46;;;;;;;;;;;;48817:174;;:::o;7970:114::-;8035:7;8062;:14;;;8055:21;;7970:114;;;:::o;45129:348::-;45222:4;45247:16;45255:7;45247;:16::i;:::-;45239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45323:13;45339:23;45354:7;45339:14;:23::i;:::-;45323:39;;45392:5;45381:16;;:7;:16;;;:51;;;;45425:7;45401:31;;:20;45413:7;45401:11;:20::i;:::-;:31;;;45381:51;:87;;;;45436:32;45453:5;45460:7;45436:16;:32::i;:::-;45381:87;45373:96;;;45129:348;;;;:::o;48121:578::-;48280:4;48253:31;;:23;48268:7;48253:14;:23::i;:::-;:31;;;48245:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48363:1;48349:16;;:2;:16;;;;48341:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48419:39;48440:4;48446:2;48450:7;48419:20;:39::i;:::-;48523:29;48540:1;48544:7;48523:8;:29::i;:::-;48584:1;48565:9;:15;48575:4;48565:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;48613:1;48596:9;:13;48606:2;48596:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;48644:2;48625:7;:16;48633:7;48625:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48683:7;48679:2;48664:27;;48673:4;48664:27;;;;;;;;;;;;48121:578;;;:::o;3671:98::-;3729:7;3760:1;3756;:5;;;;:::i;:::-;3749:12;;3671:98;;;;:::o;4070:::-;4128:7;4159:1;4155;:5;;;;:::i;:::-;4148:12;;4070:98;;;;:::o;19716:191::-;19790:16;19809:6;;;;;;;;;;;19790:25;;19835:8;19826:6;;:17;;;;;;;;;;;;;;;;;;19890:8;19859:40;;19880:8;19859:40;;;;;;;;;;;;19779:128;19716:191;:::o;55525:132::-;55565:7;55585:24;:12;:22;:24::i;:::-;55627:22;:12;:20;:22::i;:::-;55620:29;;55525:132;:::o;45819:110::-;45895:26;45905:2;45909:7;45895:26;;;;;;;;;;;;:9;:26::i;:::-;45819:110;;:::o;49133:315::-;49288:8;49279:17;;:5;:17;;;;49271:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49375:8;49337:18;:25;49356:5;49337:25;;;;;;;;;;;;;;;:35;49363:8;49337:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49421:8;49399:41;;49414:5;49399:41;;;49431:8;49399:41;;;;;;:::i;:::-;;;;;;;;49133:315;;;:::o;44207:::-;44364:28;44374:4;44380:2;44384:7;44364:9;:28::i;:::-;44411:48;44434:4;44440:2;44444:7;44453:5;44411:22;:48::i;:::-;44403:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;44207:315;;;;:::o;14732:723::-;14788:13;15018:1;15009:5;:10;15005:53;;;15036:10;;;;;;;;;;;;;;;;;;;;;15005:53;15068:12;15083:5;15068:20;;15099:14;15124:78;15139:1;15131:4;:9;15124:78;;15157:8;;;;;:::i;:::-;;;;15188:2;15180:10;;;;;:::i;:::-;;;15124:78;;;15212:19;15244:6;15234:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15212:39;;15262:154;15278:1;15269:5;:10;15262:154;;15306:1;15296:11;;;;;:::i;:::-;;;15373:2;15365:5;:10;;;;:::i;:::-;15352:2;:24;;;;:::i;:::-;15339:39;;15322:6;15329;15322:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15402:2;15393:11;;;;;:::i;:::-;;;15262:154;;;15440:6;15426:21;;;;;14732:723;;;;:::o;42100:164::-;42197:4;42221:18;:25;42240:5;42221:25;;;;;;;;;;;;;;;:35;42247:8;42221:35;;;;;;;;;;;;;;;;;;;;;;;;;42214:42;;42100:164;;;;:::o;31846:157::-;31931:4;31970:25;31955:40;;;:11;:40;;;;31948:47;;31846:157;;;:::o;51384:126::-;;;;:::o;8092:127::-;8199:1;8181:7;:14;;;:19;;;;;;;;;;;8092:127;:::o;46156:321::-;46286:18;46292:2;46296:7;46286:5;:18::i;:::-;46337:54;46368:1;46372:2;46376:7;46385:5;46337:22;:54::i;:::-;46315:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;46156:321;;;:::o;50013:799::-;50168:4;50189:15;:2;:13;;;:15::i;:::-;50185:620;;;50241:2;50225:36;;;50262:12;:10;:12::i;:::-;50276:4;50282:7;50291:5;50225:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50221:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50484:1;50467:6;:13;:18;50463:272;;;50510:60;;;;;;;;;;:::i;:::-;;;;;;;;50463:272;50685:6;50679:13;50670:6;50666:2;50662:15;50655:38;50221:529;50358:41;;;50348:51;;;:6;:51;;;;50341:58;;;;;50185:620;50789:4;50782:11;;50013:799;;;;;;;:::o;46813:382::-;46907:1;46893:16;;:2;:16;;;;46885:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46966:16;46974:7;46966;:16::i;:::-;46965:17;46957:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47028:45;47057:1;47061:2;47065:7;47028:20;:45::i;:::-;47103:1;47086:9;:13;47096:2;47086:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;47134:2;47115:7;:16;47123:7;47115:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47179:7;47175:2;47154:33;;47171:1;47154:33;;;;;;;;;;;;46813:382;;:::o;20734:387::-;20794:4;21002:12;21069:7;21057:20;21049:28;;21112:1;21105:4;:8;21098:15;;;20734:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2088:201::-;2174:5;2205:6;2199:13;2190:22;;2221:62;2277:5;2221:62;:::i;:::-;2088:201;;;;:::o;2309:340::-;2365:5;2414:3;2407:4;2399:6;2395:17;2391:27;2381:122;;2422:79;;:::i;:::-;2381:122;2539:6;2526:20;2564:79;2639:3;2631:6;2624:4;2616:6;2612:17;2564:79;:::i;:::-;2555:88;;2371:278;2309:340;;;;:::o;2655:139::-;2701:5;2739:6;2726:20;2717:29;;2755:33;2782:5;2755:33;:::i;:::-;2655:139;;;;:::o;2800:143::-;2857:5;2888:6;2882:13;2873:22;;2904:33;2931:5;2904:33;:::i;:::-;2800:143;;;;:::o;2949:329::-;3008:6;3057:2;3045:9;3036:7;3032:23;3028:32;3025:119;;;3063:79;;:::i;:::-;3025:119;3183:1;3208:53;3253:7;3244:6;3233:9;3229:22;3208:53;:::i;:::-;3198:63;;3154:117;2949:329;;;;:::o;3284:474::-;3352:6;3360;3409:2;3397:9;3388:7;3384:23;3380:32;3377:119;;;3415:79;;:::i;:::-;3377:119;3535:1;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3506:117;3662:2;3688:53;3733:7;3724:6;3713:9;3709:22;3688:53;:::i;:::-;3678:63;;3633:118;3284:474;;;;;:::o;3764:619::-;3841:6;3849;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;3764:619;;;;;:::o;4389:943::-;4484:6;4492;4500;4508;4557:3;4545:9;4536:7;4532:23;4528:33;4525:120;;;4564:79;;:::i;:::-;4525:120;4684:1;4709:53;4754:7;4745:6;4734:9;4730:22;4709:53;:::i;:::-;4699:63;;4655:117;4811:2;4837:53;4882:7;4873:6;4862:9;4858:22;4837:53;:::i;:::-;4827:63;;4782:118;4939:2;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4910:118;5095:2;5084:9;5080:18;5067:32;5126:18;5118:6;5115:30;5112:117;;;5148:79;;:::i;:::-;5112:117;5253:62;5307:7;5298:6;5287:9;5283:22;5253:62;:::i;:::-;5243:72;;5038:287;4389:943;;;;;;;:::o;5338:468::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:50;5781:7;5772:6;5761:9;5757:22;5739:50;:::i;:::-;5729:60;;5684:115;5338:468;;;;;:::o;5812:474::-;5880:6;5888;5937:2;5925:9;5916:7;5912:23;5908:32;5905:119;;;5943:79;;:::i;:::-;5905:119;6063:1;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6034:117;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;5812:474;;;;;:::o;6292:323::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6292:323;;;;:::o;6621:345::-;6688:6;6737:2;6725:9;6716:7;6712:23;6708:32;6705:119;;;6743:79;;:::i;:::-;6705:119;6863:1;6888:61;6941:7;6932:6;6921:9;6917:22;6888:61;:::i;:::-;6878:71;;6834:125;6621:345;;;;:::o;6972:327::-;7030:6;7079:2;7067:9;7058:7;7054:23;7050:32;7047:119;;;7085:79;;:::i;:::-;7047:119;7205:1;7230:52;7274:7;7265:6;7254:9;7250:22;7230:52;:::i;:::-;7220:62;;7176:116;6972:327;;;;:::o;7305:349::-;7374:6;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:63;7629:7;7620:6;7609:9;7605:22;7574:63;:::i;:::-;7564:73;;7520:127;7305:349;;;;:::o;7660:357::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:67;7992:7;7983:6;7972:9;7968:22;7933:67;:::i;:::-;7923:77;;7879:131;7660:357;;;;:::o;8023:409::-;8122:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:119;;;8177:79;;:::i;:::-;8139:119;8297:1;8322:93;8407:7;8398:6;8387:9;8383:22;8322:93;:::i;:::-;8312:103;;8268:157;8023:409;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:329::-;9012:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:53;9257:7;9248:6;9237:9;9233:22;9212:53;:::i;:::-;9202:63;;9158:117;8953:329;;;;:::o;9288:351::-;9358:6;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9533:1;9558:64;9614:7;9605:6;9594:9;9590:22;9558:64;:::i;:::-;9548:74;;9504:128;9288:351;;;;:::o;9645:474::-;9713:6;9721;9770:2;9758:9;9749:7;9745:23;9741:32;9738:119;;;9776:79;;:::i;:::-;9738:119;9896:1;9921:53;9966:7;9957:6;9946:9;9942:22;9921:53;:::i;:::-;9911:63;;9867:117;10023:2;10049:53;10094:7;10085:6;10074:9;10070:22;10049:53;:::i;:::-;10039:63;;9994:118;9645:474;;;;;:::o;10125:118::-;10212:24;10230:5;10212:24;:::i;:::-;10207:3;10200:37;10125:118;;:::o;10249:109::-;10330:21;10345:5;10330:21;:::i;:::-;10325:3;10318:34;10249:109;;:::o;10364:360::-;10450:3;10478:38;10510:5;10478:38;:::i;:::-;10532:70;10595:6;10590:3;10532:70;:::i;:::-;10525:77;;10611:52;10656:6;10651:3;10644:4;10637:5;10633:16;10611:52;:::i;:::-;10688:29;10710:6;10688:29;:::i;:::-;10683:3;10679:39;10672:46;;10454:270;10364:360;;;;:::o;10730:364::-;10818:3;10846:39;10879:5;10846:39;:::i;:::-;10901:71;10965:6;10960:3;10901:71;:::i;:::-;10894:78;;10981:52;11026:6;11021:3;11014:4;11007:5;11003:16;10981:52;:::i;:::-;11058:29;11080:6;11058:29;:::i;:::-;11053:3;11049:39;11042:46;;10822:272;10730:364;;;;:::o;11100:377::-;11206:3;11234:39;11267:5;11234:39;:::i;:::-;11289:89;11371:6;11366:3;11289:89;:::i;:::-;11282:96;;11387:52;11432:6;11427:3;11420:4;11413:5;11409:16;11387:52;:::i;:::-;11464:6;11459:3;11455:16;11448:23;;11210:267;11100:377;;;;:::o;11507:845::-;11610:3;11647:5;11641:12;11676:36;11702:9;11676:36;:::i;:::-;11728:89;11810:6;11805:3;11728:89;:::i;:::-;11721:96;;11848:1;11837:9;11833:17;11864:1;11859:137;;;;12010:1;12005:341;;;;11826:520;;11859:137;11943:4;11939:9;11928;11924:25;11919:3;11912:38;11979:6;11974:3;11970:16;11963:23;;11859:137;;12005:341;12072:38;12104:5;12072:38;:::i;:::-;12132:1;12146:154;12160:6;12157:1;12154:13;12146:154;;;12234:7;12228:14;12224:1;12219:3;12215:11;12208:35;12284:1;12275:7;12271:15;12260:26;;12182:4;12179:1;12175:12;12170:17;;12146:154;;;12329:6;12324:3;12320:16;12313:23;;12012:334;;11826:520;;11614:738;;11507:845;;;;:::o;12358:366::-;12500:3;12521:67;12585:2;12580:3;12521:67;:::i;:::-;12514:74;;12597:93;12686:3;12597:93;:::i;:::-;12715:2;12710:3;12706:12;12699:19;;12358:366;;;:::o;12730:::-;12872:3;12893:67;12957:2;12952:3;12893:67;:::i;:::-;12886:74;;12969:93;13058:3;12969:93;:::i;:::-;13087:2;13082:3;13078:12;13071:19;;12730:366;;;:::o;13102:::-;13244:3;13265:67;13329:2;13324:3;13265:67;:::i;:::-;13258:74;;13341:93;13430:3;13341:93;:::i;:::-;13459:2;13454:3;13450:12;13443:19;;13102:366;;;:::o;13474:::-;13616:3;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13713:93;13802:3;13713:93;:::i;:::-;13831:2;13826:3;13822:12;13815:19;;13474:366;;;:::o;13846:::-;13988:3;14009:67;14073:2;14068:3;14009:67;:::i;:::-;14002:74;;14085:93;14174:3;14085:93;:::i;:::-;14203:2;14198:3;14194:12;14187:19;;13846:366;;;:::o;14218:::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:::-;14732:3;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14829:93;14918:3;14829:93;:::i;:::-;14947:2;14942:3;14938:12;14931:19;;14590:366;;;:::o;14962:::-;15104:3;15125:67;15189:2;15184:3;15125:67;:::i;:::-;15118:74;;15201:93;15290:3;15201:93;:::i;:::-;15319:2;15314:3;15310:12;15303:19;;14962:366;;;:::o;15334:::-;15476:3;15497:67;15561:2;15556:3;15497:67;:::i;:::-;15490:74;;15573:93;15662:3;15573:93;:::i;:::-;15691:2;15686:3;15682:12;15675:19;;15334:366;;;:::o;15706:::-;15848:3;15869:67;15933:2;15928:3;15869:67;:::i;:::-;15862:74;;15945:93;16034:3;15945:93;:::i;:::-;16063:2;16058:3;16054:12;16047:19;;15706:366;;;:::o;16078:::-;16220:3;16241:67;16305:2;16300:3;16241:67;:::i;:::-;16234:74;;16317:93;16406:3;16317:93;:::i;:::-;16435:2;16430:3;16426:12;16419:19;;16078:366;;;:::o;16450:::-;16592:3;16613:67;16677:2;16672:3;16613:67;:::i;:::-;16606:74;;16689:93;16778:3;16689:93;:::i;:::-;16807:2;16802:3;16798:12;16791:19;;16450:366;;;:::o;16822:::-;16964:3;16985:67;17049:2;17044:3;16985:67;:::i;:::-;16978:74;;17061:93;17150:3;17061:93;:::i;:::-;17179:2;17174:3;17170:12;17163:19;;16822:366;;;:::o;17194:::-;17336:3;17357:67;17421:2;17416:3;17357:67;:::i;:::-;17350:74;;17433:93;17522:3;17433:93;:::i;:::-;17551:2;17546:3;17542:12;17535:19;;17194:366;;;:::o;17566:400::-;17726:3;17747:84;17829:1;17824:3;17747:84;:::i;:::-;17740:91;;17840:93;17929:3;17840:93;:::i;:::-;17958:1;17953:3;17949:11;17942:18;;17566:400;;;:::o;17972:366::-;18114:3;18135:67;18199:2;18194:3;18135:67;:::i;:::-;18128:74;;18211:93;18300:3;18211:93;:::i;:::-;18329:2;18324:3;18320:12;18313:19;;17972:366;;;:::o;18344:::-;18486:3;18507:67;18571:2;18566:3;18507:67;:::i;:::-;18500:74;;18583:93;18672:3;18583:93;:::i;:::-;18701:2;18696:3;18692:12;18685:19;;18344:366;;;:::o;18716:::-;18858:3;18879:67;18943:2;18938:3;18879:67;:::i;:::-;18872:74;;18955:93;19044:3;18955:93;:::i;:::-;19073:2;19068:3;19064:12;19057:19;;18716:366;;;:::o;19088:::-;19230:3;19251:67;19315:2;19310:3;19251:67;:::i;:::-;19244:74;;19327:93;19416:3;19327:93;:::i;:::-;19445:2;19440:3;19436:12;19429:19;;19088:366;;;:::o;19460:::-;19602:3;19623:67;19687:2;19682:3;19623:67;:::i;:::-;19616:74;;19699:93;19788:3;19699:93;:::i;:::-;19817:2;19812:3;19808:12;19801:19;;19460:366;;;:::o;19832:::-;19974:3;19995:67;20059:2;20054:3;19995:67;:::i;:::-;19988:74;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19832:366;;;:::o;20204:::-;20346:3;20367:67;20431:2;20426:3;20367:67;:::i;:::-;20360:74;;20443:93;20532:3;20443:93;:::i;:::-;20561:2;20556:3;20552:12;20545:19;;20204:366;;;:::o;20576:400::-;20736:3;20757:84;20839:1;20834:3;20757:84;:::i;:::-;20750:91;;20850:93;20939:3;20850:93;:::i;:::-;20968:1;20963:3;20959:11;20952:18;;20576:400;;;:::o;20982:118::-;21069:24;21087:5;21069:24;:::i;:::-;21064:3;21057:37;20982:118;;:::o;21106:961::-;21485:3;21507:92;21595:3;21586:6;21507:92;:::i;:::-;21500:99;;21616:148;21760:3;21616:148;:::i;:::-;21609:155;;21781:95;21872:3;21863:6;21781:95;:::i;:::-;21774:102;;21893:148;22037:3;21893:148;:::i;:::-;21886:155;;22058:3;22051:10;;21106:961;;;;;:::o;22073:222::-;22166:4;22204:2;22193:9;22189:18;22181:26;;22217:71;22285:1;22274:9;22270:17;22261:6;22217:71;:::i;:::-;22073:222;;;;:::o;22301:640::-;22496:4;22534:3;22523:9;22519:19;22511:27;;22548:71;22616:1;22605:9;22601:17;22592:6;22548:71;:::i;:::-;22629:72;22697:2;22686:9;22682:18;22673:6;22629:72;:::i;:::-;22711;22779:2;22768:9;22764:18;22755:6;22711:72;:::i;:::-;22830:9;22824:4;22820:20;22815:2;22804:9;22800:18;22793:48;22858:76;22929:4;22920:6;22858:76;:::i;:::-;22850:84;;22301:640;;;;;;;:::o;22947:332::-;23068:4;23106:2;23095:9;23091:18;23083:26;;23119:71;23187:1;23176:9;23172:17;23163:6;23119:71;:::i;:::-;23200:72;23268:2;23257:9;23253:18;23244:6;23200:72;:::i;:::-;22947:332;;;;;:::o;23285:210::-;23372:4;23410:2;23399:9;23395:18;23387:26;;23423:65;23485:1;23474:9;23470:17;23461:6;23423:65;:::i;:::-;23285:210;;;;:::o;23501:313::-;23614:4;23652:2;23641:9;23637:18;23629:26;;23701:9;23695:4;23691:20;23687:1;23676:9;23672:17;23665:47;23729:78;23802:4;23793:6;23729:78;:::i;:::-;23721:86;;23501:313;;;;:::o;23820:419::-;23986:4;24024:2;24013:9;24009:18;24001:26;;24073:9;24067:4;24063:20;24059:1;24048:9;24044:17;24037:47;24101:131;24227:4;24101:131;:::i;:::-;24093:139;;23820:419;;;:::o;24245:::-;24411:4;24449:2;24438:9;24434:18;24426:26;;24498:9;24492:4;24488:20;24484:1;24473:9;24469:17;24462:47;24526:131;24652:4;24526:131;:::i;:::-;24518:139;;24245:419;;;:::o;24670:::-;24836:4;24874:2;24863:9;24859:18;24851:26;;24923:9;24917:4;24913:20;24909:1;24898:9;24894:17;24887:47;24951:131;25077:4;24951:131;:::i;:::-;24943:139;;24670:419;;;:::o;25095:::-;25261:4;25299:2;25288:9;25284:18;25276:26;;25348:9;25342:4;25338:20;25334:1;25323:9;25319:17;25312:47;25376:131;25502:4;25376:131;:::i;:::-;25368:139;;25095:419;;;:::o;25520:::-;25686:4;25724:2;25713:9;25709:18;25701:26;;25773:9;25767:4;25763:20;25759:1;25748:9;25744:17;25737:47;25801:131;25927:4;25801:131;:::i;:::-;25793:139;;25520:419;;;:::o;25945:::-;26111:4;26149:2;26138:9;26134:18;26126:26;;26198:9;26192:4;26188:20;26184:1;26173:9;26169:17;26162:47;26226:131;26352:4;26226:131;:::i;:::-;26218:139;;25945:419;;;:::o;26370:::-;26536:4;26574:2;26563:9;26559:18;26551:26;;26623:9;26617:4;26613:20;26609:1;26598:9;26594:17;26587:47;26651:131;26777:4;26651:131;:::i;:::-;26643:139;;26370:419;;;:::o;26795:::-;26961:4;26999:2;26988:9;26984:18;26976:26;;27048:9;27042:4;27038:20;27034:1;27023:9;27019:17;27012:47;27076:131;27202:4;27076:131;:::i;:::-;27068:139;;26795:419;;;:::o;27220:::-;27386:4;27424:2;27413:9;27409:18;27401:26;;27473:9;27467:4;27463:20;27459:1;27448:9;27444:17;27437:47;27501:131;27627:4;27501:131;:::i;:::-;27493:139;;27220:419;;;:::o;27645:::-;27811:4;27849:2;27838:9;27834:18;27826:26;;27898:9;27892:4;27888:20;27884:1;27873:9;27869:17;27862:47;27926:131;28052:4;27926:131;:::i;:::-;27918:139;;27645:419;;;:::o;28070:::-;28236:4;28274:2;28263:9;28259:18;28251:26;;28323:9;28317:4;28313:20;28309:1;28298:9;28294:17;28287:47;28351:131;28477:4;28351:131;:::i;:::-;28343:139;;28070:419;;;:::o;28495:::-;28661:4;28699:2;28688:9;28684:18;28676:26;;28748:9;28742:4;28738:20;28734:1;28723:9;28719:17;28712:47;28776:131;28902:4;28776:131;:::i;:::-;28768:139;;28495:419;;;:::o;28920:::-;29086:4;29124:2;29113:9;29109:18;29101:26;;29173:9;29167:4;29163:20;29159:1;29148:9;29144:17;29137:47;29201:131;29327:4;29201:131;:::i;:::-;29193:139;;28920:419;;;:::o;29345:::-;29511:4;29549:2;29538:9;29534:18;29526:26;;29598:9;29592:4;29588:20;29584:1;29573:9;29569:17;29562:47;29626:131;29752:4;29626:131;:::i;:::-;29618:139;;29345:419;;;:::o;29770:::-;29936:4;29974:2;29963:9;29959:18;29951:26;;30023:9;30017:4;30013:20;30009:1;29998:9;29994:17;29987:47;30051:131;30177:4;30051:131;:::i;:::-;30043:139;;29770:419;;;:::o;30195:::-;30361:4;30399:2;30388:9;30384:18;30376:26;;30448:9;30442:4;30438:20;30434:1;30423:9;30419:17;30412:47;30476:131;30602:4;30476:131;:::i;:::-;30468:139;;30195:419;;;:::o;30620:::-;30786:4;30824:2;30813:9;30809:18;30801:26;;30873:9;30867:4;30863:20;30859:1;30848:9;30844:17;30837:47;30901:131;31027:4;30901:131;:::i;:::-;30893:139;;30620:419;;;:::o;31045:::-;31211:4;31249:2;31238:9;31234:18;31226:26;;31298:9;31292:4;31288:20;31284:1;31273:9;31269:17;31262:47;31326:131;31452:4;31326:131;:::i;:::-;31318:139;;31045:419;;;:::o;31470:::-;31636:4;31674:2;31663:9;31659:18;31651:26;;31723:9;31717:4;31713:20;31709:1;31698:9;31694:17;31687:47;31751:131;31877:4;31751:131;:::i;:::-;31743:139;;31470:419;;;:::o;31895:::-;32061:4;32099:2;32088:9;32084:18;32076:26;;32148:9;32142:4;32138:20;32134:1;32123:9;32119:17;32112:47;32176:131;32302:4;32176:131;:::i;:::-;32168:139;;31895:419;;;:::o;32320:::-;32486:4;32524:2;32513:9;32509:18;32501:26;;32573:9;32567:4;32563:20;32559:1;32548:9;32544:17;32537:47;32601:131;32727:4;32601:131;:::i;:::-;32593:139;;32320:419;;;:::o;32745:222::-;32838:4;32876:2;32865:9;32861:18;32853:26;;32889:71;32957:1;32946:9;32942:17;32933:6;32889:71;:::i;:::-;32745:222;;;;:::o;32973:129::-;33007:6;33034:20;;:::i;:::-;33024:30;;33063:33;33091:4;33083:6;33063:33;:::i;:::-;32973:129;;;:::o;33108:75::-;33141:6;33174:2;33168:9;33158:19;;33108:75;:::o;33189:307::-;33250:4;33340:18;33332:6;33329:30;33326:56;;;33362:18;;:::i;:::-;33326:56;33400:29;33422:6;33400:29;:::i;:::-;33392:37;;33484:4;33478;33474:15;33466:23;;33189:307;;;:::o;33502:308::-;33564:4;33654:18;33646:6;33643:30;33640:56;;;33676:18;;:::i;:::-;33640:56;33714:29;33736:6;33714:29;:::i;:::-;33706:37;;33798:4;33792;33788:15;33780:23;;33502:308;;;:::o;33816:141::-;33865:4;33888:3;33880:11;;33911:3;33908:1;33901:14;33945:4;33942:1;33932:18;33924:26;;33816:141;;;:::o;33963:98::-;34014:6;34048:5;34042:12;34032:22;;33963:98;;;:::o;34067:99::-;34119:6;34153:5;34147:12;34137:22;;34067:99;;;:::o;34172:168::-;34255:11;34289:6;34284:3;34277:19;34329:4;34324:3;34320:14;34305:29;;34172:168;;;;:::o;34346:169::-;34430:11;34464:6;34459:3;34452:19;34504:4;34499:3;34495:14;34480:29;;34346:169;;;;:::o;34521:148::-;34623:11;34660:3;34645:18;;34521:148;;;;:::o;34675:305::-;34715:3;34734:20;34752:1;34734:20;:::i;:::-;34729:25;;34768:20;34786:1;34768:20;:::i;:::-;34763:25;;34922:1;34854:66;34850:74;34847:1;34844:81;34841:107;;;34928:18;;:::i;:::-;34841:107;34972:1;34969;34965:9;34958:16;;34675:305;;;;:::o;34986:185::-;35026:1;35043:20;35061:1;35043:20;:::i;:::-;35038:25;;35077:20;35095:1;35077:20;:::i;:::-;35072:25;;35116:1;35106:35;;35121:18;;:::i;:::-;35106:35;35163:1;35160;35156:9;35151:14;;34986:185;;;;:::o;35177:348::-;35217:7;35240:20;35258:1;35240:20;:::i;:::-;35235:25;;35274:20;35292:1;35274:20;:::i;:::-;35269:25;;35462:1;35394:66;35390:74;35387:1;35384:81;35379:1;35372:9;35365:17;35361:105;35358:131;;;35469:18;;:::i;:::-;35358:131;35517:1;35514;35510:9;35499:20;;35177:348;;;;:::o;35531:191::-;35571:4;35591:20;35609:1;35591:20;:::i;:::-;35586:25;;35625:20;35643:1;35625:20;:::i;:::-;35620:25;;35664:1;35661;35658:8;35655:34;;;35669:18;;:::i;:::-;35655:34;35714:1;35711;35707:9;35699:17;;35531:191;;;;:::o;35728:96::-;35765:7;35794:24;35812:5;35794:24;:::i;:::-;35783:35;;35728:96;;;:::o;35830:90::-;35864:7;35907:5;35900:13;35893:21;35882:32;;35830:90;;;:::o;35926:149::-;35962:7;36002:66;35995:5;35991:78;35980:89;;35926:149;;;:::o;36081:110::-;36132:7;36161:24;36179:5;36161:24;:::i;:::-;36150:35;;36081:110;;;:::o;36197:125::-;36263:7;36292:24;36310:5;36292:24;:::i;:::-;36281:35;;36197:125;;;:::o;36328:126::-;36365:7;36405:42;36398:5;36394:54;36383:65;;36328:126;;;:::o;36460:77::-;36497:7;36526:5;36515:16;;36460:77;;;:::o;36543:154::-;36627:6;36622:3;36617;36604:30;36689:1;36680:6;36675:3;36671:16;36664:27;36543:154;;;:::o;36703:307::-;36771:1;36781:113;36795:6;36792:1;36789:13;36781:113;;;36880:1;36875:3;36871:11;36865:18;36861:1;36856:3;36852:11;36845:39;36817:2;36814:1;36810:10;36805:15;;36781:113;;;36912:6;36909:1;36906:13;36903:101;;;36992:1;36983:6;36978:3;36974:16;36967:27;36903:101;36752:258;36703:307;;;:::o;37016:320::-;37060:6;37097:1;37091:4;37087:12;37077:22;;37144:1;37138:4;37134:12;37165:18;37155:81;;37221:4;37213:6;37209:17;37199:27;;37155:81;37283:2;37275:6;37272:14;37252:18;37249:38;37246:84;;;37302:18;;:::i;:::-;37246:84;37067:269;37016:320;;;:::o;37342:281::-;37425:27;37447:4;37425:27;:::i;:::-;37417:6;37413:40;37555:6;37543:10;37540:22;37519:18;37507:10;37504:34;37501:62;37498:88;;;37566:18;;:::i;:::-;37498:88;37606:10;37602:2;37595:22;37385:238;37342:281;;:::o;37629:233::-;37668:3;37691:24;37709:5;37691:24;:::i;:::-;37682:33;;37737:66;37730:5;37727:77;37724:103;;;37807:18;;:::i;:::-;37724:103;37854:1;37847:5;37843:13;37836:20;;37629:233;;;:::o;37868:176::-;37900:1;37917:20;37935:1;37917:20;:::i;:::-;37912:25;;37951:20;37969:1;37951:20;:::i;:::-;37946:25;;37990:1;37980:35;;37995:18;;:::i;:::-;37980:35;38036:1;38033;38029:9;38024:14;;37868:176;;;;:::o;38050:180::-;38098:77;38095:1;38088:88;38195:4;38192:1;38185:15;38219:4;38216:1;38209:15;38236:180;38284:77;38281:1;38274:88;38381:4;38378:1;38371:15;38405:4;38402:1;38395:15;38422:180;38470:77;38467:1;38460:88;38567:4;38564:1;38557:15;38591:4;38588:1;38581:15;38608:180;38656:77;38653:1;38646:88;38753:4;38750:1;38743:15;38777:4;38774:1;38767:15;38794:180;38842:77;38839:1;38832:88;38939:4;38936:1;38929:15;38963:4;38960:1;38953:15;38980:117;39089:1;39086;39079:12;39103:117;39212:1;39209;39202:12;39226:117;39335:1;39332;39325:12;39349:117;39458:1;39455;39448:12;39472:102;39513:6;39564:2;39560:7;39555:2;39548:5;39544:14;39540:28;39530:38;;39472:102;;;:::o;39580:237::-;39720:34;39716:1;39708:6;39704:14;39697:58;39789:20;39784:2;39776:6;39772:15;39765:45;39580:237;:::o;39823:225::-;39963:34;39959:1;39951:6;39947:14;39940:58;40032:8;40027:2;40019:6;40015:15;40008:33;39823:225;:::o;40054:178::-;40194:30;40190:1;40182:6;40178:14;40171:54;40054:178;:::o;40238:221::-;40378:34;40374:1;40366:6;40362:14;40355:58;40447:4;40442:2;40434:6;40430:15;40423:29;40238:221;:::o;40465:223::-;40605:34;40601:1;40593:6;40589:14;40582:58;40674:6;40669:2;40661:6;40657:15;40650:31;40465:223;:::o;40694:175::-;40834:27;40830:1;40822:6;40818:14;40811:51;40694:175;:::o;40875:231::-;41015:34;41011:1;41003:6;40999:14;40992:58;41084:14;41079:2;41071:6;41067:15;41060:39;40875:231;:::o;41112:221::-;41252:34;41248:1;41240:6;41236:14;41229:58;41321:4;41316:2;41308:6;41304:15;41297:29;41112:221;:::o;41339:243::-;41479:34;41475:1;41467:6;41463:14;41456:58;41548:26;41543:2;41535:6;41531:15;41524:51;41339:243;:::o;41588:167::-;41728:19;41724:1;41716:6;41712:14;41705:43;41588:167;:::o;41761:229::-;41901:34;41897:1;41889:6;41885:14;41878:58;41970:12;41965:2;41957:6;41953:15;41946:37;41761:229;:::o;41996:228::-;42136:34;42132:1;42124:6;42120:14;42113:58;42205:11;42200:2;42192:6;42188:15;42181:36;41996:228;:::o;42230:182::-;42370:34;42366:1;42358:6;42354:14;42347:58;42230:182;:::o;42418:231::-;42558:34;42554:1;42546:6;42542:14;42535:58;42627:14;42622:2;42614:6;42610:15;42603:39;42418:231;:::o;42655:155::-;42795:7;42791:1;42783:6;42779:14;42772:31;42655:155;:::o;42816:182::-;42956:34;42952:1;42944:6;42940:14;42933:58;42816:182;:::o;43004:228::-;43144:34;43140:1;43132:6;43128:14;43121:58;43213:11;43208:2;43200:6;43196:15;43189:36;43004:228;:::o;43238:220::-;43378:34;43374:1;43366:6;43362:14;43355:58;43447:3;43442:2;43434:6;43430:15;43423:28;43238:220;:::o;43464:236::-;43604:34;43600:1;43592:6;43588:14;43581:58;43673:19;43668:2;43660:6;43656:15;43649:44;43464:236;:::o;43706:174::-;43846:26;43842:1;43834:6;43830:14;43823:50;43706:174;:::o;43886:181::-;44026:33;44022:1;44014:6;44010:14;44003:57;43886:181;:::o;44073:173::-;44213:25;44209:1;44201:6;44197:14;44190:49;44073:173;:::o;44252:151::-;44392:3;44388:1;44380:6;44376:14;44369:27;44252:151;:::o;44409:122::-;44482:24;44500:5;44482:24;:::i;:::-;44475:5;44472:35;44462:63;;44521:1;44518;44511:12;44462:63;44409:122;:::o;44537:116::-;44607:21;44622:5;44607:21;:::i;:::-;44600:5;44597:32;44587:60;;44643:1;44640;44633:12;44587:60;44537:116;:::o;44659:120::-;44731:23;44748:5;44731:23;:::i;:::-;44724:5;44721:34;44711:62;;44769:1;44766;44759:12;44711:62;44659:120;:::o;44785:150::-;44872:38;44904:5;44872:38;:::i;:::-;44865:5;44862:49;44852:77;;44925:1;44922;44915:12;44852:77;44785:150;:::o;44941:180::-;45043:53;45090:5;45043:53;:::i;:::-;45036:5;45033:64;45023:92;;45111:1;45108;45101:12;45023:92;44941:180;:::o;45127:122::-;45200:24;45218:5;45200:24;:::i;:::-;45193:5;45190:35;45180:63;;45239:1;45236;45229:12;45180:63;45127:122;:::o

Swarm Source

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