ETH Price: $3,084.65 (-1.10%)
Gas: 2 Gwei

Token

Definitely Not Mfer (Mfer)
 

Overview

Max Total Supply

5,555 Mfer

Holders

288

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Mfer
0xd110649f145a0e7d1137e10bc837937313fa537d
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:
DNMfer

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-02-14
*/

// File: contracts/Mfer.sol

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

// File: contracts/Mfer.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/Mfer.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 DNMfer is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

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

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

    uint256 public constant PUBLIC_SALE_PRICE = 0 ether;
    uint256 public NUM_FREE_MINTS = 5555;
    bool public isPublicSaleActive = true;




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

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



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

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



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


    constructor(
    ) ERC721A("Definitely Not Mfer", "Mfer", 100, maxSupply) {
    }

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

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        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":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60c060405260008055600060075560405180606001604052806035815260200162004e3760359139600b90805190602001906200003e929190620002b3565b506115b3600c556115b3600d556001600e60006101000a81548160ff0219169083151502179055503480156200007357600080fd5b506040518060400160405280601381526020017f446566696e6974656c79204e6f74204d666572000000000000000000000000008152506040518060400160405280600481526020017f4d666572000000000000000000000000000000000000000000000000000000008152506064600c54600081116200012b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012290620003d3565b60405180910390fd5b6000821162000171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016890620003b1565b60405180910390fd5b836001908051906020019062000189929190620002b3565b508260029080519060200190620001a2929190620002b3565b508160a08181525050806080818152505050505050620001d7620001cb620001e560201b60201c565b620001ed60201b60201c565b600160098190555062000509565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c19062000406565b90600052602060002090601f016020900481019282620002e5576000855562000331565b82601f106200030057805160ff191683800117855562000331565b8280016001018555821562000331579182015b828111156200033057825182559160200191906001019062000313565b5b50905062000340919062000344565b5090565b5b808211156200035f57600081600090555060010162000345565b5090565b600062000372602783620003f5565b91506200037f826200046b565b604082019050919050565b600062000399602e83620003f5565b9150620003a682620004ba565b604082019050919050565b60006020820190508181036000830152620003cc8162000363565b9050919050565b60006020820190508181036000830152620003ee816200038a565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041f57607f821691505b602082108114156200043657620004356200043c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516148fd6200053a600039600081816121cb015281816121f4015261288d0152600050506148fd6000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106e6578063d7224ba014610711578063e985e9c51461073c578063f2fde38b14610779576101e3565b8063a22cb4651461062c578063b88d4fde14610655578063c6a91b421461067e578063c87b56dd146106a9576101e3565b80638da5cb5b116100d15780638da5cb5b1461058f57806395d89b41146105ba578063982d669e146105e5578063a0712d6814610610576101e3565b80636352211e146104d357806370a0823114610510578063714c53981461054d578063715018a614610578576101e3565b806328cad13d1161017a57806342842e0e1161014957806342842e0e1461041b57806349df728c146104445780634f6ccce71461046d57806355f804b3146104aa576101e3565b806328cad13d146103605780632a55205a146103895780632f745c59146103c75780633ccfd60b14610404576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613140565b6107a2565b60405161021c9190613874565b60405180910390f35b34801561023157600080fd5b5061023a61081c565b604051610247919061388f565b60405180910390f35b34801561025c57600080fd5b506102656108ae565b6040516102729190613bd1565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613210565b6108b3565b6040516102af91906137e4565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906130a6565b610938565b005b3480156102ed57600080fd5b506102f6610a51565b6040516103039190613bd1565b60405180910390f35b34801561031857600080fd5b50610321610a5a565b60405161032e9190613874565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612f90565b610a6d565b005b34801561036c57600080fd5b50610387600480360381019061038291906130e6565b610a7d565b005b34801561039557600080fd5b506103b060048036038101906103ab919061326a565b610b16565b6040516103be92919061384b565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906130a6565b610b82565b6040516103fb9190613bd1565b60405180910390f35b34801561041057600080fd5b50610419610d80565b005b34801561042757600080fd5b50610442600480360381019061043d9190612f90565b610e4b565b005b34801561045057600080fd5b5061046b6004803603810190610466919061319a565b610e6b565b005b34801561047957600080fd5b50610494600480360381019061048f9190613210565b611006565b6040516104a19190613bd1565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906131c7565b611059565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613210565b6110ef565b60405161050791906137e4565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612f23565b611105565b6040516105449190613bd1565b60405180910390f35b34801561055957600080fd5b506105626111ee565b60405161056f919061388f565b60405180910390f35b34801561058457600080fd5b5061058d611280565b005b34801561059b57600080fd5b506105a4611308565b6040516105b191906137e4565b60405180910390f35b3480156105c657600080fd5b506105cf611332565b6040516105dc919061388f565b60405180910390f35b3480156105f157600080fd5b506105fa6113c4565b6040516106079190613bd1565b60405180910390f35b61062a60048036038101906106259190613210565b6113ca565b005b34801561063857600080fd5b50610653600480360381019061064e9190613066565b61157f565b005b34801561066157600080fd5b5061067c60048036038101906106779190612fe3565b611700565b005b34801561068a57600080fd5b5061069361175c565b6040516106a09190613bd1565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613210565b611761565b6040516106dd919061388f565b60405180910390f35b3480156106f257600080fd5b506106fb6117e9565b6040516107089190613bd1565b60405180910390f35b34801561071d57600080fd5b506107266117ef565b6040516107339190613bd1565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190612f50565b6117f5565b6040516107709190613874565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190612f23565b611889565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610815575061081482611981565b5b9050919050565b60606001805461082b90613f68565b80601f016020809104026020016040519081016040528092919081815260200182805461085790613f68565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b600081565b60006108be82611acb565b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490613b91565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610943826110ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90613a71565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d3611ad8565b73ffffffffffffffffffffffffffffffffffffffff161480610a025750610a01816109fc611ad8565b6117f5565b5b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906139b1565b60405180910390fd5b610a4c838383611ae0565b505050565b60008054905090565b600e60009054906101000a900460ff1681565b610a78838383611b92565b505050565b610a85611ad8565b73ffffffffffffffffffffffffffffffffffffffff16610aa3611308565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613a11565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610b2284611acb565b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613991565b60405180910390fd5b30610b77610b7085600561214b565b6064612161565b915091509250929050565b6000610b8d83611105565b8210610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc5906138b1565b60405180910390fd5b6000610bd8610a51565b905060008060005b83811015610d3e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a5786841415610d1b578195505050505050610d7a565b8380610d2690613fcb565b9450505b508080610d3690613fcb565b915050610be0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190613b11565b60405180910390fd5b92915050565b610d88611ad8565b73ffffffffffffffffffffffffffffffffffffffff16610da6611308565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390613a11565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e47573d6000803e3d6000fd5b5050565b610e6683838360405180602001604052806000815250611700565b505050565b610e73611ad8565b73ffffffffffffffffffffffffffffffffffffffff16610e91611308565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613a11565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f2291906137e4565b60206040518083038186803b158015610f3a57600080fd5b505afa158015610f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f72919061323d565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610faf92919061384b565b602060405180830381600087803b158015610fc957600080fd5b505af1158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190613113565b505050565b6000611010610a51565b8210611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890613911565b60405180910390fd5b819050919050565b611061611ad8565b73ffffffffffffffffffffffffffffffffffffffff1661107f611308565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613a11565b60405180910390fd5b80600b90805190602001906110eb929190612cbe565b5050565b60006110fa82612177565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d906139d1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111fd90613f68565b80601f016020809104026020016040519081016040528092919081815260200182805461122990613f68565b80156112765780601f1061124b57610100808354040283529160200191611276565b820191906000526020600020905b81548152906001019060200180831161125957829003601f168201915b5050505050905090565b611288611ad8565b73ffffffffffffffffffffffffffffffffffffffff166112a6611308565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613a11565b60405180910390fd5b611306600061237a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461134190613f68565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90613f68565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050905090565b600d5481565b60026009541415611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613b31565b60405180910390fd5b6002600981905550600081600d54611426610a51565b111561147a573481836114399190613d98565b14611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613af1565b60405180910390fd5b5b600e60009054906101000a900460ff166114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090613b71565b60405180910390fd5b82600c54816114d6610a51565b6114e09190613d11565b1115611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890613931565b60405180910390fd5b83600a811115611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90613971565b60405180910390fd5b6115703386612440565b50505050600160098190555050565b611587611ad8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613a31565b60405180910390fd5b8060066000611602611ad8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116af611ad8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f49190613874565b60405180910390a35050565b61170b848484611b92565b6117178484848461245e565b611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613a91565b60405180910390fd5b50505050565b600a81565b606061176c82611acb565b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290613991565b60405180910390fd5b600b6117c26001846117bd9190613d11565b6125f5565b6040516020016117d39291906137aa565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611891611ad8565b73ffffffffffffffffffffffffffffffffffffffff166118af611308565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c906138d1565b60405180910390fd5b61197e8161237a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a4c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ab457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ac45750611ac382612756565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b9d82612177565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bc4611ad8565b73ffffffffffffffffffffffffffffffffffffffff161480611c205750611be9611ad8565b73ffffffffffffffffffffffffffffffffffffffff16611c08846108b3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3c5750611c3b8260000151611c36611ad8565b6117f5565b5b905080611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7590613a51565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce7906139f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5790613951565b60405180910390fd5b611d6d85858560016127c0565b611d7d6000848460000151611ae0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611deb9190613df2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e8f9190613ccb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f959190613d11565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120db5761200b81611acb565b156120da576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214386868660016127c6565b505050505050565b600081836121599190613d98565b905092915050565b6000818361216f9190613d67565b905092915050565b61217f612d44565b61218882611acb565b6121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906138f1565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061222b5760017f00000000000000000000000000000000000000000000000000000000000000008461221e9190613e26565b6122289190613d11565b90505b60008390505b818110612339576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232557809350505050612375565b50808061233190613f3e565b915050612231565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c90613b51565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61245a8282604051806020016040528060008152506127cc565b5050565b600061247f8473ffffffffffffffffffffffffffffffffffffffff16612cab565b156125e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a8611ad8565b8786866040518563ffffffff1660e01b81526004016124ca94939291906137ff565b602060405180830381600087803b1580156124e457600080fd5b505af192505050801561251557506040513d601f19601f82011682018060405250810190612512919061316d565b60015b612598573d8060008114612545576040519150601f19603f3d011682016040523d82523d6000602084013e61254a565b606091505b50600081511415612590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258790613a91565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ed565b600190505b949350505050565b6060600082141561263d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612751565b600082905060005b6000821461266f57808061265890613fcb565b915050600a826126689190613d67565b9150612645565b60008167ffffffffffffffff81111561268b5761268a614101565b5b6040519080825280601f01601f1916602001820160405280156126bd5781602001600182028036833780820191505090505b5090505b6000851461274a576001826126d69190613e26565b9150600a856126e59190614014565b60306126f19190613d11565b60f81b818381518110612707576127066140d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127439190613d67565b94506126c1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283990613ad1565b60405180910390fd5b61284b81611acb565b1561288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290613ab1565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590613bb1565b60405180910390fd5b6128fb60008583866127c0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129f89190613ccb565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a1f9190613ccb565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c8e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2e600088848861245e565b612c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6490613a91565b60405180910390fd5b8180612c7890613fcb565b9250508080612c8690613fcb565b915050612bbd565b5080600081905550612ca360008785886127c6565b505050505050565b600080823b905060008111915050919050565b828054612cca90613f68565b90600052602060002090601f016020900481019282612cec5760008555612d33565b82601f10612d0557805160ff1916838001178555612d33565b82800160010185558215612d33579182015b82811115612d32578251825591602001919060010190612d17565b5b509050612d409190612d7e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d97576000816000905550600101612d7f565b5090565b6000612dae612da984613c11565b613bec565b905082815260208101848484011115612dca57612dc9614135565b5b612dd5848285613efc565b509392505050565b6000612df0612deb84613c42565b613bec565b905082815260208101848484011115612e0c57612e0b614135565b5b612e17848285613efc565b509392505050565b600081359050612e2e81614854565b92915050565b600081359050612e438161486b565b92915050565b600081519050612e588161486b565b92915050565b600081359050612e6d81614882565b92915050565b600081519050612e8281614882565b92915050565b600082601f830112612e9d57612e9c614130565b5b8135612ead848260208601612d9b565b91505092915050565b600081359050612ec581614899565b92915050565b600082601f830112612ee057612edf614130565b5b8135612ef0848260208601612ddd565b91505092915050565b600081359050612f08816148b0565b92915050565b600081519050612f1d816148b0565b92915050565b600060208284031215612f3957612f3861413f565b5b6000612f4784828501612e1f565b91505092915050565b60008060408385031215612f6757612f6661413f565b5b6000612f7585828601612e1f565b9250506020612f8685828601612e1f565b9150509250929050565b600080600060608486031215612fa957612fa861413f565b5b6000612fb786828701612e1f565b9350506020612fc886828701612e1f565b9250506040612fd986828701612ef9565b9150509250925092565b60008060008060808587031215612ffd57612ffc61413f565b5b600061300b87828801612e1f565b945050602061301c87828801612e1f565b935050604061302d87828801612ef9565b925050606085013567ffffffffffffffff81111561304e5761304d61413a565b5b61305a87828801612e88565b91505092959194509250565b6000806040838503121561307d5761307c61413f565b5b600061308b85828601612e1f565b925050602061309c85828601612e34565b9150509250929050565b600080604083850312156130bd576130bc61413f565b5b60006130cb85828601612e1f565b92505060206130dc85828601612ef9565b9150509250929050565b6000602082840312156130fc576130fb61413f565b5b600061310a84828501612e34565b91505092915050565b6000602082840312156131295761312861413f565b5b600061313784828501612e49565b91505092915050565b6000602082840312156131565761315561413f565b5b600061316484828501612e5e565b91505092915050565b6000602082840312156131835761318261413f565b5b600061319184828501612e73565b91505092915050565b6000602082840312156131b0576131af61413f565b5b60006131be84828501612eb6565b91505092915050565b6000602082840312156131dd576131dc61413f565b5b600082013567ffffffffffffffff8111156131fb576131fa61413a565b5b61320784828501612ecb565b91505092915050565b6000602082840312156132265761322561413f565b5b600061323484828501612ef9565b91505092915050565b6000602082840312156132535761325261413f565b5b600061326184828501612f0e565b91505092915050565b600080604083850312156132815761328061413f565b5b600061328f85828601612ef9565b92505060206132a085828601612ef9565b9150509250929050565b6132b381613e5a565b82525050565b6132c281613e6c565b82525050565b60006132d382613c88565b6132dd8185613c9e565b93506132ed818560208601613f0b565b6132f681614144565b840191505092915050565b600061330c82613c93565b6133168185613caf565b9350613326818560208601613f0b565b61332f81614144565b840191505092915050565b600061334582613c93565b61334f8185613cc0565b935061335f818560208601613f0b565b80840191505092915050565b6000815461337881613f68565b6133828186613cc0565b9450600182166000811461339d57600181146133ae576133e1565b60ff198316865281860193506133e1565b6133b785613c73565b60005b838110156133d9578154818901526001820191506020810190506133ba565b838801955050505b50505092915050565b60006133f7602283613caf565b915061340282614155565b604082019050919050565b600061341a602683613caf565b9150613425826141a4565b604082019050919050565b600061343d602a83613caf565b9150613448826141f3565b604082019050919050565b6000613460602383613caf565b915061346b82614242565b604082019050919050565b6000613483602283613caf565b915061348e82614291565b604082019050919050565b60006134a6602583613caf565b91506134b1826142e0565b604082019050919050565b60006134c9602283613caf565b91506134d48261432f565b604082019050919050565b60006134ec601183613caf565b91506134f78261437e565b602082019050919050565b600061350f603983613caf565b915061351a826143a7565b604082019050919050565b6000613532602b83613caf565b915061353d826143f6565b604082019050919050565b6000613555602683613caf565b915061356082614445565b604082019050919050565b6000613578600583613cc0565b915061358382614494565b600582019050919050565b600061359b602083613caf565b91506135a6826144bd565b602082019050919050565b60006135be601a83613caf565b91506135c9826144e6565b602082019050919050565b60006135e1603283613caf565b91506135ec8261450f565b604082019050919050565b6000613604602283613caf565b915061360f8261455e565b604082019050919050565b6000613627603383613caf565b9150613632826145ad565b604082019050919050565b600061364a601d83613caf565b9150613655826145fc565b602082019050919050565b600061366d602183613caf565b915061367882614625565b604082019050919050565b6000613690601883613caf565b915061369b82614674565b602082019050919050565b60006136b3602e83613caf565b91506136be8261469d565b604082019050919050565b60006136d6601f83613caf565b91506136e1826146ec565b602082019050919050565b60006136f9602f83613caf565b915061370482614715565b604082019050919050565b600061371c601783613caf565b915061372782614764565b602082019050919050565b600061373f602d83613caf565b915061374a8261478d565b604082019050919050565b6000613762602283613caf565b915061376d826147dc565b604082019050919050565b6000613785600183613cc0565b91506137908261482b565b600182019050919050565b6137a481613ef2565b82525050565b60006137b6828561336b565b91506137c182613778565b91506137cd828461333a565b91506137d88261356b565b91508190509392505050565b60006020820190506137f960008301846132aa565b92915050565b600060808201905061381460008301876132aa565b61382160208301866132aa565b61382e604083018561379b565b818103606083015261384081846132c8565b905095945050505050565b600060408201905061386060008301856132aa565b61386d602083018461379b565b9392505050565b600060208201905061388960008301846132b9565b92915050565b600060208201905081810360008301526138a98184613301565b905092915050565b600060208201905081810360008301526138ca816133ea565b9050919050565b600060208201905081810360008301526138ea8161340d565b9050919050565b6000602082019050818103600083015261390a81613430565b9050919050565b6000602082019050818103600083015261392a81613453565b9050919050565b6000602082019050818103600083015261394a81613476565b9050919050565b6000602082019050818103600083015261396a81613499565b9050919050565b6000602082019050818103600083015261398a816134bc565b9050919050565b600060208201905081810360008301526139aa816134df565b9050919050565b600060208201905081810360008301526139ca81613502565b9050919050565b600060208201905081810360008301526139ea81613525565b9050919050565b60006020820190508181036000830152613a0a81613548565b9050919050565b60006020820190508181036000830152613a2a8161358e565b9050919050565b60006020820190508181036000830152613a4a816135b1565b9050919050565b60006020820190508181036000830152613a6a816135d4565b9050919050565b60006020820190508181036000830152613a8a816135f7565b9050919050565b60006020820190508181036000830152613aaa8161361a565b9050919050565b60006020820190508181036000830152613aca8161363d565b9050919050565b60006020820190508181036000830152613aea81613660565b9050919050565b60006020820190508181036000830152613b0a81613683565b9050919050565b60006020820190508181036000830152613b2a816136a6565b9050919050565b60006020820190508181036000830152613b4a816136c9565b9050919050565b60006020820190508181036000830152613b6a816136ec565b9050919050565b60006020820190508181036000830152613b8a8161370f565b9050919050565b60006020820190508181036000830152613baa81613732565b9050919050565b60006020820190508181036000830152613bca81613755565b9050919050565b6000602082019050613be6600083018461379b565b92915050565b6000613bf6613c07565b9050613c028282613f9a565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2c57613c2b614101565b5b613c3582614144565b9050602081019050919050565b600067ffffffffffffffff821115613c5d57613c5c614101565b5b613c6682614144565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd682613eb6565b9150613ce183613eb6565b9250826fffffffffffffffffffffffffffffffff03821115613d0657613d05614045565b5b828201905092915050565b6000613d1c82613ef2565b9150613d2783613ef2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5c57613d5b614045565b5b828201905092915050565b6000613d7282613ef2565b9150613d7d83613ef2565b925082613d8d57613d8c614074565b5b828204905092915050565b6000613da382613ef2565b9150613dae83613ef2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613de757613de6614045565b5b828202905092915050565b6000613dfd82613eb6565b9150613e0883613eb6565b925082821015613e1b57613e1a614045565b5b828203905092915050565b6000613e3182613ef2565b9150613e3c83613ef2565b925082821015613e4f57613e4e614045565b5b828203905092915050565b6000613e6582613ed2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613eaf82613e5a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f29578082015181840152602081019050613f0e565b83811115613f38576000848401525b50505050565b6000613f4982613ef2565b91506000821415613f5d57613f5c614045565b5b600182039050919050565b60006002820490506001821680613f8057607f821691505b60208210811415613f9457613f936140a3565b5b50919050565b613fa382614144565b810181811067ffffffffffffffff82111715613fc257613fc1614101565b5b80604052505050565b6000613fd682613ef2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400957614008614045565b5b600182019050919050565b600061401f82613ef2565b915061402a83613ef2565b92508261403a57614039614074565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61485d81613e5a565b811461486857600080fd5b50565b61487481613e6c565b811461487f57600080fd5b50565b61488b81613e78565b811461489657600080fd5b50565b6148a281613ea4565b81146148ad57600080fd5b50565b6148b981613ef2565b81146148c457600080fd5b5056fea264697066735822122072e2083e33accc107472723130890fdf039f7bac5caa3e325c356997852b875e64736f6c63430008070033697066733a2f2f516d505137685252747a6d686761704d31714261415132684a34684b4b78503246655847595a666837744338424e

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106e6578063d7224ba014610711578063e985e9c51461073c578063f2fde38b14610779576101e3565b8063a22cb4651461062c578063b88d4fde14610655578063c6a91b421461067e578063c87b56dd146106a9576101e3565b80638da5cb5b116100d15780638da5cb5b1461058f57806395d89b41146105ba578063982d669e146105e5578063a0712d6814610610576101e3565b80636352211e146104d357806370a0823114610510578063714c53981461054d578063715018a614610578576101e3565b806328cad13d1161017a57806342842e0e1161014957806342842e0e1461041b57806349df728c146104445780634f6ccce71461046d57806355f804b3146104aa576101e3565b806328cad13d146103605780632a55205a146103895780632f745c59146103c75780633ccfd60b14610404576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613140565b6107a2565b60405161021c9190613874565b60405180910390f35b34801561023157600080fd5b5061023a61081c565b604051610247919061388f565b60405180910390f35b34801561025c57600080fd5b506102656108ae565b6040516102729190613bd1565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613210565b6108b3565b6040516102af91906137e4565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906130a6565b610938565b005b3480156102ed57600080fd5b506102f6610a51565b6040516103039190613bd1565b60405180910390f35b34801561031857600080fd5b50610321610a5a565b60405161032e9190613874565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612f90565b610a6d565b005b34801561036c57600080fd5b50610387600480360381019061038291906130e6565b610a7d565b005b34801561039557600080fd5b506103b060048036038101906103ab919061326a565b610b16565b6040516103be92919061384b565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906130a6565b610b82565b6040516103fb9190613bd1565b60405180910390f35b34801561041057600080fd5b50610419610d80565b005b34801561042757600080fd5b50610442600480360381019061043d9190612f90565b610e4b565b005b34801561045057600080fd5b5061046b6004803603810190610466919061319a565b610e6b565b005b34801561047957600080fd5b50610494600480360381019061048f9190613210565b611006565b6040516104a19190613bd1565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906131c7565b611059565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613210565b6110ef565b60405161050791906137e4565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612f23565b611105565b6040516105449190613bd1565b60405180910390f35b34801561055957600080fd5b506105626111ee565b60405161056f919061388f565b60405180910390f35b34801561058457600080fd5b5061058d611280565b005b34801561059b57600080fd5b506105a4611308565b6040516105b191906137e4565b60405180910390f35b3480156105c657600080fd5b506105cf611332565b6040516105dc919061388f565b60405180910390f35b3480156105f157600080fd5b506105fa6113c4565b6040516106079190613bd1565b60405180910390f35b61062a60048036038101906106259190613210565b6113ca565b005b34801561063857600080fd5b50610653600480360381019061064e9190613066565b61157f565b005b34801561066157600080fd5b5061067c60048036038101906106779190612fe3565b611700565b005b34801561068a57600080fd5b5061069361175c565b6040516106a09190613bd1565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613210565b611761565b6040516106dd919061388f565b60405180910390f35b3480156106f257600080fd5b506106fb6117e9565b6040516107089190613bd1565b60405180910390f35b34801561071d57600080fd5b506107266117ef565b6040516107339190613bd1565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190612f50565b6117f5565b6040516107709190613874565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190612f23565b611889565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610815575061081482611981565b5b9050919050565b60606001805461082b90613f68565b80601f016020809104026020016040519081016040528092919081815260200182805461085790613f68565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b600081565b60006108be82611acb565b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490613b91565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610943826110ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90613a71565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d3611ad8565b73ffffffffffffffffffffffffffffffffffffffff161480610a025750610a01816109fc611ad8565b6117f5565b5b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906139b1565b60405180910390fd5b610a4c838383611ae0565b505050565b60008054905090565b600e60009054906101000a900460ff1681565b610a78838383611b92565b505050565b610a85611ad8565b73ffffffffffffffffffffffffffffffffffffffff16610aa3611308565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613a11565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610b2284611acb565b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890613991565b60405180910390fd5b30610b77610b7085600561214b565b6064612161565b915091509250929050565b6000610b8d83611105565b8210610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc5906138b1565b60405180910390fd5b6000610bd8610a51565b905060008060005b83811015610d3e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a5786841415610d1b578195505050505050610d7a565b8380610d2690613fcb565b9450505b508080610d3690613fcb565b915050610be0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190613b11565b60405180910390fd5b92915050565b610d88611ad8565b73ffffffffffffffffffffffffffffffffffffffff16610da6611308565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390613a11565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e47573d6000803e3d6000fd5b5050565b610e6683838360405180602001604052806000815250611700565b505050565b610e73611ad8565b73ffffffffffffffffffffffffffffffffffffffff16610e91611308565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613a11565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f2291906137e4565b60206040518083038186803b158015610f3a57600080fd5b505afa158015610f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f72919061323d565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610faf92919061384b565b602060405180830381600087803b158015610fc957600080fd5b505af1158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190613113565b505050565b6000611010610a51565b8210611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890613911565b60405180910390fd5b819050919050565b611061611ad8565b73ffffffffffffffffffffffffffffffffffffffff1661107f611308565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613a11565b60405180910390fd5b80600b90805190602001906110eb929190612cbe565b5050565b60006110fa82612177565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d906139d1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111fd90613f68565b80601f016020809104026020016040519081016040528092919081815260200182805461122990613f68565b80156112765780601f1061124b57610100808354040283529160200191611276565b820191906000526020600020905b81548152906001019060200180831161125957829003601f168201915b5050505050905090565b611288611ad8565b73ffffffffffffffffffffffffffffffffffffffff166112a6611308565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390613a11565b60405180910390fd5b611306600061237a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461134190613f68565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90613f68565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050905090565b600d5481565b60026009541415611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613b31565b60405180910390fd5b6002600981905550600081600d54611426610a51565b111561147a573481836114399190613d98565b14611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613af1565b60405180910390fd5b5b600e60009054906101000a900460ff166114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090613b71565b60405180910390fd5b82600c54816114d6610a51565b6114e09190613d11565b1115611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890613931565b60405180910390fd5b83600a811115611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155d90613971565b60405180910390fd5b6115703386612440565b50505050600160098190555050565b611587611ad8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613a31565b60405180910390fd5b8060066000611602611ad8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116af611ad8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f49190613874565b60405180910390a35050565b61170b848484611b92565b6117178484848461245e565b611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613a91565b60405180910390fd5b50505050565b600a81565b606061176c82611acb565b6117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290613991565b60405180910390fd5b600b6117c26001846117bd9190613d11565b6125f5565b6040516020016117d39291906137aa565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611891611ad8565b73ffffffffffffffffffffffffffffffffffffffff166118af611308565b73ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc90613a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c906138d1565b60405180910390fd5b61197e8161237a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a4c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ab457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ac45750611ac382612756565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b9d82612177565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bc4611ad8565b73ffffffffffffffffffffffffffffffffffffffff161480611c205750611be9611ad8565b73ffffffffffffffffffffffffffffffffffffffff16611c08846108b3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c3c5750611c3b8260000151611c36611ad8565b6117f5565b5b905080611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7590613a51565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce7906139f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5790613951565b60405180910390fd5b611d6d85858560016127c0565b611d7d6000848460000151611ae0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611deb9190613df2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e8f9190613ccb565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f959190613d11565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120db5761200b81611acb565b156120da576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214386868660016127c6565b505050505050565b600081836121599190613d98565b905092915050565b6000818361216f9190613d67565b905092915050565b61217f612d44565b61218882611acb565b6121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906138f1565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000064831061222b5760017f00000000000000000000000000000000000000000000000000000000000000648461221e9190613e26565b6122289190613d11565b90505b60008390505b818110612339576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232557809350505050612375565b50808061233190613f3e565b915050612231565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c90613b51565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61245a8282604051806020016040528060008152506127cc565b5050565b600061247f8473ffffffffffffffffffffffffffffffffffffffff16612cab565b156125e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a8611ad8565b8786866040518563ffffffff1660e01b81526004016124ca94939291906137ff565b602060405180830381600087803b1580156124e457600080fd5b505af192505050801561251557506040513d601f19601f82011682018060405250810190612512919061316d565b60015b612598573d8060008114612545576040519150601f19603f3d011682016040523d82523d6000602084013e61254a565b606091505b50600081511415612590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258790613a91565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ed565b600190505b949350505050565b6060600082141561263d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612751565b600082905060005b6000821461266f57808061265890613fcb565b915050600a826126689190613d67565b9150612645565b60008167ffffffffffffffff81111561268b5761268a614101565b5b6040519080825280601f01601f1916602001820160405280156126bd5781602001600182028036833780820191505090505b5090505b6000851461274a576001826126d69190613e26565b9150600a856126e59190614014565b60306126f19190613d11565b60f81b818381518110612707576127066140d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127439190613d67565b94506126c1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283990613ad1565b60405180910390fd5b61284b81611acb565b1561288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290613ab1565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000648311156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590613bb1565b60405180910390fd5b6128fb60008583866127c0565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129f89190613ccb565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a1f9190613ccb565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c8e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2e600088848861245e565b612c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6490613a91565b60405180910390fd5b8180612c7890613fcb565b9250508080612c8690613fcb565b915050612bbd565b5080600081905550612ca360008785886127c6565b505050505050565b600080823b905060008111915050919050565b828054612cca90613f68565b90600052602060002090601f016020900481019282612cec5760008555612d33565b82601f10612d0557805160ff1916838001178555612d33565b82800160010185558215612d33579182015b82811115612d32578251825591602001919060010190612d17565b5b509050612d409190612d7e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d97576000816000905550600101612d7f565b5090565b6000612dae612da984613c11565b613bec565b905082815260208101848484011115612dca57612dc9614135565b5b612dd5848285613efc565b509392505050565b6000612df0612deb84613c42565b613bec565b905082815260208101848484011115612e0c57612e0b614135565b5b612e17848285613efc565b509392505050565b600081359050612e2e81614854565b92915050565b600081359050612e438161486b565b92915050565b600081519050612e588161486b565b92915050565b600081359050612e6d81614882565b92915050565b600081519050612e8281614882565b92915050565b600082601f830112612e9d57612e9c614130565b5b8135612ead848260208601612d9b565b91505092915050565b600081359050612ec581614899565b92915050565b600082601f830112612ee057612edf614130565b5b8135612ef0848260208601612ddd565b91505092915050565b600081359050612f08816148b0565b92915050565b600081519050612f1d816148b0565b92915050565b600060208284031215612f3957612f3861413f565b5b6000612f4784828501612e1f565b91505092915050565b60008060408385031215612f6757612f6661413f565b5b6000612f7585828601612e1f565b9250506020612f8685828601612e1f565b9150509250929050565b600080600060608486031215612fa957612fa861413f565b5b6000612fb786828701612e1f565b9350506020612fc886828701612e1f565b9250506040612fd986828701612ef9565b9150509250925092565b60008060008060808587031215612ffd57612ffc61413f565b5b600061300b87828801612e1f565b945050602061301c87828801612e1f565b935050604061302d87828801612ef9565b925050606085013567ffffffffffffffff81111561304e5761304d61413a565b5b61305a87828801612e88565b91505092959194509250565b6000806040838503121561307d5761307c61413f565b5b600061308b85828601612e1f565b925050602061309c85828601612e34565b9150509250929050565b600080604083850312156130bd576130bc61413f565b5b60006130cb85828601612e1f565b92505060206130dc85828601612ef9565b9150509250929050565b6000602082840312156130fc576130fb61413f565b5b600061310a84828501612e34565b91505092915050565b6000602082840312156131295761312861413f565b5b600061313784828501612e49565b91505092915050565b6000602082840312156131565761315561413f565b5b600061316484828501612e5e565b91505092915050565b6000602082840312156131835761318261413f565b5b600061319184828501612e73565b91505092915050565b6000602082840312156131b0576131af61413f565b5b60006131be84828501612eb6565b91505092915050565b6000602082840312156131dd576131dc61413f565b5b600082013567ffffffffffffffff8111156131fb576131fa61413a565b5b61320784828501612ecb565b91505092915050565b6000602082840312156132265761322561413f565b5b600061323484828501612ef9565b91505092915050565b6000602082840312156132535761325261413f565b5b600061326184828501612f0e565b91505092915050565b600080604083850312156132815761328061413f565b5b600061328f85828601612ef9565b92505060206132a085828601612ef9565b9150509250929050565b6132b381613e5a565b82525050565b6132c281613e6c565b82525050565b60006132d382613c88565b6132dd8185613c9e565b93506132ed818560208601613f0b565b6132f681614144565b840191505092915050565b600061330c82613c93565b6133168185613caf565b9350613326818560208601613f0b565b61332f81614144565b840191505092915050565b600061334582613c93565b61334f8185613cc0565b935061335f818560208601613f0b565b80840191505092915050565b6000815461337881613f68565b6133828186613cc0565b9450600182166000811461339d57600181146133ae576133e1565b60ff198316865281860193506133e1565b6133b785613c73565b60005b838110156133d9578154818901526001820191506020810190506133ba565b838801955050505b50505092915050565b60006133f7602283613caf565b915061340282614155565b604082019050919050565b600061341a602683613caf565b9150613425826141a4565b604082019050919050565b600061343d602a83613caf565b9150613448826141f3565b604082019050919050565b6000613460602383613caf565b915061346b82614242565b604082019050919050565b6000613483602283613caf565b915061348e82614291565b604082019050919050565b60006134a6602583613caf565b91506134b1826142e0565b604082019050919050565b60006134c9602283613caf565b91506134d48261432f565b604082019050919050565b60006134ec601183613caf565b91506134f78261437e565b602082019050919050565b600061350f603983613caf565b915061351a826143a7565b604082019050919050565b6000613532602b83613caf565b915061353d826143f6565b604082019050919050565b6000613555602683613caf565b915061356082614445565b604082019050919050565b6000613578600583613cc0565b915061358382614494565b600582019050919050565b600061359b602083613caf565b91506135a6826144bd565b602082019050919050565b60006135be601a83613caf565b91506135c9826144e6565b602082019050919050565b60006135e1603283613caf565b91506135ec8261450f565b604082019050919050565b6000613604602283613caf565b915061360f8261455e565b604082019050919050565b6000613627603383613caf565b9150613632826145ad565b604082019050919050565b600061364a601d83613caf565b9150613655826145fc565b602082019050919050565b600061366d602183613caf565b915061367882614625565b604082019050919050565b6000613690601883613caf565b915061369b82614674565b602082019050919050565b60006136b3602e83613caf565b91506136be8261469d565b604082019050919050565b60006136d6601f83613caf565b91506136e1826146ec565b602082019050919050565b60006136f9602f83613caf565b915061370482614715565b604082019050919050565b600061371c601783613caf565b915061372782614764565b602082019050919050565b600061373f602d83613caf565b915061374a8261478d565b604082019050919050565b6000613762602283613caf565b915061376d826147dc565b604082019050919050565b6000613785600183613cc0565b91506137908261482b565b600182019050919050565b6137a481613ef2565b82525050565b60006137b6828561336b565b91506137c182613778565b91506137cd828461333a565b91506137d88261356b565b91508190509392505050565b60006020820190506137f960008301846132aa565b92915050565b600060808201905061381460008301876132aa565b61382160208301866132aa565b61382e604083018561379b565b818103606083015261384081846132c8565b905095945050505050565b600060408201905061386060008301856132aa565b61386d602083018461379b565b9392505050565b600060208201905061388960008301846132b9565b92915050565b600060208201905081810360008301526138a98184613301565b905092915050565b600060208201905081810360008301526138ca816133ea565b9050919050565b600060208201905081810360008301526138ea8161340d565b9050919050565b6000602082019050818103600083015261390a81613430565b9050919050565b6000602082019050818103600083015261392a81613453565b9050919050565b6000602082019050818103600083015261394a81613476565b9050919050565b6000602082019050818103600083015261396a81613499565b9050919050565b6000602082019050818103600083015261398a816134bc565b9050919050565b600060208201905081810360008301526139aa816134df565b9050919050565b600060208201905081810360008301526139ca81613502565b9050919050565b600060208201905081810360008301526139ea81613525565b9050919050565b60006020820190508181036000830152613a0a81613548565b9050919050565b60006020820190508181036000830152613a2a8161358e565b9050919050565b60006020820190508181036000830152613a4a816135b1565b9050919050565b60006020820190508181036000830152613a6a816135d4565b9050919050565b60006020820190508181036000830152613a8a816135f7565b9050919050565b60006020820190508181036000830152613aaa8161361a565b9050919050565b60006020820190508181036000830152613aca8161363d565b9050919050565b60006020820190508181036000830152613aea81613660565b9050919050565b60006020820190508181036000830152613b0a81613683565b9050919050565b60006020820190508181036000830152613b2a816136a6565b9050919050565b60006020820190508181036000830152613b4a816136c9565b9050919050565b60006020820190508181036000830152613b6a816136ec565b9050919050565b60006020820190508181036000830152613b8a8161370f565b9050919050565b60006020820190508181036000830152613baa81613732565b9050919050565b60006020820190508181036000830152613bca81613755565b9050919050565b6000602082019050613be6600083018461379b565b92915050565b6000613bf6613c07565b9050613c028282613f9a565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2c57613c2b614101565b5b613c3582614144565b9050602081019050919050565b600067ffffffffffffffff821115613c5d57613c5c614101565b5b613c6682614144565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd682613eb6565b9150613ce183613eb6565b9250826fffffffffffffffffffffffffffffffff03821115613d0657613d05614045565b5b828201905092915050565b6000613d1c82613ef2565b9150613d2783613ef2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5c57613d5b614045565b5b828201905092915050565b6000613d7282613ef2565b9150613d7d83613ef2565b925082613d8d57613d8c614074565b5b828204905092915050565b6000613da382613ef2565b9150613dae83613ef2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613de757613de6614045565b5b828202905092915050565b6000613dfd82613eb6565b9150613e0883613eb6565b925082821015613e1b57613e1a614045565b5b828203905092915050565b6000613e3182613ef2565b9150613e3c83613ef2565b925082821015613e4f57613e4e614045565b5b828203905092915050565b6000613e6582613ed2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613eaf82613e5a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f29578082015181840152602081019050613f0e565b83811115613f38576000848401525b50505050565b6000613f4982613ef2565b91506000821415613f5d57613f5c614045565b5b600182039050919050565b60006002820490506001821680613f8057607f821691505b60208210811415613f9457613f936140a3565b5b50919050565b613fa382614144565b810181811067ffffffffffffffff82111715613fc257613fc1614101565b5b80604052505050565b6000613fd682613ef2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561400957614008614045565b5b600182019050919050565b600061401f82613ef2565b915061402a83613ef2565b92508261403a57614039614074565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61485d81613e5a565b811461486857600080fd5b50565b61487481613e6c565b811461487f57600080fd5b50565b61488b81613e78565b811461489657600080fd5b50565b6148a281613ea4565b81146148ad57600080fd5b50565b6148b981613ef2565b81146148c457600080fd5b5056fea264697066735822122072e2083e33accc107472723130890fdf039f7bac5caa3e325c356997852b875e64736f6c63430008070033

