ETH Price: $3,474.50 (+2.94%)

Token

AlphaFrens (AlphaFrens)
 

Overview

Max Total Supply

128 AlphaFrens

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
frankiestellar.eth
Balance
1 AlphaFrens
0x429955967384605d5ab6f8319b46c1133a0d6b3a
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:
AlphaFrens

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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/vapes.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 AlphaFrens is ERC721, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

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

    uint256 public constant MAX_MINTS_PER_TX = 10;
    uint256 public constant MAX_MINTS_PER_WALLET = 50;
    uint256 public maxSupply = 1014;

    uint256 public constant PUBLIC_SALE_PRICE = 0.04 ether;
    uint256 public NUM_FREE_MINTS = 114;
    bool public isPublicSaleActive = true;




    // ============ 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 maxMintsPerWallet(){
        require(
            balanceOf(msg.sender) <= MAX_MINTS_PER_WALLET,
            "Max mints per wallet 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("AlphaFrens", "AlphaFrens") {
    }

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

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
        maxMintsPerWallet()
    {
        //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 setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


    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":"MAX_MINTS_PER_WALLET","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":"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":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","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"}]

60806040526040518060600160405280603581526020016200431160359139600990805190602001906200003592919062000276565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60146101000a81548160ff0219169083151502179055506103f6600b556072600c556001600d60006101000a81548160ff021916908315150217905550348015620000d957600080fd5b506040518060400160405280600a81526020017f416c7068614672656e73000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f416c7068614672656e730000000000000000000000000000000000000000000081525081600090805190602001906200015e92919062000276565b5080600190805190602001906200017792919062000276565b5050506200019a6200018e620001a860201b60201c565b620001b060201b60201c565b60016007819055506200038b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002849062000326565b90600052602060002090601f016020900481019282620002a85760008555620002f4565b82601f10620002c357805160ff1916838001178555620002f4565b82800160010185558215620002f4579182015b82811115620002f3578251825591602001919060010190620002d6565b5b50905062000303919062000307565b5090565b5b808211156200032257600081600090555060010162000308565b5090565b600060028204905060018216806200033f57607f821691505b602082108114156200035657620003556200035c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f76806200039b6000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106cb578063e43082f7146106f6578063e78fba221461071f578063e985e9c51461074a578063f2fde38b14610787576101ee565b8063a22cb46514610611578063b88d4fde1461063a578063c6a91b4214610663578063c87b56dd1461068e576101ee565b80638da5cb5b116100dc5780638da5cb5b1461057457806395d89b411461059f578063982d669e146105ca578063a0712d68146105f5576101ee565b806370a08231146104ca578063714c539814610507578063715018a61461053257806383c4c00d14610549576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e1461041257806349df728c1461043b57806355f804b3146104645780636352211e1461048d576101ee565b806323b872dd1461036b57806328cad13d146103945780632a55205a146103bd5780633ccfd60b146103fb576101ee565b8063095ea7b3116101c1578063095ea7b3146102c35780630a00ae83146102ec57806318160ddd146103155780631e84c41314610340576101ee565b806301ffc9a7146101f357806306fdde031461023057806307e89ec01461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612bd3565b6107b0565b604051610227919061374d565b60405180910390f35b34801561023c57600080fd5b5061024561082a565b6040516102529190613768565b60405180910390f35b34801561026757600080fd5b506102706108bc565b60405161027d9190613a4a565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612cb8565b6108c7565b6040516102ba91906136bd565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612b45565b61094c565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612cb8565b610a64565b005b34801561032157600080fd5b5061032a610aea565b6040516103379190613a4a565b60405180910390f35b34801561034c57600080fd5b50610355610afb565b604051610362919061374d565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612a3f565b610b0e565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612b81565b610b6e565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612d0a565b610c07565b6040516103f2929190613724565b60405180910390f35b34801561040757600080fd5b50610410610c73565b005b34801561041e57600080fd5b5061043960048036038101906104349190612a3f565b610d3e565b005b34801561044757600080fd5b50610462600480360381019061045d9190612c25565b610d5e565b005b34801561047057600080fd5b5061048b60048036038101906104869190612c77565b610ef9565b005b34801561049957600080fd5b506104b460048036038101906104af9190612cb8565b610f8f565b6040516104c191906136bd565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906129da565b611041565b6040516104fe9190613a4a565b60405180910390f35b34801561051357600080fd5b5061051c6110f9565b6040516105299190613768565b60405180910390f35b34801561053e57600080fd5b5061054761118b565b005b34801561055557600080fd5b5061055e611213565b60405161056b9190613a4a565b60405180910390f35b34801561058057600080fd5b50610589611224565b60405161059691906136bd565b60405180910390f35b3480156105ab57600080fd5b506105b461124e565b6040516105c19190613768565b60405180910390f35b3480156105d657600080fd5b506105df6112e0565b6040516105ec9190613a4a565b60405180910390f35b61060f600480360381019061060a9190612cb8565b6112e6565b005b34801561061d57600080fd5b5061063860048036038101906106339190612b09565b611517565b005b34801561064657600080fd5b50610661600480360381019061065c9190612a8e565b61152d565b005b34801561066f57600080fd5b5061067861158f565b6040516106859190613a4a565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612cb8565b611594565b6040516106c29190613768565b60405180910390f35b3480156106d757600080fd5b506106e0611610565b6040516106ed9190613a4a565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190612b81565b611616565b005b34801561072b57600080fd5b506107346116af565b6040516107419190613a4a565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190612a03565b6116b4565b60405161077e919061374d565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a991906129da565b6117ce565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108235750610822826118c6565b5b9050919050565b60606000805461083990613d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461086590613d3d565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b668e1bc9bf04000081565b60006108d2826119a8565b610911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109089061394a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095782610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906139aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e7611a14565b73ffffffffffffffffffffffffffffffffffffffff161480610a165750610a1581610a10611a14565b6116b4565b5b610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c906138aa565b60405180910390fd5b610a5f8383611a1c565b505050565b610a6c611a14565b73ffffffffffffffffffffffffffffffffffffffff16610a8a611224565b73ffffffffffffffffffffffffffffffffffffffff1614610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad79061396a565b60405180910390fd5b80600c8190555050565b6000610af66008611ad5565b905090565b600d60009054906101000a900460ff1681565b610b1f610b19611a14565b82611ae3565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906139ca565b60405180910390fd5b610b69838383611bc1565b505050565b610b76611a14565b73ffffffffffffffffffffffffffffffffffffffff16610b94611224565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be19061396a565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610c13846119a8565b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906138ca565b60405180910390fd5b30610c68610c61856005611e1d565b6064611e33565b915091509250929050565b610c7b611a14565b73ffffffffffffffffffffffffffffffffffffffff16610c99611224565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce69061396a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d3a573d6000803e3d6000fd5b5050565b610d598383836040518060200160405280600081525061152d565b505050565b610d66611a14565b73ffffffffffffffffffffffffffffffffffffffff16610d84611224565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061396a565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e1591906136bd565b60206040518083038186803b158015610e2d57600080fd5b505afa158015610e41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e659190612ce1565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610ea2929190613724565b602060405180830381600087803b158015610ebc57600080fd5b505af1158015610ed0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef49190612baa565b505050565b610f01611a14565b73ffffffffffffffffffffffffffffffffffffffff16610f1f611224565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c9061396a565b60405180910390fd5b8060099080519060200190610f8b9291906127aa565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061390a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906138ea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606009805461110890613d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461113490613d3d565b80156111815780601f1061115657610100808354040283529160200191611181565b820191906000526020600020905b81548152906001019060200180831161116457829003601f168201915b5050505050905090565b611193611a14565b73ffffffffffffffffffffffffffffffffffffffff166111b1611224565b73ffffffffffffffffffffffffffffffffffffffff1614611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe9061396a565b60405180910390fd5b6112116000611e49565b565b600061121f6008611ad5565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125d90613d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461128990613d3d565b80156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b5050505050905090565b600c5481565b6002600754141561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613a0a565b60405180910390fd5b6002600781905550668e1bc9bf04000081600c5461134a6008611ad5565b111561139e5734818361135d9190613bd5565b1461139d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611394906139ea565b60405180910390fd5b5b600d60009054906101000a900460ff166113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490613a2a565b60405180910390fd5b82600b54816113fc6008611ad5565b6114069190613b4e565b1115611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061380a565b60405180910390fd5b83600a81111561148c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114839061388a565b60405180910390fd5b603261149733611041565b11156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906137ea565b60405180910390fd5b60005b85811015611507576114f4336114ef611f0f565b611f2a565b80806114ff90613d6f565b9150506114db565b5050505050600160078190555050565b611529611522611a14565b8383611f48565b5050565b61153e611538611a14565b83611ae3565b61157d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611574906139ca565b60405180910390fd5b611589848484846120b5565b50505050565b600a81565b606061159f826119a8565b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906138ca565b60405180910390fd5b60096115e983612111565b6040516020016115fa929190613683565b6040516020818303038152906040529050919050565b600b5481565b61161e611a14565b73ffffffffffffffffffffffffffffffffffffffff1661163c611224565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061396a565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b603281565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60149054906101000a900460ff1680156117ab57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161174391906136bd565b60206040518083038186803b15801561175b57600080fd5b505afa15801561176f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117939190612c4e565b73ffffffffffffffffffffffffffffffffffffffff16145b156117ba5760019150506117c8565b6117c484846122be565b9150505b92915050565b6117d6611a14565b73ffffffffffffffffffffffffffffffffffffffff166117f4611224565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061396a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b1906137aa565b60405180910390fd5b6118c381611e49565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061199157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119a157506119a082612352565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a8f83610f8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611aee826119a8565b611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b249061386a565b60405180910390fd5b6000611b3883610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ba757508373ffffffffffffffffffffffffffffffffffffffff16611b8f846108c7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bb85750611bb781856116b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611be182610f8f565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e9061398a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e9061382a565b60405180910390fd5b611cb28383836123bc565b611cbd600082611a1c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0d9190613c2f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d649190613b4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611e2b9190613bd5565b905092915050565b60008183611e419190613ba4565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611f1b60086123c1565b611f256008611ad5565b905090565b611f448282604051806020016040528060008152506123d7565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae9061384a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a8919061374d565b60405180910390a3505050565b6120c0848484611bc1565b6120cc84848484612432565b61210b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121029061378a565b60405180910390fd5b50505050565b60606000821415612159576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b9565b600082905060005b6000821461218b57808061217490613d6f565b915050600a826121849190613ba4565b9150612161565b60008167ffffffffffffffff8111156121cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121ff5781602001600182028036833780820191505090505b5090505b600085146122b2576001826122189190613c2f565b9150600a856122279190613db8565b60306122339190613b4e565b60f81b81838151811061226f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ab9190613ba4565b9450612203565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6001816000016000828254019250508190555050565b6123e183836125c9565b6123ee6000848484612432565b61242d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124249061378a565b60405180910390fd5b505050565b60006124538473ffffffffffffffffffffffffffffffffffffffff16612797565b156125bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247c611a14565b8786866040518563ffffffff1660e01b815260040161249e94939291906136d8565b602060405180830381600087803b1580156124b857600080fd5b505af19250505080156124e957506040513d601f19601f820116820180604052508101906124e69190612bfc565b60015b61256c573d8060008114612519576040519150601f19603f3d011682016040523d82523d6000602084013e61251e565b606091505b50600081511415612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b9061378a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126309061392a565b60405180910390fd5b612642816119a8565b15612682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612679906137ca565b60405180910390fd5b61268e600083836123bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126de9190613b4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127b690613d3d565b90600052602060002090601f0160209004810192826127d8576000855561281f565b82601f106127f157805160ff191683800117855561281f565b8280016001018555821561281f579182015b8281111561281e578251825591602001919060010190612803565b5b50905061282c9190612830565b5090565b5b80821115612849576000816000905550600101612831565b5090565b600061286061285b84613a96565b613a65565b90508281526020810184848401111561287857600080fd5b612883848285613cfb565b509392505050565b600061289e61289984613ac6565b613a65565b9050828152602081018484840111156128b657600080fd5b6128c1848285613cfb565b509392505050565b6000813590506128d881613eb6565b92915050565b6000813590506128ed81613ecd565b92915050565b60008151905061290281613ecd565b92915050565b60008135905061291781613ee4565b92915050565b60008151905061292c81613ee4565b92915050565b600082601f83011261294357600080fd5b813561295384826020860161284d565b91505092915050565b60008135905061296b81613efb565b92915050565b60008151905061298081613f12565b92915050565b600082601f83011261299757600080fd5b81356129a784826020860161288b565b91505092915050565b6000813590506129bf81613f29565b92915050565b6000815190506129d481613f29565b92915050565b6000602082840312156129ec57600080fd5b60006129fa848285016128c9565b91505092915050565b60008060408385031215612a1657600080fd5b6000612a24858286016128c9565b9250506020612a35858286016128c9565b9150509250929050565b600080600060608486031215612a5457600080fd5b6000612a62868287016128c9565b9350506020612a73868287016128c9565b9250506040612a84868287016129b0565b9150509250925092565b60008060008060808587031215612aa457600080fd5b6000612ab2878288016128c9565b9450506020612ac3878288016128c9565b9350506040612ad4878288016129b0565b925050606085013567ffffffffffffffff811115612af157600080fd5b612afd87828801612932565b91505092959194509250565b60008060408385031215612b1c57600080fd5b6000612b2a858286016128c9565b9250506020612b3b858286016128de565b9150509250929050565b60008060408385031215612b5857600080fd5b6000612b66858286016128c9565b9250506020612b77858286016129b0565b9150509250929050565b600060208284031215612b9357600080fd5b6000612ba1848285016128de565b91505092915050565b600060208284031215612bbc57600080fd5b6000612bca848285016128f3565b91505092915050565b600060208284031215612be557600080fd5b6000612bf384828501612908565b91505092915050565b600060208284031215612c0e57600080fd5b6000612c1c8482850161291d565b91505092915050565b600060208284031215612c3757600080fd5b6000612c458482850161295c565b91505092915050565b600060208284031215612c6057600080fd5b6000612c6e84828501612971565b91505092915050565b600060208284031215612c8957600080fd5b600082013567ffffffffffffffff811115612ca357600080fd5b612caf84828501612986565b91505092915050565b600060208284031215612cca57600080fd5b6000612cd8848285016129b0565b91505092915050565b600060208284031215612cf357600080fd5b6000612d01848285016129c5565b91505092915050565b60008060408385031215612d1d57600080fd5b6000612d2b858286016129b0565b9250506020612d3c858286016129b0565b9150509250929050565b612d4f81613c63565b82525050565b612d5e81613c75565b82525050565b6000612d6f82613b0b565b612d798185613b21565b9350612d89818560208601613d0a565b612d9281613ea5565b840191505092915050565b6000612da882613b16565b612db28185613b32565b9350612dc2818560208601613d0a565b612dcb81613ea5565b840191505092915050565b6000612de182613b16565b612deb8185613b43565b9350612dfb818560208601613d0a565b80840191505092915050565b60008154612e1481613d3d565b612e1e8186613b43565b94506001821660008114612e395760018114612e4a57612e7d565b60ff19831686528186019350612e7d565b612e5385613af6565b60005b83811015612e7557815481890152600182019150602081019050612e56565b838801955050505b50505092915050565b6000612e93603283613b32565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612ef9602683613b32565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f5f601c83613b32565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612f9f601d83613b32565b91507f4d6178206d696e7473207065722077616c6c65742065786365656465640000006000830152602082019050919050565b6000612fdf602283613b32565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613045602483613b32565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130ab601983613b32565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006130eb602c83613b32565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613151602283613b32565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131b7603883613b32565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061321d601183613b32565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b600061325d602a83613b32565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006132c3602983613b32565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613329602083613b32565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613369602c83613b32565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133cf600583613b43565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061340f602083613b32565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061344f602983613b32565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134b5602183613b32565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061351b603183613b32565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613581601883613b32565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b60006135c1601f83613b32565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613601601783613b32565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b6000613641600183613b43565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61367d81613cf1565b82525050565b600061368f8285612e07565b915061369a82613634565b91506136a68284612dd6565b91506136b1826133c2565b91508190509392505050565b60006020820190506136d26000830184612d46565b92915050565b60006080820190506136ed6000830187612d46565b6136fa6020830186612d46565b6137076040830185613674565b81810360608301526137198184612d64565b905095945050505050565b60006040820190506137396000830185612d46565b6137466020830184613674565b9392505050565b60006020820190506137626000830184612d55565b92915050565b600060208201905081810360008301526137828184612d9d565b905092915050565b600060208201905081810360008301526137a381612e86565b9050919050565b600060208201905081810360008301526137c381612eec565b9050919050565b600060208201905081810360008301526137e381612f52565b9050919050565b6000602082019050818103600083015261380381612f92565b9050919050565b6000602082019050818103600083015261382381612fd2565b9050919050565b6000602082019050818103600083015261384381613038565b9050919050565b600060208201905081810360008301526138638161309e565b9050919050565b60006020820190508181036000830152613883816130de565b9050919050565b600060208201905081810360008301526138a381613144565b9050919050565b600060208201905081810360008301526138c3816131aa565b9050919050565b600060208201905081810360008301526138e381613210565b9050919050565b6000602082019050818103600083015261390381613250565b9050919050565b60006020820190508181036000830152613923816132b6565b9050919050565b600060208201905081810360008301526139438161331c565b9050919050565b600060208201905081810360008301526139638161335c565b9050919050565b6000602082019050818103600083015261398381613402565b9050919050565b600060208201905081810360008301526139a381613442565b9050919050565b600060208201905081810360008301526139c3816134a8565b9050919050565b600060208201905081810360008301526139e38161350e565b9050919050565b60006020820190508181036000830152613a0381613574565b9050919050565b60006020820190508181036000830152613a23816135b4565b9050919050565b60006020820190508181036000830152613a43816135f4565b9050919050565b6000602082019050613a5f6000830184613674565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a8c57613a8b613e76565b5b8060405250919050565b600067ffffffffffffffff821115613ab157613ab0613e76565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ae157613ae0613e76565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5982613cf1565b9150613b6483613cf1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9957613b98613de9565b5b828201905092915050565b6000613baf82613cf1565b9150613bba83613cf1565b925082613bca57613bc9613e18565b5b828204905092915050565b6000613be082613cf1565b9150613beb83613cf1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c2457613c23613de9565b5b828202905092915050565b6000613c3a82613cf1565b9150613c4583613cf1565b925082821015613c5857613c57613de9565b5b828203905092915050565b6000613c6e82613cd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613cb882613c63565b9050919050565b6000613cca82613c63565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d28578082015181840152602081019050613d0d565b83811115613d37576000848401525b50505050565b60006002820490506001821680613d5557607f821691505b60208210811415613d6957613d68613e47565b5b50919050565b6000613d7a82613cf1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dad57613dac613de9565b5b600182019050919050565b6000613dc382613cf1565b9150613dce83613cf1565b925082613dde57613ddd613e18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613ebf81613c63565b8114613eca57600080fd5b50565b613ed681613c75565b8114613ee157600080fd5b50565b613eed81613c81565b8114613ef857600080fd5b50565b613f0481613cad565b8114613f0f57600080fd5b50565b613f1b81613cbf565b8114613f2657600080fd5b50565b613f3281613cf1565b8114613f3d57600080fd5b5056fea2646970667358221220dcef8b85e6aff9739eab10e0771084ef7abd0ca339a436dabce9a9f37dabd69564736f6c63430008000033697066733a2f2f516d523670507335516b4852335a453658577955525637527866717146546d4c36634167743570376b4b6a416337

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146106cb578063e43082f7146106f6578063e78fba221461071f578063e985e9c51461074a578063f2fde38b14610787576101ee565b8063a22cb46514610611578063b88d4fde1461063a578063c6a91b4214610663578063c87b56dd1461068e576101ee565b80638da5cb5b116100dc5780638da5cb5b1461057457806395d89b411461059f578063982d669e146105ca578063a0712d68146105f5576101ee565b806370a08231146104ca578063714c539814610507578063715018a61461053257806383c4c00d14610549576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e1461041257806349df728c1461043b57806355f804b3146104645780636352211e1461048d576101ee565b806323b872dd1461036b57806328cad13d146103945780632a55205a146103bd5780633ccfd60b146103fb576101ee565b8063095ea7b3116101c1578063095ea7b3146102c35780630a00ae83146102ec57806318160ddd146103155780631e84c41314610340576101ee565b806301ffc9a7146101f357806306fdde031461023057806307e89ec01461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612bd3565b6107b0565b604051610227919061374d565b60405180910390f35b34801561023c57600080fd5b5061024561082a565b6040516102529190613768565b60405180910390f35b34801561026757600080fd5b506102706108bc565b60405161027d9190613a4a565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612cb8565b6108c7565b6040516102ba91906136bd565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612b45565b61094c565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612cb8565b610a64565b005b34801561032157600080fd5b5061032a610aea565b6040516103379190613a4a565b60405180910390f35b34801561034c57600080fd5b50610355610afb565b604051610362919061374d565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612a3f565b610b0e565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612b81565b610b6e565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612d0a565b610c07565b6040516103f2929190613724565b60405180910390f35b34801561040757600080fd5b50610410610c73565b005b34801561041e57600080fd5b5061043960048036038101906104349190612a3f565b610d3e565b005b34801561044757600080fd5b50610462600480360381019061045d9190612c25565b610d5e565b005b34801561047057600080fd5b5061048b60048036038101906104869190612c77565b610ef9565b005b34801561049957600080fd5b506104b460048036038101906104af9190612cb8565b610f8f565b6040516104c191906136bd565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906129da565b611041565b6040516104fe9190613a4a565b60405180910390f35b34801561051357600080fd5b5061051c6110f9565b6040516105299190613768565b60405180910390f35b34801561053e57600080fd5b5061054761118b565b005b34801561055557600080fd5b5061055e611213565b60405161056b9190613a4a565b60405180910390f35b34801561058057600080fd5b50610589611224565b60405161059691906136bd565b60405180910390f35b3480156105ab57600080fd5b506105b461124e565b6040516105c19190613768565b60405180910390f35b3480156105d657600080fd5b506105df6112e0565b6040516105ec9190613a4a565b60405180910390f35b61060f600480360381019061060a9190612cb8565b6112e6565b005b34801561061d57600080fd5b5061063860048036038101906106339190612b09565b611517565b005b34801561064657600080fd5b50610661600480360381019061065c9190612a8e565b61152d565b005b34801561066f57600080fd5b5061067861158f565b6040516106859190613a4a565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612cb8565b611594565b6040516106c29190613768565b60405180910390f35b3480156106d757600080fd5b506106e0611610565b6040516106ed9190613a4a565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190612b81565b611616565b005b34801561072b57600080fd5b506107346116af565b6040516107419190613a4a565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190612a03565b6116b4565b60405161077e919061374d565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a991906129da565b6117ce565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108235750610822826118c6565b5b9050919050565b60606000805461083990613d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461086590613d3d565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b668e1bc9bf04000081565b60006108d2826119a8565b610911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109089061394a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095782610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906139aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e7611a14565b73ffffffffffffffffffffffffffffffffffffffff161480610a165750610a1581610a10611a14565b6116b4565b5b610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c906138aa565b60405180910390fd5b610a5f8383611a1c565b505050565b610a6c611a14565b73ffffffffffffffffffffffffffffffffffffffff16610a8a611224565b73ffffffffffffffffffffffffffffffffffffffff1614610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad79061396a565b60405180910390fd5b80600c8190555050565b6000610af66008611ad5565b905090565b600d60009054906101000a900460ff1681565b610b1f610b19611a14565b82611ae3565b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906139ca565b60405180910390fd5b610b69838383611bc1565b505050565b610b76611a14565b73ffffffffffffffffffffffffffffffffffffffff16610b94611224565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be19061396a565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610c13846119a8565b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906138ca565b60405180910390fd5b30610c68610c61856005611e1d565b6064611e33565b915091509250929050565b610c7b611a14565b73ffffffffffffffffffffffffffffffffffffffff16610c99611224565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce69061396a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d3a573d6000803e3d6000fd5b5050565b610d598383836040518060200160405280600081525061152d565b505050565b610d66611a14565b73ffffffffffffffffffffffffffffffffffffffff16610d84611224565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061396a565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e1591906136bd565b60206040518083038186803b158015610e2d57600080fd5b505afa158015610e41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e659190612ce1565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610ea2929190613724565b602060405180830381600087803b158015610ebc57600080fd5b505af1158015610ed0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef49190612baa565b505050565b610f01611a14565b73ffffffffffffffffffffffffffffffffffffffff16610f1f611224565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c9061396a565b60405180910390fd5b8060099080519060200190610f8b9291906127aa565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061390a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906138ea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606009805461110890613d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461113490613d3d565b80156111815780601f1061115657610100808354040283529160200191611181565b820191906000526020600020905b81548152906001019060200180831161116457829003601f168201915b5050505050905090565b611193611a14565b73ffffffffffffffffffffffffffffffffffffffff166111b1611224565b73ffffffffffffffffffffffffffffffffffffffff1614611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe9061396a565b60405180910390fd5b6112116000611e49565b565b600061121f6008611ad5565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125d90613d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461128990613d3d565b80156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b5050505050905090565b600c5481565b6002600754141561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613a0a565b60405180910390fd5b6002600781905550668e1bc9bf04000081600c5461134a6008611ad5565b111561139e5734818361135d9190613bd5565b1461139d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611394906139ea565b60405180910390fd5b5b600d60009054906101000a900460ff166113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490613a2a565b60405180910390fd5b82600b54816113fc6008611ad5565b6114069190613b4e565b1115611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061380a565b60405180910390fd5b83600a81111561148c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114839061388a565b60405180910390fd5b603261149733611041565b11156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906137ea565b60405180910390fd5b60005b85811015611507576114f4336114ef611f0f565b611f2a565b80806114ff90613d6f565b9150506114db565b5050505050600160078190555050565b611529611522611a14565b8383611f48565b5050565b61153e611538611a14565b83611ae3565b61157d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611574906139ca565b60405180910390fd5b611589848484846120b5565b50505050565b600a81565b606061159f826119a8565b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906138ca565b60405180910390fd5b60096115e983612111565b6040516020016115fa929190613683565b6040516020818303038152906040529050919050565b600b5481565b61161e611a14565b73ffffffffffffffffffffffffffffffffffffffff1661163c611224565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061396a565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b603281565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60149054906101000a900460ff1680156117ab57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161174391906136bd565b60206040518083038186803b15801561175b57600080fd5b505afa15801561176f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117939190612c4e565b73ffffffffffffffffffffffffffffffffffffffff16145b156117ba5760019150506117c8565b6117c484846122be565b9150505b92915050565b6117d6611a14565b73ffffffffffffffffffffffffffffffffffffffff166117f4611224565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061396a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b1906137aa565b60405180910390fd5b6118c381611e49565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061199157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119a157506119a082612352565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a8f83610f8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611aee826119a8565b611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b249061386a565b60405180910390fd5b6000611b3883610f8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ba757508373ffffffffffffffffffffffffffffffffffffffff16611b8f846108c7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bb85750611bb781856116b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611be182610f8f565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e9061398a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e9061382a565b60405180910390fd5b611cb28383836123bc565b611cbd600082611a1c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0d9190613c2f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d649190613b4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183611e2b9190613bd5565b905092915050565b60008183611e419190613ba4565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611f1b60086123c1565b611f256008611ad5565b905090565b611f448282604051806020016040528060008152506123d7565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae9061384a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120a8919061374d565b60405180910390a3505050565b6120c0848484611bc1565b6120cc84848484612432565b61210b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121029061378a565b60405180910390fd5b50505050565b60606000821415612159576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b9565b600082905060005b6000821461218b57808061217490613d6f565b915050600a826121849190613ba4565b9150612161565b60008167ffffffffffffffff8111156121cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121ff5781602001600182028036833780820191505090505b5090505b600085146122b2576001826122189190613c2f565b9150600a856122279190613db8565b60306122339190613b4e565b60f81b81838151811061226f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ab9190613ba4565b9450612203565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6001816000016000828254019250508190555050565b6123e183836125c9565b6123ee6000848484612432565b61242d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124249061378a565b60405180910390fd5b505050565b60006124538473ffffffffffffffffffffffffffffffffffffffff16612797565b156125bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247c611a14565b8786866040518563ffffffff1660e01b815260040161249e94939291906136d8565b602060405180830381600087803b1580156124b857600080fd5b505af19250505080156124e957506040513d601f19601f820116820180604052508101906124e69190612bfc565b60015b61256c573d8060008114612519576040519150601f19603f3d011682016040523d82523d6000602084013e61251e565b606091505b50600081511415612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b9061378a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126309061392a565b60405180910390fd5b612642816119a8565b15612682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612679906137ca565b60405180910390fd5b61268e600083836123bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126de9190613b4e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127b690613d3d565b90600052602060002090601f0160209004810192826127d8576000855561281f565b82601f106127f157805160ff191683800117855561281f565b8280016001018555821561281f579182015b8281111561281e578251825591602001919060010190612803565b5b50905061282c9190612830565b5090565b5b80821115612849576000816000905550600101612831565b5090565b600061286061285b84613a96565b613a65565b90508281526020810184848401111561287857600080fd5b612883848285613cfb565b509392505050565b600061289e61289984613ac6565b613a65565b9050828152602081018484840111156128b657600080fd5b6128c1848285613cfb565b509392505050565b6000813590506128d881613eb6565b92915050565b6000813590506128ed81613ecd565b92915050565b60008151905061290281613ecd565b92915050565b60008135905061291781613ee4565b92915050565b60008151905061292c81613ee4565b92915050565b600082601f83011261294357600080fd5b813561295384826020860161284d565b91505092915050565b60008135905061296b81613efb565b92915050565b60008151905061298081613f12565b92915050565b600082601f83011261299757600080fd5b81356129a784826020860161288b565b91505092915050565b6000813590506129bf81613f29565b92915050565b6000815190506129d481613f29565b92915050565b6000602082840312156129ec57600080fd5b60006129fa848285016128c9565b91505092915050565b60008060408385031215612a1657600080fd5b6000612a24858286016128c9565b9250506020612a35858286016128c9565b9150509250929050565b600080600060608486031215612a5457600080fd5b6000612a62868287016128c9565b9350506020612a73868287016128c9565b9250506040612a84868287016129b0565b9150509250925092565b60008060008060808587031215612aa457600080fd5b6000612ab2878288016128c9565b9450506020612ac3878288016128c9565b9350506040612ad4878288016129b0565b925050606085013567ffffffffffffffff811115612af157600080fd5b612afd87828801612932565b91505092959194509250565b60008060408385031215612b1c57600080fd5b6000612b2a858286016128c9565b9250506020612b3b858286016128de565b9150509250929050565b60008060408385031215612b5857600080fd5b6000612b66858286016128c9565b9250506020612b77858286016129b0565b9150509250929050565b600060208284031215612b9357600080fd5b6000612ba1848285016128de565b91505092915050565b600060208284031215612bbc57600080fd5b6000612bca848285016128f3565b91505092915050565b600060208284031215612be557600080fd5b6000612bf384828501612908565b91505092915050565b600060208284031215612c0e57600080fd5b6000612c1c8482850161291d565b91505092915050565b600060208284031215612c3757600080fd5b6000612c458482850161295c565b91505092915050565b600060208284031215612c6057600080fd5b6000612c6e84828501612971565b91505092915050565b600060208284031215612c8957600080fd5b600082013567ffffffffffffffff811115612ca357600080fd5b612caf84828501612986565b91505092915050565b600060208284031215612cca57600080fd5b6000612cd8848285016129b0565b91505092915050565b600060208284031215612cf357600080fd5b6000612d01848285016129c5565b91505092915050565b60008060408385031215612d1d57600080fd5b6000612d2b858286016129b0565b9250506020612d3c858286016129b0565b9150509250929050565b612d4f81613c63565b82525050565b612d5e81613c75565b82525050565b6000612d6f82613b0b565b612d798185613b21565b9350612d89818560208601613d0a565b612d9281613ea5565b840191505092915050565b6000612da882613b16565b612db28185613b32565b9350612dc2818560208601613d0a565b612dcb81613ea5565b840191505092915050565b6000612de182613b16565b612deb8185613b43565b9350612dfb818560208601613d0a565b80840191505092915050565b60008154612e1481613d3d565b612e1e8186613b43565b94506001821660008114612e395760018114612e4a57612e7d565b60ff19831686528186019350612e7d565b612e5385613af6565b60005b83811015612e7557815481890152600182019150602081019050612e56565b838801955050505b50505092915050565b6000612e93603283613b32565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612ef9602683613b32565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f5f601c83613b32565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612f9f601d83613b32565b91507f4d6178206d696e7473207065722077616c6c65742065786365656465640000006000830152602082019050919050565b6000612fdf602283613b32565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613045602483613b32565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130ab601983613b32565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006130eb602c83613b32565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613151602283613b32565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131b7603883613b32565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061321d601183613b32565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b600061325d602a83613b32565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006132c3602983613b32565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613329602083613b32565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613369602c83613b32565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133cf600583613b43565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061340f602083613b32565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061344f602983613b32565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134b5602183613b32565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061351b603183613b32565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613581601883613b32565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b60006135c1601f83613b32565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613601601783613b32565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b6000613641600183613b43565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61367d81613cf1565b82525050565b600061368f8285612e07565b915061369a82613634565b91506136a68284612dd6565b91506136b1826133c2565b91508190509392505050565b60006020820190506136d26000830184612d46565b92915050565b60006080820190506136ed6000830187612d46565b6136fa6020830186612d46565b6137076040830185613674565b81810360608301526137198184612d64565b905095945050505050565b60006040820190506137396000830185612d46565b6137466020830184613674565b9392505050565b60006020820190506137626000830184612d55565b92915050565b600060208201905081810360008301526137828184612d9d565b905092915050565b600060208201905081810360008301526137a381612e86565b9050919050565b600060208201905081810360008301526137c381612eec565b9050919050565b600060208201905081810360008301526137e381612f52565b9050919050565b6000602082019050818103600083015261380381612f92565b9050919050565b6000602082019050818103600083015261382381612fd2565b9050919050565b6000602082019050818103600083015261384381613038565b9050919050565b600060208201905081810360008301526138638161309e565b9050919050565b60006020820190508181036000830152613883816130de565b9050919050565b600060208201905081810360008301526138a381613144565b9050919050565b600060208201905081810360008301526138c3816131aa565b9050919050565b600060208201905081810360008301526138e381613210565b9050919050565b6000602082019050818103600083015261390381613250565b9050919050565b60006020820190508181036000830152613923816132b6565b9050919050565b600060208201905081810360008301526139438161331c565b9050919050565b600060208201905081810360008301526139638161335c565b9050919050565b6000602082019050818103600083015261398381613402565b9050919050565b600060208201905081810360008301526139a381613442565b9050919050565b600060208201905081810360008301526139c3816134a8565b9050919050565b600060208201905081810360008301526139e38161350e565b9050919050565b60006020820190508181036000830152613a0381613574565b9050919050565b60006020820190508181036000830152613a23816135b4565b9050919050565b60006020820190508181036000830152613a43816135f4565b9050919050565b6000602082019050613a5f6000830184613674565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a8c57613a8b613e76565b5b8060405250919050565b600067ffffffffffffffff821115613ab157613ab0613e76565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ae157613ae0613e76565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5982613cf1565b9150613b6483613cf1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9957613b98613de9565b5b828201905092915050565b6000613baf82613cf1565b9150613bba83613cf1565b925082613bca57613bc9613e18565b5b828204905092915050565b6000613be082613cf1565b9150613beb83613cf1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c2457613c23613de9565b5b828202905092915050565b6000613c3a82613cf1565b9150613c4583613cf1565b925082821015613c5857613c57613de9565b5b828203905092915050565b6000613c6e82613cd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613cb882613c63565b9050919050565b6000613cca82613c63565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d28578082015181840152602081019050613d0d565b83811115613d37576000848401525b50505050565b60006002820490506001821680613d5557607f821691505b60208210811415613d6957613d68613e47565b5b50919050565b6000613d7a82613cf1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dad57613dac613de9565b5b600182019050919050565b6000613dc382613cf1565b9150613dce83613cf1565b925082613dde57613ddd613e18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613ebf81613c63565b8114613eca57600080fd5b50565b613ed681613c75565b8114613ee157600080fd5b50565b613eed81613c81565b8114613ef857600080fd5b50565b613f0481613cad565b8114613f0f57600080fd5b50565b613f1b81613cbf565b8114613f2657600080fd5b50565b613f3281613cf1565b8114613f3d57600080fd5b5056fea2646970667358221220dcef8b85e6aff9739eab10e0771084ef7abd0ca339a436dabce9a9f37dabd69564736f6c63430008000033

