ETH Price: $3,468.28 (+2.19%)
Gas: 12 Gwei

Token

Art of Nature (NATURE)
 

Overview

Max Total Supply

534 NATURE

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 NATURE
0x05e5a014067a5f01cBc128ca99f631E91dEc2Fd9
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:
Nature

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/Nature.sol

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

// File: contracts/Nature.sol

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

// File: contracts/Nature.sol

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

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

// File: contracts/Nature.sol

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

// File: contracts/Nature.sol

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

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

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    // require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: contracts/Nature.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 Nature is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmfDMnNSJEFNfPZxfis7vFP7zar2oKyjopUnJbmqZz1pSC";

    uint256 public constant MAX_MINTS_PER_TX = 5;
    uint256 public maxSupply = 555;

    uint256 public constant PUBLIC_SALE_PRICE = 0.05 ether;
    bool public isPublicSaleActive = false;




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

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



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

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

    constructor(
    ) ERC721A("Art of Nature", "NATURE", 100, maxSupply) {
    }

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

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

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        publicSaleActive
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }




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

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

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

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


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



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

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



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

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

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

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

    /**
     * @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+1).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":"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":[{"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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60c060405260008055600060075560405180606001604052806035815260200162004cf360359139600b90805190602001906200003e929190620002ad565b5061022b600c556000600d60006101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600d81526020017f417274206f66204e6174757265000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e415455524500000000000000000000000000000000000000000000000000008152506064600c546000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c90620003cd565b60405180910390fd5b600082116200016b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016290620003ab565b60405180910390fd5b836001908051906020019062000183929190620002ad565b5082600290805190602001906200019c929190620002ad565b508160a08181525050806080818152505050505050620001d1620001c5620001df60201b60201c565b620001e760201b60201c565b600160098190555062000503565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bb9062000400565b90600052602060002090601f016020900481019282620002df57600085556200032b565b82601f10620002fa57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032a5782518255916020019190600101906200030d565b5b5090506200033a91906200033e565b5090565b5b80821115620003595760008160009055506001016200033f565b5090565b60006200036c602783620003ef565b9150620003798262000465565b604082019050919050565b600062000393602e83620003ef565b9150620003a082620004b4565b604082019050919050565b60006020820190508181036000830152620003c6816200035d565b9050919050565b60006020820190508181036000830152620003e88162000384565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f62000436565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516147c66200052d6000396000818161218901526121b20152600050506147c66000f3fe6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061309b565b61076c565b60405161021191906137ac565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c91906137c7565b60405180910390f35b34801561025157600080fd5b5061025a610878565b6040516102679190613ae9565b60405180910390f35b34801561027c57600080fd5b506102976004803603810190610292919061316b565b610883565b6040516102a4919061371c565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613001565b610908565b005b3480156102e257600080fd5b506102eb610a21565b6040516102f89190613ae9565b60405180910390f35b34801561030d57600080fd5b50610316610a2a565b60405161032391906137ac565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612eeb565b610a3d565b005b34801561036157600080fd5b5061037c60048036038101906103779190613041565b610a4d565b005b34801561038a57600080fd5b506103a560048036038101906103a091906131c5565b610ae6565b6040516103b3929190613783565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613001565b610b52565b6040516103f09190613ae9565b60405180910390f35b34801561040557600080fd5b5061040e610d50565b005b34801561041c57600080fd5b5061043760048036038101906104329190612eeb565b610e1b565b005b34801561044557600080fd5b50610460600480360381019061045b91906130f5565b610e3b565b005b34801561046e57600080fd5b506104896004803603810190610484919061316b565b610fd6565b6040516104969190613ae9565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613122565b611029565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061316b565b6110bf565b6040516104fc919061371c565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612e7e565b6110d5565b6040516105399190613ae9565b60405180910390f35b34801561054e57600080fd5b506105576111be565b60405161056491906137c7565b60405180910390f35b34801561057957600080fd5b50610582611250565b005b34801561059057600080fd5b506105996112d8565b6040516105a6919061371c565b60405180910390f35b3480156105bb57600080fd5b506105c4611302565b6040516105d191906137c7565b60405180910390f35b6105f460048036038101906105ef919061316b565b611394565b005b34801561060257600080fd5b5061061d60048036038101906106189190612fc1565b61153d565b005b34801561062b57600080fd5b5061064660048036038101906106419190612f3e565b6116be565b005b34801561065457600080fd5b5061065d61171a565b60405161066a9190613ae9565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061316b565b61171f565b6040516106a791906137c7565b60405180910390f35b3480156106bc57600080fd5b506106c56117a7565b6040516106d29190613ae9565b60405180910390f35b3480156106e757600080fd5b506106f06117ad565b6040516106fd9190613ae9565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612eab565b6117b3565b60405161073a91906137ac565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612e7e565b611847565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de8261193f565b5b9050919050565b6060600180546107f590613e80565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613e80565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b600061088e82611a89565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c490613ac9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610913826110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906139a9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611a96565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611a96565b6117b3565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906138e9565b60405180910390fd5b610a1c838383611a9e565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a48838383611b50565b505050565b610a55611a96565b73ffffffffffffffffffffffffffffffffffffffff16610a736112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac090613949565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af284611a89565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b28906138c9565b60405180910390fd5b30610b47610b40856005612109565b606461211f565b915091509250929050565b6000610b5d836110d5565b8210610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906137e9565b60405180910390fd5b6000610ba8610a21565b905060008060005b83811015610d0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfa5786841415610ceb578195505050505050610d4a565b8380610cf690613ee3565b9450505b508080610d0690613ee3565b915050610bb0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613a49565b60405180910390fd5b92915050565b610d58611a96565b73ffffffffffffffffffffffffffffffffffffffff16610d766112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613949565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e17573d6000803e3d6000fd5b5050565b610e36838383604051806020016040528060008152506116be565b505050565b610e43611a96565b73ffffffffffffffffffffffffffffffffffffffff16610e616112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613949565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef2919061371c565b60206040518083038186803b158015610f0a57600080fd5b505afa158015610f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f429190613198565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f7f929190613783565b602060405180830381600087803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd1919061306e565b505050565b6000610fe0610a21565b8210611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613849565b60405180910390fd5b819050919050565b611031611a96565b73ffffffffffffffffffffffffffffffffffffffff1661104f6112d8565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90613949565b60405180910390fd5b80600b90805190602001906110bb929190612c19565b5050565b60006110ca82612135565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613909565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111cd90613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546111f990613e80565b80156112465780601f1061121b57610100808354040283529160200191611246565b820191906000526020600020905b81548152906001019060200180831161122957829003601f168201915b5050505050905090565b611258611a96565b73ffffffffffffffffffffffffffffffffffffffff166112766112d8565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613949565b60405180910390fd5b6112d66000612338565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131190613e80565b80601f016020809104026020016040519081016040528092919081815260200182805461133d90613e80565b801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b5050505050905090565b600260095414156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613a69565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890613aa9565b60405180910390fd5b66b1a2bc2ec50000813481836114479190613cb0565b14611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613a29565b60405180910390fd5b82600c5481611494610a21565b61149e9190613c29565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613869565b60405180910390fd5b836005811115611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b906138a9565b60405180910390fd5b61152e33866123fe565b50505050600160098190555050565b611545611a96565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613969565b60405180910390fd5b80600660006115c0611a96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611a96565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b291906137ac565b60405180910390a35050565b6116c9848484611b50565b6116d58484848461241c565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906139c9565b60405180910390fd5b50505050565b600581565b606061172a82611a89565b611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906138c9565b60405180910390fd5b600b61178060018461177b9190613c29565b6125b3565b6040516020016117919291906136e2565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184f611a96565b73ffffffffffffffffffffffffffffffffffffffff1661186d6112d8565b73ffffffffffffffffffffffffffffffffffffffff16146118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90613949565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613809565b60405180910390fd5b61193c81612338565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a7257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a825750611a8182612714565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b5b82612135565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b82611a96565b73ffffffffffffffffffffffffffffffffffffffff161480611bde5750611ba7611a96565b73ffffffffffffffffffffffffffffffffffffffff16611bc684610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfa5750611bf98260000151611bf4611a96565b6117b3565b5b905080611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613989565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613889565b60405180910390fd5b611d2b858585600161277e565b611d3b6000848460000151611a9e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611da99190613d0a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e4d9190613be3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f539190613c29565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209957611fc981611a89565b15612098576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121018686866001612784565b505050505050565b600081836121179190613cb0565b905092915050565b6000818361212d9190613c7f565b905092915050565b61213d612c9f565b61214682611a89565b612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c90613829565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121e95760017f0000000000000000000000000000000000000000000000000000000000000000846121dc9190613d3e565b6121e69190613c29565b90505b60008390505b8181106122f7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e357809350505050612333565b5080806122ef90613e56565b9150506121ef565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90613a89565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241882826040518060200160405280600081525061278a565b5050565b600061243d8473ffffffffffffffffffffffffffffffffffffffff16612c06565b156125a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a96565b8786866040518563ffffffff1660e01b81526004016124889493929190613737565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d091906130c8565b60015b612556573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b5060008151141561254e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612545906139c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ab565b600190505b949350505050565b606060008214156125fb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270f565b600082905060005b6000821461262d57808061261690613ee3565b915050600a826126269190613c7f565b9150612603565b60008167ffffffffffffffff81111561264957612648614019565b5b6040519080825280601f01601f19166020018201604052801561267b5781602001600182028036833780820191505090505b5090505b60008514612708576001826126949190613d3e565b9150600a856126a39190613f2c565b60306126af9190613c29565b60f81b8183815181106126c5576126c4613fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127019190613c7f565b945061267f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790613a09565b60405180910390fd5b61280981611a89565b15612849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612840906139e9565b60405180910390fd5b612856600085838661277e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129539190613be3565b6fffffffffffffffffffffffffffffffff16815260200185836020015161297a9190613be3565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612be957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b89600088848861241c565b612bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbf906139c9565b60405180910390fd5b8180612bd390613ee3565b9250508080612be190613ee3565b915050612b18565b5080600081905550612bfe6000878588612784565b505050505050565b600080823b905060008111915050919050565b828054612c2590613e80565b90600052602060002090601f016020900481019282612c475760008555612c8e565b82601f10612c6057805160ff1916838001178555612c8e565b82800160010185558215612c8e579182015b82811115612c8d578251825591602001919060010190612c72565b5b509050612c9b9190612cd9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cf2576000816000905550600101612cda565b5090565b6000612d09612d0484613b29565b613b04565b905082815260208101848484011115612d2557612d2461404d565b5b612d30848285613e14565b509392505050565b6000612d4b612d4684613b5a565b613b04565b905082815260208101848484011115612d6757612d6661404d565b5b612d72848285613e14565b509392505050565b600081359050612d898161471d565b92915050565b600081359050612d9e81614734565b92915050565b600081519050612db381614734565b92915050565b600081359050612dc88161474b565b92915050565b600081519050612ddd8161474b565b92915050565b600082601f830112612df857612df7614048565b5b8135612e08848260208601612cf6565b91505092915050565b600081359050612e2081614762565b92915050565b600082601f830112612e3b57612e3a614048565b5b8135612e4b848260208601612d38565b91505092915050565b600081359050612e6381614779565b92915050565b600081519050612e7881614779565b92915050565b600060208284031215612e9457612e93614057565b5b6000612ea284828501612d7a565b91505092915050565b60008060408385031215612ec257612ec1614057565b5b6000612ed085828601612d7a565b9250506020612ee185828601612d7a565b9150509250929050565b600080600060608486031215612f0457612f03614057565b5b6000612f1286828701612d7a565b9350506020612f2386828701612d7a565b9250506040612f3486828701612e54565b9150509250925092565b60008060008060808587031215612f5857612f57614057565b5b6000612f6687828801612d7a565b9450506020612f7787828801612d7a565b9350506040612f8887828801612e54565b925050606085013567ffffffffffffffff811115612fa957612fa8614052565b5b612fb587828801612de3565b91505092959194509250565b60008060408385031215612fd857612fd7614057565b5b6000612fe685828601612d7a565b9250506020612ff785828601612d8f565b9150509250929050565b6000806040838503121561301857613017614057565b5b600061302685828601612d7a565b925050602061303785828601612e54565b9150509250929050565b60006020828403121561305757613056614057565b5b600061306584828501612d8f565b91505092915050565b60006020828403121561308457613083614057565b5b600061309284828501612da4565b91505092915050565b6000602082840312156130b1576130b0614057565b5b60006130bf84828501612db9565b91505092915050565b6000602082840312156130de576130dd614057565b5b60006130ec84828501612dce565b91505092915050565b60006020828403121561310b5761310a614057565b5b600061311984828501612e11565b91505092915050565b60006020828403121561313857613137614057565b5b600082013567ffffffffffffffff81111561315657613155614052565b5b61316284828501612e26565b91505092915050565b60006020828403121561318157613180614057565b5b600061318f84828501612e54565b91505092915050565b6000602082840312156131ae576131ad614057565b5b60006131bc84828501612e69565b91505092915050565b600080604083850312156131dc576131db614057565b5b60006131ea85828601612e54565b92505060206131fb85828601612e54565b9150509250929050565b61320e81613d72565b82525050565b61321d81613d84565b82525050565b600061322e82613ba0565b6132388185613bb6565b9350613248818560208601613e23565b6132518161405c565b840191505092915050565b600061326782613bab565b6132718185613bc7565b9350613281818560208601613e23565b61328a8161405c565b840191505092915050565b60006132a082613bab565b6132aa8185613bd8565b93506132ba818560208601613e23565b80840191505092915050565b600081546132d381613e80565b6132dd8186613bd8565b945060018216600081146132f857600181146133095761333c565b60ff1983168652818601935061333c565b61331285613b8b565b60005b8381101561333457815481890152600182019150602081019050613315565b838801955050505b50505092915050565b6000613352602283613bc7565b915061335d8261406d565b604082019050919050565b6000613375602683613bc7565b9150613380826140bc565b604082019050919050565b6000613398602a83613bc7565b91506133a38261410b565b604082019050919050565b60006133bb602383613bc7565b91506133c68261415a565b604082019050919050565b60006133de602283613bc7565b91506133e9826141a9565b604082019050919050565b6000613401602583613bc7565b915061340c826141f8565b604082019050919050565b6000613424602283613bc7565b915061342f82614247565b604082019050919050565b6000613447601183613bc7565b915061345282614296565b602082019050919050565b600061346a603983613bc7565b9150613475826142bf565b604082019050919050565b600061348d602b83613bc7565b91506134988261430e565b604082019050919050565b60006134b0602683613bc7565b91506134bb8261435d565b604082019050919050565b60006134d3600583613bd8565b91506134de826143ac565b600582019050919050565b60006134f6602083613bc7565b9150613501826143d5565b602082019050919050565b6000613519601a83613bc7565b9150613524826143fe565b602082019050919050565b600061353c603283613bc7565b915061354782614427565b604082019050919050565b600061355f602283613bc7565b915061356a82614476565b604082019050919050565b6000613582603383613bc7565b915061358d826144c5565b604082019050919050565b60006135a5601d83613bc7565b91506135b082614514565b602082019050919050565b60006135c8602183613bc7565b91506135d38261453d565b604082019050919050565b60006135eb601883613bc7565b91506135f68261458c565b602082019050919050565b600061360e602e83613bc7565b9150613619826145b5565b604082019050919050565b6000613631601f83613bc7565b915061363c82614604565b602082019050919050565b6000613654602f83613bc7565b915061365f8261462d565b604082019050919050565b6000613677601783613bc7565b91506136828261467c565b602082019050919050565b600061369a602d83613bc7565b91506136a5826146a5565b604082019050919050565b60006136bd600183613bd8565b91506136c8826146f4565b600182019050919050565b6136dc81613e0a565b82525050565b60006136ee82856132c6565b91506136f9826136b0565b91506137058284613295565b9150613710826134c6565b91508190509392505050565b60006020820190506137316000830184613205565b92915050565b600060808201905061374c6000830187613205565b6137596020830186613205565b61376660408301856136d3565b81810360608301526137788184613223565b905095945050505050565b60006040820190506137986000830185613205565b6137a560208301846136d3565b9392505050565b60006020820190506137c16000830184613214565b92915050565b600060208201905081810360008301526137e1818461325c565b905092915050565b6000602082019050818103600083015261380281613345565b9050919050565b6000602082019050818103600083015261382281613368565b9050919050565b600060208201905081810360008301526138428161338b565b9050919050565b60006020820190508181036000830152613862816133ae565b9050919050565b60006020820190508181036000830152613882816133d1565b9050919050565b600060208201905081810360008301526138a2816133f4565b9050919050565b600060208201905081810360008301526138c281613417565b9050919050565b600060208201905081810360008301526138e28161343a565b9050919050565b600060208201905081810360008301526139028161345d565b9050919050565b6000602082019050818103600083015261392281613480565b9050919050565b60006020820190508181036000830152613942816134a3565b9050919050565b60006020820190508181036000830152613962816134e9565b9050919050565b600060208201905081810360008301526139828161350c565b9050919050565b600060208201905081810360008301526139a28161352f565b9050919050565b600060208201905081810360008301526139c281613552565b9050919050565b600060208201905081810360008301526139e281613575565b9050919050565b60006020820190508181036000830152613a0281613598565b9050919050565b60006020820190508181036000830152613a22816135bb565b9050919050565b60006020820190508181036000830152613a42816135de565b9050919050565b60006020820190508181036000830152613a6281613601565b9050919050565b60006020820190508181036000830152613a8281613624565b9050919050565b60006020820190508181036000830152613aa281613647565b9050919050565b60006020820190508181036000830152613ac28161366a565b9050919050565b60006020820190508181036000830152613ae28161368d565b9050919050565b6000602082019050613afe60008301846136d3565b92915050565b6000613b0e613b1f565b9050613b1a8282613eb2565b919050565b6000604051905090565b600067ffffffffffffffff821115613b4457613b43614019565b5b613b4d8261405c565b9050602081019050919050565b600067ffffffffffffffff821115613b7557613b74614019565b5b613b7e8261405c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bee82613dce565b9150613bf983613dce565b9250826fffffffffffffffffffffffffffffffff03821115613c1e57613c1d613f5d565b5b828201905092915050565b6000613c3482613e0a565b9150613c3f83613e0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7457613c73613f5d565b5b828201905092915050565b6000613c8a82613e0a565b9150613c9583613e0a565b925082613ca557613ca4613f8c565b5b828204905092915050565b6000613cbb82613e0a565b9150613cc683613e0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cff57613cfe613f5d565b5b828202905092915050565b6000613d1582613dce565b9150613d2083613dce565b925082821015613d3357613d32613f5d565b5b828203905092915050565b6000613d4982613e0a565b9150613d5483613e0a565b925082821015613d6757613d66613f5d565b5b828203905092915050565b6000613d7d82613dea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dc782613d72565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e41578082015181840152602081019050613e26565b83811115613e50576000848401525b50505050565b6000613e6182613e0a565b91506000821415613e7557613e74613f5d565b5b600182039050919050565b60006002820490506001821680613e9857607f821691505b60208210811415613eac57613eab613fbb565b5b50919050565b613ebb8261405c565b810181811067ffffffffffffffff82111715613eda57613ed9614019565b5b80604052505050565b6000613eee82613e0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2157613f20613f5d565b5b600182019050919050565b6000613f3782613e0a565b9150613f4283613e0a565b925082613f5257613f51613f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61472681613d72565b811461473157600080fd5b50565b61473d81613d84565b811461474857600080fd5b50565b61475481613d90565b811461475f57600080fd5b50565b61476b81613dbc565b811461477657600080fd5b50565b61478281613e0a565b811461478d57600080fd5b5056fea2646970667358221220334221d5ec03cbc0f880fc9acadb27b8b5d8eb743581362908b65bb1b723967464736f6c63430008070033697066733a2f2f516d66444d6e4e534a45464e66505a7866697337764650377a6172326f4b796a6f70556e4a626d715a7a31705343

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061309b565b61076c565b60405161021191906137ac565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c91906137c7565b60405180910390f35b34801561025157600080fd5b5061025a610878565b6040516102679190613ae9565b60405180910390f35b34801561027c57600080fd5b506102976004803603810190610292919061316b565b610883565b6040516102a4919061371c565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613001565b610908565b005b3480156102e257600080fd5b506102eb610a21565b6040516102f89190613ae9565b60405180910390f35b34801561030d57600080fd5b50610316610a2a565b60405161032391906137ac565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612eeb565b610a3d565b005b34801561036157600080fd5b5061037c60048036038101906103779190613041565b610a4d565b005b34801561038a57600080fd5b506103a560048036038101906103a091906131c5565b610ae6565b6040516103b3929190613783565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613001565b610b52565b6040516103f09190613ae9565b60405180910390f35b34801561040557600080fd5b5061040e610d50565b005b34801561041c57600080fd5b5061043760048036038101906104329190612eeb565b610e1b565b005b34801561044557600080fd5b50610460600480360381019061045b91906130f5565b610e3b565b005b34801561046e57600080fd5b506104896004803603810190610484919061316b565b610fd6565b6040516104969190613ae9565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613122565b611029565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061316b565b6110bf565b6040516104fc919061371c565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612e7e565b6110d5565b6040516105399190613ae9565b60405180910390f35b34801561054e57600080fd5b506105576111be565b60405161056491906137c7565b60405180910390f35b34801561057957600080fd5b50610582611250565b005b34801561059057600080fd5b506105996112d8565b6040516105a6919061371c565b60405180910390f35b3480156105bb57600080fd5b506105c4611302565b6040516105d191906137c7565b60405180910390f35b6105f460048036038101906105ef919061316b565b611394565b005b34801561060257600080fd5b5061061d60048036038101906106189190612fc1565b61153d565b005b34801561062b57600080fd5b5061064660048036038101906106419190612f3e565b6116be565b005b34801561065457600080fd5b5061065d61171a565b60405161066a9190613ae9565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061316b565b61171f565b6040516106a791906137c7565b60405180910390f35b3480156106bc57600080fd5b506106c56117a7565b6040516106d29190613ae9565b60405180910390f35b3480156106e757600080fd5b506106f06117ad565b6040516106fd9190613ae9565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612eab565b6117b3565b60405161073a91906137ac565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612e7e565b611847565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de8261193f565b5b9050919050565b6060600180546107f590613e80565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613e80565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b600061088e82611a89565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c490613ac9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610913826110bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b906139a9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611a96565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611a96565b6117b3565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906138e9565b60405180910390fd5b610a1c838383611a9e565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a48838383611b50565b505050565b610a55611a96565b73ffffffffffffffffffffffffffffffffffffffff16610a736112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac090613949565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af284611a89565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b28906138c9565b60405180910390fd5b30610b47610b40856005612109565b606461211f565b915091509250929050565b6000610b5d836110d5565b8210610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906137e9565b60405180910390fd5b6000610ba8610a21565b905060008060005b83811015610d0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfa5786841415610ceb578195505050505050610d4a565b8380610cf690613ee3565b9450505b508080610d0690613ee3565b915050610bb0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613a49565b60405180910390fd5b92915050565b610d58611a96565b73ffffffffffffffffffffffffffffffffffffffff16610d766112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613949565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e17573d6000803e3d6000fd5b5050565b610e36838383604051806020016040528060008152506116be565b505050565b610e43611a96565b73ffffffffffffffffffffffffffffffffffffffff16610e616112d8565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613949565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef2919061371c565b60206040518083038186803b158015610f0a57600080fd5b505afa158015610f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f429190613198565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f7f929190613783565b602060405180830381600087803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd1919061306e565b505050565b6000610fe0610a21565b8210611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613849565b60405180910390fd5b819050919050565b611031611a96565b73ffffffffffffffffffffffffffffffffffffffff1661104f6112d8565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90613949565b60405180910390fd5b80600b90805190602001906110bb929190612c19565b5050565b60006110ca82612135565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613909565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111cd90613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546111f990613e80565b80156112465780601f1061121b57610100808354040283529160200191611246565b820191906000526020600020905b81548152906001019060200180831161122957829003601f168201915b5050505050905090565b611258611a96565b73ffffffffffffffffffffffffffffffffffffffff166112766112d8565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613949565b60405180910390fd5b6112d66000612338565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131190613e80565b80601f016020809104026020016040519081016040528092919081815260200182805461133d90613e80565b801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b5050505050905090565b600260095414156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613a69565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890613aa9565b60405180910390fd5b66b1a2bc2ec50000813481836114479190613cb0565b14611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613a29565b60405180910390fd5b82600c5481611494610a21565b61149e9190613c29565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613869565b60405180910390fd5b836005811115611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b906138a9565b60405180910390fd5b61152e33866123fe565b50505050600160098190555050565b611545611a96565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613969565b60405180910390fd5b80600660006115c0611a96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611a96565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b291906137ac565b60405180910390a35050565b6116c9848484611b50565b6116d58484848461241c565b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906139c9565b60405180910390fd5b50505050565b600581565b606061172a82611a89565b611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906138c9565b60405180910390fd5b600b61178060018461177b9190613c29565b6125b3565b6040516020016117919291906136e2565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184f611a96565b73ffffffffffffffffffffffffffffffffffffffff1661186d6112d8565b73ffffffffffffffffffffffffffffffffffffffff16146118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90613949565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613809565b60405180910390fd5b61193c81612338565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a7257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a825750611a8182612714565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b5b82612135565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b82611a96565b73ffffffffffffffffffffffffffffffffffffffff161480611bde5750611ba7611a96565b73ffffffffffffffffffffffffffffffffffffffff16611bc684610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfa5750611bf98260000151611bf4611a96565b6117b3565b5b905080611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613989565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613889565b60405180910390fd5b611d2b858585600161277e565b611d3b6000848460000151611a9e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611da99190613d0a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e4d9190613be3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f539190613c29565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209957611fc981611a89565b15612098576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121018686866001612784565b505050505050565b600081836121179190613cb0565b905092915050565b6000818361212d9190613c7f565b905092915050565b61213d612c9f565b61214682611a89565b612185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217c90613829565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106121e95760017f0000000000000000000000000000000000000000000000000000000000000064846121dc9190613d3e565b6121e69190613c29565b90505b60008390505b8181106122f7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e357809350505050612333565b5080806122ef90613e56565b9150506121ef565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232a90613a89565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241882826040518060200160405280600081525061278a565b5050565b600061243d8473ffffffffffffffffffffffffffffffffffffffff16612c06565b156125a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a96565b8786866040518563ffffffff1660e01b81526004016124889493929190613737565b602060405180830381600087803b1580156124a257600080fd5b505af19250505080156124d357506040513d601f19601f820116820180604052508101906124d091906130c8565b60015b612556573d8060008114612503576040519150601f19603f3d011682016040523d82523d6000602084013e612508565b606091505b5060008151141561254e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612545906139c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ab565b600190505b949350505050565b606060008214156125fb576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270f565b600082905060005b6000821461262d57808061261690613ee3565b915050600a826126269190613c7f565b9150612603565b60008167ffffffffffffffff81111561264957612648614019565b5b6040519080825280601f01601f19166020018201604052801561267b5781602001600182028036833780820191505090505b5090505b60008514612708576001826126949190613d3e565b9150600a856126a39190613f2c565b60306126af9190613c29565b60f81b8183815181106126c5576126c4613fea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127019190613c7f565b945061267f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790613a09565b60405180910390fd5b61280981611a89565b15612849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612840906139e9565b60405180910390fd5b612856600085838661277e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129539190613be3565b6fffffffffffffffffffffffffffffffff16815260200185836020015161297a9190613be3565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612be957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b89600088848861241c565b612bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbf906139c9565b60405180910390fd5b8180612bd390613ee3565b9250508080612be190613ee3565b915050612b18565b5080600081905550612bfe6000878588612784565b505050505050565b600080823b905060008111915050919050565b828054612c2590613e80565b90600052602060002090601f016020900481019282612c475760008555612c8e565b82601f10612c6057805160ff1916838001178555612c8e565b82800160010185558215612c8e579182015b82811115612c8d578251825591602001919060010190612c72565b5b509050612c9b9190612cd9565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cf2576000816000905550600101612cda565b5090565b6000612d09612d0484613b29565b613b04565b905082815260208101848484011115612d2557612d2461404d565b5b612d30848285613e14565b509392505050565b6000612d4b612d4684613b5a565b613b04565b905082815260208101848484011115612d6757612d6661404d565b5b612d72848285613e14565b509392505050565b600081359050612d898161471d565b92915050565b600081359050612d9e81614734565b92915050565b600081519050612db381614734565b92915050565b600081359050612dc88161474b565b92915050565b600081519050612ddd8161474b565b92915050565b600082601f830112612df857612df7614048565b5b8135612e08848260208601612cf6565b91505092915050565b600081359050612e2081614762565b92915050565b600082601f830112612e3b57612e3a614048565b5b8135612e4b848260208601612d38565b91505092915050565b600081359050612e6381614779565b92915050565b600081519050612e7881614779565b92915050565b600060208284031215612e9457612e93614057565b5b6000612ea284828501612d7a565b91505092915050565b60008060408385031215612ec257612ec1614057565b5b6000612ed085828601612d7a565b9250506020612ee185828601612d7a565b9150509250929050565b600080600060608486031215612f0457612f03614057565b5b6000612f1286828701612d7a565b9350506020612f2386828701612d7a565b9250506040612f3486828701612e54565b9150509250925092565b60008060008060808587031215612f5857612f57614057565b5b6000612f6687828801612d7a565b9450506020612f7787828801612d7a565b9350506040612f8887828801612e54565b925050606085013567ffffffffffffffff811115612fa957612fa8614052565b5b612fb587828801612de3565b91505092959194509250565b60008060408385031215612fd857612fd7614057565b5b6000612fe685828601612d7a565b9250506020612ff785828601612d8f565b9150509250929050565b6000806040838503121561301857613017614057565b5b600061302685828601612d7a565b925050602061303785828601612e54565b9150509250929050565b60006020828403121561305757613056614057565b5b600061306584828501612d8f565b91505092915050565b60006020828403121561308457613083614057565b5b600061309284828501612da4565b91505092915050565b6000602082840312156130b1576130b0614057565b5b60006130bf84828501612db9565b91505092915050565b6000602082840312156130de576130dd614057565b5b60006130ec84828501612dce565b91505092915050565b60006020828403121561310b5761310a614057565b5b600061311984828501612e11565b91505092915050565b60006020828403121561313857613137614057565b5b600082013567ffffffffffffffff81111561315657613155614052565b5b61316284828501612e26565b91505092915050565b60006020828403121561318157613180614057565b5b600061318f84828501612e54565b91505092915050565b6000602082840312156131ae576131ad614057565b5b60006131bc84828501612e69565b91505092915050565b600080604083850312156131dc576131db614057565b5b60006131ea85828601612e54565b92505060206131fb85828601612e54565b9150509250929050565b61320e81613d72565b82525050565b61321d81613d84565b82525050565b600061322e82613ba0565b6132388185613bb6565b9350613248818560208601613e23565b6132518161405c565b840191505092915050565b600061326782613bab565b6132718185613bc7565b9350613281818560208601613e23565b61328a8161405c565b840191505092915050565b60006132a082613bab565b6132aa8185613bd8565b93506132ba818560208601613e23565b80840191505092915050565b600081546132d381613e80565b6132dd8186613bd8565b945060018216600081146132f857600181146133095761333c565b60ff1983168652818601935061333c565b61331285613b8b565b60005b8381101561333457815481890152600182019150602081019050613315565b838801955050505b50505092915050565b6000613352602283613bc7565b915061335d8261406d565b604082019050919050565b6000613375602683613bc7565b9150613380826140bc565b604082019050919050565b6000613398602a83613bc7565b91506133a38261410b565b604082019050919050565b60006133bb602383613bc7565b91506133c68261415a565b604082019050919050565b60006133de602283613bc7565b91506133e9826141a9565b604082019050919050565b6000613401602583613bc7565b915061340c826141f8565b604082019050919050565b6000613424602283613bc7565b915061342f82614247565b604082019050919050565b6000613447601183613bc7565b915061345282614296565b602082019050919050565b600061346a603983613bc7565b9150613475826142bf565b604082019050919050565b600061348d602b83613bc7565b91506134988261430e565b604082019050919050565b60006134b0602683613bc7565b91506134bb8261435d565b604082019050919050565b60006134d3600583613bd8565b91506134de826143ac565b600582019050919050565b60006134f6602083613bc7565b9150613501826143d5565b602082019050919050565b6000613519601a83613bc7565b9150613524826143fe565b602082019050919050565b600061353c603283613bc7565b915061354782614427565b604082019050919050565b600061355f602283613bc7565b915061356a82614476565b604082019050919050565b6000613582603383613bc7565b915061358d826144c5565b604082019050919050565b60006135a5601d83613bc7565b91506135b082614514565b602082019050919050565b60006135c8602183613bc7565b91506135d38261453d565b604082019050919050565b60006135eb601883613bc7565b91506135f68261458c565b602082019050919050565b600061360e602e83613bc7565b9150613619826145b5565b604082019050919050565b6000613631601f83613bc7565b915061363c82614604565b602082019050919050565b6000613654602f83613bc7565b915061365f8261462d565b604082019050919050565b6000613677601783613bc7565b91506136828261467c565b602082019050919050565b600061369a602d83613bc7565b91506136a5826146a5565b604082019050919050565b60006136bd600183613bd8565b91506136c8826146f4565b600182019050919050565b6136dc81613e0a565b82525050565b60006136ee82856132c6565b91506136f9826136b0565b91506137058284613295565b9150613710826134c6565b91508190509392505050565b60006020820190506137316000830184613205565b92915050565b600060808201905061374c6000830187613205565b6137596020830186613205565b61376660408301856136d3565b81810360608301526137788184613223565b905095945050505050565b60006040820190506137986000830185613205565b6137a560208301846136d3565b9392505050565b60006020820190506137c16000830184613214565b92915050565b600060208201905081810360008301526137e1818461325c565b905092915050565b6000602082019050818103600083015261380281613345565b9050919050565b6000602082019050818103600083015261382281613368565b9050919050565b600060208201905081810360008301526138428161338b565b9050919050565b60006020820190508181036000830152613862816133ae565b9050919050565b60006020820190508181036000830152613882816133d1565b9050919050565b600060208201905081810360008301526138a2816133f4565b9050919050565b600060208201905081810360008301526138c281613417565b9050919050565b600060208201905081810360008301526138e28161343a565b9050919050565b600060208201905081810360008301526139028161345d565b9050919050565b6000602082019050818103600083015261392281613480565b9050919050565b60006020820190508181036000830152613942816134a3565b9050919050565b60006020820190508181036000830152613962816134e9565b9050919050565b600060208201905081810360008301526139828161350c565b9050919050565b600060208201905081810360008301526139a28161352f565b9050919050565b600060208201905081810360008301526139c281613552565b9050919050565b600060208201905081810360008301526139e281613575565b9050919050565b60006020820190508181036000830152613a0281613598565b9050919050565b60006020820190508181036000830152613a22816135bb565b9050919050565b60006020820190508181036000830152613a42816135de565b9050919050565b60006020820190508181036000830152613a6281613601565b9050919050565b60006020820190508181036000830152613a8281613624565b9050919050565b60006020820190508181036000830152613aa281613647565b9050919050565b60006020820190508181036000830152613ac28161366a565b9050919050565b60006020820190508181036000830152613ae28161368d565b9050919050565b6000602082019050613afe60008301846136d3565b92915050565b6000613b0e613b1f565b9050613b1a8282613eb2565b919050565b6000604051905090565b600067ffffffffffffffff821115613b4457613b43614019565b5b613b4d8261405c565b9050602081019050919050565b600067ffffffffffffffff821115613b7557613b74614019565b5b613b7e8261405c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bee82613dce565b9150613bf983613dce565b9250826fffffffffffffffffffffffffffffffff03821115613c1e57613c1d613f5d565b5b828201905092915050565b6000613c3482613e0a565b9150613c3f83613e0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7457613c73613f5d565b5b828201905092915050565b6000613c8a82613e0a565b9150613c9583613e0a565b925082613ca557613ca4613f8c565b5b828204905092915050565b6000613cbb82613e0a565b9150613cc683613e0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cff57613cfe613f5d565b5b828202905092915050565b6000613d1582613dce565b9150613d2083613dce565b925082821015613d3357613d32613f5d565b5b828203905092915050565b6000613d4982613e0a565b9150613d5483613e0a565b925082821015613d6757613d66613f5d565b5b828203905092915050565b6000613d7d82613dea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dc782613d72565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e41578082015181840152602081019050613e26565b83811115613e50576000848401525b50505050565b6000613e6182613e0a565b91506000821415613e7557613e74613f5d565b5b600182039050919050565b60006002820490506001821680613e9857607f821691505b60208210811415613eac57613eab613fbb565b5b50919050565b613ebb8261405c565b810181811067ffffffffffffffff82111715613eda57613ed9614019565b5b80604052505050565b6000613eee82613e0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2157613f20613f5d565b5b600182019050919050565b6000613f3782613e0a565b9150613f4283613e0a565b925082613f5257613f51613f8c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61472681613d72565b811461473157600080fd5b50565b61473d81613d84565b811461474857600080fd5b50565b61475481613d90565b811461475f57600080fd5b50565b61476b81613dbc565b811461477657600080fd5b50565b61478281613e0a565b811461478d57600080fd5b5056fea2646970667358221220334221d5ec03cbc0f880fc9acadb27b8b5d8eb743581362908b65bb1b723967464736f6c63430008070033

Deployed Bytecode Sourcemap

55645:3959:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58547:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44830:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56016:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46355:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45918:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41665:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56077:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47205:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57794:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59283:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;42296:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57964:143;;;;;;;;;;;;;:::i;:::-;;47410:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58115:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41828:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57684:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44653:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43530:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57520:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19688:103;;;;;;;;;;;;;:::i;:::-;;19037:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44985:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57122:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46623:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47630:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55926:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58910:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55977:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52048:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46960:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19946:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58547:292;58695:4;58752:26;58737:41;;;:11;:41;;;;:94;;;;58795:36;58819:11;58795:23;:36::i;:::-;58737:94;58717:114;;58547:292;;;:::o;44830:94::-;44884:13;44913:5;44906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44830:94;:::o;56016:54::-;56060:10;56016:54;:::o;46355:204::-;46423:7;46447:16;46455:7;46447;:16::i;:::-;46439:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46529:15;:24;46545:7;46529:24;;;;;;;;;;;;;;;;;;;;;46522:31;;46355:204;;;:::o;45918:379::-;45987:13;46003:24;46019:7;46003:15;:24::i;:::-;45987:40;;46048:5;46042:11;;:2;:11;;;;46034:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46133:5;46117:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46142:37;46159:5;46166:12;:10;:12::i;:::-;46142:16;:37::i;:::-;46117:62;46101:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46263:28;46272:2;46276:7;46285:5;46263:8;:28::i;:::-;45980:317;45918:379;;:::o;41665:94::-;41718:7;41741:12;;41734:19;;41665:94;:::o;56077:38::-;;;;;;;;;;;;;:::o;47205:142::-;47313:28;47323:4;47329:2;47333:7;47313:9;:28::i;:::-;47205:142;;;:::o;57794:158::-;19268:12;:10;:12::i;:::-;19257:23;;:7;:5;:7::i;:::-;:23;;;19249:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57925:19:::1;57904:18;;:40;;;;;;;;;;;;;;;;;;57794:158:::0;:::o;59283:318::-;59408:16;59426:21;59473:16;59481:7;59473;:16::i;:::-;59465:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59540:4;59547:45;59560:26;59573:9;59584:1;59560:12;:26::i;:::-;59588:3;59547:12;:45::i;:::-;59524:69;;;;59283:318;;;;;:::o;42296:744::-;42405:7;42440:16;42450:5;42440:9;:16::i;:::-;42432:5;:24;42424:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42502:22;42527:13;:11;:13::i;:::-;42502:38;;42547:19;42577:25;42627:9;42622:350;42646:14;42642:1;:18;42622:350;;;42676:31;42710:11;:14;42722:1;42710:14;;;;;;;;;;;42676:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42763:1;42737:28;;:9;:14;;;:28;;;42733:89;;42798:9;:14;;;42778:34;;42733:89;42855:5;42834:26;;:17;:26;;;42830:135;;;42892:5;42877:11;:20;42873:59;;;42919:1;42912:8;;;;;;;;;42873:59;42942:13;;;;;:::i;:::-;;;;42830:135;42667:305;42662:3;;;;;:::i;:::-;;;;42622:350;;;;42978:56;;;;;;;;;;:::i;:::-;;;;;;;;42296:744;;;;;:::o;57964:143::-;19268:12;:10;:12::i;:::-;19257:23;;:7;:5;:7::i;:::-;:23;;;19249:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58012:15:::1;58030:21;58012:39;;58070:10;58062:28;;:37;58091:7;58062:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58001:106;57964:143::o:0;47410:157::-;47522:39;47539:4;47545:2;47549:7;47522:39;;;;;;;;;;;;:16;:39::i;:::-;47410:157;;;:::o;58115:168::-;19268:12;:10;:12::i;:::-;19257:23;;:7;:5;:7::i;:::-;:23;;;19249:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58181:15:::1;58199:5;:15;;;58223:4;58199:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58181:48;;58240:5;:14;;;58255:10;58267:7;58240:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58170:113;58115:168:::0;:::o;41828:177::-;41895:7;41927:13;:11;:13::i;:::-;41919:5;:21;41911:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41994:5;41987:12;;41828:177;;;:::o;57684:100::-;19268:12;:10;:12::i;:::-;19257:23;;:7;:5;:7::i;:::-;:23;;;19249:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57768:8:::1;57758:7;:18;;;;;;;;;;;;:::i;:::-;;57684:100:::0;:::o;44653:118::-;44717:7;44740:20;44752:7;44740:11;:20::i;:::-;:25;;;44733:32;;44653:118;;;:::o;43530:211::-;43594:7;43635:1;43618:19;;:5;:19;;;;43610:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43707:12;:19;43720:5;43707:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43699:36;;43692:43;;43530:211;;;:::o;57520:93::-;57565:13;57598:7;57591:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57520:93;:::o;19688:103::-;19268:12;:10;:12::i;:::-;19257:23;;:7;:5;:7::i;:::-;:23;;;19249:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19753:30:::1;19780:1;19753:18;:30::i;:::-;19688:103::o:0;19037:87::-;19083:7;19110:6;;;;;;;;;;;19103:13;;19037:87;:::o;44985:98::-;45041:13;45070:7;45063:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44985:98;:::o;57122:321::-;10966:1;11564:7;;:19;;11556:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10966:1;11697:7;:18;;;;56245::::1;;;;;;;;;;;56237:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56060:10:::2;57288:14;56968:9;56949:14;56941:5;:22;;;;:::i;:::-;56940:37;56918:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57325:14:::3;56656:9;;56621:14;56605:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56583:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57364:14:::4;55969:1;56403:14;:34;;56381:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57398:37:::5;57408:10;57420:14;57398:9;:37::i;:::-;56738:1:::4;57040::::3;56302::::2;;10922::::0;11876:7;:22;;;;57122:321;:::o;46623:274::-;46726:12;:10;:12::i;:::-;46714:24;;:8;:24;;;;46706:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46823:8;46778:18;:32;46797:12;:10;:12::i;:::-;46778:32;;;;;;;;;;;;;;;:42;46811:8;46778:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46872:8;46843:48;;46858:12;:10;:12::i;:::-;46843:48;;;46882:8;46843:48;;;;;;:::i;:::-;;;;;;;;46623:274;;:::o;47630:311::-;47767:28;47777:4;47783:2;47787:7;47767:9;:28::i;:::-;47818:48;47841:4;47847:2;47851:7;47860:5;47818:22;:48::i;:::-;47802:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47630:311;;;;:::o;55926:44::-;55969:1;55926:44;:::o;58910:307::-;59028:13;59067:16;59075:7;59067;:16::i;:::-;59059:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59162:7;59176:22;59185:1;59177:7;:9;;;;:::i;:::-;59176:20;:22::i;:::-;59145:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59118:91;;58910:307;;;:::o;55977:30::-;;;;:::o;52048:43::-;;;;:::o;46960:186::-;47082:4;47105:18;:25;47124:5;47105:25;;;;;;;;;;;;;;;:35;47131:8;47105:35;;;;;;;;;;;;;;;;;;;;;;;;;47098:42;;46960:186;;;;:::o;19946:201::-;19268:12;:10;:12::i;:::-;19257:23;;:7;:5;:7::i;:::-;:23;;;19249:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20055:1:::1;20035:22;;:8;:22;;;;20027:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20111:28;20130:8;20111:18;:28::i;:::-;19946:201:::0;:::o;43104:370::-;43231:4;43276:25;43261:40;;;:11;:40;;;;:99;;;;43327:33;43312:48;;;:11;:48;;;;43261:99;:160;;;;43386:35;43371:50;;;:11;:50;;;;43261:160;:207;;;;43432:36;43456:11;43432:23;:36::i;:::-;43261:207;43247:221;;43104:370;;;:::o;48180:105::-;48237:4;48267:12;;48257:7;:22;48250:29;;48180:105;;;:::o;17761:98::-;17814:7;17841:10;17834:17;;17761:98;:::o;51870:172::-;51994:2;51967:15;:24;51983:7;51967:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52028:7;52024:2;52008:28;;52017:5;52008:28;;;;;;;;;;;;51870:172;;;:::o;50235:1529::-;50332:35;50370:20;50382:7;50370:11;:20::i;:::-;50332:58;;50399:22;50441:13;:18;;;50425:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50494:12;:10;:12::i;:::-;50470:36;;:20;50482:7;50470:11;:20::i;:::-;:36;;;50425:81;:142;;;;50517:50;50534:13;:18;;;50554:12;:10;:12::i;:::-;50517:16;:50::i;:::-;50425:142;50399:169;;50593:17;50577:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50725:4;50703:26;;:13;:18;;;:26;;;50687:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50814:1;50800:16;;:2;:16;;;;50792:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50867:43;50889:4;50895:2;50899:7;50908:1;50867:21;:43::i;:::-;50967:49;50984:1;50988:7;50997:13;:18;;;50967:8;:49::i;:::-;51055:1;51025:12;:18;51038:4;51025:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51091:1;51063:12;:16;51076:2;51063:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51122:43;;;;;;;;51137:2;51122:43;;;;;;51148:15;51122:43;;;;;51099:11;:20;51111:7;51099:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51393:19;51425:1;51415:7;:11;;;;:::i;:::-;51393:33;;51478:1;51437:43;;:11;:24;51449:11;51437:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51433:236;;;51495:20;51503:11;51495:7;:20::i;:::-;51491:171;;;51555:97;;;;;;;;51582:13;:18;;;51555:97;;;;;;51613:13;:28;;;51555:97;;;;;51528:11;:24;51540:11;51528:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51491:171;51433:236;51701:7;51697:2;51682:27;;51691:4;51682:27;;;;;;;;;;;;51716:42;51737:4;51743:2;51747:7;51756:1;51716:20;:42::i;:::-;50325:1439;;;50235:1529;;;:::o;4262:98::-;4320:7;4351:1;4347;:5;;;;:::i;:::-;4340:12;;4262:98;;;;:::o;4661:::-;4719:7;4750:1;4746;:5;;;;:::i;:::-;4739:12;;4661:98;;;;:::o;43993:606::-;44069:21;;:::i;:::-;44110:16;44118:7;44110;:16::i;:::-;44102:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44182:26;44230:12;44219:7;:23;44215:93;;44299:1;44284:12;44274:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;44253:47;;44215:93;44321:12;44336:7;44321:22;;44316:212;44353:18;44345:4;:26;44316:212;;44390:31;44424:11;:17;44436:4;44424:17;;;;;;;;;;;44390:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44480:1;44454:28;;:9;:14;;;:28;;;44450:71;;44502:9;44495:16;;;;;;;44450:71;44381:147;44373:6;;;;;:::i;:::-;;;;44316:212;;;;44536:57;;;;;;;;;;:::i;:::-;;;;;;;;43993:606;;;;:::o;20307:191::-;20381:16;20400:6;;;;;;;;;;;20381:25;;20426:8;20417:6;;:17;;;;;;;;;;;;;;;;;;20481:8;20450:40;;20471:8;20450:40;;;;;;;;;;;;20370:128;20307:191;:::o;48291:98::-;48356:27;48366:2;48370:8;48356:27;;;;;;;;;;;;:9;:27::i;:::-;48291:98;;:::o;53585:690::-;53722:4;53739:15;:2;:13;;;:15::i;:::-;53735:535;;;53794:2;53778:36;;;53815:12;:10;:12::i;:::-;53829:4;53835:7;53844:5;53778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53765:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54026:1;54009:6;:13;:18;54005:215;;;54042:61;;;;;;;;;;:::i;:::-;;;;;;;;54005:215;54188:6;54182:13;54173:6;54169:2;54165:15;54158:38;53765:464;53910:45;;;53900:55;;;:6;:55;;;;53893:62;;;;;53735:535;54258:4;54251:11;;53585:690;;;;;;;:::o;15323:723::-;15379:13;15609:1;15600:5;:10;15596:53;;;15627:10;;;;;;;;;;;;;;;;;;;;;15596:53;15659:12;15674:5;15659:20;;15690:14;15715:78;15730:1;15722:4;:9;15715:78;;15748:8;;;;;:::i;:::-;;;;15779:2;15771:10;;;;;:::i;:::-;;;15715:78;;;15803:19;15835:6;15825:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15803:39;;15853:154;15869:1;15860:5;:10;15853:154;;15897:1;15887:11;;;;;:::i;:::-;;;15964:2;15956:5;:10;;;;:::i;:::-;15943:2;:24;;;;:::i;:::-;15930:39;;15913:6;15920;15913:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15993:2;15984:11;;;;;:::i;:::-;;;15853:154;;;16031:6;16017:21;;;;;15323:723;;;;:::o;32437:157::-;32522:4;32561:25;32546:40;;;:11;:40;;;;32539:47;;32437:157;;;:::o;54737:141::-;;;;;:::o;55264:140::-;;;;;:::o;48728:1275::-;48833:20;48856:12;;48833:35;;48897:1;48883:16;;:2;:16;;;;48875:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49074:21;49082:12;49074:7;:21::i;:::-;49073:22;49065:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49219:61;49249:1;49253:2;49257:12;49271:8;49219:21;:61::i;:::-;49289:30;49322:12;:16;49335:2;49322:16;;;;;;;;;;;;;;;49289:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49364:119;;;;;;;;49414:8;49384:11;:19;;;:39;;;;:::i;:::-;49364:119;;;;;;49467:8;49432:11;:24;;;:44;;;;:::i;:::-;49364:119;;;;;49345:12;:16;49358:2;49345:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49518:43;;;;;;;;49533:2;49518:43;;;;;;49544:15;49518:43;;;;;49490:11;:25;49502:12;49490:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49570:20;49593:12;49570:35;;49619:9;49614:281;49638:8;49634:1;:12;49614:281;;;49692:12;49688:2;49667:38;;49684:1;49667:38;;;;;;;;;;;;49732:59;49763:1;49767:2;49771:12;49785:5;49732:22;:59::i;:::-;49714:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49873:14;;;;;:::i;:::-;;;;49648:3;;;;;:::i;:::-;;;;49614:281;;;;49918:12;49903;:27;;;;49937:60;49966:1;49970:2;49974:12;49988:8;49937:20;:60::i;:::-;48826:1177;;;48728:1275;;;:::o;21325:387::-;21385:4;21593:12;21660:7;21648:20;21640:28;;21703:1;21696:4;:8;21689:15;;;21325:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2102:340::-;2158:5;2207:3;2200:4;2192:6;2188:17;2184:27;2174:122;;2215:79;;:::i;:::-;2174:122;2332:6;2319:20;2357:79;2432:3;2424:6;2417:4;2409:6;2405:17;2357:79;:::i;:::-;2348:88;;2164:278;2102:340;;;;:::o;2448:139::-;2494:5;2532:6;2519:20;2510:29;;2548:33;2575:5;2548:33;:::i;:::-;2448:139;;;;:::o;2593:143::-;2650:5;2681:6;2675:13;2666:22;;2697:33;2724:5;2697:33;:::i;:::-;2593:143;;;;:::o;2742:329::-;2801:6;2850:2;2838:9;2829:7;2825:23;2821:32;2818:119;;;2856:79;;:::i;:::-;2818:119;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;2742:329;;;;:::o;3077:474::-;3145:6;3153;3202:2;3190:9;3181:7;3177:23;3173:32;3170:119;;;3208:79;;:::i;:::-;3170:119;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3077:474;;;;;:::o;3557:619::-;3634:6;3642;3650;3699:2;3687:9;3678:7;3674:23;3670:32;3667:119;;;3705:79;;:::i;:::-;3667:119;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;3557:619;;;;;:::o;4182:943::-;4277:6;4285;4293;4301;4350:3;4338:9;4329:7;4325:23;4321:33;4318:120;;;4357:79;;:::i;:::-;4318:120;4477:1;4502:53;4547:7;4538:6;4527:9;4523:22;4502:53;:::i;:::-;4492:63;;4448:117;4604:2;4630:53;4675:7;4666:6;4655:9;4651:22;4630:53;:::i;:::-;4620:63;;4575:118;4732:2;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4703:118;4888:2;4877:9;4873:18;4860:32;4919:18;4911:6;4908:30;4905:117;;;4941:79;;:::i;:::-;4905:117;5046:62;5100:7;5091:6;5080:9;5076:22;5046:62;:::i;:::-;5036:72;;4831:287;4182:943;;;;;;;:::o;5131:468::-;5196:6;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:50;5574:7;5565:6;5554:9;5550:22;5532:50;:::i;:::-;5522:60;;5477:115;5131:468;;;;;:::o;5605:474::-;5673:6;5681;5730:2;5718:9;5709:7;5705:23;5701:32;5698:119;;;5736:79;;:::i;:::-;5698:119;5856:1;5881:53;5926:7;5917:6;5906:9;5902:22;5881:53;:::i;:::-;5871:63;;5827:117;5983:2;6009:53;6054:7;6045:6;6034:9;6030:22;6009:53;:::i;:::-;5999:63;;5954:118;5605:474;;;;;:::o;6085:323::-;6141:6;6190:2;6178:9;6169:7;6165:23;6161:32;6158:119;;;6196:79;;:::i;:::-;6158:119;6316:1;6341:50;6383:7;6374:6;6363:9;6359:22;6341:50;:::i;:::-;6331:60;;6287:114;6085:323;;;;:::o;6414:345::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:61;6734:7;6725:6;6714:9;6710:22;6681:61;:::i;:::-;6671:71;;6627:125;6414:345;;;;:::o;6765:327::-;6823:6;6872:2;6860:9;6851:7;6847:23;6843:32;6840:119;;;6878:79;;:::i;:::-;6840:119;6998:1;7023:52;7067:7;7058:6;7047:9;7043:22;7023:52;:::i;:::-;7013:62;;6969:116;6765:327;;;;:::o;7098:349::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:63;7422:7;7413:6;7402:9;7398:22;7367:63;:::i;:::-;7357:73;;7313:127;7098:349;;;;:::o;7453:357::-;7526:6;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7701:1;7726:67;7785:7;7776:6;7765:9;7761:22;7726:67;:::i;:::-;7716:77;;7672:131;7453:357;;;;:::o;7816:509::-;7885:6;7934:2;7922:9;7913:7;7909:23;7905:32;7902:119;;;7940:79;;:::i;:::-;7902:119;8088:1;8077:9;8073:17;8060:31;8118:18;8110:6;8107:30;8104:117;;;8140:79;;:::i;:::-;8104:117;8245:63;8300:7;8291:6;8280:9;8276:22;8245:63;:::i;:::-;8235:73;;8031:287;7816:509;;;;:::o;8331:329::-;8390:6;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8331:329;;;;:::o;8666:351::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8911:1;8936:64;8992:7;8983:6;8972:9;8968:22;8936:64;:::i;:::-;8926:74;;8882:128;8666:351;;;;:::o;9023:474::-;9091:6;9099;9148:2;9136:9;9127:7;9123:23;9119:32;9116:119;;;9154:79;;:::i;:::-;9116:119;9274:1;9299:53;9344:7;9335:6;9324:9;9320:22;9299:53;:::i;:::-;9289:63;;9245:117;9401:2;9427:53;9472:7;9463:6;9452:9;9448:22;9427:53;:::i;:::-;9417:63;;9372:118;9023:474;;;;;:::o;9503:118::-;9590:24;9608:5;9590:24;:::i;:::-;9585:3;9578:37;9503:118;;:::o;9627:109::-;9708:21;9723:5;9708:21;:::i;:::-;9703:3;9696:34;9627:109;;:::o;9742:360::-;9828:3;9856:38;9888:5;9856:38;:::i;:::-;9910:70;9973:6;9968:3;9910:70;:::i;:::-;9903:77;;9989:52;10034:6;10029:3;10022:4;10015:5;10011:16;9989:52;:::i;:::-;10066:29;10088:6;10066:29;:::i;:::-;10061:3;10057:39;10050:46;;9832:270;9742:360;;;;:::o;10108:364::-;10196:3;10224:39;10257:5;10224:39;:::i;:::-;10279:71;10343:6;10338:3;10279:71;:::i;:::-;10272:78;;10359:52;10404:6;10399:3;10392:4;10385:5;10381:16;10359:52;:::i;:::-;10436:29;10458:6;10436:29;:::i;:::-;10431:3;10427:39;10420:46;;10200:272;10108:364;;;;:::o;10478:377::-;10584:3;10612:39;10645:5;10612:39;:::i;:::-;10667:89;10749:6;10744:3;10667:89;:::i;:::-;10660:96;;10765:52;10810:6;10805:3;10798:4;10791:5;10787:16;10765:52;:::i;:::-;10842:6;10837:3;10833:16;10826:23;;10588:267;10478:377;;;;:::o;10885:845::-;10988:3;11025:5;11019:12;11054:36;11080:9;11054:36;:::i;:::-;11106:89;11188:6;11183:3;11106:89;:::i;:::-;11099:96;;11226:1;11215:9;11211:17;11242:1;11237:137;;;;11388:1;11383:341;;;;11204:520;;11237:137;11321:4;11317:9;11306;11302:25;11297:3;11290:38;11357:6;11352:3;11348:16;11341:23;;11237:137;;11383:341;11450:38;11482:5;11450:38;:::i;:::-;11510:1;11524:154;11538:6;11535:1;11532:13;11524:154;;;11612:7;11606:14;11602:1;11597:3;11593:11;11586:35;11662:1;11653:7;11649:15;11638:26;;11560:4;11557:1;11553:12;11548:17;;11524:154;;;11707:6;11702:3;11698:16;11691:23;;11390:334;;11204:520;;10992:738;;10885:845;;;;:::o;11736:366::-;11878:3;11899:67;11963:2;11958:3;11899:67;:::i;:::-;11892:74;;11975:93;12064:3;11975:93;:::i;:::-;12093:2;12088:3;12084:12;12077:19;;11736:366;;;:::o;12108:::-;12250:3;12271:67;12335:2;12330:3;12271:67;:::i;:::-;12264:74;;12347:93;12436:3;12347:93;:::i;:::-;12465:2;12460:3;12456:12;12449:19;;12108:366;;;:::o;12480:::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:::-;12994:3;13015:67;13079:2;13074:3;13015:67;:::i;:::-;13008:74;;13091:93;13180:3;13091:93;:::i;:::-;13209:2;13204:3;13200:12;13193:19;;12852:366;;;:::o;13224:::-;13366:3;13387:67;13451:2;13446:3;13387:67;:::i;:::-;13380:74;;13463:93;13552:3;13463:93;:::i;:::-;13581:2;13576:3;13572:12;13565:19;;13224:366;;;:::o;13596:::-;13738:3;13759:67;13823:2;13818:3;13759:67;:::i;:::-;13752:74;;13835:93;13924:3;13835:93;:::i;:::-;13953:2;13948:3;13944:12;13937:19;;13596:366;;;:::o;13968:::-;14110:3;14131:67;14195:2;14190:3;14131:67;:::i;:::-;14124:74;;14207:93;14296:3;14207:93;:::i;:::-;14325:2;14320:3;14316:12;14309:19;;13968:366;;;:::o;14340:::-;14482:3;14503:67;14567:2;14562:3;14503:67;:::i;:::-;14496:74;;14579:93;14668:3;14579:93;:::i;:::-;14697:2;14692:3;14688:12;14681:19;;14340:366;;;:::o;14712:::-;14854:3;14875:67;14939:2;14934:3;14875:67;:::i;:::-;14868:74;;14951:93;15040:3;14951:93;:::i;:::-;15069:2;15064:3;15060:12;15053:19;;14712:366;;;:::o;15084:::-;15226:3;15247:67;15311:2;15306:3;15247:67;:::i;:::-;15240:74;;15323:93;15412:3;15323:93;:::i;:::-;15441:2;15436:3;15432:12;15425:19;;15084:366;;;:::o;15456:::-;15598:3;15619:67;15683:2;15678:3;15619:67;:::i;:::-;15612:74;;15695:93;15784:3;15695:93;:::i;:::-;15813:2;15808:3;15804:12;15797:19;;15456:366;;;:::o;15828:400::-;15988:3;16009:84;16091:1;16086:3;16009:84;:::i;:::-;16002:91;;16102:93;16191:3;16102:93;:::i;:::-;16220:1;16215:3;16211:11;16204:18;;15828:400;;;:::o;16234:366::-;16376:3;16397:67;16461:2;16456:3;16397:67;:::i;:::-;16390:74;;16473:93;16562:3;16473:93;:::i;:::-;16591:2;16586:3;16582:12;16575:19;;16234:366;;;:::o;16606:::-;16748:3;16769:67;16833:2;16828:3;16769:67;:::i;:::-;16762:74;;16845:93;16934:3;16845:93;:::i;:::-;16963:2;16958:3;16954:12;16947:19;;16606:366;;;:::o;16978:::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:::-;17492:3;17513:67;17577:2;17572:3;17513:67;:::i;:::-;17506:74;;17589:93;17678:3;17589:93;:::i;:::-;17707:2;17702:3;17698:12;17691:19;;17350:366;;;:::o;17722:::-;17864:3;17885:67;17949:2;17944:3;17885:67;:::i;:::-;17878:74;;17961:93;18050:3;17961:93;:::i;:::-;18079:2;18074:3;18070:12;18063:19;;17722:366;;;:::o;18094:::-;18236:3;18257:67;18321:2;18316:3;18257:67;:::i;:::-;18250:74;;18333:93;18422:3;18333:93;:::i;:::-;18451:2;18446:3;18442:12;18435:19;;18094:366;;;:::o;18466:::-;18608:3;18629:67;18693:2;18688:3;18629:67;:::i;:::-;18622:74;;18705:93;18794:3;18705:93;:::i;:::-;18823:2;18818:3;18814:12;18807:19;;18466:366;;;:::o;18838:::-;18980:3;19001:67;19065:2;19060:3;19001:67;:::i;:::-;18994:74;;19077:93;19166:3;19077:93;:::i;:::-;19195:2;19190:3;19186:12;19179:19;;18838:366;;;:::o;19210:::-;19352:3;19373:67;19437:2;19432:3;19373:67;:::i;:::-;19366:74;;19449:93;19538:3;19449:93;:::i;:::-;19567:2;19562:3;19558:12;19551:19;;19210:366;;;:::o;19582:::-;19724:3;19745:67;19809:2;19804:3;19745:67;:::i;:::-;19738:74;;19821:93;19910:3;19821:93;:::i;:::-;19939:2;19934:3;19930:12;19923:19;;19582:366;;;:::o;19954:::-;20096:3;20117:67;20181:2;20176:3;20117:67;:::i;:::-;20110:74;;20193:93;20282:3;20193:93;:::i;:::-;20311:2;20306:3;20302:12;20295:19;;19954:366;;;:::o;20326:::-;20468:3;20489:67;20553:2;20548:3;20489:67;:::i;:::-;20482:74;;20565:93;20654:3;20565:93;:::i;:::-;20683:2;20678:3;20674:12;20667:19;;20326:366;;;:::o;20698:::-;20840:3;20861:67;20925:2;20920:3;20861:67;:::i;:::-;20854:74;;20937:93;21026:3;20937:93;:::i;:::-;21055:2;21050:3;21046:12;21039:19;;20698:366;;;:::o;21070:400::-;21230:3;21251:84;21333:1;21328:3;21251:84;:::i;:::-;21244:91;;21344:93;21433:3;21344:93;:::i;:::-;21462:1;21457:3;21453:11;21446:18;;21070:400;;;:::o;21476:118::-;21563:24;21581:5;21563:24;:::i;:::-;21558:3;21551:37;21476:118;;:::o;21600:961::-;21979:3;22001:92;22089:3;22080:6;22001:92;:::i;:::-;21994:99;;22110:148;22254:3;22110:148;:::i;:::-;22103:155;;22275:95;22366:3;22357:6;22275:95;:::i;:::-;22268:102;;22387:148;22531:3;22387:148;:::i;:::-;22380:155;;22552:3;22545:10;;21600:961;;;;;:::o;22567:222::-;22660:4;22698:2;22687:9;22683:18;22675:26;;22711:71;22779:1;22768:9;22764:17;22755:6;22711:71;:::i;:::-;22567:222;;;;:::o;22795:640::-;22990:4;23028:3;23017:9;23013:19;23005:27;;23042:71;23110:1;23099:9;23095:17;23086:6;23042:71;:::i;:::-;23123:72;23191:2;23180:9;23176:18;23167:6;23123:72;:::i;:::-;23205;23273:2;23262:9;23258:18;23249:6;23205:72;:::i;:::-;23324:9;23318:4;23314:20;23309:2;23298:9;23294:18;23287:48;23352:76;23423:4;23414:6;23352:76;:::i;:::-;23344:84;;22795:640;;;;;;;:::o;23441:332::-;23562:4;23600:2;23589:9;23585:18;23577:26;;23613:71;23681:1;23670:9;23666:17;23657:6;23613:71;:::i;:::-;23694:72;23762:2;23751:9;23747:18;23738:6;23694:72;:::i;:::-;23441:332;;;;;:::o;23779:210::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23917:65;23979:1;23968:9;23964:17;23955:6;23917:65;:::i;:::-;23779:210;;;;:::o;23995:313::-;24108:4;24146:2;24135:9;24131:18;24123:26;;24195:9;24189:4;24185:20;24181:1;24170:9;24166:17;24159:47;24223:78;24296:4;24287:6;24223:78;:::i;:::-;24215:86;;23995:313;;;;:::o;24314:419::-;24480:4;24518:2;24507:9;24503:18;24495:26;;24567:9;24561:4;24557:20;24553:1;24542:9;24538:17;24531:47;24595:131;24721:4;24595:131;:::i;:::-;24587:139;;24314:419;;;:::o;24739:::-;24905:4;24943:2;24932:9;24928:18;24920:26;;24992:9;24986:4;24982:20;24978:1;24967:9;24963:17;24956:47;25020:131;25146:4;25020:131;:::i;:::-;25012:139;;24739:419;;;:::o;25164:::-;25330:4;25368:2;25357:9;25353:18;25345:26;;25417:9;25411:4;25407:20;25403:1;25392:9;25388:17;25381:47;25445:131;25571:4;25445:131;:::i;:::-;25437:139;;25164:419;;;:::o;25589:::-;25755:4;25793:2;25782:9;25778:18;25770:26;;25842:9;25836:4;25832:20;25828:1;25817:9;25813:17;25806:47;25870:131;25996:4;25870:131;:::i;:::-;25862:139;;25589:419;;;:::o;26014:::-;26180:4;26218:2;26207:9;26203:18;26195:26;;26267:9;26261:4;26257:20;26253:1;26242:9;26238:17;26231:47;26295:131;26421:4;26295:131;:::i;:::-;26287:139;;26014:419;;;:::o;26439:::-;26605:4;26643:2;26632:9;26628:18;26620:26;;26692:9;26686:4;26682:20;26678:1;26667:9;26663:17;26656:47;26720:131;26846:4;26720:131;:::i;:::-;26712:139;;26439:419;;;:::o;26864:::-;27030:4;27068:2;27057:9;27053:18;27045:26;;27117:9;27111:4;27107:20;27103:1;27092:9;27088:17;27081:47;27145:131;27271:4;27145:131;:::i;:::-;27137:139;;26864:419;;;:::o;27289:::-;27455:4;27493:2;27482:9;27478:18;27470:26;;27542:9;27536:4;27532:20;27528:1;27517:9;27513:17;27506:47;27570:131;27696:4;27570:131;:::i;:::-;27562:139;;27289:419;;;:::o;27714:::-;27880:4;27918:2;27907:9;27903:18;27895:26;;27967:9;27961:4;27957:20;27953:1;27942:9;27938:17;27931:47;27995:131;28121:4;27995:131;:::i;:::-;27987:139;;27714:419;;;:::o;28139:::-;28305:4;28343:2;28332:9;28328:18;28320:26;;28392:9;28386:4;28382:20;28378:1;28367:9;28363:17;28356:47;28420:131;28546:4;28420:131;:::i;:::-;28412:139;;28139:419;;;:::o;28564:::-;28730:4;28768:2;28757:9;28753:18;28745:26;;28817:9;28811:4;28807:20;28803:1;28792:9;28788:17;28781:47;28845:131;28971:4;28845:131;:::i;:::-;28837:139;;28564:419;;;:::o;28989:::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:::-;29580:4;29618:2;29607:9;29603:18;29595:26;;29667:9;29661:4;29657:20;29653:1;29642:9;29638:17;29631:47;29695:131;29821:4;29695:131;:::i;:::-;29687:139;;29414:419;;;:::o;29839:::-;30005:4;30043:2;30032:9;30028:18;30020:26;;30092:9;30086:4;30082:20;30078:1;30067:9;30063:17;30056:47;30120:131;30246:4;30120:131;:::i;:::-;30112:139;;29839:419;;;:::o;30264:::-;30430:4;30468:2;30457:9;30453:18;30445:26;;30517:9;30511:4;30507:20;30503:1;30492:9;30488:17;30481:47;30545:131;30671:4;30545:131;:::i;:::-;30537:139;;30264:419;;;:::o;30689:::-;30855:4;30893:2;30882:9;30878:18;30870:26;;30942:9;30936:4;30932:20;30928:1;30917:9;30913:17;30906:47;30970:131;31096:4;30970:131;:::i;:::-;30962:139;;30689:419;;;:::o;31114:::-;31280:4;31318:2;31307:9;31303:18;31295:26;;31367:9;31361:4;31357:20;31353:1;31342:9;31338:17;31331:47;31395:131;31521:4;31395:131;:::i;:::-;31387:139;;31114:419;;;:::o;31539:::-;31705:4;31743:2;31732:9;31728:18;31720:26;;31792:9;31786:4;31782:20;31778:1;31767:9;31763:17;31756:47;31820:131;31946:4;31820:131;:::i;:::-;31812:139;;31539:419;;;:::o;31964:::-;32130:4;32168:2;32157:9;32153:18;32145:26;;32217:9;32211:4;32207:20;32203:1;32192:9;32188:17;32181:47;32245:131;32371:4;32245:131;:::i;:::-;32237:139;;31964:419;;;:::o;32389:::-;32555:4;32593:2;32582:9;32578:18;32570:26;;32642:9;32636:4;32632:20;32628:1;32617:9;32613:17;32606:47;32670:131;32796:4;32670:131;:::i;:::-;32662:139;;32389:419;;;:::o;32814:::-;32980:4;33018:2;33007:9;33003:18;32995:26;;33067:9;33061:4;33057:20;33053:1;33042:9;33038:17;33031:47;33095:131;33221:4;33095:131;:::i;:::-;33087:139;;32814:419;;;:::o;33239:::-;33405:4;33443:2;33432:9;33428:18;33420:26;;33492:9;33486:4;33482:20;33478:1;33467:9;33463:17;33456:47;33520:131;33646:4;33520:131;:::i;:::-;33512:139;;33239:419;;;:::o;33664:::-;33830:4;33868:2;33857:9;33853:18;33845:26;;33917:9;33911:4;33907:20;33903:1;33892:9;33888:17;33881:47;33945:131;34071:4;33945:131;:::i;:::-;33937:139;;33664:419;;;:::o;34089:::-;34255:4;34293:2;34282:9;34278:18;34270:26;;34342:9;34336:4;34332:20;34328:1;34317:9;34313:17;34306:47;34370:131;34496:4;34370:131;:::i;:::-;34362:139;;34089:419;;;:::o;34514:222::-;34607:4;34645:2;34634:9;34630:18;34622:26;;34658:71;34726:1;34715:9;34711:17;34702:6;34658:71;:::i;:::-;34514:222;;;;:::o;34742:129::-;34776:6;34803:20;;:::i;:::-;34793:30;;34832:33;34860:4;34852:6;34832:33;:::i;:::-;34742:129;;;:::o;34877:75::-;34910:6;34943:2;34937:9;34927:19;;34877:75;:::o;34958:307::-;35019:4;35109:18;35101:6;35098:30;35095:56;;;35131:18;;:::i;:::-;35095:56;35169:29;35191:6;35169:29;:::i;:::-;35161:37;;35253:4;35247;35243:15;35235:23;;34958:307;;;:::o;35271:308::-;35333:4;35423:18;35415:6;35412:30;35409:56;;;35445:18;;:::i;:::-;35409:56;35483:29;35505:6;35483:29;:::i;:::-;35475:37;;35567:4;35561;35557:15;35549:23;;35271:308;;;:::o;35585:141::-;35634:4;35657:3;35649:11;;35680:3;35677:1;35670:14;35714:4;35711:1;35701:18;35693:26;;35585:141;;;:::o;35732:98::-;35783:6;35817:5;35811:12;35801:22;;35732:98;;;:::o;35836:99::-;35888:6;35922:5;35916:12;35906:22;;35836:99;;;:::o;35941:168::-;36024:11;36058:6;36053:3;36046:19;36098:4;36093:3;36089:14;36074:29;;35941:168;;;;:::o;36115:169::-;36199:11;36233:6;36228:3;36221:19;36273:4;36268:3;36264:14;36249:29;;36115:169;;;;:::o;36290:148::-;36392:11;36429:3;36414:18;;36290:148;;;;:::o;36444:273::-;36484:3;36503:20;36521:1;36503:20;:::i;:::-;36498:25;;36537:20;36555:1;36537:20;:::i;:::-;36532:25;;36659:1;36623:34;36619:42;36616:1;36613:49;36610:75;;;36665:18;;:::i;:::-;36610:75;36709:1;36706;36702:9;36695:16;;36444:273;;;;:::o;36723:305::-;36763:3;36782:20;36800:1;36782:20;:::i;:::-;36777:25;;36816:20;36834:1;36816:20;:::i;:::-;36811:25;;36970:1;36902:66;36898:74;36895:1;36892:81;36889:107;;;36976:18;;:::i;:::-;36889:107;37020:1;37017;37013:9;37006:16;;36723:305;;;;:::o;37034:185::-;37074:1;37091:20;37109:1;37091:20;:::i;:::-;37086:25;;37125:20;37143:1;37125:20;:::i;:::-;37120:25;;37164:1;37154:35;;37169:18;;:::i;:::-;37154:35;37211:1;37208;37204:9;37199:14;;37034:185;;;;:::o;37225:348::-;37265:7;37288:20;37306:1;37288:20;:::i;:::-;37283:25;;37322:20;37340:1;37322:20;:::i;:::-;37317:25;;37510:1;37442:66;37438:74;37435:1;37432:81;37427:1;37420:9;37413:17;37409:105;37406:131;;;37517:18;;:::i;:::-;37406:131;37565:1;37562;37558:9;37547:20;;37225:348;;;;:::o;37579:191::-;37619:4;37639:20;37657:1;37639:20;:::i;:::-;37634:25;;37673:20;37691:1;37673:20;:::i;:::-;37668:25;;37712:1;37709;37706:8;37703:34;;;37717:18;;:::i;:::-;37703:34;37762:1;37759;37755:9;37747:17;;37579:191;;;;:::o;37776:::-;37816:4;37836:20;37854:1;37836:20;:::i;:::-;37831:25;;37870:20;37888:1;37870:20;:::i;:::-;37865:25;;37909:1;37906;37903:8;37900:34;;;37914:18;;:::i;:::-;37900:34;37959:1;37956;37952:9;37944:17;;37776:191;;;;:::o;37973:96::-;38010:7;38039:24;38057:5;38039:24;:::i;:::-;38028:35;;37973:96;;;:::o;38075:90::-;38109:7;38152:5;38145:13;38138:21;38127:32;;38075:90;;;:::o;38171:149::-;38207:7;38247:66;38240:5;38236:78;38225:89;;38171:149;;;:::o;38326:110::-;38377:7;38406:24;38424:5;38406:24;:::i;:::-;38395:35;;38326:110;;;:::o;38442:118::-;38479:7;38519:34;38512:5;38508:46;38497:57;;38442:118;;;:::o;38566:126::-;38603:7;38643:42;38636:5;38632:54;38621:65;;38566:126;;;:::o;38698:77::-;38735:7;38764:5;38753:16;;38698:77;;;:::o;38781:154::-;38865:6;38860:3;38855;38842:30;38927:1;38918:6;38913:3;38909:16;38902:27;38781:154;;;:::o;38941:307::-;39009:1;39019:113;39033:6;39030:1;39027:13;39019:113;;;39118:1;39113:3;39109:11;39103:18;39099:1;39094:3;39090:11;39083:39;39055:2;39052:1;39048:10;39043:15;;39019:113;;;39150:6;39147:1;39144:13;39141:101;;;39230:1;39221:6;39216:3;39212:16;39205:27;39141:101;38990:258;38941:307;;;:::o;39254:171::-;39293:3;39316:24;39334:5;39316:24;:::i;:::-;39307:33;;39362:4;39355:5;39352:15;39349:41;;;39370:18;;:::i;:::-;39349:41;39417:1;39410:5;39406:13;39399:20;;39254:171;;;:::o;39431:320::-;39475:6;39512:1;39506:4;39502:12;39492:22;;39559:1;39553:4;39549:12;39580:18;39570:81;;39636:4;39628:6;39624:17;39614:27;;39570:81;39698:2;39690:6;39687:14;39667:18;39664:38;39661:84;;;39717:18;;:::i;:::-;39661:84;39482:269;39431:320;;;:::o;39757:281::-;39840:27;39862:4;39840:27;:::i;:::-;39832:6;39828:40;39970:6;39958:10;39955:22;39934:18;39922:10;39919:34;39916:62;39913:88;;;39981:18;;:::i;:::-;39913:88;40021:10;40017:2;40010:22;39800:238;39757:281;;:::o;40044:233::-;40083:3;40106:24;40124:5;40106:24;:::i;:::-;40097:33;;40152:66;40145:5;40142:77;40139:103;;;40222:18;;:::i;:::-;40139:103;40269:1;40262:5;40258:13;40251:20;;40044:233;;;:::o;40283:176::-;40315:1;40332:20;40350:1;40332:20;:::i;:::-;40327:25;;40366:20;40384:1;40366:20;:::i;:::-;40361:25;;40405:1;40395:35;;40410:18;;:::i;:::-;40395:35;40451:1;40448;40444:9;40439:14;;40283:176;;;;:::o;40465:180::-;40513:77;40510:1;40503:88;40610:4;40607:1;40600:15;40634:4;40631:1;40624:15;40651:180;40699:77;40696:1;40689:88;40796:4;40793:1;40786:15;40820:4;40817:1;40810:15;40837:180;40885:77;40882:1;40875:88;40982:4;40979:1;40972:15;41006:4;41003:1;40996:15;41023:180;41071:77;41068:1;41061:88;41168:4;41165:1;41158:15;41192:4;41189:1;41182:15;41209:180;41257:77;41254:1;41247:88;41354:4;41351:1;41344:15;41378:4;41375:1;41368:15;41395:117;41504:1;41501;41494:12;41518:117;41627:1;41624;41617:12;41641:117;41750:1;41747;41740:12;41764:117;41873:1;41870;41863:12;41887:102;41928:6;41979:2;41975:7;41970:2;41963:5;41959:14;41955:28;41945:38;;41887:102;;;:::o;41995:221::-;42135:34;42131:1;42123:6;42119:14;42112:58;42204:4;42199:2;42191:6;42187:15;42180:29;41995:221;:::o;42222:225::-;42362:34;42358:1;42350:6;42346:14;42339:58;42431:8;42426:2;42418:6;42414:15;42407:33;42222:225;:::o;42453:229::-;42593:34;42589:1;42581:6;42577:14;42570:58;42662:12;42657:2;42649:6;42645:15;42638:37;42453:229;:::o;42688:222::-;42828:34;42824:1;42816:6;42812:14;42805:58;42897:5;42892:2;42884:6;42880:15;42873:30;42688:222;:::o;42916:221::-;43056:34;43052:1;43044:6;43040:14;43033:58;43125:4;43120:2;43112:6;43108:15;43101:29;42916:221;:::o;43143:224::-;43283:34;43279:1;43271:6;43267:14;43260:58;43352:7;43347:2;43339:6;43335:15;43328:32;43143:224;:::o;43373:221::-;43513:34;43509:1;43501:6;43497:14;43490:58;43582:4;43577:2;43569:6;43565:15;43558:29;43373:221;:::o;43600:167::-;43740:19;43736:1;43728:6;43724:14;43717:43;43600:167;:::o;43773:244::-;43913:34;43909:1;43901:6;43897:14;43890:58;43982:27;43977:2;43969:6;43965:15;43958:52;43773:244;:::o;44023:230::-;44163:34;44159:1;44151:6;44147:14;44140:58;44232:13;44227:2;44219:6;44215:15;44208:38;44023:230;:::o;44259:225::-;44399:34;44395:1;44387:6;44383:14;44376:58;44468:8;44463:2;44455:6;44451:15;44444:33;44259:225;:::o;44490:155::-;44630:7;44626:1;44618:6;44614:14;44607:31;44490:155;:::o;44651:182::-;44791:34;44787:1;44779:6;44775:14;44768:58;44651:182;:::o;44839:176::-;44979:28;44975:1;44967:6;44963:14;44956:52;44839:176;:::o;45021:237::-;45161:34;45157:1;45149:6;45145:14;45138:58;45230:20;45225:2;45217:6;45213:15;45206:45;45021:237;:::o;45264:221::-;45404:34;45400:1;45392:6;45388:14;45381:58;45473:4;45468:2;45460:6;45456:15;45449:29;45264:221;:::o;45491:238::-;45631:34;45627:1;45619:6;45615:14;45608:58;45700:21;45695:2;45687:6;45683:15;45676:46;45491:238;:::o;45735:179::-;45875:31;45871:1;45863:6;45859:14;45852:55;45735:179;:::o;45920:220::-;46060:34;46056:1;46048:6;46044:14;46037:58;46129:3;46124:2;46116:6;46112:15;46105:28;45920:220;:::o;46146:174::-;46286:26;46282:1;46274:6;46270:14;46263:50;46146:174;:::o;46326:233::-;46466:34;46462:1;46454:6;46450:14;46443:58;46535:16;46530:2;46522:6;46518:15;46511:41;46326:233;:::o;46565:181::-;46705:33;46701:1;46693:6;46689:14;46682:57;46565:181;:::o;46752:234::-;46892:34;46888:1;46880:6;46876:14;46869:58;46961:17;46956:2;46948:6;46944:15;46937:42;46752:234;:::o;46992:173::-;47132:25;47128:1;47120:6;47116:14;47109:49;46992:173;:::o;47171:232::-;47311:34;47307:1;47299:6;47295:14;47288:58;47380:15;47375:2;47367:6;47363:15;47356:40;47171:232;:::o;47409:151::-;47549:3;47545:1;47537:6;47533:14;47526:27;47409:151;:::o;47566:122::-;47639:24;47657:5;47639:24;:::i;:::-;47632:5;47629:35;47619:63;;47678:1;47675;47668:12;47619:63;47566:122;:::o;47694:116::-;47764:21;47779:5;47764:21;:::i;:::-;47757:5;47754:32;47744:60;;47800:1;47797;47790:12;47744:60;47694:116;:::o;47816:120::-;47888:23;47905:5;47888:23;:::i;:::-;47881:5;47878:34;47868:62;;47926:1;47923;47916:12;47868:62;47816:120;:::o;47942:150::-;48029:38;48061:5;48029:38;:::i;:::-;48022:5;48019:49;48009:77;;48082:1;48079;48072:12;48009:77;47942:150;:::o;48098:122::-;48171:24;48189:5;48171:24;:::i;:::-;48164:5;48161:35;48151:63;;48210:1;48207;48200:12;48151:63;48098:122;:::o

Swarm Source

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