Deployed Bytecode Sourcemap

55253:4064:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58260:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44443:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55626:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45968:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45531:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41278:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55727:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46818:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57507:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58996:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41909:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57677:143;;;;;;;;;;;;;:::i;:::-;;47023:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57828:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41441:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57397:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44266:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43143:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57233:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19301:103;;;;;;;;;;;;;:::i;:::-;;18650:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44598:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55684:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56835:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46236:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47243:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55534:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58623:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55586:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51658:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46573:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19559:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58260:292;58408:4;58465:26;58450:41;;;:11;:41;;;;:94;;;;58508:36;58532:11;58508:23;:36::i;:::-;58450:94;58430:114;;58260:292;;;:::o;44443:94::-;44497:13;44526:5;44519:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44443:94;:::o;55626:51::-;55670:7;55626:51;:::o;45968:204::-;46036:7;46060:16;46068:7;46060;:16::i;:::-;46052:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46142:15;:24;46158:7;46142:24;;;;;;;;;;;;;;;;;;;;;46135:31;;45968:204;;;:::o;45531:379::-;45600:13;45616:24;45632:7;45616:15;:24::i;:::-;45600:40;;45661:5;45655:11;;:2;:11;;;;45647:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45746:5;45730:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45755:37;45772:5;45779:12;:10;:12::i;:::-;45755:16;:37::i;:::-;45730:62;45714:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45876:28;45885:2;45889:7;45898:5;45876:8;:28::i;:::-;45593:317;45531:379;;:::o;41278:94::-;41331:7;41354:12;;41347:19;;41278:94;:::o;55727:37::-;;;;;;;;;;;;;:::o;46818:142::-;46926:28;46936:4;46942:2;46946:7;46926:9;:28::i;:::-;46818:142;;;:::o;57507:158::-;18881:12;:10;:12::i;:::-;18870:23;;:7;:5;:7::i;:::-;:23;;;18862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57638:19:::1;57617:18;;:40;;;;;;;;;;;;;;;;;;57507:158:::0;:::o;58996:318::-;59121:16;59139:21;59186:16;59194:7;59186;:16::i;:::-;59178:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59253:4;59260:45;59273:26;59286:9;59297:1;59273:12;:26::i;:::-;59301:3;59260:12;:45::i;:::-;59237:69;;;;58996:318;;;;;:::o;41909:744::-;42018:7;42053:16;42063:5;42053:9;:16::i;:::-;42045:5;:24;42037:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42115:22;42140:13;:11;:13::i;:::-;42115:38;;42160:19;42190:25;42240:9;42235:350;42259:14;42255:1;:18;42235:350;;;42289:31;42323:11;:14;42335:1;42323:14;;;;;;;;;;;42289:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42376:1;42350:28;;:9;:14;;;:28;;;42346:89;;42411:9;:14;;;42391:34;;42346:89;42468:5;42447:26;;:17;:26;;;42443:135;;;42505:5;42490:11;:20;42486:59;;;42532:1;42525:8;;;;;;;;;42486:59;42555:13;;;;;:::i;:::-;;;;42443:135;42280:305;42275:3;;;;;:::i;:::-;;;;42235:350;;;;42591:56;;;;;;;;;;:::i;:::-;;;;;;;;41909:744;;;;;:::o;57677:143::-;18881:12;:10;:12::i;:::-;18870:23;;:7;:5;:7::i;:::-;:23;;;18862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57725:15:::1;57743:21;57725:39;;57783:10;57775:28;;:37;57804:7;57775:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57714:106;57677:143::o:0;47023:157::-;47135:39;47152:4;47158:2;47162:7;47135:39;;;;;;;;;;;;:16;:39::i;:::-;47023:157;;;:::o;57828:168::-;18881:12;:10;:12::i;:::-;18870:23;;:7;:5;:7::i;:::-;:23;;;18862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57894:15:::1;57912:5;:15;;;57936:4;57912:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57894:48;;57953:5;:14;;;57968:10;57980:7;57953:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57883:113;57828:168:::0;:::o;41441:177::-;41508:7;41540:13;:11;:13::i;:::-;41532:5;:21;41524:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41607:5;41600:12;;41441:177;;;:::o;57397:100::-;18881:12;:10;:12::i;:::-;18870:23;;:7;:5;:7::i;:::-;:23;;;18862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57481:8:::1;57471:7;:18;;;;;;;;;;;;:::i;:::-;;57397:100:::0;:::o;44266:118::-;44330:7;44353:20;44365:7;44353:11;:20::i;:::-;:25;;;44346:32;;44266:118;;;:::o;43143:211::-;43207:7;43248:1;43231:19;;:5;:19;;;;43223:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43320:12;:19;43333:5;43320:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43312:36;;43305:43;;43143:211;;;:::o;57233:93::-;57278:13;57311:7;57304:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57233:93;:::o;19301:103::-;18881:12;:10;:12::i;:::-;18870:23;;:7;:5;:7::i;:::-;:23;;;18862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19366:30:::1;19393:1;19366:18;:30::i;:::-;19301:103::o:0;18650:87::-;18696:7;18723:6;;;;;;;;;;;18716:13;;18650:87;:::o;44598:98::-;44654:13;44683:7;44676:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44598:98;:::o;55684:36::-;;;;:::o;56835:321::-;10579:1;11177:7;;:19;;11169:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10579:1;11310:7;:18;;;;55670:7:::1;56975:14;56501;;56487:13;:11;:13::i;:::-;:28;56484:166;;;56577:9;56558:14;56550:5;:22;;;;:::i;:::-;56549:37;56527:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56484:166;55894:18:::2;;;;;;;;;;;55886:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57038:14:::3;56305:9;;56270:14;56254:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56232:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57077:14:::4;55577:2;56052:14;:34;;56030:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57111:37:::5;57121:10;57133:14;57111:9;:37::i;:::-;56387:1:::4;55951::::3;11341::::1;;10535::::0;11489:7;:22;;;;56835:321;:::o;46236:274::-;46339:12;:10;:12::i;:::-;46327:24;;:8;:24;;;;46319:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46436:8;46391:18;:32;46410:12;:10;:12::i;:::-;46391:32;;;;;;;;;;;;;;;:42;46424:8;46391:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46485:8;46456:48;;46471:12;:10;:12::i;:::-;46456:48;;;46495:8;46456:48;;;;;;:::i;:::-;;;;;;;;46236:274;;:::o;47243:311::-;47380:28;47390:4;47396:2;47400:7;47380:9;:28::i;:::-;47431:48;47454:4;47460:2;47464:7;47473:5;47431:22;:48::i;:::-;47415:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47243:311;;;;:::o;55534:45::-;55577:2;55534:45;:::o;58623:307::-;58741:13;58780:16;58788:7;58780;:16::i;:::-;58772:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58875:7;58889:22;58898:1;58890:7;:9;;;;:::i;:::-;58889:20;:22::i;:::-;58858:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58831:91;;58623:307;;;:::o;55586:31::-;;;;:::o;51658:43::-;;;;:::o;46573:186::-;46695:4;46718:18;:25;46737:5;46718:25;;;;;;;;;;;;;;;:35;46744:8;46718:35;;;;;;;;;;;;;;;;;;;;;;;;;46711:42;;46573:186;;;;:::o;19559:201::-;18881:12;:10;:12::i;:::-;18870:23;;:7;:5;:7::i;:::-;:23;;;18862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19668:1:::1;19648:22;;:8;:22;;;;19640:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19724:28;19743:8;19724:18;:28::i;:::-;19559:201:::0;:::o;42717:370::-;42844:4;42889:25;42874:40;;;:11;:40;;;;:99;;;;42940:33;42925:48;;;:11;:48;;;;42874:99;:160;;;;42999:35;42984:50;;;:11;:50;;;;42874:160;:207;;;;43045:36;43069:11;43045:23;:36::i;:::-;42874:207;42860:221;;42717:370;;;:::o;47793:105::-;47850:4;47880:12;;47870:7;:22;47863:29;;47793:105;;;:::o;17374:98::-;17427:7;17454:10;17447:17;;17374:98;:::o;51480:172::-;51604:2;51577:15;:24;51593:7;51577:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51638:7;51634:2;51618:28;;51627:5;51618:28;;;;;;;;;;;;51480:172;;;:::o;49845:1529::-;49942:35;49980:20;49992:7;49980:11;:20::i;:::-;49942:58;;50009:22;50051:13;:18;;;50035:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50104:12;:10;:12::i;:::-;50080:36;;:20;50092:7;50080:11;:20::i;:::-;:36;;;50035:81;:142;;;;50127:50;50144:13;:18;;;50164:12;:10;:12::i;:::-;50127:16;:50::i;:::-;50035:142;50009:169;;50203:17;50187:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50335:4;50313:26;;:13;:18;;;:26;;;50297:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50424:1;50410:16;;:2;:16;;;;50402:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50477:43;50499:4;50505:2;50509:7;50518:1;50477:21;:43::i;:::-;50577:49;50594:1;50598:7;50607:13;:18;;;50577:8;:49::i;:::-;50665:1;50635:12;:18;50648:4;50635:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50701:1;50673:12;:16;50686:2;50673:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50732:43;;;;;;;;50747:2;50732:43;;;;;;50758:15;50732:43;;;;;50709:11;:20;50721:7;50709:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51003:19;51035:1;51025:7;:11;;;;:::i;:::-;51003:33;;51088:1;51047:43;;:11;:24;51059:11;51047:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51043:236;;;51105:20;51113:11;51105:7;:20::i;:::-;51101:171;;;51165:97;;;;;;;;51192:13;:18;;;51165:97;;;;;;51223:13;:28;;;51165:97;;;;;51138:11;:24;51150:11;51138:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51101:171;51043:236;51311:7;51307:2;51292:27;;51301:4;51292:27;;;;;;;;;;;;51326:42;51347:4;51353:2;51357:7;51366:1;51326:20;:42::i;:::-;49935:1439;;;49845:1529;;;:::o;3875:98::-;3933:7;3964:1;3960;:5;;;;:::i;:::-;3953:12;;3875:98;;;;:::o;4274:::-;4332:7;4363:1;4359;:5;;;;:::i;:::-;4352:12;;4274:98;;;;:::o;43606:606::-;43682:21;;:::i;:::-;43723:16;43731:7;43723;:16::i;:::-;43715:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43795:26;43843:12;43832:7;:23;43828:93;;43912:1;43897:12;43887:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43866:47;;43828:93;43934:12;43949:7;43934:22;;43929:212;43966:18;43958:4;:26;43929:212;;44003:31;44037:11;:17;44049:4;44037:17;;;;;;;;;;;44003:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44093:1;44067:28;;:9;:14;;;:28;;;44063:71;;44115:9;44108:16;;;;;;;44063:71;43994:147;43986:6;;;;;:::i;:::-;;;;43929:212;;;;44149:57;;;;;;;;;;:::i;:::-;;;;;;;;43606:606;;;;:::o;19920:191::-;19994:16;20013:6;;;;;;;;;;;19994:25;;20039:8;20030:6;;:17;;;;;;;;;;;;;;;;;;20094:8;20063:40;;20084:8;20063:40;;;;;;;;;;;;19983:128;19920:191;:::o;47904:98::-;47969:27;47979:2;47983:8;47969:27;;;;;;;;;;;;:9;:27::i;:::-;47904:98;;:::o;53195:690::-;53332:4;53349:15;:2;:13;;;:15::i;:::-;53345:535;;;53404:2;53388:36;;;53425:12;:10;:12::i;:::-;53439:4;53445:7;53454:5;53388:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53375:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53636:1;53619:6;:13;:18;53615:215;;;53652:61;;;;;;;;;;:::i;:::-;;;;;;;;53615:215;53798:6;53792:13;53783:6;53779:2;53775:15;53768:38;53375:464;53520:45;;;53510:55;;;:6;:55;;;;53503:62;;;;;53345:535;53868:4;53861:11;;53195:690;;;;;;;:::o;14936:723::-;14992:13;15222:1;15213:5;:10;15209:53;;;15240:10;;;;;;;;;;;;;;;;;;;;;15209:53;15272:12;15287:5;15272:20;;15303:14;15328:78;15343:1;15335:4;:9;15328:78;;15361:8;;;;;:::i;:::-;;;;15392:2;15384:10;;;;;:::i;:::-;;;15328:78;;;15416:19;15448:6;15438:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15416:39;;15466:154;15482:1;15473:5;:10;15466:154;;15510:1;15500:11;;;;;:::i;:::-;;;15577:2;15569:5;:10;;;;:::i;:::-;15556:2;:24;;;;:::i;:::-;15543:39;;15526:6;15533;15526:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15606:2;15597:11;;;;;:::i;:::-;;;15466:154;;;15644:6;15630:21;;;;;14936:723;;;;:::o;32050:157::-;32135:4;32174:25;32159:40;;;:11;:40;;;;32152:47;;32050:157;;;:::o;54347:141::-;;;;;:::o;54874:140::-;;;;;:::o;48341:1272::-;48446:20;48469:12;;48446:35;;48510:1;48496:16;;:2;:16;;;;48488:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48687:21;48695:12;48687:7;:21::i;:::-;48686:22;48678:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48769:12;48757:8;:24;;48749:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48829:61;48859:1;48863:2;48867:12;48881:8;48829:21;:61::i;:::-;48899:30;48932:12;:16;48945:2;48932:16;;;;;;;;;;;;;;;48899:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48974:119;;;;;;;;49024:8;48994:11;:19;;;:39;;;;:::i;:::-;48974:119;;;;;;49077:8;49042:11;:24;;;:44;;;;:::i;:::-;48974:119;;;;;48955:12;:16;48968:2;48955:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49128:43;;;;;;;;49143:2;49128:43;;;;;;49154:15;49128:43;;;;;49100:11;:25;49112:12;49100:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49180:20;49203:12;49180:35;;49229:9;49224:281;49248:8;49244:1;:12;49224:281;;;49302:12;49298:2;49277:38;;49294:1;49277:38;;;;;;;;;;;;49342:59;49373:1;49377:2;49381:12;49395:5;49342:22;:59::i;:::-;49324:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49483:14;;;;;:::i;:::-;;;;49258:3;;;;;:::i;:::-;;;;49224:281;;;;49528:12;49513;:27;;;;49547:60;49576:1;49580:2;49584:12;49598:8;49547:20;:60::i;:::-;48439:1174;;;48341:1272;;;:::o;20938:387::-;20998:4;21206:12;21273:7;21261:20;21253:28;;21316:1;21309:4;:8;21302:15;;;20938: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:::-;21212:3;21233:67;21297:2;21292:3;21233:67;:::i;:::-;21226:74;;21309:93;21398:3;21309:93;:::i;:::-;21427:2;21422:3;21418:12;21411:19;;21070:366;;;:::o;21442:400::-;21602:3;21623:84;21705:1;21700:3;21623:84;:::i;:::-;21616:91;;21716:93;21805:3;21716:93;:::i;:::-;21834:1;21829:3;21825:11;21818:18;;21442:400;;;:::o;21848:118::-;21935:24;21953:5;21935:24;:::i;:::-;21930:3;21923:37;21848:118;;:::o;21972:961::-;22351:3;22373:92;22461:3;22452:6;22373:92;:::i;:::-;22366:99;;22482:148;22626:3;22482:148;:::i;:::-;22475:155;;22647:95;22738:3;22729:6;22647:95;:::i;:::-;22640:102;;22759:148;22903:3;22759:148;:::i;:::-;22752:155;;22924:3;22917:10;;21972:961;;;;;:::o;22939:222::-;23032:4;23070:2;23059:9;23055:18;23047:26;;23083:71;23151:1;23140:9;23136:17;23127:6;23083:71;:::i;:::-;22939:222;;;;:::o;23167:640::-;23362:4;23400:3;23389:9;23385:19;23377:27;;23414:71;23482:1;23471:9;23467:17;23458:6;23414:71;:::i;:::-;23495:72;23563:2;23552:9;23548:18;23539:6;23495:72;:::i;:::-;23577;23645:2;23634:9;23630:18;23621:6;23577:72;:::i;:::-;23696:9;23690:4;23686:20;23681:2;23670:9;23666:18;23659:48;23724:76;23795:4;23786:6;23724:76;:::i;:::-;23716:84;;23167:640;;;;;;;:::o;23813:332::-;23934:4;23972:2;23961:9;23957:18;23949:26;;23985:71;24053:1;24042:9;24038:17;24029:6;23985:71;:::i;:::-;24066:72;24134:2;24123:9;24119:18;24110:6;24066:72;:::i;:::-;23813:332;;;;;:::o;24151:210::-;24238:4;24276:2;24265:9;24261:18;24253:26;;24289:65;24351:1;24340:9;24336:17;24327:6;24289:65;:::i;:::-;24151:210;;;;:::o;24367:313::-;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:78;24668:4;24659:6;24595:78;:::i;:::-;24587:86;;24367:313;;;;:::o;24686:419::-;24852:4;24890:2;24879:9;24875:18;24867:26;;24939:9;24933:4;24929:20;24925:1;24914:9;24910:17;24903:47;24967:131;25093:4;24967:131;:::i;:::-;24959:139;;24686:419;;;:::o;25111:::-;25277:4;25315:2;25304:9;25300:18;25292:26;;25364:9;25358:4;25354:20;25350:1;25339:9;25335:17;25328:47;25392:131;25518:4;25392:131;:::i;:::-;25384:139;;25111:419;;;:::o;25536:::-;25702:4;25740:2;25729:9;25725:18;25717:26;;25789:9;25783:4;25779:20;25775:1;25764:9;25760:17;25753:47;25817:131;25943:4;25817:131;:::i;:::-;25809:139;;25536:419;;;:::o;25961:::-;26127:4;26165:2;26154:9;26150:18;26142:26;;26214:9;26208:4;26204:20;26200:1;26189:9;26185:17;26178:47;26242:131;26368:4;26242:131;:::i;:::-;26234:139;;25961:419;;;:::o;26386:::-;26552:4;26590:2;26579:9;26575:18;26567:26;;26639:9;26633:4;26629:20;26625:1;26614:9;26610:17;26603:47;26667:131;26793:4;26667:131;:::i;:::-;26659:139;;26386:419;;;:::o;26811:::-;26977:4;27015:2;27004:9;27000:18;26992:26;;27064:9;27058:4;27054:20;27050:1;27039:9;27035:17;27028:47;27092:131;27218:4;27092:131;:::i;:::-;27084:139;;26811:419;;;:::o;27236:::-;27402:4;27440:2;27429:9;27425:18;27417:26;;27489:9;27483:4;27479:20;27475:1;27464:9;27460:17;27453:47;27517:131;27643:4;27517:131;:::i;:::-;27509:139;;27236:419;;;:::o;27661:::-;27827:4;27865:2;27854:9;27850:18;27842:26;;27914:9;27908:4;27904:20;27900:1;27889:9;27885:17;27878:47;27942:131;28068:4;27942:131;:::i;:::-;27934:139;;27661:419;;;:::o;28086:::-;28252:4;28290:2;28279:9;28275:18;28267:26;;28339:9;28333:4;28329:20;28325:1;28314:9;28310:17;28303:47;28367:131;28493:4;28367:131;:::i;:::-;28359:139;;28086:419;;;:::o;28511:::-;28677:4;28715:2;28704:9;28700:18;28692:26;;28764:9;28758:4;28754:20;28750:1;28739:9;28735:17;28728:47;28792:131;28918:4;28792:131;:::i;:::-;28784:139;;28511:419;;;:::o;28936:::-;29102:4;29140:2;29129:9;29125:18;29117:26;;29189:9;29183:4;29179:20;29175:1;29164:9;29160:17;29153:47;29217:131;29343:4;29217:131;:::i;:::-;29209:139;;28936:419;;;:::o;29361:::-;29527:4;29565:2;29554:9;29550:18;29542:26;;29614:9;29608:4;29604:20;29600:1;29589:9;29585:17;29578:47;29642:131;29768:4;29642:131;:::i;:::-;29634:139;;29361:419;;;:::o;29786:::-;29952:4;29990:2;29979:9;29975:18;29967:26;;30039:9;30033:4;30029:20;30025:1;30014:9;30010:17;30003:47;30067:131;30193:4;30067:131;:::i;:::-;30059:139;;29786:419;;;:::o;30211:::-;30377:4;30415:2;30404:9;30400:18;30392:26;;30464:9;30458:4;30454:20;30450:1;30439:9;30435:17;30428:47;30492:131;30618:4;30492:131;:::i;:::-;30484:139;;30211:419;;;:::o;30636:::-;30802:4;30840:2;30829:9;30825:18;30817:26;;30889:9;30883:4;30879:20;30875:1;30864:9;30860:17;30853:47;30917:131;31043:4;30917:131;:::i;:::-;30909:139;;30636:419;;;:::o;31061:::-;31227:4;31265:2;31254:9;31250:18;31242:26;;31314:9;31308:4;31304:20;31300:1;31289:9;31285:17;31278:47;31342:131;31468:4;31342:131;:::i;:::-;31334:139;;31061:419;;;:::o;31486:::-;31652:4;31690:2;31679:9;31675:18;31667:26;;31739:9;31733:4;31729:20;31725:1;31714:9;31710:17;31703:47;31767:131;31893:4;31767:131;:::i;:::-;31759:139;;31486:419;;;:::o;31911:::-;32077:4;32115:2;32104:9;32100:18;32092:26;;32164:9;32158:4;32154:20;32150:1;32139:9;32135:17;32128:47;32192:131;32318:4;32192:131;:::i;:::-;32184:139;;31911:419;;;:::o;32336:::-;32502:4;32540:2;32529:9;32525:18;32517:26;;32589:9;32583:4;32579:20;32575:1;32564:9;32560:17;32553:47;32617:131;32743:4;32617:131;:::i;:::-;32609:139;;32336:419;;;:::o;32761:::-;32927:4;32965:2;32954:9;32950:18;32942:26;;33014:9;33008:4;33004:20;33000:1;32989:9;32985:17;32978:47;33042:131;33168:4;33042:131;:::i;:::-;33034:139;;32761:419;;;:::o;33186:::-;33352:4;33390:2;33379:9;33375:18;33367:26;;33439:9;33433:4;33429:20;33425:1;33414:9;33410:17;33403:47;33467:131;33593:4;33467:131;:::i;:::-;33459:139;;33186:419;;;:::o;33611:::-;33777:4;33815:2;33804:9;33800:18;33792:26;;33864:9;33858:4;33854:20;33850:1;33839:9;33835:17;33828:47;33892:131;34018:4;33892:131;:::i;:::-;33884:139;;33611:419;;;:::o;34036:::-;34202:4;34240:2;34229:9;34225:18;34217:26;;34289:9;34283:4;34279:20;34275:1;34264:9;34260:17;34253:47;34317:131;34443:4;34317:131;:::i;:::-;34309:139;;34036:419;;;:::o;34461:::-;34627:4;34665:2;34654:9;34650:18;34642:26;;34714:9;34708:4;34704:20;34700:1;34689:9;34685:17;34678:47;34742:131;34868:4;34742:131;:::i;:::-;34734:139;;34461:419;;;:::o;34886:::-;35052:4;35090:2;35079:9;35075:18;35067:26;;35139:9;35133:4;35129:20;35125:1;35114:9;35110:17;35103:47;35167:131;35293:4;35167:131;:::i;:::-;35159:139;;34886:419;;;:::o;35311:222::-;35404:4;35442:2;35431:9;35427:18;35419:26;;35455:71;35523:1;35512:9;35508:17;35499:6;35455:71;:::i;:::-;35311:222;;;;:::o;35539:129::-;35573:6;35600:20;;:::i;:::-;35590:30;;35629:33;35657:4;35649:6;35629:33;:::i;:::-;35539:129;;;:::o;35674:75::-;35707:6;35740:2;35734:9;35724:19;;35674:75;:::o;35755:307::-;35816:4;35906:18;35898:6;35895:30;35892:56;;;35928:18;;:::i;:::-;35892:56;35966:29;35988:6;35966:29;:::i;:::-;35958:37;;36050:4;36044;36040:15;36032:23;;35755:307;;;:::o;36068:308::-;36130:4;36220:18;36212:6;36209:30;36206:56;;;36242:18;;:::i;:::-;36206:56;36280:29;36302:6;36280:29;:::i;:::-;36272:37;;36364:4;36358;36354:15;36346:23;;36068:308;;;:::o;36382:141::-;36431:4;36454:3;36446:11;;36477:3;36474:1;36467:14;36511:4;36508:1;36498:18;36490:26;;36382:141;;;:::o;36529:98::-;36580:6;36614:5;36608:12;36598:22;;36529:98;;;:::o;36633:99::-;36685:6;36719:5;36713:12;36703:22;;36633:99;;;:::o;36738:168::-;36821:11;36855:6;36850:3;36843:19;36895:4;36890:3;36886:14;36871:29;;36738:168;;;;:::o;36912:169::-;36996:11;37030:6;37025:3;37018:19;37070:4;37065:3;37061:14;37046:29;;36912:169;;;;:::o;37087:148::-;37189:11;37226:3;37211:18;;37087:148;;;;:::o;37241:273::-;37281:3;37300:20;37318:1;37300:20;:::i;:::-;37295:25;;37334:20;37352:1;37334:20;:::i;:::-;37329:25;;37456:1;37420:34;37416:42;37413:1;37410:49;37407:75;;;37462:18;;:::i;:::-;37407:75;37506:1;37503;37499:9;37492:16;;37241:273;;;;:::o;37520:305::-;37560:3;37579:20;37597:1;37579:20;:::i;:::-;37574:25;;37613:20;37631:1;37613:20;:::i;:::-;37608:25;;37767:1;37699:66;37695:74;37692:1;37689:81;37686:107;;;37773:18;;:::i;:::-;37686:107;37817:1;37814;37810:9;37803:16;;37520:305;;;;:::o;37831:185::-;37871:1;37888:20;37906:1;37888:20;:::i;:::-;37883:25;;37922:20;37940:1;37922:20;:::i;:::-;37917:25;;37961:1;37951:35;;37966:18;;:::i;:::-;37951:35;38008:1;38005;38001:9;37996:14;;37831:185;;;;:::o;38022:348::-;38062:7;38085:20;38103:1;38085:20;:::i;:::-;38080:25;;38119:20;38137:1;38119:20;:::i;:::-;38114:25;;38307:1;38239:66;38235:74;38232:1;38229:81;38224:1;38217:9;38210:17;38206:105;38203:131;;;38314:18;;:::i;:::-;38203:131;38362:1;38359;38355:9;38344:20;;38022:348;;;;:::o;38376:191::-;38416:4;38436:20;38454:1;38436:20;:::i;:::-;38431:25;;38470:20;38488:1;38470:20;:::i;:::-;38465:25;;38509:1;38506;38503:8;38500:34;;;38514:18;;:::i;:::-;38500:34;38559:1;38556;38552:9;38544:17;;38376:191;;;;:::o;38573:::-;38613:4;38633:20;38651:1;38633:20;:::i;:::-;38628:25;;38667:20;38685:1;38667:20;:::i;:::-;38662:25;;38706:1;38703;38700:8;38697:34;;;38711:18;;:::i;:::-;38697:34;38756:1;38753;38749:9;38741:17;;38573:191;;;;:::o;38770:96::-;38807:7;38836:24;38854:5;38836:24;:::i;:::-;38825:35;;38770:96;;;:::o;38872:90::-;38906:7;38949:5;38942:13;38935:21;38924:32;;38872:90;;;:::o;38968:149::-;39004:7;39044:66;39037:5;39033:78;39022:89;;38968:149;;;:::o;39123:110::-;39174:7;39203:24;39221:5;39203:24;:::i;:::-;39192:35;;39123:110;;;:::o;39239:118::-;39276:7;39316:34;39309:5;39305:46;39294:57;;39239:118;;;:::o;39363:126::-;39400:7;39440:42;39433:5;39429:54;39418:65;;39363:126;;;:::o;39495:77::-;39532:7;39561:5;39550:16;;39495:77;;;:::o;39578:154::-;39662:6;39657:3;39652;39639:30;39724:1;39715:6;39710:3;39706:16;39699:27;39578:154;;;:::o;39738:307::-;39806:1;39816:113;39830:6;39827:1;39824:13;39816:113;;;39915:1;39910:3;39906:11;39900:18;39896:1;39891:3;39887:11;39880:39;39852:2;39849:1;39845:10;39840:15;;39816:113;;;39947:6;39944:1;39941:13;39938:101;;;40027:1;40018:6;40013:3;40009:16;40002:27;39938:101;39787:258;39738:307;;;:::o;40051:171::-;40090:3;40113:24;40131:5;40113:24;:::i;:::-;40104:33;;40159:4;40152:5;40149:15;40146:41;;;40167:18;;:::i;:::-;40146:41;40214:1;40207:5;40203:13;40196:20;;40051:171;;;:::o;40228:320::-;40272:6;40309:1;40303:4;40299:12;40289:22;;40356:1;40350:4;40346:12;40377:18;40367:81;;40433:4;40425:6;40421:17;40411:27;;40367:81;40495:2;40487:6;40484:14;40464:18;40461:38;40458:84;;;40514:18;;:::i;:::-;40458:84;40279:269;40228:320;;;:::o;40554:281::-;40637:27;40659:4;40637:27;:::i;:::-;40629:6;40625:40;40767:6;40755:10;40752:22;40731:18;40719:10;40716:34;40713:62;40710:88;;;40778:18;;:::i;:::-;40710:88;40818:10;40814:2;40807:22;40597:238;40554:281;;:::o;40841:233::-;40880:3;40903:24;40921:5;40903:24;:::i;:::-;40894:33;;40949:66;40942:5;40939:77;40936:103;;;41019:18;;:::i;:::-;40936:103;41066:1;41059:5;41055:13;41048:20;;40841:233;;;:::o;41080:176::-;41112:1;41129:20;41147:1;41129:20;:::i;:::-;41124:25;;41163:20;41181:1;41163:20;:::i;:::-;41158:25;;41202:1;41192:35;;41207:18;;:::i;:::-;41192:35;41248:1;41245;41241:9;41236:14;;41080:176;;;;:::o;41262:180::-;41310:77;41307:1;41300:88;41407:4;41404:1;41397:15;41431:4;41428:1;41421:15;41448:180;41496:77;41493:1;41486:88;41593:4;41590:1;41583:15;41617:4;41614:1;41607:15;41634:180;41682:77;41679:1;41672:88;41779:4;41776:1;41769:15;41803:4;41800:1;41793:15;41820:180;41868:77;41865:1;41858:88;41965:4;41962:1;41955:15;41989:4;41986:1;41979:15;42006:180;42054:77;42051:1;42044:88;42151:4;42148:1;42141:15;42175:4;42172:1;42165:15;42192:117;42301:1;42298;42291:12;42315:117;42424:1;42421;42414:12;42438:117;42547:1;42544;42537:12;42561:117;42670:1;42667;42660:12;42684:102;42725:6;42776:2;42772:7;42767:2;42760:5;42756:14;42752:28;42742:38;;42684:102;;;:::o;42792:221::-;42932:34;42928:1;42920:6;42916:14;42909:58;43001:4;42996:2;42988:6;42984:15;42977:29;42792:221;:::o;43019:225::-;43159:34;43155:1;43147:6;43143:14;43136:58;43228:8;43223:2;43215:6;43211:15;43204:33;43019:225;:::o;43250:229::-;43390:34;43386:1;43378:6;43374:14;43367:58;43459:12;43454:2;43446:6;43442:15;43435:37;43250:229;:::o;43485:222::-;43625:34;43621:1;43613:6;43609:14;43602:58;43694:5;43689:2;43681:6;43677:15;43670:30;43485:222;:::o;43713:221::-;43853:34;43849:1;43841:6;43837:14;43830:58;43922:4;43917:2;43909:6;43905:15;43898:29;43713:221;:::o;43940:224::-;44080:34;44076:1;44068:6;44064:14;44057:58;44149:7;44144:2;44136:6;44132:15;44125:32;43940:224;:::o;44170:221::-;44310:34;44306:1;44298:6;44294:14;44287:58;44379:4;44374:2;44366:6;44362:15;44355:29;44170:221;:::o;44397:167::-;44537:19;44533:1;44525:6;44521:14;44514:43;44397:167;:::o;44570:244::-;44710:34;44706:1;44698:6;44694:14;44687:58;44779:27;44774:2;44766:6;44762:15;44755:52;44570:244;:::o;44820:230::-;44960:34;44956:1;44948:6;44944:14;44937:58;45029:13;45024:2;45016:6;45012:15;45005:38;44820:230;:::o;45056:225::-;45196:34;45192:1;45184:6;45180:14;45173:58;45265:8;45260:2;45252:6;45248:15;45241:33;45056:225;:::o;45287:155::-;45427:7;45423:1;45415:6;45411:14;45404:31;45287:155;:::o;45448:182::-;45588:34;45584:1;45576:6;45572:14;45565:58;45448:182;:::o;45636:176::-;45776:28;45772:1;45764:6;45760:14;45753:52;45636:176;:::o;45818:237::-;45958:34;45954:1;45946:6;45942:14;45935:58;46027:20;46022:2;46014:6;46010:15;46003:45;45818:237;:::o;46061:221::-;46201:34;46197:1;46189:6;46185:14;46178:58;46270:4;46265:2;46257:6;46253:15;46246:29;46061:221;:::o;46288:238::-;46428:34;46424:1;46416:6;46412:14;46405:58;46497:21;46492:2;46484:6;46480:15;46473:46;46288:238;:::o;46532:179::-;46672:31;46668:1;46660:6;46656:14;46649:55;46532:179;:::o;46717:220::-;46857:34;46853:1;46845:6;46841:14;46834:58;46926:3;46921:2;46913:6;46909:15;46902:28;46717:220;:::o;46943:174::-;47083:26;47079:1;47071:6;47067:14;47060:50;46943:174;:::o;47123:233::-;47263:34;47259:1;47251:6;47247:14;47240:58;47332:16;47327:2;47319:6;47315:15;47308:41;47123:233;:::o;47362:181::-;47502:33;47498:1;47490:6;47486:14;47479:57;47362:181;:::o;47549:234::-;47689:34;47685:1;47677:6;47673:14;47666:58;47758:17;47753:2;47745:6;47741:15;47734:42;47549:234;:::o;47789:173::-;47929:25;47925:1;47917:6;47913:14;47906:49;47789:173;:::o;47968:232::-;48108:34;48104:1;48096:6;48092:14;48085:58;48177:15;48172:2;48164:6;48160:15;48153:40;47968:232;:::o;48206:221::-;48346:34;48342:1;48334:6;48330:14;48323:58;48415:4;48410:2;48402:6;48398:15;48391:29;48206:221;:::o;48433:151::-;48573:3;48569:1;48561:6;48557:14;48550:27;48433:151;:::o;48590:122::-;48663:24;48681:5;48663:24;:::i;:::-;48656:5;48653:35;48643:63;;48702:1;48699;48692:12;48643:63;48590:122;:::o;48718:116::-;48788:21;48803:5;48788:21;:::i;:::-;48781:5;48778:32;48768:60;;48824:1;48821;48814:12;48768:60;48718:116;:::o;48840:120::-;48912:23;48929:5;48912:23;:::i;:::-;48905:5;48902:34;48892:62;;48950:1;48947;48940:12;48892:62;48840:120;:::o;48966:150::-;49053:38;49085:5;49053:38;:::i;:::-;49046:5;49043:49;49033:77;;49106:1;49103;49096:12;49033:77;48966:150;:::o;49122:122::-;49195:24;49213:5;49195:24;:::i;:::-;49188:5;49185:35;49175:63;;49234:1;49231;49224:12;49175:63;49122:122;:::o

Swarm Source

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