Deployed Bytecode Sourcemap

51677:6162:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56033:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39951:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52251:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41510:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41033:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55301:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54563:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52354:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42260:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55135:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57518:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;55450:143;;;;;;;;;;;;;:::i;:::-;;42670:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55601:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54737:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39645:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39375:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54348:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19026:103;;;;;;;;;;;;;:::i;:::-;;54449:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18375:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40120:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52312:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53655:616;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41803:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42926:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52103:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57149:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52211:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54961:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52155:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56461:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19284:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56033:291;56180:4;56237:26;56222:41;;;:11;:41;;;;:94;;;;56280:36;56304:11;56280:23;:36::i;:::-;56222:94;56202:114;;56033:291;;;:::o;39951:100::-;40005:13;40038:5;40031:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39951:100;:::o;52251:54::-;52295:10;52251:54;:::o;41510:221::-;41586:7;41614:16;41622:7;41614;:16::i;:::-;41606:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41699:15;:24;41715:7;41699:24;;;;;;;;;;;;;;;;;;;;;41692:31;;41510:221;;;:::o;41033:411::-;41114:13;41130:23;41145:7;41130:14;:23::i;:::-;41114:39;;41178:5;41172:11;;:2;:11;;;;41164:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41272:5;41256:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41281:37;41298:5;41305:12;:10;:12::i;:::-;41281:16;:37::i;:::-;41256:62;41234:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;41415:21;41424:2;41428:7;41415:8;:21::i;:::-;41033:411;;;:::o;55301:139::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55419:13:::1;55402:14;:30;;;;55301:139:::0;:::o;54563:103::-;54609:7;54636:22;:12;:20;:22::i;:::-;54629:29;;54563:103;:::o;52354:37::-;;;;;;;;;;;;;:::o;42260:339::-;42455:41;42474:12;:10;:12::i;:::-;42488:7;42455:18;:41::i;:::-;42447:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;42563:28;42573:4;42579:2;42583:7;42563:9;:28::i;:::-;42260:339;;;:::o;55135:158::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55266:19:::1;55245:18;;:40;;;;;;;;;;;;;;;;;;55135:158:::0;:::o;57518:318::-;57643:16;57661:21;57708:16;57716:7;57708;:16::i;:::-;57700:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57775:4;57782:45;57795:26;57808:9;57819:1;57795:12;:26::i;:::-;57823:3;57782:12;:45::i;:::-;57759:69;;;;57518:318;;;;;:::o;55450:143::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55498:15:::1;55516:21;55498:39;;55556:10;55548:28;;:37;55577:7;55548:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;18666:1;55450:143::o:0;42670:185::-;42808:39;42825:4;42831:2;42835:7;42808:39;;;;;;;;;;;;:16;:39::i;:::-;42670:185;;;:::o;55601:168::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55667:15:::1;55685:5;:15;;;55709:4;55685:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55667:48;;55726:5;:14;;;55741:10;55753:7;55726:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18666:1;55601:168:::0;:::o;54737:100::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54821:8:::1;54811:7;:18;;;;;;;;;;;;:::i;:::-;;54737:100:::0;:::o;39645:239::-;39717:7;39737:13;39753:7;:16;39761:7;39753:16;;;;;;;;;;;;;;;;;;;;;39737:32;;39805:1;39788:19;;:5;:19;;;;39780:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39871:5;39864:12;;;39645:239;;;:::o;39375:208::-;39447:7;39492:1;39475:19;;:5;:19;;;;39467:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;39559:9;:16;39569:5;39559:16;;;;;;;;;;;;;;;;39552:23;;39375:208;;;:::o;54348:93::-;54393:13;54426:7;54419:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54348:93;:::o;19026:103::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19091:30:::1;19118:1;19091:18;:30::i;:::-;19026:103::o:0;54449:106::-;54498:7;54525:22;:12;:20;:22::i;:::-;54518:29;;54449:106;:::o;18375:87::-;18421:7;18448:6;;;;;;;;;;;18441:13;;18375:87;:::o;40120:104::-;40176:13;40209:7;40202:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40120:104;:::o;52312:35::-;;;;:::o;53655:616::-;10304:1;10902:7;;:19;;10894:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10304:1;11035:7;:18;;;;52295:10:::1;53795:14;53341;;53318:22;:12;:20;:22::i;:::-;:37;53315:175;;;53417:9;53398:14;53390:5;:22;;;;:::i;:::-;53389:37;53367:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53315:175;52521:18:::2;;;;;;;;;;;52513:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;53858:14:::3;53136:9;;53101:14;53076:22;:12;:20;:22::i;:::-;:39;;;;:::i;:::-;:69;;53054:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;53897:14:::4;52146:2;52679:14;:34;;52657:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;52202:2:::5;52868:21;52878:10;52868:9;:21::i;:::-;:45;;52846:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;54161:9:::6;54156:108;54180:14;54176:1;:18;54156:108;;;54216:36;54226:10;54238:13;:11;:13::i;:::-;54216:9;:36::i;:::-;54196:3;;;;;:::i;:::-;;;;54156:108;;;;53218:1:::4;52578::::3;11066::::1;;10260::::0;11214:7;:22;;;;53655:616;:::o;41803:155::-;41898:52;41917:12;:10;:12::i;:::-;41931:8;41941;41898:18;:52::i;:::-;41803:155;;:::o;42926:328::-;43101:41;43120:12;:10;:12::i;:::-;43134:7;43101:18;:41::i;:::-;43093:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;43207:39;43221:4;43227:2;43231:7;43240:5;43207:13;:39::i;:::-;42926:328;;;;:::o;52103:45::-;52146:2;52103:45;:::o;57149:303::-;57267:13;57306:16;57314:7;57306;:16::i;:::-;57298:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57401:7;57415:18;:7;:16;:18::i;:::-;57384:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57357:87;;57149:303;;;:::o;52211:31::-;;;;:::o;54961:166::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55098:21:::1;55075:20;;:44;;;;;;;;;;;;;;;;;;54961:166:::0;:::o;52155:49::-;52202:2;52155:49;:::o;56461:617::-;56586:4;56751:27;56809;;;;;;;;;;;56751:96;;56876:20;;;;;;;;;;;:86;;;;;56954:8;56913:49;;56921:13;:21;;;56943:5;56921:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56913:49;;;56876:86;56858:154;;;56996:4;56989:11;;;;;56858:154;57031:39;57054:5;57061:8;57031:22;:39::i;:::-;57024:46;;;56461:617;;;;;:::o;19284:201::-;18606:12;:10;:12::i;:::-;18595:23;;:7;:5;:7::i;:::-;:23;;;18587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19393:1:::1;19373:22;;:8;:22;;;;19365:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19449:28;19468:8;19449:18;:28::i;:::-;19284:201:::0;:::o;39006:305::-;39108:4;39160:25;39145:40;;;:11;:40;;;;:105;;;;39217:33;39202:48;;;:11;:48;;;;39145:105;:158;;;;39267:36;39291:11;39267:23;:36::i;:::-;39145:158;39125:178;;39006:305;;;:::o;44764:127::-;44829:4;44881:1;44853:30;;:7;:16;44861:7;44853:16;;;;;;;;;;;;;;;;;;;;;:30;;;;44846:37;;44764:127;;;:::o;17099:98::-;17152:7;17179:10;17172:17;;17099:98;:::o;48746:174::-;48848:2;48821:15;:24;48837:7;48821:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48904:7;48900:2;48866:46;;48875:23;48890:7;48875:14;:23::i;:::-;48866:46;;;;;;;;;;;;48746:174;;:::o;7899:114::-;7964:7;7991;:14;;;7984:21;;7899:114;;;:::o;45058:348::-;45151:4;45176:16;45184:7;45176;:16::i;:::-;45168:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45252:13;45268:23;45283:7;45268:14;:23::i;:::-;45252:39;;45321:5;45310:16;;:7;:16;;;:51;;;;45354:7;45330:31;;:20;45342:7;45330:11;:20::i;:::-;:31;;;45310:51;:87;;;;45365:32;45382:5;45389:7;45365:16;:32::i;:::-;45310:87;45302:96;;;45058:348;;;;:::o;48050:578::-;48209:4;48182:31;;:23;48197:7;48182:14;:23::i;:::-;:31;;;48174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48292:1;48278:16;;:2;:16;;;;48270:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48348:39;48369:4;48375:2;48379:7;48348:20;:39::i;:::-;48452:29;48469:1;48473:7;48452:8;:29::i;:::-;48513:1;48494:9;:15;48504:4;48494:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;48542:1;48525:9;:13;48535:2;48525:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;48573:2;48554:7;:16;48562:7;48554:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48612:7;48608:2;48593:27;;48602:4;48593:27;;;;;;;;;;;;48050:578;;;:::o;3600:98::-;3658:7;3689:1;3685;:5;;;;:::i;:::-;3678:12;;3600:98;;;;:::o;3999:::-;4057:7;4088:1;4084;:5;;;;:::i;:::-;4077:12;;3999:98;;;;:::o;19645:191::-;19719:16;19738:6;;;;;;;;;;;19719:25;;19764:8;19755:6;;:17;;;;;;;;;;;;;;;;;;19819:8;19788:40;;19809:8;19788:40;;;;;;;;;;;;19645:191;;:::o;55838:132::-;55878:7;55898:24;:12;:22;:24::i;:::-;55940:22;:12;:20;:22::i;:::-;55933:29;;55838:132;:::o;45748:110::-;45824:26;45834:2;45838:7;45824:26;;;;;;;;;;;;:9;:26::i;:::-;45748:110;;:::o;49062:315::-;49217:8;49208:17;;:5;:17;;;;49200:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49304:8;49266:18;:25;49285:5;49266:25;;;;;;;;;;;;;;;:35;49292:8;49266:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49350:8;49328:41;;49343:5;49328:41;;;49360:8;49328:41;;;;;;:::i;:::-;;;;;;;;49062:315;;;:::o;44136:::-;44293:28;44303:4;44309:2;44313:7;44293:9;:28::i;:::-;44340:48;44363:4;44369:2;44373:7;44382:5;44340:22;:48::i;:::-;44332:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;44136:315;;;;:::o;14661:723::-;14717:13;14947:1;14938:5;:10;14934:53;;;14965:10;;;;;;;;;;;;;;;;;;;;;14934:53;14997:12;15012:5;14997:20;;15028:14;15053:78;15068:1;15060:4;:9;15053:78;;15086:8;;;;;:::i;:::-;;;;15117:2;15109:10;;;;;:::i;:::-;;;15053:78;;;15141:19;15173:6;15163:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15141:39;;15191:154;15207:1;15198:5;:10;15191:154;;15235:1;15225:11;;;;;:::i;:::-;;;15302:2;15294:5;:10;;;;:::i;:::-;15281:2;:24;;;;:::i;:::-;15268:39;;15251:6;15258;15251:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;15331:2;15322:11;;;;;:::i;:::-;;;15191:154;;;15369:6;15355:21;;;;;14661:723;;;;:::o;42029:164::-;42126:4;42150:18;:25;42169:5;42150:25;;;;;;;;;;;;;;;:35;42176:8;42150:35;;;;;;;;;;;;;;;;;;;;;;;;;42143:42;;42029:164;;;;:::o;31775:157::-;31860:4;31899:25;31884:40;;;:11;:40;;;;31877:47;;31775:157;;;:::o;51313:126::-;;;;:::o;8021:127::-;8128:1;8110:7;:14;;;:19;;;;;;;;;;;8021:127;:::o;46085:321::-;46215:18;46221:2;46225:7;46215:5;:18::i;:::-;46266:54;46297:1;46301:2;46305:7;46314:5;46266:22;:54::i;:::-;46244:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;46085:321;;;:::o;49942:799::-;50097:4;50118:15;:2;:13;;;:15::i;:::-;50114:620;;;50170:2;50154:36;;;50191:12;:10;:12::i;:::-;50205:4;50211:7;50220:5;50154:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50150:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50413:1;50396:6;:13;:18;50392:272;;;50439:60;;;;;;;;;;:::i;:::-;;;;;;;;50392:272;50614:6;50608:13;50599:6;50595:2;50591:15;50584:38;50150:529;50287:41;;;50277:51;;;:6;:51;;;;50270:58;;;;;50114:620;50718:4;50711:11;;49942:799;;;;;;;:::o;46742:382::-;46836:1;46822:16;;:2;:16;;;;46814:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46895:16;46903:7;46895;:16::i;:::-;46894:17;46886:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:45;46986:1;46990:2;46994:7;46957:20;:45::i;:::-;47032:1;47015:9;:13;47025:2;47015:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;47063:2;47044:7;:16;47052:7;47044:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47108:7;47104:2;47083:33;;47100:1;47083:33;;;;;;;;;;;;46742:382;;:::o;20663:387::-;20723:4;20931:12;20998:7;20986:20;20978:28;;21041:1;21034:4;:8;21027:15;;;20663:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1074:6;1068:13;1059:22;;1090:30;1114:5;1090:30;:::i;:::-;1049:77;;;;:::o;1132:137::-;;1215:6;1202:20;1193:29;;1231:32;1257:5;1231:32;:::i;:::-;1183:86;;;;:::o;1275:141::-;;1362:6;1356:13;1347:22;;1378:32;1404:5;1378:32;:::i;:::-;1337:79;;;;:::o;1435:271::-;;1539:3;1532:4;1524:6;1520:17;1516:27;1506:2;;1557:1;1554;1547:12;1506:2;1597:6;1584:20;1622:78;1696:3;1688:6;1681:4;1673:6;1669:17;1622:78;:::i;:::-;1613:87;;1496:210;;;;;:::o;1712:167::-;;1810:6;1797:20;1788:29;;1826:47;1867:5;1826:47;:::i;:::-;1778:101;;;;:::o;1885:201::-;;2002:6;1996:13;1987:22;;2018:62;2074:5;2018:62;:::i;:::-;1977:109;;;;:::o;2106:273::-;;2211:3;2204:4;2196:6;2192:17;2188:27;2178:2;;2229:1;2226;2219:12;2178:2;2269:6;2256:20;2294:79;2369:3;2361:6;2354:4;2346:6;2342:17;2294:79;:::i;:::-;2285:88;;2168:211;;;;;:::o;2385:139::-;;2469:6;2456:20;2447:29;;2485:33;2512:5;2485:33;:::i;:::-;2437:87;;;;:::o;2530:143::-;;2618:6;2612:13;2603:22;;2634:33;2661:5;2634:33;:::i;:::-;2593:80;;;;:::o;2679:262::-;;2787:2;2775:9;2766:7;2762:23;2758:32;2755:2;;;2803:1;2800;2793:12;2755:2;2846:1;2871:53;2916:7;2907:6;2896:9;2892:22;2871:53;:::i;:::-;2861:63;;2817:117;2745:196;;;;:::o;2947:407::-;;;3072:2;3060:9;3051:7;3047:23;3043:32;3040:2;;;3088:1;3085;3078:12;3040:2;3131:1;3156:53;3201:7;3192:6;3181:9;3177:22;3156:53;:::i;:::-;3146:63;;3102:117;3258:2;3284:53;3329:7;3320:6;3309:9;3305:22;3284:53;:::i;:::-;3274:63;;3229:118;3030:324;;;;;:::o;3360:552::-;;;;3502:2;3490:9;3481:7;3477:23;3473:32;3470:2;;;3518:1;3515;3508:12;3470:2;3561:1;3586:53;3631:7;3622:6;3611:9;3607:22;3586:53;:::i;:::-;3576:63;;3532:117;3688:2;3714:53;3759:7;3750:6;3739:9;3735:22;3714:53;:::i;:::-;3704:63;;3659:118;3816:2;3842:53;3887:7;3878:6;3867:9;3863:22;3842:53;:::i;:::-;3832:63;;3787:118;3460:452;;;;;:::o;3918:809::-;;;;;4086:3;4074:9;4065:7;4061:23;4057:33;4054:2;;;4103:1;4100;4093:12;4054:2;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;4401:2;4427:53;4472:7;4463:6;4452:9;4448:22;4427:53;:::i;:::-;4417:63;;4372:118;4557:2;4546:9;4542:18;4529:32;4588:18;4580:6;4577:30;4574:2;;;4620:1;4617;4610:12;4574:2;4648:62;4702:7;4693:6;4682:9;4678:22;4648:62;:::i;:::-;4638:72;;4500:220;4044:683;;;;;;;:::o;4733:401::-;;;4855:2;4843:9;4834:7;4830:23;4826:32;4823:2;;;4871:1;4868;4861:12;4823:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4813:321;;;;;:::o;5140:407::-;;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:53;5394:7;5385:6;5374:9;5370:22;5349:53;:::i;:::-;5339:63;;5295:117;5451:2;5477:53;5522:7;5513:6;5502:9;5498:22;5477:53;:::i;:::-;5467:63;;5422:118;5223:324;;;;;:::o;5553:256::-;;5658:2;5646:9;5637:7;5633:23;5629:32;5626:2;;;5674:1;5671;5664:12;5626:2;5717:1;5742:50;5784:7;5775:6;5764:9;5760:22;5742:50;:::i;:::-;5732:60;;5688:114;5616:193;;;;:::o;5815:278::-;;5931:2;5919:9;5910:7;5906:23;5902:32;5899:2;;;5947:1;5944;5937:12;5899:2;5990:1;6015:61;6068:7;6059:6;6048:9;6044:22;6015:61;:::i;:::-;6005:71;;5961:125;5889:204;;;;:::o;6099:260::-;;6206:2;6194:9;6185:7;6181:23;6177:32;6174:2;;;6222:1;6219;6212:12;6174:2;6265:1;6290:52;6334:7;6325:6;6314:9;6310:22;6290:52;:::i;:::-;6280:62;;6236:116;6164:195;;;;:::o;6365:282::-;;6483:2;6471:9;6462:7;6458:23;6454:32;6451:2;;;6499:1;6496;6489:12;6451:2;6542:1;6567:63;6622:7;6613:6;6602:9;6598:22;6567:63;:::i;:::-;6557:73;;6513:127;6441:206;;;;:::o;6653:290::-;;6775:2;6763:9;6754:7;6750:23;6746:32;6743:2;;;6791:1;6788;6781:12;6743:2;6834:1;6859:67;6918:7;6909:6;6898:9;6894:22;6859:67;:::i;:::-;6849:77;;6805:131;6733:210;;;;:::o;6949:342::-;;7097:2;7085:9;7076:7;7072:23;7068:32;7065:2;;;7113:1;7110;7103:12;7065:2;7156:1;7181:93;7266:7;7257:6;7246:9;7242:22;7181:93;:::i;:::-;7171:103;;7127:157;7055:236;;;;:::o;7297:375::-;;7415:2;7403:9;7394:7;7390:23;7386:32;7383:2;;;7431:1;7428;7421:12;7383:2;7502:1;7491:9;7487:17;7474:31;7532:18;7524:6;7521:30;7518:2;;;7564:1;7561;7554:12;7518:2;7592:63;7647:7;7638:6;7627:9;7623:22;7592:63;:::i;:::-;7582:73;;7445:220;7373:299;;;;:::o;7678:262::-;;7786:2;7774:9;7765:7;7761:23;7757:32;7754:2;;;7802:1;7799;7792:12;7754:2;7845:1;7870:53;7915:7;7906:6;7895:9;7891:22;7870:53;:::i;:::-;7860:63;;7816:117;7744:196;;;;:::o;7946:284::-;;8065:2;8053:9;8044:7;8040:23;8036:32;8033:2;;;8081:1;8078;8071:12;8033:2;8124:1;8149:64;8205:7;8196:6;8185:9;8181:22;8149:64;:::i;:::-;8139:74;;8095:128;8023:207;;;;:::o;8236:407::-;;;8361:2;8349:9;8340:7;8336:23;8332:32;8329:2;;;8377:1;8374;8367:12;8329:2;8420:1;8445:53;8490:7;8481:6;8470:9;8466:22;8445:53;:::i;:::-;8435:63;;8391:117;8547:2;8573:53;8618:7;8609:6;8598:9;8594:22;8573:53;:::i;:::-;8563:63;;8518:118;8319:324;;;;;:::o;8649:118::-;8736:24;8754:5;8736:24;:::i;:::-;8731:3;8724:37;8714:53;;:::o;8773:109::-;8854:21;8869:5;8854:21;:::i;:::-;8849:3;8842:34;8832:50;;:::o;8888:360::-;;9002:38;9034:5;9002:38;:::i;:::-;9056:70;9119:6;9114:3;9056:70;:::i;:::-;9049:77;;9135:52;9180:6;9175:3;9168:4;9161:5;9157:16;9135:52;:::i;:::-;9212:29;9234:6;9212:29;:::i;:::-;9207:3;9203:39;9196:46;;8978:270;;;;;:::o;9254:364::-;;9370:39;9403:5;9370:39;:::i;:::-;9425:71;9489:6;9484:3;9425:71;:::i;:::-;9418:78;;9505:52;9550:6;9545:3;9538:4;9531:5;9527:16;9505:52;:::i;:::-;9582:29;9604:6;9582:29;:::i;:::-;9577:3;9573:39;9566:46;;9346:272;;;;;:::o;9624:377::-;;9758:39;9791:5;9758:39;:::i;:::-;9813:89;9895:6;9890:3;9813:89;:::i;:::-;9806:96;;9911:52;9956:6;9951:3;9944:4;9937:5;9933:16;9911:52;:::i;:::-;9988:6;9983:3;9979:16;9972:23;;9734:267;;;;;:::o;10031:845::-;;10171:5;10165:12;10200:36;10226:9;10200:36;:::i;:::-;10252:89;10334:6;10329:3;10252:89;:::i;:::-;10245:96;;10372:1;10361:9;10357:17;10388:1;10383:137;;;;10534:1;10529:341;;;;10350:520;;10383:137;10467:4;10463:9;10452;10448:25;10443:3;10436:38;10503:6;10498:3;10494:16;10487:23;;10383:137;;10529:341;10596:38;10628:5;10596:38;:::i;:::-;10656:1;10670:154;10684:6;10681:1;10678:13;10670:154;;;10758:7;10752:14;10748:1;10743:3;10739:11;10732:35;10808:1;10799:7;10795:15;10784:26;;10706:4;10703:1;10699:12;10694:17;;10670:154;;;10853:6;10848:3;10844:16;10837:23;;10536:334;;10350:520;;10138:738;;;;;;:::o;10882:382::-;;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11142:34;11138:1;11133:3;11129:11;11122:55;11208:20;11203:2;11198:3;11194:12;11187:42;11255:2;11250:3;11246:12;11239:19;;11028:236;;;:::o;11270:370::-;;11433:67;11497:2;11492:3;11433:67;:::i;:::-;11426:74;;11530:34;11526:1;11521:3;11517:11;11510:55;11596:8;11591:2;11586:3;11582:12;11575:30;11631:2;11626:3;11622:12;11615:19;;11416:224;;;:::o;11646:326::-;;11809:67;11873:2;11868:3;11809:67;:::i;:::-;11802:74;;11906:30;11902:1;11897:3;11893:11;11886:51;11963:2;11958:3;11954:12;11947:19;;11792:180;;;:::o;11978:327::-;;12141:67;12205:2;12200:3;12141:67;:::i;:::-;12134:74;;12238:31;12234:1;12229:3;12225:11;12218:52;12296:2;12291:3;12287:12;12280:19;;12124:181;;;:::o;12311:366::-;;12474:67;12538:2;12533:3;12474:67;:::i;:::-;12467:74;;12571:34;12567:1;12562:3;12558:11;12551:55;12637:4;12632:2;12627:3;12623:12;12616:26;12668:2;12663:3;12659:12;12652:19;;12457:220;;;:::o;12683:368::-;;12846:67;12910:2;12905:3;12846:67;:::i;:::-;12839:74;;12943:34;12939:1;12934:3;12930:11;12923:55;13009:6;13004:2;12999:3;12995:12;12988:28;13042:2;13037:3;13033:12;13026:19;;12829:222;;;:::o;13057:323::-;;13220:67;13284:2;13279:3;13220:67;:::i;:::-;13213:74;;13317:27;13313:1;13308:3;13304:11;13297:48;13371:2;13366:3;13362:12;13355:19;;13203:177;;;:::o;13386:376::-;;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13646:34;13642:1;13637:3;13633:11;13626:55;13712:14;13707:2;13702:3;13698:12;13691:36;13753:2;13748:3;13744:12;13737:19;;13532:230;;;:::o;13768:366::-;;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14028:34;14024:1;14019:3;14015:11;14008:55;14094:4;14089:2;14084:3;14080:12;14073:26;14125:2;14120:3;14116:12;14109:19;;13914:220;;;:::o;14140:388::-;;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14400:34;14396:1;14391:3;14387:11;14380:55;14466:26;14461:2;14456:3;14452:12;14445:48;14519:2;14514:3;14510:12;14503:19;;14286:242;;;:::o;14534:315::-;;14697:67;14761:2;14756:3;14697:67;:::i;:::-;14690:74;;14794:19;14790:1;14785:3;14781:11;14774:40;14840:2;14835:3;14831:12;14824:19;;14680:169;;;:::o;14855:374::-;;15018:67;15082:2;15077:3;15018:67;:::i;:::-;15011:74;;15115:34;15111:1;15106:3;15102:11;15095:55;15181:12;15176:2;15171:3;15167:12;15160:34;15220:2;15215:3;15211:12;15204:19;;15001:228;;;:::o;15235:373::-;;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15495:34;15491:1;15486:3;15482:11;15475:55;15561:11;15556:2;15551:3;15547:12;15540:33;15599:2;15594:3;15590:12;15583:19;;15381:227;;;:::o;15614:330::-;;15777:67;15841:2;15836:3;15777:67;:::i;:::-;15770:74;;15874:34;15870:1;15865:3;15861:11;15854:55;15935:2;15930:3;15926:12;15919:19;;15760:184;;;:::o;15950:376::-;;16113:67;16177:2;16172:3;16113:67;:::i;:::-;16106:74;;16210:34;16206:1;16201:3;16197:11;16190:55;16276:14;16271:2;16266:3;16262:12;16255:36;16317:2;16312:3;16308:12;16301:19;;16096:230;;;:::o;16332:337::-;;16513:84;16595:1;16590:3;16513:84;:::i;:::-;16506:91;;16627:7;16623:1;16618:3;16614:11;16607:28;16661:1;16656:3;16652:11;16645:18;;16496:173;;;:::o;16675:330::-;;16838:67;16902:2;16897:3;16838:67;:::i;:::-;16831:74;;16935:34;16931:1;16926:3;16922:11;16915:55;16996:2;16991:3;16987:12;16980:19;;16821:184;;;:::o;17011:373::-;;17174:67;17238:2;17233:3;17174:67;:::i;:::-;17167:74;;17271:34;17267:1;17262:3;17258:11;17251:55;17337:11;17332:2;17327:3;17323:12;17316:33;17375:2;17370:3;17366:12;17359:19;;17157:227;;;:::o;17390:365::-;;17553:67;17617:2;17612:3;17553:67;:::i;:::-;17546:74;;17650:34;17646:1;17641:3;17637:11;17630:55;17716:3;17711:2;17706:3;17702:12;17695:25;17746:2;17741:3;17737:12;17730:19;;17536:219;;;:::o;17761:381::-;;17924:67;17988:2;17983:3;17924:67;:::i;:::-;17917:74;;18021:34;18017:1;18012:3;18008:11;18001:55;18087:19;18082:2;18077:3;18073:12;18066:41;18133:2;18128:3;18124:12;18117:19;;17907:235;;;:::o;18148:322::-;;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18408:26;18404:1;18399:3;18395:11;18388:47;18461:2;18456:3;18452:12;18445:19;;18294:176;;;:::o;18476:329::-;;18639:67;18703:2;18698:3;18639:67;:::i;:::-;18632:74;;18736:33;18732:1;18727:3;18723:11;18716:54;18796:2;18791:3;18787:12;18780:19;;18622:183;;;:::o;18811:321::-;;18974:67;19038:2;19033:3;18974:67;:::i;:::-;18967:74;;19071:25;19067:1;19062:3;19058:11;19051:46;19123:2;19118:3;19114:12;19107:19;;18957:175;;;:::o;19138:333::-;;19319:84;19401:1;19396:3;19319:84;:::i;:::-;19312:91;;19433:3;19429:1;19424:3;19420:11;19413:24;19463:1;19458:3;19454:11;19447:18;;19302:169;;;:::o;19477:118::-;19564:24;19582:5;19564:24;:::i;:::-;19559:3;19552:37;19542:53;;:::o;19601:961::-;;20002:92;20090:3;20081:6;20002:92;:::i;:::-;19995:99;;20111:148;20255:3;20111:148;:::i;:::-;20104:155;;20276:95;20367:3;20358:6;20276:95;:::i;:::-;20269:102;;20388:148;20532:3;20388:148;:::i;:::-;20381:155;;20553:3;20546:10;;19984:578;;;;;:::o;20568:222::-;;20699:2;20688:9;20684:18;20676:26;;20712:71;20780:1;20769:9;20765:17;20756:6;20712:71;:::i;:::-;20666:124;;;;:::o;20796:640::-;;21029:3;21018:9;21014:19;21006:27;;21043:71;21111:1;21100:9;21096:17;21087:6;21043:71;:::i;:::-;21124:72;21192:2;21181:9;21177:18;21168:6;21124:72;:::i;:::-;21206;21274:2;21263:9;21259:18;21250:6;21206:72;:::i;:::-;21325:9;21319:4;21315:20;21310:2;21299:9;21295:18;21288:48;21353:76;21424:4;21415:6;21353:76;:::i;:::-;21345:84;;20996:440;;;;;;;:::o;21442:332::-;;21601:2;21590:9;21586:18;21578:26;;21614:71;21682:1;21671:9;21667:17;21658:6;21614:71;:::i;:::-;21695:72;21763:2;21752:9;21748:18;21739:6;21695:72;:::i;:::-;21568:206;;;;;:::o;21780:210::-;;21905:2;21894:9;21890:18;21882:26;;21918:65;21980:1;21969:9;21965:17;21956:6;21918:65;:::i;:::-;21872:118;;;;:::o;21996:313::-;;22147:2;22136:9;22132:18;22124:26;;22196:9;22190:4;22186:20;22182:1;22171:9;22167:17;22160:47;22224:78;22297:4;22288:6;22224:78;:::i;:::-;22216:86;;22114:195;;;;:::o;22315:419::-;;22519:2;22508:9;22504:18;22496:26;;22568:9;22562:4;22558:20;22554:1;22543:9;22539:17;22532:47;22596:131;22722:4;22596:131;:::i;:::-;22588:139;;22486:248;;;:::o;22740:419::-;;22944:2;22933:9;22929:18;22921:26;;22993:9;22987:4;22983:20;22979:1;22968:9;22964:17;22957:47;23021:131;23147:4;23021:131;:::i;:::-;23013:139;;22911:248;;;:::o;23165:419::-;;23369:2;23358:9;23354:18;23346:26;;23418:9;23412:4;23408:20;23404:1;23393:9;23389:17;23382:47;23446:131;23572:4;23446:131;:::i;:::-;23438:139;;23336:248;;;:::o;23590:419::-;;23794:2;23783:9;23779:18;23771:26;;23843:9;23837:4;23833:20;23829:1;23818:9;23814:17;23807:47;23871:131;23997:4;23871:131;:::i;:::-;23863:139;;23761:248;;;:::o;24015:419::-;;24219:2;24208:9;24204:18;24196:26;;24268:9;24262:4;24258:20;24254:1;24243:9;24239:17;24232:47;24296:131;24422:4;24296:131;:::i;:::-;24288:139;;24186:248;;;:::o;24440:419::-;;24644:2;24633:9;24629:18;24621:26;;24693:9;24687:4;24683:20;24679:1;24668:9;24664:17;24657:47;24721:131;24847:4;24721:131;:::i;:::-;24713:139;;24611:248;;;:::o;24865:419::-;;25069:2;25058:9;25054:18;25046:26;;25118:9;25112:4;25108:20;25104:1;25093:9;25089:17;25082:47;25146:131;25272:4;25146:131;:::i;:::-;25138:139;;25036:248;;;:::o;25290:419::-;;25494:2;25483:9;25479:18;25471:26;;25543:9;25537:4;25533:20;25529:1;25518:9;25514:17;25507:47;25571:131;25697:4;25571:131;:::i;:::-;25563:139;;25461:248;;;:::o;25715:419::-;;25919:2;25908:9;25904:18;25896:26;;25968:9;25962:4;25958:20;25954:1;25943:9;25939:17;25932:47;25996:131;26122:4;25996:131;:::i;:::-;25988:139;;25886:248;;;:::o;26140:419::-;;26344:2;26333:9;26329:18;26321:26;;26393:9;26387:4;26383:20;26379:1;26368:9;26364:17;26357:47;26421:131;26547:4;26421:131;:::i;:::-;26413:139;;26311:248;;;:::o;26565:419::-;;26769:2;26758:9;26754:18;26746:26;;26818:9;26812:4;26808:20;26804:1;26793:9;26789:17;26782:47;26846:131;26972:4;26846:131;:::i;:::-;26838:139;;26736:248;;;:::o;26990:419::-;;27194:2;27183:9;27179:18;27171:26;;27243:9;27237:4;27233:20;27229:1;27218:9;27214:17;27207:47;27271:131;27397:4;27271:131;:::i;:::-;27263:139;;27161:248;;;:::o;27415:419::-;;27619:2;27608:9;27604:18;27596:26;;27668:9;27662:4;27658:20;27654:1;27643:9;27639:17;27632:47;27696:131;27822:4;27696:131;:::i;:::-;27688:139;;27586:248;;;:::o;27840:419::-;;28044:2;28033:9;28029:18;28021:26;;28093:9;28087:4;28083:20;28079:1;28068:9;28064:17;28057:47;28121:131;28247:4;28121:131;:::i;:::-;28113:139;;28011:248;;;:::o;28265:419::-;;28469:2;28458:9;28454:18;28446:26;;28518:9;28512:4;28508:20;28504:1;28493:9;28489:17;28482:47;28546:131;28672:4;28546:131;:::i;:::-;28538:139;;28436:248;;;:::o;28690:419::-;;28894:2;28883:9;28879:18;28871:26;;28943:9;28937:4;28933:20;28929:1;28918:9;28914:17;28907:47;28971:131;29097:4;28971:131;:::i;:::-;28963:139;;28861:248;;;:::o;29115:419::-;;29319:2;29308:9;29304:18;29296:26;;29368:9;29362:4;29358:20;29354:1;29343:9;29339:17;29332:47;29396:131;29522:4;29396:131;:::i;:::-;29388:139;;29286:248;;;:::o;29540:419::-;;29744:2;29733:9;29729:18;29721:26;;29793:9;29787:4;29783:20;29779:1;29768:9;29764:17;29757:47;29821:131;29947:4;29821:131;:::i;:::-;29813:139;;29711:248;;;:::o;29965:419::-;;30169:2;30158:9;30154:18;30146:26;;30218:9;30212:4;30208:20;30204:1;30193:9;30189:17;30182:47;30246:131;30372:4;30246:131;:::i;:::-;30238:139;;30136:248;;;:::o;30390:419::-;;30594:2;30583:9;30579:18;30571:26;;30643:9;30637:4;30633:20;30629:1;30618:9;30614:17;30607:47;30671:131;30797:4;30671:131;:::i;:::-;30663:139;;30561:248;;;:::o;30815:419::-;;31019:2;31008:9;31004:18;30996:26;;31068:9;31062:4;31058:20;31054:1;31043:9;31039:17;31032:47;31096:131;31222:4;31096:131;:::i;:::-;31088:139;;30986:248;;;:::o;31240:419::-;;31444:2;31433:9;31429:18;31421:26;;31493:9;31487:4;31483:20;31479:1;31468:9;31464:17;31457:47;31521:131;31647:4;31521:131;:::i;:::-;31513:139;;31411:248;;;:::o;31665:222::-;;31796:2;31785:9;31781:18;31773:26;;31809:71;31877:1;31866:9;31862:17;31853:6;31809:71;:::i;:::-;31763:124;;;;:::o;31893:283::-;;31959:2;31953:9;31943:19;;32001:4;31993:6;31989:17;32108:6;32096:10;32093:22;32072:18;32060:10;32057:34;32054:62;32051:2;;;32119:18;;:::i;:::-;32051:2;32159:10;32155:2;32148:22;31933:243;;;;:::o;32182:331::-;;32333:18;32325:6;32322:30;32319:2;;;32355:18;;:::i;:::-;32319:2;32440:4;32436:9;32429:4;32421:6;32417:17;32413:33;32405:41;;32501:4;32495;32491:15;32483:23;;32248:265;;;:::o;32519:332::-;;32671:18;32663:6;32660:30;32657:2;;;32693:18;;:::i;:::-;32657:2;32778:4;32774:9;32767:4;32759:6;32755:17;32751:33;32743:41;;32839:4;32833;32829:15;32821:23;;32586:265;;;:::o;32857:141::-;;32929:3;32921:11;;32952:3;32949:1;32942:14;32986:4;32983:1;32973:18;32965:26;;32911:87;;;:::o;33004:98::-;;33089:5;33083:12;33073:22;;33062:40;;;:::o;33108:99::-;;33194:5;33188:12;33178:22;;33167:40;;;:::o;33213:168::-;;33330:6;33325:3;33318:19;33370:4;33365:3;33361:14;33346:29;;33308:73;;;;:::o;33387:169::-;;33505:6;33500:3;33493:19;33545:4;33540:3;33536:14;33521:29;;33483:73;;;;:::o;33562:148::-;;33701:3;33686:18;;33676:34;;;;:::o;33716:305::-;;33775:20;33793:1;33775:20;:::i;:::-;33770:25;;33809:20;33827:1;33809:20;:::i;:::-;33804:25;;33963:1;33895:66;33891:74;33888:1;33885:81;33882:2;;;33969:18;;:::i;:::-;33882:2;34013:1;34010;34006:9;33999:16;;33760:261;;;;:::o;34027:185::-;;34084:20;34102:1;34084:20;:::i;:::-;34079:25;;34118:20;34136:1;34118:20;:::i;:::-;34113:25;;34157:1;34147:2;;34162:18;;:::i;:::-;34147:2;34204:1;34201;34197:9;34192:14;;34069:143;;;;:::o;34218:348::-;;34281:20;34299:1;34281:20;:::i;:::-;34276:25;;34315:20;34333:1;34315:20;:::i;:::-;34310:25;;34503:1;34435:66;34431:74;34428:1;34425:81;34420:1;34413:9;34406:17;34402:105;34399:2;;;34510:18;;:::i;:::-;34399:2;34558:1;34555;34551:9;34540:20;;34266:300;;;;:::o;34572:191::-;;34632:20;34650:1;34632:20;:::i;:::-;34627:25;;34666:20;34684:1;34666:20;:::i;:::-;34661:25;;34705:1;34702;34699:8;34696:2;;;34710:18;;:::i;:::-;34696:2;34755:1;34752;34748:9;34740:17;;34617:146;;;;:::o;34769:96::-;;34835:24;34853:5;34835:24;:::i;:::-;34824:35;;34814:51;;;:::o;34871:90::-;;34948:5;34941:13;34934:21;34923:32;;34913:48;;;:::o;34967:149::-;;35043:66;35036:5;35032:78;35021:89;;35011:105;;;:::o;35122:110::-;;35202:24;35220:5;35202:24;:::i;:::-;35191:35;;35181:51;;;:::o;35238:125::-;;35333:24;35351:5;35333:24;:::i;:::-;35322:35;;35312:51;;;:::o;35369:126::-;;35446:42;35439:5;35435:54;35424:65;;35414:81;;;:::o;35501:77::-;;35567:5;35556:16;;35546:32;;;:::o;35584:154::-;35668:6;35663:3;35658;35645:30;35730:1;35721:6;35716:3;35712:16;35705:27;35635:103;;;:::o;35744:307::-;35812:1;35822:113;35836:6;35833:1;35830:13;35822:113;;;35921:1;35916:3;35912:11;35906:18;35902:1;35897:3;35893:11;35886:39;35858:2;35855:1;35851:10;35846:15;;35822:113;;;35953:6;35950:1;35947:13;35944:2;;;36033:1;36024:6;36019:3;36015:16;36008:27;35944:2;35793:258;;;;:::o;36057:320::-;;36138:1;36132:4;36128:12;36118:22;;36185:1;36179:4;36175:12;36206:18;36196:2;;36262:4;36254:6;36250:17;36240:27;;36196:2;36324;36316:6;36313:14;36293:18;36290:38;36287:2;;;36343:18;;:::i;:::-;36287:2;36108:269;;;;:::o;36383:233::-;;36445:24;36463:5;36445:24;:::i;:::-;36436:33;;36491:66;36484:5;36481:77;36478:2;;;36561:18;;:::i;:::-;36478:2;36608:1;36601:5;36597:13;36590:20;;36426:190;;;:::o;36622:176::-;;36671:20;36689:1;36671:20;:::i;:::-;36666:25;;36705:20;36723:1;36705:20;:::i;:::-;36700:25;;36744:1;36734:2;;36749:18;;:::i;:::-;36734:2;36790:1;36787;36783:9;36778:14;;36656:142;;;;:::o;36804:180::-;36852:77;36849:1;36842:88;36949:4;36946:1;36939:15;36973:4;36970:1;36963:15;36990:180;37038:77;37035:1;37028:88;37135:4;37132:1;37125:15;37159:4;37156:1;37149:15;37176:180;37224:77;37221:1;37214:88;37321:4;37318:1;37311:15;37345:4;37342:1;37335:15;37362:180;37410:77;37407:1;37400:88;37507:4;37504:1;37497:15;37531:4;37528:1;37521:15;37548:102;;37640:2;37636:7;37631:2;37624:5;37620:14;37616:28;37606:38;;37596:54;;;:::o;37656:122::-;37729:24;37747:5;37729:24;:::i;:::-;37722:5;37719:35;37709:2;;37768:1;37765;37758:12;37709:2;37699:79;:::o;37784:116::-;37854:21;37869:5;37854:21;:::i;:::-;37847:5;37844:32;37834:2;;37890:1;37887;37880:12;37834:2;37824:76;:::o;37906:120::-;37978:23;37995:5;37978:23;:::i;:::-;37971:5;37968:34;37958:2;;38016:1;38013;38006:12;37958:2;37948:78;:::o;38032:150::-;38119:38;38151:5;38119:38;:::i;:::-;38112:5;38109:49;38099:2;;38172:1;38169;38162:12;38099:2;38089:93;:::o;38188:180::-;38290:53;38337:5;38290:53;:::i;:::-;38283:5;38280:64;38270:2;;38358:1;38355;38348:12;38270:2;38260:108;:::o;38374:122::-;38447:24;38465:5;38447:24;:::i;:::-;38440:5;38437:35;38427:2;;38486:1;38483;38476:12;38427:2;38417:79;:::o

Swarm Source

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