ETH Price: $2,307.75 (-0.41%)

Neo Tokyo (BRICK)
 

Overview

TokenID

8

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
GTFU

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

/**
 *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 = 1;

  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/RPCtesting.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 GTFU is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://random";
    address private openSeaProxyRegistryAddress = 0x0000000000000000000000000000000000000000;
    bool private isOpenSeaProxyActive = true;

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

    uint256 public constant PUBLIC_SALE_PRICE = 0.01 ether;
    uint256 public NUM_FREE_MINTS = 555;
    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 freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



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


    constructor(
    ) ERC721A("Neo Tokyo", "BRICK", 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);
    }



    //A simple free mint function to avoid confusion
    function freeMint()
        external
        nonReentrant
        publicSaleActive
        canMintNFTs(1)
        maxMintsPerTX(1)
        freeMintsAvailable()
    {
        _safeMint(msg.sender, 1);
    }




    // ============ 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 to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

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

    function setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


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

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



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

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

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

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

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

        return super.isApprovedForAll(owner, operator);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+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":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60c0604052600160005560006007556040518060400160405280600d81526020017f697066733a2f2f72616e646f6d00000000000000000000000000000000000000815250600b90805190602001906200005b9291906200032d565b506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506115b3600d5561022b600e556001600f60006101000a81548160ff021916908315150217905550348015620000ed57600080fd5b506040518060400160405280600981526020017f4e656f20546f6b796f00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f425249434b0000000000000000000000000000000000000000000000000000008152506064600d5460008111620001a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019c906200044d565b60405180910390fd5b60008211620001eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e2906200042b565b60405180910390fd5b8360019080519060200190620002039291906200032d565b5082600290805190602001906200021c9291906200032d565b508160a0818152505080608081815250505050505062000251620002456200025f60201b60201c565b6200026760201b60201c565b600160098190555062000583565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033b9062000480565b90600052602060002090601f0160209004810192826200035f5760008555620003ab565b82601f106200037a57805160ff1916838001178555620003ab565b82800160010185558215620003ab579182015b82811115620003aa5782518255916020019190600101906200038d565b5b509050620003ba9190620003be565b5090565b5b80821115620003d9576000816000905550600101620003bf565b5090565b6000620003ec6027836200046f565b9150620003f982620004e5565b604082019050919050565b600062000413602e836200046f565b9150620004208262000534565b604082019050919050565b600060208201905081810360008301526200044681620003dd565b9050919050565b60006020820190508181036000830152620004688162000404565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049957607f821691505b60208210811415620004b057620004af620004b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614e42620005b4600039600081816125c3015281816125ec0152612cfb015260005050614e426000f3fe6080604052600436106102045760003560e01c80635b70ea9f11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610747578063d7224ba014610772578063e43082f71461079d578063e985e9c5146107c6578063f2fde38b1461080357610204565b8063a22cb4651461068d578063b88d4fde146106b6578063c6a91b42146106df578063c87b56dd1461070a57610204565b8063715018a6116100e7578063715018a6146105d95780638da5cb5b146105f057806395d89b411461061b578063982d669e14610646578063a0712d681461067157610204565b80635b70ea9f1461051d5780636352211e1461053457806370a0823114610571578063714c5398146105ae57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461044e57806342842e0e1461046557806349df728c1461048e5780634f6ccce7146104b757806355f804b3146104f457610204565b806323b872dd1461038157806328cad13d146103aa5780632a55205a146103d35780632f745c591461041157610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630a00ae831461030257806318160ddd1461032b5780631e84c4131461035657610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906135c3565b61082c565b60405161023d9190613d47565b60405180910390f35b34801561025257600080fd5b5061025b6108a6565b6040516102689190613d62565b60405180910390f35b34801561027d57600080fd5b50610286610938565b60405161029391906140c4565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906136c0565b610943565b6040516102d09190613cb7565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613529565b6109c8565b005b34801561030e57600080fd5b50610329600480360381019061032491906136c0565b610ae1565b005b34801561033757600080fd5b50610340610b67565b60405161034d91906140c4565b60405180910390f35b34801561036257600080fd5b5061036b610b70565b6040516103789190613d47565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613413565b610b83565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613569565b610b93565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061371a565b610c2c565b604051610408929190613d1e565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613529565b610c98565b60405161044591906140c4565b60405180910390f35b34801561045a57600080fd5b50610463610e96565b005b34801561047157600080fd5b5061048c60048036038101906104879190613413565b610f61565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061361d565b610f81565b005b3480156104c357600080fd5b506104de60048036038101906104d991906136c0565b61111c565b6040516104eb91906140c4565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613677565b61116f565b005b34801561052957600080fd5b50610532611205565b005b34801561054057600080fd5b5061055b600480360381019061055691906136c0565b6113a4565b6040516105689190613cb7565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906133a6565b6113ba565b6040516105a591906140c4565b60405180910390f35b3480156105ba57600080fd5b506105c36114a3565b6040516105d09190613d62565b60405180910390f35b3480156105e557600080fd5b506105ee611535565b005b3480156105fc57600080fd5b506106056115bd565b6040516106129190613cb7565b60405180910390f35b34801561062757600080fd5b506106306115e7565b60405161063d9190613d62565b60405180910390f35b34801561065257600080fd5b5061065b611679565b60405161066891906140c4565b60405180910390f35b61068b600480360381019061068691906136c0565b61167f565b005b34801561069957600080fd5b506106b460048036038101906106af91906134e9565b61183a565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613466565b6119bb565b005b3480156106eb57600080fd5b506106f4611a17565b60405161070191906140c4565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906136c0565b611a1c565b60405161073e9190613d62565b60405180910390f35b34801561075357600080fd5b5061075c611aa4565b60405161076991906140c4565b60405180910390f35b34801561077e57600080fd5b50610787611aaa565b60405161079491906140c4565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613569565b611ab0565b005b3480156107d257600080fd5b506107ed60048036038101906107e891906133d3565b611b49565b6040516107fa9190613d47565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906133a6565b611c63565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089f575061089e82611d5b565b5b9050919050565b6060600180546108b59061446d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e19061446d565b801561092e5780601f106109035761010080835404028352916020019161092e565b820191906000526020600020905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b662386f26fc1000081565b600061094e82611ea5565b61098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614084565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d3826113a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613f44565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480610a925750610a9181610a8c611eb2565b611b49565b5b610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613e84565b60405180910390fd5b610adc838383611eba565b505050565b610ae9611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610b076115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490613ee4565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610b8e838383611f6c565b505050565b610b9b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610bb96115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690613ee4565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c3884611ea5565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613e64565b60405180910390fd5b30610c8d610c86856005612525565b606461253b565b915091509250929050565b6000610ca3836113ba565b8210610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613d84565b60405180910390fd5b6000610cee610b67565b905060008060005b83811015610e54576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610de857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e405786841415610e31578195505050505050610e90565b8380610e3c906144d0565b9450505b508080610e4c906144d0565b915050610cf6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790614004565b60405180910390fd5b92915050565b610e9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613ee4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5d573d6000803e3d6000fd5b5050565b610f7c838383604051806020016040528060008152506119bb565b505050565b610f89611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610fa76115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490613ee4565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110389190613cb7565b60206040518083038186803b15801561105057600080fd5b505afa158015611064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108891906136ed565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110c5929190613d1e565b602060405180830381600087803b1580156110df57600080fd5b505af11580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111179190613596565b505050565b6000611126610b67565b8210611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90613de4565b60405180910390fd5b819050919050565b611177611eb2565b73ffffffffffffffffffffffffffffffffffffffff166111956115bd565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613ee4565b60405180910390fd5b80600b908051906020019061120192919061312c565b5050565b6002600954141561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614024565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff166112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614064565b60405180910390fd5b6001600d54816112b0610b67565b6112ba9190614204565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613e04565b60405180910390fd5b60016014811115611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613e44565b60405180910390fd5b600e5461134c610b67565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613fc4565b60405180910390fd5b611398336001612551565b50506001600981905550565b60006113af8261256f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613ea4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546114b29061446d565b80601f01602080910402602001604051908101604052809291908181526020018280546114de9061446d565b801561152b5780601f106115005761010080835404028352916020019161152b565b820191906000526020600020905b81548152906001019060200180831161150e57829003601f168201915b5050505050905090565b61153d611eb2565b73ffffffffffffffffffffffffffffffffffffffff1661155b6115bd565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613ee4565b60405180910390fd5b6115bb6000612772565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115f69061446d565b80601f01602080910402602001604051908101604052809291908181526020018280546116229061446d565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b600e5481565b600260095414156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90614024565b60405180910390fd5b6002600981905550662386f26fc1000081600e546116e1610b67565b1115611735573481836116f4919061428b565b14611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613fe4565b60405180910390fd5b5b600f60009054906101000a900460ff16611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90614064565b60405180910390fd5b82600d5481611791610b67565b61179b9190614204565b11156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390613e04565b60405180910390fd5b836014811115611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890613e44565b60405180910390fd5b61182b3386612551565b50505050600160098190555050565b611842611eb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790613f04565b60405180910390fd5b80600660006118bd611eb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196a611eb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119af9190613d47565b60405180910390a35050565b6119c6848484611f6c565b6119d284848484612838565b611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890613f64565b60405180910390fd5b50505050565b601481565b6060611a2782611ea5565b611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90613e64565b60405180910390fd5b600b611a7d600184611a789190614204565b6129cf565b604051602001611a8e929190613c7d565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611ab8611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611ad66115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613ee4565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611c4057508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bd89190613cb7565b60206040518083038186803b158015611bf057600080fd5b505afa158015611c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c28919061364a565b73ffffffffffffffffffffffffffffffffffffffff16145b15611c4f576001915050611c5d565b611c598484612b30565b9150505b92915050565b611c6b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611c896115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690613ee4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613da4565b60405180910390fd5b611d5881612772565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e8e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e9e5750611e9d82612bc4565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f778261256f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480611ffa5750611fc3611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611fe284610943565b73ffffffffffffffffffffffffffffffffffffffff16145b8061201657506120158260000151612010611eb2565b611b49565b5b905080612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90613f24565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190613ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190613e24565b60405180910390fd5b6121478585856001612c2e565b6121576000848460000151611eba565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121c591906142e5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661226991906141be565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461236f9190614204565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124b5576123e581611ea5565b156124b4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251d8686866001612c34565b505050505050565b60008183612533919061428b565b905092915050565b60008183612549919061425a565b905092915050565b61256b828260405180602001604052806000815250612c3a565b5050565b6125776131b2565b61258082611ea5565b6125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690613dc4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126235760017f0000000000000000000000000000000000000000000000000000000000000000846126169190614319565b6126209190614204565b90505b60008390505b818110612731576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271d5780935050505061276d565b50808061272990614443565b915050612629565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490614044565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128598473ffffffffffffffffffffffffffffffffffffffff16613119565b156129c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612882611eb2565b8786866040518563ffffffff1660e01b81526004016128a49493929190613cd2565b602060405180830381600087803b1580156128be57600080fd5b505af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec91906135f0565b60015b612972573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b5060008151141561296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190613f64565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c7565b600190505b949350505050565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b2b565b600082905060005b60008214612a49578080612a32906144d0565b915050600a82612a42919061425a565b9150612a1f565b60008167ffffffffffffffff811115612a6557612a64614606565b5b6040519080825280601f01601f191660200182016040528015612a975781602001600182028036833780820191505090505b5090505b60008514612b2457600182612ab09190614319565b9150600a85612abf9190614519565b6030612acb9190614204565b60f81b818381518110612ae157612ae06145d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1d919061425a565b9450612a9b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790613fa4565b60405180910390fd5b612cb981611ea5565b15612cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf090613f84565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d53906140a4565b60405180910390fd5b612d696000858386612c2e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612e6691906141be565b6fffffffffffffffffffffffffffffffff168152602001858360200151612e8d91906141be565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156130fc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461309c6000888488612838565b6130db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d290613f64565b60405180910390fd5b81806130e6906144d0565b92505080806130f4906144d0565b91505061302b565b50806000819055506131116000878588612c34565b505050505050565b600080823b905060008111915050919050565b8280546131389061446d565b90600052602060002090601f01602090048101928261315a57600085556131a1565b82601f1061317357805160ff19168380011785556131a1565b828001600101855582156131a1579182015b828111156131a0578251825591602001919060010190613185565b5b5090506131ae91906131ec565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132055760008160009055506001016131ed565b5090565b600061321c61321784614104565b6140df565b9050828152602081018484840111156132385761323761463a565b5b613243848285614401565b509392505050565b600061325e61325984614135565b6140df565b90508281526020810184848401111561327a5761327961463a565b5b613285848285614401565b509392505050565b60008135905061329c81614d82565b92915050565b6000813590506132b181614d99565b92915050565b6000815190506132c681614d99565b92915050565b6000813590506132db81614db0565b92915050565b6000815190506132f081614db0565b92915050565b600082601f83011261330b5761330a614635565b5b813561331b848260208601613209565b91505092915050565b60008135905061333381614dc7565b92915050565b60008151905061334881614dde565b92915050565b600082601f83011261336357613362614635565b5b813561337384826020860161324b565b91505092915050565b60008135905061338b81614df5565b92915050565b6000815190506133a081614df5565b92915050565b6000602082840312156133bc576133bb614644565b5b60006133ca8482850161328d565b91505092915050565b600080604083850312156133ea576133e9614644565b5b60006133f88582860161328d565b92505060206134098582860161328d565b9150509250929050565b60008060006060848603121561342c5761342b614644565b5b600061343a8682870161328d565b935050602061344b8682870161328d565b925050604061345c8682870161337c565b9150509250925092565b600080600080608085870312156134805761347f614644565b5b600061348e8782880161328d565b945050602061349f8782880161328d565b93505060406134b08782880161337c565b925050606085013567ffffffffffffffff8111156134d1576134d061463f565b5b6134dd878288016132f6565b91505092959194509250565b60008060408385031215613500576134ff614644565b5b600061350e8582860161328d565b925050602061351f858286016132a2565b9150509250929050565b600080604083850312156135405761353f614644565b5b600061354e8582860161328d565b925050602061355f8582860161337c565b9150509250929050565b60006020828403121561357f5761357e614644565b5b600061358d848285016132a2565b91505092915050565b6000602082840312156135ac576135ab614644565b5b60006135ba848285016132b7565b91505092915050565b6000602082840312156135d9576135d8614644565b5b60006135e7848285016132cc565b91505092915050565b60006020828403121561360657613605614644565b5b6000613614848285016132e1565b91505092915050565b60006020828403121561363357613632614644565b5b600061364184828501613324565b91505092915050565b6000602082840312156136605761365f614644565b5b600061366e84828501613339565b91505092915050565b60006020828403121561368d5761368c614644565b5b600082013567ffffffffffffffff8111156136ab576136aa61463f565b5b6136b78482850161334e565b91505092915050565b6000602082840312156136d6576136d5614644565b5b60006136e48482850161337c565b91505092915050565b60006020828403121561370357613702614644565b5b600061371184828501613391565b91505092915050565b6000806040838503121561373157613730614644565b5b600061373f8582860161337c565b92505060206137508582860161337c565b9150509250929050565b6137638161434d565b82525050565b6137728161435f565b82525050565b60006137838261417b565b61378d8185614191565b935061379d818560208601614410565b6137a681614649565b840191505092915050565b60006137bc82614186565b6137c681856141a2565b93506137d6818560208601614410565b6137df81614649565b840191505092915050565b60006137f582614186565b6137ff81856141b3565b935061380f818560208601614410565b80840191505092915050565b600081546138288161446d565b61383281866141b3565b9450600182166000811461384d576001811461385e57613891565b60ff19831686528186019350613891565b61386785614166565b60005b838110156138895781548189015260018201915060208101905061386a565b838801955050505b50505092915050565b60006138a76022836141a2565b91506138b28261465a565b604082019050919050565b60006138ca6026836141a2565b91506138d5826146a9565b604082019050919050565b60006138ed602a836141a2565b91506138f8826146f8565b604082019050919050565b60006139106023836141a2565b915061391b82614747565b604082019050919050565b60006139336022836141a2565b915061393e82614796565b604082019050919050565b60006139566025836141a2565b9150613961826147e5565b604082019050919050565b60006139796022836141a2565b915061398482614834565b604082019050919050565b600061399c6011836141a2565b91506139a782614883565b602082019050919050565b60006139bf6039836141a2565b91506139ca826148ac565b604082019050919050565b60006139e2602b836141a2565b91506139ed826148fb565b604082019050919050565b6000613a056026836141a2565b9150613a108261494a565b604082019050919050565b6000613a286005836141b3565b9150613a3382614999565b600582019050919050565b6000613a4b6020836141a2565b9150613a56826149c2565b602082019050919050565b6000613a6e601a836141a2565b9150613a79826149eb565b602082019050919050565b6000613a916032836141a2565b9150613a9c82614a14565b604082019050919050565b6000613ab46022836141a2565b9150613abf82614a63565b604082019050919050565b6000613ad76033836141a2565b9150613ae282614ab2565b604082019050919050565b6000613afa601d836141a2565b9150613b0582614b01565b602082019050919050565b6000613b1d6021836141a2565b9150613b2882614b2a565b604082019050919050565b6000613b40601c836141a2565b9150613b4b82614b79565b602082019050919050565b6000613b636018836141a2565b9150613b6e82614ba2565b602082019050919050565b6000613b86602e836141a2565b9150613b9182614bcb565b604082019050919050565b6000613ba9601f836141a2565b9150613bb482614c1a565b602082019050919050565b6000613bcc602f836141a2565b9150613bd782614c43565b604082019050919050565b6000613bef6017836141a2565b9150613bfa82614c92565b602082019050919050565b6000613c12602d836141a2565b9150613c1d82614cbb565b604082019050919050565b6000613c356022836141a2565b9150613c4082614d0a565b604082019050919050565b6000613c586001836141b3565b9150613c6382614d59565b600182019050919050565b613c77816143f7565b82525050565b6000613c89828561381b565b9150613c9482613c4b565b9150613ca082846137ea565b9150613cab82613a1b565b91508190509392505050565b6000602082019050613ccc600083018461375a565b92915050565b6000608082019050613ce7600083018761375a565b613cf4602083018661375a565b613d016040830185613c6e565b8181036060830152613d138184613778565b905095945050505050565b6000604082019050613d33600083018561375a565b613d406020830184613c6e565b9392505050565b6000602082019050613d5c6000830184613769565b92915050565b60006020820190508181036000830152613d7c81846137b1565b905092915050565b60006020820190508181036000830152613d9d8161389a565b9050919050565b60006020820190508181036000830152613dbd816138bd565b9050919050565b60006020820190508181036000830152613ddd816138e0565b9050919050565b60006020820190508181036000830152613dfd81613903565b9050919050565b60006020820190508181036000830152613e1d81613926565b9050919050565b60006020820190508181036000830152613e3d81613949565b9050919050565b60006020820190508181036000830152613e5d8161396c565b9050919050565b60006020820190508181036000830152613e7d8161398f565b9050919050565b60006020820190508181036000830152613e9d816139b2565b9050919050565b60006020820190508181036000830152613ebd816139d5565b9050919050565b60006020820190508181036000830152613edd816139f8565b9050919050565b60006020820190508181036000830152613efd81613a3e565b9050919050565b60006020820190508181036000830152613f1d81613a61565b9050919050565b60006020820190508181036000830152613f3d81613a84565b9050919050565b60006020820190508181036000830152613f5d81613aa7565b9050919050565b60006020820190508181036000830152613f7d81613aca565b9050919050565b60006020820190508181036000830152613f9d81613aed565b9050919050565b60006020820190508181036000830152613fbd81613b10565b9050919050565b60006020820190508181036000830152613fdd81613b33565b9050919050565b60006020820190508181036000830152613ffd81613b56565b9050919050565b6000602082019050818103600083015261401d81613b79565b9050919050565b6000602082019050818103600083015261403d81613b9c565b9050919050565b6000602082019050818103600083015261405d81613bbf565b9050919050565b6000602082019050818103600083015261407d81613be2565b9050919050565b6000602082019050818103600083015261409d81613c05565b9050919050565b600060208201905081810360008301526140bd81613c28565b9050919050565b60006020820190506140d96000830184613c6e565b92915050565b60006140e96140fa565b90506140f5828261449f565b919050565b6000604051905090565b600067ffffffffffffffff82111561411f5761411e614606565b5b61412882614649565b9050602081019050919050565b600067ffffffffffffffff8211156141505761414f614606565b5b61415982614649565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141c9826143bb565b91506141d4836143bb565b9250826fffffffffffffffffffffffffffffffff038211156141f9576141f861454a565b5b828201905092915050565b600061420f826143f7565b915061421a836143f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561424f5761424e61454a565b5b828201905092915050565b6000614265826143f7565b9150614270836143f7565b9250826142805761427f614579565b5b828204905092915050565b6000614296826143f7565b91506142a1836143f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142da576142d961454a565b5b828202905092915050565b60006142f0826143bb565b91506142fb836143bb565b92508282101561430e5761430d61454a565b5b828203905092915050565b6000614324826143f7565b915061432f836143f7565b9250828210156143425761434161454a565b5b828203905092915050565b6000614358826143d7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006143a28261434d565b9050919050565b60006143b48261434d565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561442e578082015181840152602081019050614413565b8381111561443d576000848401525b50505050565b600061444e826143f7565b915060008214156144625761446161454a565b5b600182039050919050565b6000600282049050600182168061448557607f821691505b60208210811415614499576144986145a8565b5b50919050565b6144a882614649565b810181811067ffffffffffffffff821117156144c7576144c6614606565b5b80604052505050565b60006144db826143f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561450e5761450d61454a565b5b600182019050919050565b6000614524826143f7565b915061452f836143f7565b92508261453f5761453e614579565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614d8b8161434d565b8114614d9657600080fd5b50565b614da28161435f565b8114614dad57600080fd5b50565b614db98161436b565b8114614dc457600080fd5b50565b614dd081614397565b8114614ddb57600080fd5b50565b614de7816143a9565b8114614df257600080fd5b50565b614dfe816143f7565b8114614e0957600080fd5b5056fea26469706673582212201a49510bc290a5bed646862fa7632027b33a32695bc02d25eb1b08b1df2f178764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635b70ea9f11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610747578063d7224ba014610772578063e43082f71461079d578063e985e9c5146107c6578063f2fde38b1461080357610204565b8063a22cb4651461068d578063b88d4fde146106b6578063c6a91b42146106df578063c87b56dd1461070a57610204565b8063715018a6116100e7578063715018a6146105d95780638da5cb5b146105f057806395d89b411461061b578063982d669e14610646578063a0712d681461067157610204565b80635b70ea9f1461051d5780636352211e1461053457806370a0823114610571578063714c5398146105ae57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461044e57806342842e0e1461046557806349df728c1461048e5780634f6ccce7146104b757806355f804b3146104f457610204565b806323b872dd1461038157806328cad13d146103aa5780632a55205a146103d35780632f745c591461041157610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630a00ae831461030257806318160ddd1461032b5780631e84c4131461035657610204565b806301ffc9a71461020957806306fdde031461024657806307e89ec014610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906135c3565b61082c565b60405161023d9190613d47565b60405180910390f35b34801561025257600080fd5b5061025b6108a6565b6040516102689190613d62565b60405180910390f35b34801561027d57600080fd5b50610286610938565b60405161029391906140c4565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906136c0565b610943565b6040516102d09190613cb7565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613529565b6109c8565b005b34801561030e57600080fd5b50610329600480360381019061032491906136c0565b610ae1565b005b34801561033757600080fd5b50610340610b67565b60405161034d91906140c4565b60405180910390f35b34801561036257600080fd5b5061036b610b70565b6040516103789190613d47565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613413565b610b83565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613569565b610b93565b005b3480156103df57600080fd5b506103fa60048036038101906103f5919061371a565b610c2c565b604051610408929190613d1e565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613529565b610c98565b60405161044591906140c4565b60405180910390f35b34801561045a57600080fd5b50610463610e96565b005b34801561047157600080fd5b5061048c60048036038101906104879190613413565b610f61565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061361d565b610f81565b005b3480156104c357600080fd5b506104de60048036038101906104d991906136c0565b61111c565b6040516104eb91906140c4565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613677565b61116f565b005b34801561052957600080fd5b50610532611205565b005b34801561054057600080fd5b5061055b600480360381019061055691906136c0565b6113a4565b6040516105689190613cb7565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906133a6565b6113ba565b6040516105a591906140c4565b60405180910390f35b3480156105ba57600080fd5b506105c36114a3565b6040516105d09190613d62565b60405180910390f35b3480156105e557600080fd5b506105ee611535565b005b3480156105fc57600080fd5b506106056115bd565b6040516106129190613cb7565b60405180910390f35b34801561062757600080fd5b506106306115e7565b60405161063d9190613d62565b60405180910390f35b34801561065257600080fd5b5061065b611679565b60405161066891906140c4565b60405180910390f35b61068b600480360381019061068691906136c0565b61167f565b005b34801561069957600080fd5b506106b460048036038101906106af91906134e9565b61183a565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613466565b6119bb565b005b3480156106eb57600080fd5b506106f4611a17565b60405161070191906140c4565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906136c0565b611a1c565b60405161073e9190613d62565b60405180910390f35b34801561075357600080fd5b5061075c611aa4565b60405161076991906140c4565b60405180910390f35b34801561077e57600080fd5b50610787611aaa565b60405161079491906140c4565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613569565b611ab0565b005b3480156107d257600080fd5b506107ed60048036038101906107e891906133d3565b611b49565b6040516107fa9190613d47565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906133a6565b611c63565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089f575061089e82611d5b565b5b9050919050565b6060600180546108b59061446d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e19061446d565b801561092e5780601f106109035761010080835404028352916020019161092e565b820191906000526020600020905b81548152906001019060200180831161091157829003601f168201915b5050505050905090565b662386f26fc1000081565b600061094e82611ea5565b61098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614084565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d3826113a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613f44565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a63611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480610a925750610a9181610a8c611eb2565b611b49565b5b610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613e84565b60405180910390fd5b610adc838383611eba565b505050565b610ae9611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610b076115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490613ee4565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610b8e838383611f6c565b505050565b610b9b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610bb96115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690613ee4565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c3884611ea5565b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90613e64565b60405180910390fd5b30610c8d610c86856005612525565b606461253b565b915091509250929050565b6000610ca3836113ba565b8210610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90613d84565b60405180910390fd5b6000610cee610b67565b905060008060005b83811015610e54576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610de857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e405786841415610e31578195505050505050610e90565b8380610e3c906144d0565b9450505b508080610e4c906144d0565b915050610cf6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790614004565b60405180910390fd5b92915050565b610e9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613ee4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f5d573d6000803e3d6000fd5b5050565b610f7c838383604051806020016040528060008152506119bb565b505050565b610f89611eb2565b73ffffffffffffffffffffffffffffffffffffffff16610fa76115bd565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490613ee4565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110389190613cb7565b60206040518083038186803b15801561105057600080fd5b505afa158015611064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108891906136ed565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110c5929190613d1e565b602060405180830381600087803b1580156110df57600080fd5b505af11580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111179190613596565b505050565b6000611126610b67565b8210611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90613de4565b60405180910390fd5b819050919050565b611177611eb2565b73ffffffffffffffffffffffffffffffffffffffff166111956115bd565b73ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613ee4565b60405180910390fd5b80600b908051906020019061120192919061312c565b5050565b6002600954141561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614024565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff166112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614064565b60405180910390fd5b6001600d54816112b0610b67565b6112ba9190614204565b11156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613e04565b60405180910390fd5b60016014811115611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613e44565b60405180910390fd5b600e5461134c610b67565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613fc4565b60405180910390fd5b611398336001612551565b50506001600981905550565b60006113af8261256f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290613ea4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546114b29061446d565b80601f01602080910402602001604051908101604052809291908181526020018280546114de9061446d565b801561152b5780601f106115005761010080835404028352916020019161152b565b820191906000526020600020905b81548152906001019060200180831161150e57829003601f168201915b5050505050905090565b61153d611eb2565b73ffffffffffffffffffffffffffffffffffffffff1661155b6115bd565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613ee4565b60405180910390fd5b6115bb6000612772565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115f69061446d565b80601f01602080910402602001604051908101604052809291908181526020018280546116229061446d565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b600e5481565b600260095414156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90614024565b60405180910390fd5b6002600981905550662386f26fc1000081600e546116e1610b67565b1115611735573481836116f4919061428b565b14611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613fe4565b60405180910390fd5b5b600f60009054906101000a900460ff16611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90614064565b60405180910390fd5b82600d5481611791610b67565b61179b9190614204565b11156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390613e04565b60405180910390fd5b836014811115611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890613e44565b60405180910390fd5b61182b3386612551565b50505050600160098190555050565b611842611eb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790613f04565b60405180910390fd5b80600660006118bd611eb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196a611eb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119af9190613d47565b60405180910390a35050565b6119c6848484611f6c565b6119d284848484612838565b611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890613f64565b60405180910390fd5b50505050565b601481565b6060611a2782611ea5565b611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90613e64565b60405180910390fd5b600b611a7d600184611a789190614204565b6129cf565b604051602001611a8e929190613c7d565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611ab8611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611ad66115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613ee4565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611c4057508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bd89190613cb7565b60206040518083038186803b158015611bf057600080fd5b505afa158015611c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c28919061364a565b73ffffffffffffffffffffffffffffffffffffffff16145b15611c4f576001915050611c5d565b611c598484612b30565b9150505b92915050565b611c6b611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611c896115bd565b73ffffffffffffffffffffffffffffffffffffffff1614611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690613ee4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613da4565b60405180910390fd5b611d5881612772565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e8e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e9e5750611e9d82612bc4565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f778261256f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f9e611eb2565b73ffffffffffffffffffffffffffffffffffffffff161480611ffa5750611fc3611eb2565b73ffffffffffffffffffffffffffffffffffffffff16611fe284610943565b73ffffffffffffffffffffffffffffffffffffffff16145b8061201657506120158260000151612010611eb2565b611b49565b5b905080612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90613f24565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c190613ec4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190613e24565b60405180910390fd5b6121478585856001612c2e565b6121576000848460000151611eba565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121c591906142e5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661226991906141be565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461236f9190614204565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124b5576123e581611ea5565b156124b4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251d8686866001612c34565b505050505050565b60008183612533919061428b565b905092915050565b60008183612549919061425a565b905092915050565b61256b828260405180602001604052806000815250612c3a565b5050565b6125776131b2565b61258082611ea5565b6125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690613dc4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106126235760017f0000000000000000000000000000000000000000000000000000000000000064846126169190614319565b6126209190614204565b90505b60008390505b818110612731576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271d5780935050505061276d565b50808061272990614443565b915050612629565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490614044565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128598473ffffffffffffffffffffffffffffffffffffffff16613119565b156129c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612882611eb2565b8786866040518563ffffffff1660e01b81526004016128a49493929190613cd2565b602060405180830381600087803b1580156128be57600080fd5b505af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec91906135f0565b60015b612972573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b5060008151141561296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190613f64565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c7565b600190505b949350505050565b60606000821415612a17576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b2b565b600082905060005b60008214612a49578080612a32906144d0565b915050600a82612a42919061425a565b9150612a1f565b60008167ffffffffffffffff811115612a6557612a64614606565b5b6040519080825280601f01601f191660200182016040528015612a975781602001600182028036833780820191505090505b5090505b60008514612b2457600182612ab09190614319565b9150600a85612abf9190614519565b6030612acb9190614204565b60f81b818381518110612ae157612ae06145d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1d919061425a565b9450612a9b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca790613fa4565b60405180910390fd5b612cb981611ea5565b15612cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf090613f84565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d53906140a4565b60405180910390fd5b612d696000858386612c2e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612e6691906141be565b6fffffffffffffffffffffffffffffffff168152602001858360200151612e8d91906141be565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156130fc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461309c6000888488612838565b6130db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d290613f64565b60405180910390fd5b81806130e6906144d0565b92505080806130f4906144d0565b91505061302b565b50806000819055506131116000878588612c34565b505050505050565b600080823b905060008111915050919050565b8280546131389061446d565b90600052602060002090601f01602090048101928261315a57600085556131a1565b82601f1061317357805160ff19168380011785556131a1565b828001600101855582156131a1579182015b828111156131a0578251825591602001919060010190613185565b5b5090506131ae91906131ec565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132055760008160009055506001016131ed565b5090565b600061321c61321784614104565b6140df565b9050828152602081018484840111156132385761323761463a565b5b613243848285614401565b509392505050565b600061325e61325984614135565b6140df565b90508281526020810184848401111561327a5761327961463a565b5b613285848285614401565b509392505050565b60008135905061329c81614d82565b92915050565b6000813590506132b181614d99565b92915050565b6000815190506132c681614d99565b92915050565b6000813590506132db81614db0565b92915050565b6000815190506132f081614db0565b92915050565b600082601f83011261330b5761330a614635565b5b813561331b848260208601613209565b91505092915050565b60008135905061333381614dc7565b92915050565b60008151905061334881614dde565b92915050565b600082601f83011261336357613362614635565b5b813561337384826020860161324b565b91505092915050565b60008135905061338b81614df5565b92915050565b6000815190506133a081614df5565b92915050565b6000602082840312156133bc576133bb614644565b5b60006133ca8482850161328d565b91505092915050565b600080604083850312156133ea576133e9614644565b5b60006133f88582860161328d565b92505060206134098582860161328d565b9150509250929050565b60008060006060848603121561342c5761342b614644565b5b600061343a8682870161328d565b935050602061344b8682870161328d565b925050604061345c8682870161337c565b9150509250925092565b600080600080608085870312156134805761347f614644565b5b600061348e8782880161328d565b945050602061349f8782880161328d565b93505060406134b08782880161337c565b925050606085013567ffffffffffffffff8111156134d1576134d061463f565b5b6134dd878288016132f6565b91505092959194509250565b60008060408385031215613500576134ff614644565b5b600061350e8582860161328d565b925050602061351f858286016132a2565b9150509250929050565b600080604083850312156135405761353f614644565b5b600061354e8582860161328d565b925050602061355f8582860161337c565b9150509250929050565b60006020828403121561357f5761357e614644565b5b600061358d848285016132a2565b91505092915050565b6000602082840312156135ac576135ab614644565b5b60006135ba848285016132b7565b91505092915050565b6000602082840312156135d9576135d8614644565b5b60006135e7848285016132cc565b91505092915050565b60006020828403121561360657613605614644565b5b6000613614848285016132e1565b91505092915050565b60006020828403121561363357613632614644565b5b600061364184828501613324565b91505092915050565b6000602082840312156136605761365f614644565b5b600061366e84828501613339565b91505092915050565b60006020828403121561368d5761368c614644565b5b600082013567ffffffffffffffff8111156136ab576136aa61463f565b5b6136b78482850161334e565b91505092915050565b6000602082840312156136d6576136d5614644565b5b60006136e48482850161337c565b91505092915050565b60006020828403121561370357613702614644565b5b600061371184828501613391565b91505092915050565b6000806040838503121561373157613730614644565b5b600061373f8582860161337c565b92505060206137508582860161337c565b9150509250929050565b6137638161434d565b82525050565b6137728161435f565b82525050565b60006137838261417b565b61378d8185614191565b935061379d818560208601614410565b6137a681614649565b840191505092915050565b60006137bc82614186565b6137c681856141a2565b93506137d6818560208601614410565b6137df81614649565b840191505092915050565b60006137f582614186565b6137ff81856141b3565b935061380f818560208601614410565b80840191505092915050565b600081546138288161446d565b61383281866141b3565b9450600182166000811461384d576001811461385e57613891565b60ff19831686528186019350613891565b61386785614166565b60005b838110156138895781548189015260018201915060208101905061386a565b838801955050505b50505092915050565b60006138a76022836141a2565b91506138b28261465a565b604082019050919050565b60006138ca6026836141a2565b91506138d5826146a9565b604082019050919050565b60006138ed602a836141a2565b91506138f8826146f8565b604082019050919050565b60006139106023836141a2565b915061391b82614747565b604082019050919050565b60006139336022836141a2565b915061393e82614796565b604082019050919050565b60006139566025836141a2565b9150613961826147e5565b604082019050919050565b60006139796022836141a2565b915061398482614834565b604082019050919050565b600061399c6011836141a2565b91506139a782614883565b602082019050919050565b60006139bf6039836141a2565b91506139ca826148ac565b604082019050919050565b60006139e2602b836141a2565b91506139ed826148fb565b604082019050919050565b6000613a056026836141a2565b9150613a108261494a565b604082019050919050565b6000613a286005836141b3565b9150613a3382614999565b600582019050919050565b6000613a4b6020836141a2565b9150613a56826149c2565b602082019050919050565b6000613a6e601a836141a2565b9150613a79826149eb565b602082019050919050565b6000613a916032836141a2565b9150613a9c82614a14565b604082019050919050565b6000613ab46022836141a2565b9150613abf82614a63565b604082019050919050565b6000613ad76033836141a2565b9150613ae282614ab2565b604082019050919050565b6000613afa601d836141a2565b9150613b0582614b01565b602082019050919050565b6000613b1d6021836141a2565b9150613b2882614b2a565b604082019050919050565b6000613b40601c836141a2565b9150613b4b82614b79565b602082019050919050565b6000613b636018836141a2565b9150613b6e82614ba2565b602082019050919050565b6000613b86602e836141a2565b9150613b9182614bcb565b604082019050919050565b6000613ba9601f836141a2565b9150613bb482614c1a565b602082019050919050565b6000613bcc602f836141a2565b9150613bd782614c43565b604082019050919050565b6000613bef6017836141a2565b9150613bfa82614c92565b602082019050919050565b6000613c12602d836141a2565b9150613c1d82614cbb565b604082019050919050565b6000613c356022836141a2565b9150613c4082614d0a565b604082019050919050565b6000613c586001836141b3565b9150613c6382614d59565b600182019050919050565b613c77816143f7565b82525050565b6000613c89828561381b565b9150613c9482613c4b565b9150613ca082846137ea565b9150613cab82613a1b565b91508190509392505050565b6000602082019050613ccc600083018461375a565b92915050565b6000608082019050613ce7600083018761375a565b613cf4602083018661375a565b613d016040830185613c6e565b8181036060830152613d138184613778565b905095945050505050565b6000604082019050613d33600083018561375a565b613d406020830184613c6e565b9392505050565b6000602082019050613d5c6000830184613769565b92915050565b60006020820190508181036000830152613d7c81846137b1565b905092915050565b60006020820190508181036000830152613d9d8161389a565b9050919050565b60006020820190508181036000830152613dbd816138bd565b9050919050565b60006020820190508181036000830152613ddd816138e0565b9050919050565b60006020820190508181036000830152613dfd81613903565b9050919050565b60006020820190508181036000830152613e1d81613926565b9050919050565b60006020820190508181036000830152613e3d81613949565b9050919050565b60006020820190508181036000830152613e5d8161396c565b9050919050565b60006020820190508181036000830152613e7d8161398f565b9050919050565b60006020820190508181036000830152613e9d816139b2565b9050919050565b60006020820190508181036000830152613ebd816139d5565b9050919050565b60006020820190508181036000830152613edd816139f8565b9050919050565b60006020820190508181036000830152613efd81613a3e565b9050919050565b60006020820190508181036000830152613f1d81613a61565b9050919050565b60006020820190508181036000830152613f3d81613a84565b9050919050565b60006020820190508181036000830152613f5d81613aa7565b9050919050565b60006020820190508181036000830152613f7d81613aca565b9050919050565b60006020820190508181036000830152613f9d81613aed565b9050919050565b60006020820190508181036000830152613fbd81613b10565b9050919050565b60006020820190508181036000830152613fdd81613b33565b9050919050565b60006020820190508181036000830152613ffd81613b56565b9050919050565b6000602082019050818103600083015261401d81613b79565b9050919050565b6000602082019050818103600083015261403d81613b9c565b9050919050565b6000602082019050818103600083015261405d81613bbf565b9050919050565b6000602082019050818103600083015261407d81613be2565b9050919050565b6000602082019050818103600083015261409d81613c05565b9050919050565b600060208201905081810360008301526140bd81613c28565b9050919050565b60006020820190506140d96000830184613c6e565b92915050565b60006140e96140fa565b90506140f5828261449f565b919050565b6000604051905090565b600067ffffffffffffffff82111561411f5761411e614606565b5b61412882614649565b9050602081019050919050565b600067ffffffffffffffff8211156141505761414f614606565b5b61415982614649565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141c9826143bb565b91506141d4836143bb565b9250826fffffffffffffffffffffffffffffffff038211156141f9576141f861454a565b5b828201905092915050565b600061420f826143f7565b915061421a836143f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561424f5761424e61454a565b5b828201905092915050565b6000614265826143f7565b9150614270836143f7565b9250826142805761427f614579565b5b828204905092915050565b6000614296826143f7565b91506142a1836143f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142da576142d961454a565b5b828202905092915050565b60006142f0826143bb565b91506142fb836143bb565b92508282101561430e5761430d61454a565b5b828203905092915050565b6000614324826143f7565b915061432f836143f7565b9250828210156143425761434161454a565b5b828203905092915050565b6000614358826143d7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006143a28261434d565b9050919050565b60006143b48261434d565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561442e578082015181840152602081019050614413565b8381111561443d576000848401525b50505050565b600061444e826143f7565b915060008214156144625761446161454a565b5b600182039050919050565b6000600282049050600182168061448557607f821691505b60208210811415614499576144986145a8565b5b50919050565b6144a882614649565b810181811067ffffffffffffffff821117156144c7576144c6614606565b5b80604052505050565b60006144db826143f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561450e5761450d61454a565b5b600182019050919050565b6000614524826143f7565b915061452f836143f7565b92508261453f5761453e614579565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614d8b8161434d565b8114614d9657600080fd5b50565b614da28161435f565b8114614dad57600080fd5b50565b614db98161436b565b8114614dc457600080fd5b50565b614dd081614397565b8114614ddb57600080fd5b50565b614de7816143a9565b8114614df257600080fd5b50565b614dfe816143f7565b8114614e0957600080fd5b5056fea26469706673582212201a49510bc290a5bed646862fa7632027b33a32695bc02d25eb1b08b1df2f178764736f6c63430008070033

Deployed Bytecode Sourcemap

55268:5829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59286:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44452:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55741:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45977:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45540:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58554:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41287:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55844:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46827:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58388:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60776:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41918:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58703:143;;;;;;;;;;;;;:::i;:::-;;47032:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58854:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41450:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57990:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57535:214;;;;;;;;;;;;;:::i;:::-;;44275:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43152:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57826:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19310:103;;;;;;;;;;;;;:::i;:::-;;18659:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44607:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55802:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57148:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46245:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47252:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55649:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60403:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55701:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51667:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58214:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59715:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19568:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59286:292;59434:4;59491:26;59476:41;;;:11;:41;;;;:94;;;;59534:36;59558:11;59534:23;:36::i;:::-;59476:94;59456:114;;59286:292;;;:::o;44452:94::-;44506:13;44535:5;44528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44452:94;:::o;55741:54::-;55785:10;55741:54;:::o;45977:204::-;46045:7;46069:16;46077:7;46069;:16::i;:::-;46061:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46151:15;:24;46167:7;46151:24;;;;;;;;;;;;;;;;;;;;;46144:31;;45977:204;;;:::o;45540:379::-;45609:13;45625:24;45641:7;45625:15;:24::i;:::-;45609:40;;45670:5;45664:11;;:2;:11;;;;45656:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45755:5;45739:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45764:37;45781:5;45788:12;:10;:12::i;:::-;45764:16;:37::i;:::-;45739:62;45723:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45885:28;45894:2;45898:7;45907:5;45885:8;:28::i;:::-;45602:317;45540:379;;:::o;58554:139::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58672:13:::1;58655:14;:30;;;;58554:139:::0;:::o;41287:94::-;41340:7;41363:12;;41356:19;;41287:94;:::o;55844:37::-;;;;;;;;;;;;;:::o;46827:142::-;46935:28;46945:4;46951:2;46955:7;46935:9;:28::i;:::-;46827:142;;;:::o;58388:158::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58519:19:::1;58498:18;;:40;;;;;;;;;;;;;;;;;;58388:158:::0;:::o;60776:318::-;60901:16;60919:21;60966:16;60974:7;60966;:16::i;:::-;60958:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;61033:4;61040:45;61053:26;61066:9;61077:1;61053:12;:26::i;:::-;61081:3;61040:12;:45::i;:::-;61017:69;;;;60776:318;;;;;:::o;41918:744::-;42027:7;42062:16;42072:5;42062:9;:16::i;:::-;42054:5;:24;42046:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42124:22;42149:13;:11;:13::i;:::-;42124:38;;42169:19;42199:25;42249:9;42244:350;42268:14;42264:1;:18;42244:350;;;42298:31;42332:11;:14;42344:1;42332:14;;;;;;;;;;;42298:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42385:1;42359:28;;:9;:14;;;:28;;;42355:89;;42420:9;:14;;;42400:34;;42355:89;42477:5;42456:26;;:17;:26;;;42452:135;;;42514:5;42499:11;:20;42495:59;;;42541:1;42534:8;;;;;;;;;42495:59;42564:13;;;;;:::i;:::-;;;;42452:135;42289:305;42284:3;;;;;:::i;:::-;;;;42244:350;;;;42600:56;;;;;;;;;;:::i;:::-;;;;;;;;41918:744;;;;;:::o;58703:143::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58751:15:::1;58769:21;58751:39;;58809:10;58801:28;;:37;58830:7;58801:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58740:106;58703:143::o:0;47032:157::-;47144:39;47161:4;47167:2;47171:7;47144:39;;;;;;;;;;;;:16;:39::i;:::-;47032:157;;;:::o;58854:168::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58920:15:::1;58938:5;:15;;;58962:4;58938:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58920:48;;58979:5;:14;;;58994:10;59006:7;58979:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58909:113;58854:168:::0;:::o;41450:177::-;41517:7;41549:13;:11;:13::i;:::-;41541:5;:21;41533:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41616:5;41609:12;;41450:177;;;:::o;57990:100::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58074:8:::1;58064:7;:18;;;;;;;;;;;;:::i;:::-;;57990:100:::0;:::o;57535:214::-;10588:1;11186:7;;:19;;11178:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10588:1;11319:7;:18;;;;56011::::1;;;;;;;;;;;56003:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57642:1:::2;56430:9;;56395:14;56379:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56357:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57668:1:::3;55692:2;56169:14;:34;;56147:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56628:14:::4;;56594:13;:11;:13::i;:::-;:48;;56572:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;57717:24:::5;57727:10;57739:1;57717:9;:24::i;:::-;56514:1:::3;56068::::2;10544::::0;11498:7;:22;;;;57535:214::o;44275:118::-;44339:7;44362:20;44374:7;44362:11;:20::i;:::-;:25;;;44355:32;;44275:118;;;:::o;43152:211::-;43216:7;43257:1;43240:19;;:5;:19;;;;43232:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43329:12;:19;43342:5;43329:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43321:36;;43314:43;;43152:211;;;:::o;57826:93::-;57871:13;57904:7;57897:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57826:93;:::o;19310:103::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19375:30:::1;19402:1;19375:18;:30::i;:::-;19310:103::o:0;18659:87::-;18705:7;18732:6;;;;;;;;;;;18725:13;;18659:87;:::o;44607:98::-;44663:13;44692:7;44685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44607:98;:::o;55802:35::-;;;;:::o;57148:321::-;10588:1;11186:7;;:19;;11178:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10588:1;11319:7;:18;;;;55785:10:::1;57288:14;56823;;56809:13;:11;:13::i;:::-;:28;56806:166;;;56899:9;56880:14;56872:5;:22;;;;:::i;:::-;56871:37;56849:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56806:166;56011:18:::2;;;;;;;;;;;56003:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57351:14:::3;56430:9;;56395:14;56379:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56357:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57390:14:::4;55692:2;56169:14;:34;;56147:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57424:37:::5;57434:10;57446:14;57424:9;:37::i;:::-;56514:1:::4;56068::::3;11350::::1;;10544::::0;11498:7;:22;;;;57148:321;:::o;46245:274::-;46348:12;:10;:12::i;:::-;46336:24;;:8;:24;;;;46328:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46445:8;46400:18;:32;46419:12;:10;:12::i;:::-;46400:32;;;;;;;;;;;;;;;:42;46433:8;46400:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46494:8;46465:48;;46480:12;:10;:12::i;:::-;46465:48;;;46504:8;46465:48;;;;;;:::i;:::-;;;;;;;;46245:274;;:::o;47252:311::-;47389:28;47399:4;47405:2;47409:7;47389:9;:28::i;:::-;47440:48;47463:4;47469:2;47473:7;47482:5;47440:22;:48::i;:::-;47424:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47252:311;;;;:::o;55649:45::-;55692:2;55649:45;:::o;60403:307::-;60521:13;60560:16;60568:7;60560;:16::i;:::-;60552:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60655:7;60669:22;60678:1;60670:7;:9;;;;:::i;:::-;60669:20;:22::i;:::-;60638:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60611:91;;60403:307;;;:::o;55701:31::-;;;;:::o;51667:43::-;;;;:::o;58214:166::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58351:21:::1;58328:20;;:44;;;;;;;;;;;;;;;;;;58214:166:::0;:::o;59715:617::-;59840:4;60005:27;60063;;;;;;;;;;;60005:96;;60130:20;;;;;;;;;;;:86;;;;;60208:8;60167:49;;60175:13;:21;;;60197:5;60175:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60167:49;;;60130:86;60112:154;;;60250:4;60243:11;;;;;60112:154;60285:39;60308:5;60315:8;60285:22;:39::i;:::-;60278:46;;;59715:617;;;;;:::o;19568:201::-;18890:12;:10;:12::i;:::-;18879:23;;:7;:5;:7::i;:::-;:23;;;18871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19677:1:::1;19657:22;;:8;:22;;;;19649:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19733:28;19752:8;19733:18;:28::i;:::-;19568:201:::0;:::o;42726:370::-;42853:4;42898:25;42883:40;;;:11;:40;;;;:99;;;;42949:33;42934:48;;;:11;:48;;;;42883:99;:160;;;;43008:35;42993:50;;;:11;:50;;;;42883:160;:207;;;;43054:36;43078:11;43054:23;:36::i;:::-;42883:207;42869:221;;42726:370;;;:::o;47802:105::-;47859:4;47889:12;;47879:7;:22;47872:29;;47802:105;;;:::o;17383:98::-;17436:7;17463:10;17456:17;;17383:98;:::o;51489:172::-;51613:2;51586:15;:24;51602:7;51586:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51647:7;51643:2;51627:28;;51636:5;51627:28;;;;;;;;;;;;51489:172;;;:::o;49854:1529::-;49951:35;49989:20;50001:7;49989:11;:20::i;:::-;49951:58;;50018:22;50060:13;:18;;;50044:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50113:12;:10;:12::i;:::-;50089:36;;:20;50101:7;50089:11;:20::i;:::-;:36;;;50044:81;:142;;;;50136:50;50153:13;:18;;;50173:12;:10;:12::i;:::-;50136:16;:50::i;:::-;50044:142;50018:169;;50212:17;50196:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50344:4;50322:26;;:13;:18;;;:26;;;50306:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50433:1;50419:16;;:2;:16;;;;50411:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50486:43;50508:4;50514:2;50518:7;50527:1;50486:21;:43::i;:::-;50586:49;50603:1;50607:7;50616:13;:18;;;50586:8;:49::i;:::-;50674:1;50644:12;:18;50657:4;50644:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50710:1;50682:12;:16;50695:2;50682:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50741:43;;;;;;;;50756:2;50741:43;;;;;;50767:15;50741:43;;;;;50718:11;:20;50730:7;50718:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51012:19;51044:1;51034:7;:11;;;;:::i;:::-;51012:33;;51097:1;51056:43;;:11;:24;51068:11;51056:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51052:236;;;51114:20;51122:11;51114:7;:20::i;:::-;51110:171;;;51174:97;;;;;;;;51201:13;:18;;;51174:97;;;;;;51232:13;:28;;;51174:97;;;;;51147:11;:24;51159:11;51147:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51110:171;51052:236;51320:7;51316:2;51301:27;;51310:4;51301:27;;;;;;;;;;;;51335:42;51356:4;51362:2;51366:7;51375:1;51335:20;:42::i;:::-;49944:1439;;;49854:1529;;;:::o;3884:98::-;3942:7;3973:1;3969;:5;;;;:::i;:::-;3962:12;;3884:98;;;;:::o;4283:::-;4341:7;4372:1;4368;:5;;;;:::i;:::-;4361:12;;4283:98;;;;:::o;47913:::-;47978:27;47988:2;47992:8;47978:27;;;;;;;;;;;;:9;:27::i;:::-;47913:98;;:::o;43615:606::-;43691:21;;:::i;:::-;43732:16;43740:7;43732;:16::i;:::-;43724:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43804:26;43852:12;43841:7;:23;43837:93;;43921:1;43906:12;43896:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43875:47;;43837:93;43943:12;43958:7;43943:22;;43938:212;43975:18;43967:4;:26;43938:212;;44012:31;44046:11;:17;44058:4;44046:17;;;;;;;;;;;44012:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44102:1;44076:28;;:9;:14;;;:28;;;44072:71;;44124:9;44117:16;;;;;;;44072:71;44003:147;43995:6;;;;;:::i;:::-;;;;43938:212;;;;44158:57;;;;;;;;;;:::i;:::-;;;;;;;;43615:606;;;;:::o;19929:191::-;20003:16;20022:6;;;;;;;;;;;20003:25;;20048:8;20039:6;;:17;;;;;;;;;;;;;;;;;;20103:8;20072:40;;20093:8;20072:40;;;;;;;;;;;;19992:128;19929:191;:::o;53204:690::-;53341:4;53358:15;:2;:13;;;:15::i;:::-;53354:535;;;53413:2;53397:36;;;53434:12;:10;:12::i;:::-;53448:4;53454:7;53463:5;53397:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53384:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53645:1;53628:6;:13;:18;53624:215;;;53661:61;;;;;;;;;;:::i;:::-;;;;;;;;53624:215;53807:6;53801:13;53792:6;53788:2;53784:15;53777:38;53384:464;53529:45;;;53519:55;;;:6;:55;;;;53512:62;;;;;53354:535;53877:4;53870:11;;53204:690;;;;;;;:::o;14945:723::-;15001:13;15231:1;15222:5;:10;15218:53;;;15249:10;;;;;;;;;;;;;;;;;;;;;15218:53;15281:12;15296:5;15281:20;;15312:14;15337:78;15352:1;15344:4;:9;15337:78;;15370:8;;;;;:::i;:::-;;;;15401:2;15393:10;;;;;:::i;:::-;;;15337:78;;;15425:19;15457:6;15447:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15425:39;;15475:154;15491:1;15482:5;:10;15475:154;;15519:1;15509:11;;;;;:::i;:::-;;;15586:2;15578:5;:10;;;;:::i;:::-;15565:2;:24;;;;:::i;:::-;15552:39;;15535:6;15542;15535:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15615:2;15606:11;;;;;:::i;:::-;;;15475:154;;;15653:6;15639:21;;;;;14945:723;;;;:::o;46582:186::-;46704:4;46727:18;:25;46746:5;46727:25;;;;;;;;;;;;;;;:35;46753:8;46727:35;;;;;;;;;;;;;;;;;;;;;;;;;46720:42;;46582:186;;;;:::o;32059:157::-;32144:4;32183:25;32168:40;;;:11;:40;;;;32161:47;;32059:157;;;:::o;54356:141::-;;;;;:::o;54883:140::-;;;;;:::o;48350:1272::-;48455:20;48478:12;;48455:35;;48519:1;48505:16;;:2;:16;;;;48497:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48696:21;48704:12;48696:7;:21::i;:::-;48695:22;48687:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48778:12;48766:8;:24;;48758:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48838:61;48868:1;48872:2;48876:12;48890:8;48838:21;:61::i;:::-;48908:30;48941:12;:16;48954:2;48941:16;;;;;;;;;;;;;;;48908:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48983:119;;;;;;;;49033:8;49003:11;:19;;;:39;;;;:::i;:::-;48983:119;;;;;;49086:8;49051:11;:24;;;:44;;;;:::i;:::-;48983:119;;;;;48964:12;:16;48977:2;48964:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49137:43;;;;;;;;49152:2;49137:43;;;;;;49163:15;49137:43;;;;;49109:11;:25;49121:12;49109:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49189:20;49212:12;49189:35;;49238:9;49233:281;49257:8;49253:1;:12;49233:281;;;49311:12;49307:2;49286:38;;49303:1;49286:38;;;;;;;;;;;;49351:59;49382:1;49386:2;49390:12;49404:5;49351:22;:59::i;:::-;49333:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49492:14;;;;;:::i;:::-;;;;49267:3;;;;;:::i;:::-;;;;49233:281;;;;49537:12;49522;:27;;;;49556:60;49585:1;49589:2;49593:12;49607:8;49556:20;:60::i;:::-;48448:1174;;;48350:1272;;;:::o;20947:387::-;21007:4;21215:12;21282:7;21270:20;21262:28;;21325:1;21318:4;:8;21311:15;;;20947: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;2088:201::-;2174:5;2205:6;2199:13;2190:22;;2221:62;2277:5;2221:62;:::i;:::-;2088:201;;;;:::o;2309:340::-;2365:5;2414:3;2407:4;2399:6;2395:17;2391:27;2381:122;;2422:79;;:::i;:::-;2381:122;2539:6;2526:20;2564:79;2639:3;2631:6;2624:4;2616:6;2612:17;2564:79;:::i;:::-;2555:88;;2371:278;2309:340;;;;:::o;2655:139::-;2701:5;2739:6;2726:20;2717:29;;2755:33;2782:5;2755:33;:::i;:::-;2655:139;;;;:::o;2800:143::-;2857:5;2888:6;2882:13;2873:22;;2904:33;2931:5;2904:33;:::i;:::-;2800:143;;;;:::o;2949:329::-;3008:6;3057:2;3045:9;3036:7;3032:23;3028:32;3025:119;;;3063:79;;:::i;:::-;3025:119;3183:1;3208:53;3253:7;3244:6;3233:9;3229:22;3208:53;:::i;:::-;3198:63;;3154:117;2949:329;;;;:::o;3284:474::-;3352:6;3360;3409:2;3397:9;3388:7;3384:23;3380:32;3377:119;;;3415:79;;:::i;:::-;3377:119;3535:1;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3506:117;3662:2;3688:53;3733:7;3724:6;3713:9;3709:22;3688:53;:::i;:::-;3678:63;;3633:118;3284:474;;;;;:::o;3764:619::-;3841:6;3849;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;3764:619;;;;;:::o;4389:943::-;4484:6;4492;4500;4508;4557:3;4545:9;4536:7;4532:23;4528:33;4525:120;;;4564:79;;:::i;:::-;4525:120;4684:1;4709:53;4754:7;4745:6;4734:9;4730:22;4709:53;:::i;:::-;4699:63;;4655:117;4811:2;4837:53;4882:7;4873:6;4862:9;4858:22;4837:53;:::i;:::-;4827:63;;4782:118;4939:2;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4910:118;5095:2;5084:9;5080:18;5067:32;5126:18;5118:6;5115:30;5112:117;;;5148:79;;:::i;:::-;5112:117;5253:62;5307:7;5298:6;5287:9;5283:22;5253:62;:::i;:::-;5243:72;;5038:287;4389:943;;;;;;;:::o;5338:468::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:50;5781:7;5772:6;5761:9;5757:22;5739:50;:::i;:::-;5729:60;;5684:115;5338:468;;;;;:::o;5812:474::-;5880:6;5888;5937:2;5925:9;5916:7;5912:23;5908:32;5905:119;;;5943:79;;:::i;:::-;5905:119;6063:1;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6034:117;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;5812:474;;;;;:::o;6292:323::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6292:323;;;;:::o;6621:345::-;6688:6;6737:2;6725:9;6716:7;6712:23;6708:32;6705:119;;;6743:79;;:::i;:::-;6705:119;6863:1;6888:61;6941:7;6932:6;6921:9;6917:22;6888:61;:::i;:::-;6878:71;;6834:125;6621:345;;;;:::o;6972:327::-;7030:6;7079:2;7067:9;7058:7;7054:23;7050:32;7047:119;;;7085:79;;:::i;:::-;7047:119;7205:1;7230:52;7274:7;7265:6;7254:9;7250:22;7230:52;:::i;:::-;7220:62;;7176:116;6972:327;;;;:::o;7305:349::-;7374:6;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:63;7629:7;7620:6;7609:9;7605:22;7574:63;:::i;:::-;7564:73;;7520:127;7305:349;;;;:::o;7660:357::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:67;7992:7;7983:6;7972:9;7968:22;7933:67;:::i;:::-;7923:77;;7879:131;7660:357;;;;:::o;8023:409::-;8122:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:119;;;8177:79;;:::i;:::-;8139:119;8297:1;8322:93;8407:7;8398:6;8387:9;8383:22;8322:93;:::i;:::-;8312:103;;8268:157;8023:409;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:329::-;9012:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:53;9257:7;9248:6;9237:9;9233:22;9212:53;:::i;:::-;9202:63;;9158:117;8953:329;;;;:::o;9288:351::-;9358:6;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9533:1;9558:64;9614:7;9605:6;9594:9;9590:22;9558:64;:::i;:::-;9548:74;;9504:128;9288:351;;;;:::o;9645:474::-;9713:6;9721;9770:2;9758:9;9749:7;9745:23;9741:32;9738:119;;;9776:79;;:::i;:::-;9738:119;9896:1;9921:53;9966:7;9957:6;9946:9;9942:22;9921:53;:::i;:::-;9911:63;;9867:117;10023:2;10049:53;10094:7;10085:6;10074:9;10070:22;10049:53;:::i;:::-;10039:63;;9994:118;9645:474;;;;;:::o;10125:118::-;10212:24;10230:5;10212:24;:::i;:::-;10207:3;10200:37;10125:118;;:::o;10249:109::-;10330:21;10345:5;10330:21;:::i;:::-;10325:3;10318:34;10249:109;;:::o;10364:360::-;10450:3;10478:38;10510:5;10478:38;:::i;:::-;10532:70;10595:6;10590:3;10532:70;:::i;:::-;10525:77;;10611:52;10656:6;10651:3;10644:4;10637:5;10633:16;10611:52;:::i;:::-;10688:29;10710:6;10688:29;:::i;:::-;10683:3;10679:39;10672:46;;10454:270;10364:360;;;;:::o;10730:364::-;10818:3;10846:39;10879:5;10846:39;:::i;:::-;10901:71;10965:6;10960:3;10901:71;:::i;:::-;10894:78;;10981:52;11026:6;11021:3;11014:4;11007:5;11003:16;10981:52;:::i;:::-;11058:29;11080:6;11058:29;:::i;:::-;11053:3;11049:39;11042:46;;10822:272;10730:364;;;;:::o;11100:377::-;11206:3;11234:39;11267:5;11234:39;:::i;:::-;11289:89;11371:6;11366:3;11289:89;:::i;:::-;11282:96;;11387:52;11432:6;11427:3;11420:4;11413:5;11409:16;11387:52;:::i;:::-;11464:6;11459:3;11455:16;11448:23;;11210:267;11100:377;;;;:::o;11507:845::-;11610:3;11647:5;11641:12;11676:36;11702:9;11676:36;:::i;:::-;11728:89;11810:6;11805:3;11728:89;:::i;:::-;11721:96;;11848:1;11837:9;11833:17;11864:1;11859:137;;;;12010:1;12005:341;;;;11826:520;;11859:137;11943:4;11939:9;11928;11924:25;11919:3;11912:38;11979:6;11974:3;11970:16;11963:23;;11859:137;;12005:341;12072:38;12104:5;12072:38;:::i;:::-;12132:1;12146:154;12160:6;12157:1;12154:13;12146:154;;;12234:7;12228:14;12224:1;12219:3;12215:11;12208:35;12284:1;12275:7;12271:15;12260:26;;12182:4;12179:1;12175:12;12170:17;;12146:154;;;12329:6;12324:3;12320:16;12313:23;;12012:334;;11826:520;;11614:738;;11507:845;;;;:::o;12358:366::-;12500:3;12521:67;12585:2;12580:3;12521:67;:::i;:::-;12514:74;;12597:93;12686:3;12597:93;:::i;:::-;12715:2;12710:3;12706:12;12699:19;;12358:366;;;:::o;12730:::-;12872:3;12893:67;12957:2;12952:3;12893:67;:::i;:::-;12886:74;;12969:93;13058:3;12969:93;:::i;:::-;13087:2;13082:3;13078:12;13071:19;;12730:366;;;:::o;13102:::-;13244:3;13265:67;13329:2;13324:3;13265:67;:::i;:::-;13258:74;;13341:93;13430:3;13341:93;:::i;:::-;13459:2;13454:3;13450:12;13443:19;;13102:366;;;:::o;13474:::-;13616:3;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13713:93;13802:3;13713:93;:::i;:::-;13831:2;13826:3;13822:12;13815:19;;13474:366;;;:::o;13846:::-;13988:3;14009:67;14073:2;14068:3;14009:67;:::i;:::-;14002:74;;14085:93;14174:3;14085:93;:::i;:::-;14203:2;14198:3;14194:12;14187:19;;13846:366;;;:::o;14218:::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:::-;14732:3;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14829:93;14918:3;14829:93;:::i;:::-;14947:2;14942:3;14938:12;14931:19;;14590:366;;;:::o;14962:::-;15104:3;15125:67;15189:2;15184:3;15125:67;:::i;:::-;15118:74;;15201:93;15290:3;15201:93;:::i;:::-;15319:2;15314:3;15310:12;15303:19;;14962:366;;;:::o;15334:::-;15476:3;15497:67;15561:2;15556:3;15497:67;:::i;:::-;15490:74;;15573:93;15662:3;15573:93;:::i;:::-;15691:2;15686:3;15682:12;15675:19;;15334:366;;;:::o;15706:::-;15848:3;15869:67;15933:2;15928:3;15869:67;:::i;:::-;15862:74;;15945:93;16034:3;15945:93;:::i;:::-;16063:2;16058:3;16054:12;16047:19;;15706:366;;;:::o;16078:::-;16220:3;16241:67;16305:2;16300:3;16241:67;:::i;:::-;16234:74;;16317:93;16406:3;16317:93;:::i;:::-;16435:2;16430:3;16426:12;16419:19;;16078:366;;;:::o;16450:400::-;16610:3;16631:84;16713:1;16708:3;16631:84;:::i;:::-;16624:91;;16724:93;16813:3;16724:93;:::i;:::-;16842:1;16837:3;16833:11;16826:18;;16450:400;;;:::o;16856:366::-;16998:3;17019:67;17083:2;17078:3;17019:67;:::i;:::-;17012:74;;17095:93;17184:3;17095:93;:::i;:::-;17213:2;17208:3;17204:12;17197:19;;16856:366;;;:::o;17228:::-;17370:3;17391:67;17455:2;17450:3;17391:67;:::i;:::-;17384:74;;17467:93;17556:3;17467:93;:::i;:::-;17585:2;17580:3;17576:12;17569:19;;17228:366;;;:::o;17600:::-;17742:3;17763:67;17827:2;17822:3;17763:67;:::i;:::-;17756:74;;17839:93;17928:3;17839:93;:::i;:::-;17957:2;17952:3;17948:12;17941:19;;17600:366;;;:::o;17972:::-;18114:3;18135:67;18199:2;18194:3;18135:67;:::i;:::-;18128:74;;18211:93;18300:3;18211:93;:::i;:::-;18329:2;18324:3;18320:12;18313:19;;17972:366;;;:::o;18344:::-;18486:3;18507:67;18571:2;18566:3;18507:67;:::i;:::-;18500:74;;18583:93;18672:3;18583:93;:::i;:::-;18701:2;18696:3;18692:12;18685:19;;18344:366;;;:::o;18716:::-;18858:3;18879:67;18943:2;18938:3;18879:67;:::i;:::-;18872:74;;18955:93;19044:3;18955:93;:::i;:::-;19073:2;19068:3;19064:12;19057:19;;18716:366;;;:::o;19088:::-;19230:3;19251:67;19315:2;19310:3;19251:67;:::i;:::-;19244:74;;19327:93;19416:3;19327:93;:::i;:::-;19445:2;19440:3;19436:12;19429:19;;19088:366;;;:::o;19460:::-;19602:3;19623:67;19687:2;19682:3;19623:67;:::i;:::-;19616:74;;19699:93;19788:3;19699:93;:::i;:::-;19817:2;19812:3;19808:12;19801:19;;19460:366;;;:::o;19832:::-;19974:3;19995:67;20059:2;20054:3;19995:67;:::i;:::-;19988:74;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19832:366;;;:::o;20204:::-;20346:3;20367:67;20431:2;20426:3;20367:67;:::i;:::-;20360:74;;20443:93;20532:3;20443:93;:::i;:::-;20561:2;20556:3;20552:12;20545:19;;20204:366;;;:::o;20576:::-;20718:3;20739:67;20803:2;20798:3;20739:67;:::i;:::-;20732:74;;20815:93;20904:3;20815:93;:::i;:::-;20933:2;20928:3;20924:12;20917:19;;20576:366;;;:::o;20948:::-;21090:3;21111:67;21175:2;21170:3;21111:67;:::i;:::-;21104:74;;21187:93;21276:3;21187:93;:::i;:::-;21305:2;21300:3;21296:12;21289:19;;20948:366;;;:::o;21320:::-;21462:3;21483:67;21547:2;21542:3;21483:67;:::i;:::-;21476:74;;21559:93;21648:3;21559:93;:::i;:::-;21677:2;21672:3;21668:12;21661:19;;21320:366;;;:::o;21692:::-;21834:3;21855:67;21919:2;21914:3;21855:67;:::i;:::-;21848:74;;21931:93;22020:3;21931:93;:::i;:::-;22049:2;22044:3;22040:12;22033:19;;21692:366;;;:::o;22064:::-;22206:3;22227:67;22291:2;22286:3;22227:67;:::i;:::-;22220:74;;22303:93;22392:3;22303:93;:::i;:::-;22421:2;22416:3;22412:12;22405:19;;22064:366;;;:::o;22436:400::-;22596:3;22617:84;22699:1;22694:3;22617:84;:::i;:::-;22610:91;;22710:93;22799:3;22710:93;:::i;:::-;22828:1;22823:3;22819:11;22812:18;;22436:400;;;:::o;22842:118::-;22929:24;22947:5;22929:24;:::i;:::-;22924:3;22917:37;22842:118;;:::o;22966:961::-;23345:3;23367:92;23455:3;23446:6;23367:92;:::i;:::-;23360:99;;23476:148;23620:3;23476:148;:::i;:::-;23469:155;;23641:95;23732:3;23723:6;23641:95;:::i;:::-;23634:102;;23753:148;23897:3;23753:148;:::i;:::-;23746:155;;23918:3;23911:10;;22966:961;;;;;:::o;23933:222::-;24026:4;24064:2;24053:9;24049:18;24041:26;;24077:71;24145:1;24134:9;24130:17;24121:6;24077:71;:::i;:::-;23933:222;;;;:::o;24161:640::-;24356:4;24394:3;24383:9;24379:19;24371:27;;24408:71;24476:1;24465:9;24461:17;24452:6;24408:71;:::i;:::-;24489:72;24557:2;24546:9;24542:18;24533:6;24489:72;:::i;:::-;24571;24639:2;24628:9;24624:18;24615:6;24571:72;:::i;:::-;24690:9;24684:4;24680:20;24675:2;24664:9;24660:18;24653:48;24718:76;24789:4;24780:6;24718:76;:::i;:::-;24710:84;;24161:640;;;;;;;:::o;24807:332::-;24928:4;24966:2;24955:9;24951:18;24943:26;;24979:71;25047:1;25036:9;25032:17;25023:6;24979:71;:::i;:::-;25060:72;25128:2;25117:9;25113:18;25104:6;25060:72;:::i;:::-;24807:332;;;;;:::o;25145:210::-;25232:4;25270:2;25259:9;25255:18;25247:26;;25283:65;25345:1;25334:9;25330:17;25321:6;25283:65;:::i;:::-;25145:210;;;;:::o;25361:313::-;25474:4;25512:2;25501:9;25497:18;25489:26;;25561:9;25555:4;25551:20;25547:1;25536:9;25532:17;25525:47;25589:78;25662:4;25653:6;25589:78;:::i;:::-;25581:86;;25361:313;;;;:::o;25680:419::-;25846:4;25884:2;25873:9;25869:18;25861:26;;25933:9;25927:4;25923:20;25919:1;25908:9;25904:17;25897:47;25961:131;26087:4;25961:131;:::i;:::-;25953:139;;25680:419;;;:::o;26105:::-;26271:4;26309:2;26298:9;26294:18;26286:26;;26358:9;26352:4;26348:20;26344:1;26333:9;26329:17;26322:47;26386:131;26512:4;26386:131;:::i;:::-;26378:139;;26105:419;;;:::o;26530:::-;26696:4;26734:2;26723:9;26719:18;26711:26;;26783:9;26777:4;26773:20;26769:1;26758:9;26754:17;26747:47;26811:131;26937:4;26811:131;:::i;:::-;26803:139;;26530:419;;;:::o;26955:::-;27121:4;27159:2;27148:9;27144:18;27136:26;;27208:9;27202:4;27198:20;27194:1;27183:9;27179:17;27172:47;27236:131;27362:4;27236:131;:::i;:::-;27228:139;;26955:419;;;:::o;27380:::-;27546:4;27584:2;27573:9;27569:18;27561:26;;27633:9;27627:4;27623:20;27619:1;27608:9;27604:17;27597:47;27661:131;27787:4;27661:131;:::i;:::-;27653:139;;27380:419;;;:::o;27805:::-;27971:4;28009:2;27998:9;27994:18;27986:26;;28058:9;28052:4;28048:20;28044:1;28033:9;28029:17;28022:47;28086:131;28212:4;28086:131;:::i;:::-;28078:139;;27805:419;;;:::o;28230:::-;28396:4;28434:2;28423:9;28419:18;28411:26;;28483:9;28477:4;28473:20;28469:1;28458:9;28454:17;28447:47;28511:131;28637:4;28511:131;:::i;:::-;28503:139;;28230:419;;;:::o;28655:::-;28821:4;28859:2;28848:9;28844:18;28836:26;;28908:9;28902:4;28898:20;28894:1;28883:9;28879:17;28872:47;28936:131;29062:4;28936:131;:::i;:::-;28928:139;;28655:419;;;:::o;29080:::-;29246:4;29284:2;29273:9;29269:18;29261:26;;29333:9;29327:4;29323:20;29319:1;29308:9;29304:17;29297:47;29361:131;29487:4;29361:131;:::i;:::-;29353:139;;29080:419;;;:::o;29505:::-;29671:4;29709:2;29698:9;29694:18;29686:26;;29758:9;29752:4;29748:20;29744:1;29733:9;29729:17;29722:47;29786:131;29912:4;29786:131;:::i;:::-;29778:139;;29505:419;;;:::o;29930:::-;30096:4;30134:2;30123:9;30119:18;30111:26;;30183:9;30177:4;30173:20;30169:1;30158:9;30154:17;30147:47;30211:131;30337:4;30211:131;:::i;:::-;30203:139;;29930:419;;;:::o;30355:::-;30521:4;30559:2;30548:9;30544:18;30536:26;;30608:9;30602:4;30598:20;30594:1;30583:9;30579:17;30572:47;30636:131;30762:4;30636:131;:::i;:::-;30628:139;;30355:419;;;:::o;30780:::-;30946:4;30984:2;30973:9;30969:18;30961:26;;31033:9;31027:4;31023:20;31019:1;31008:9;31004:17;30997:47;31061:131;31187:4;31061:131;:::i;:::-;31053:139;;30780:419;;;:::o;31205:::-;31371:4;31409:2;31398:9;31394:18;31386:26;;31458:9;31452:4;31448:20;31444:1;31433:9;31429:17;31422:47;31486:131;31612:4;31486:131;:::i;:::-;31478:139;;31205:419;;;:::o;31630:::-;31796:4;31834:2;31823:9;31819:18;31811:26;;31883:9;31877:4;31873:20;31869:1;31858:9;31854:17;31847:47;31911:131;32037:4;31911:131;:::i;:::-;31903:139;;31630:419;;;:::o;32055:::-;32221:4;32259:2;32248:9;32244:18;32236:26;;32308:9;32302:4;32298:20;32294:1;32283:9;32279:17;32272:47;32336:131;32462:4;32336:131;:::i;:::-;32328:139;;32055:419;;;:::o;32480:::-;32646:4;32684:2;32673:9;32669:18;32661:26;;32733:9;32727:4;32723:20;32719:1;32708:9;32704:17;32697:47;32761:131;32887:4;32761:131;:::i;:::-;32753:139;;32480:419;;;:::o;32905:::-;33071:4;33109:2;33098:9;33094:18;33086:26;;33158:9;33152:4;33148:20;33144:1;33133:9;33129:17;33122:47;33186:131;33312:4;33186:131;:::i;:::-;33178:139;;32905:419;;;:::o;33330:::-;33496:4;33534:2;33523:9;33519:18;33511:26;;33583:9;33577:4;33573:20;33569:1;33558:9;33554:17;33547:47;33611:131;33737:4;33611:131;:::i;:::-;33603:139;;33330:419;;;:::o;33755:::-;33921:4;33959:2;33948:9;33944:18;33936:26;;34008:9;34002:4;33998:20;33994:1;33983:9;33979:17;33972:47;34036:131;34162:4;34036:131;:::i;:::-;34028:139;;33755:419;;;:::o;34180:::-;34346:4;34384:2;34373:9;34369:18;34361:26;;34433:9;34427:4;34423:20;34419:1;34408:9;34404:17;34397:47;34461:131;34587:4;34461:131;:::i;:::-;34453:139;;34180:419;;;:::o;34605:::-;34771:4;34809:2;34798:9;34794:18;34786:26;;34858:9;34852:4;34848:20;34844:1;34833:9;34829:17;34822:47;34886:131;35012:4;34886:131;:::i;:::-;34878:139;;34605:419;;;:::o;35030:::-;35196:4;35234:2;35223:9;35219:18;35211:26;;35283:9;35277:4;35273:20;35269:1;35258:9;35254:17;35247:47;35311:131;35437:4;35311:131;:::i;:::-;35303:139;;35030:419;;;:::o;35455:::-;35621:4;35659:2;35648:9;35644:18;35636:26;;35708:9;35702:4;35698:20;35694:1;35683:9;35679:17;35672:47;35736:131;35862:4;35736:131;:::i;:::-;35728:139;;35455:419;;;:::o;35880:::-;36046:4;36084:2;36073:9;36069:18;36061:26;;36133:9;36127:4;36123:20;36119:1;36108:9;36104:17;36097:47;36161:131;36287:4;36161:131;:::i;:::-;36153:139;;35880:419;;;:::o;36305:::-;36471:4;36509:2;36498:9;36494:18;36486:26;;36558:9;36552:4;36548:20;36544:1;36533:9;36529:17;36522:47;36586:131;36712:4;36586:131;:::i;:::-;36578:139;;36305:419;;;:::o;36730:222::-;36823:4;36861:2;36850:9;36846:18;36838:26;;36874:71;36942:1;36931:9;36927:17;36918:6;36874:71;:::i;:::-;36730:222;;;;:::o;36958:129::-;36992:6;37019:20;;:::i;:::-;37009:30;;37048:33;37076:4;37068:6;37048:33;:::i;:::-;36958:129;;;:::o;37093:75::-;37126:6;37159:2;37153:9;37143:19;;37093:75;:::o;37174:307::-;37235:4;37325:18;37317:6;37314:30;37311:56;;;37347:18;;:::i;:::-;37311:56;37385:29;37407:6;37385:29;:::i;:::-;37377:37;;37469:4;37463;37459:15;37451:23;;37174:307;;;:::o;37487:308::-;37549:4;37639:18;37631:6;37628:30;37625:56;;;37661:18;;:::i;:::-;37625:56;37699:29;37721:6;37699:29;:::i;:::-;37691:37;;37783:4;37777;37773:15;37765:23;;37487:308;;;:::o;37801:141::-;37850:4;37873:3;37865:11;;37896:3;37893:1;37886:14;37930:4;37927:1;37917:18;37909:26;;37801:141;;;:::o;37948:98::-;37999:6;38033:5;38027:12;38017:22;;37948:98;;;:::o;38052:99::-;38104:6;38138:5;38132:12;38122:22;;38052:99;;;:::o;38157:168::-;38240:11;38274:6;38269:3;38262:19;38314:4;38309:3;38305:14;38290:29;;38157:168;;;;:::o;38331:169::-;38415:11;38449:6;38444:3;38437:19;38489:4;38484:3;38480:14;38465:29;;38331:169;;;;:::o;38506:148::-;38608:11;38645:3;38630:18;;38506:148;;;;:::o;38660:273::-;38700:3;38719:20;38737:1;38719:20;:::i;:::-;38714:25;;38753:20;38771:1;38753:20;:::i;:::-;38748:25;;38875:1;38839:34;38835:42;38832:1;38829:49;38826:75;;;38881:18;;:::i;:::-;38826:75;38925:1;38922;38918:9;38911:16;;38660:273;;;;:::o;38939:305::-;38979:3;38998:20;39016:1;38998:20;:::i;:::-;38993:25;;39032:20;39050:1;39032:20;:::i;:::-;39027:25;;39186:1;39118:66;39114:74;39111:1;39108:81;39105:107;;;39192:18;;:::i;:::-;39105:107;39236:1;39233;39229:9;39222:16;;38939:305;;;;:::o;39250:185::-;39290:1;39307:20;39325:1;39307:20;:::i;:::-;39302:25;;39341:20;39359:1;39341:20;:::i;:::-;39336:25;;39380:1;39370:35;;39385:18;;:::i;:::-;39370:35;39427:1;39424;39420:9;39415:14;;39250:185;;;;:::o;39441:348::-;39481:7;39504:20;39522:1;39504:20;:::i;:::-;39499:25;;39538:20;39556:1;39538:20;:::i;:::-;39533:25;;39726:1;39658:66;39654:74;39651:1;39648:81;39643:1;39636:9;39629:17;39625:105;39622:131;;;39733:18;;:::i;:::-;39622:131;39781:1;39778;39774:9;39763:20;;39441:348;;;;:::o;39795:191::-;39835:4;39855:20;39873:1;39855:20;:::i;:::-;39850:25;;39889:20;39907:1;39889:20;:::i;:::-;39884:25;;39928:1;39925;39922:8;39919:34;;;39933:18;;:::i;:::-;39919:34;39978:1;39975;39971:9;39963:17;;39795:191;;;;:::o;39992:::-;40032:4;40052:20;40070:1;40052:20;:::i;:::-;40047:25;;40086:20;40104:1;40086:20;:::i;:::-;40081:25;;40125:1;40122;40119:8;40116:34;;;40130:18;;:::i;:::-;40116:34;40175:1;40172;40168:9;40160:17;;39992:191;;;;:::o;40189:96::-;40226:7;40255:24;40273:5;40255:24;:::i;:::-;40244:35;;40189:96;;;:::o;40291:90::-;40325:7;40368:5;40361:13;40354:21;40343:32;;40291:90;;;:::o;40387:149::-;40423:7;40463:66;40456:5;40452:78;40441:89;;40387:149;;;:::o;40542:110::-;40593:7;40622:24;40640:5;40622:24;:::i;:::-;40611:35;;40542:110;;;:::o;40658:125::-;40724:7;40753:24;40771:5;40753:24;:::i;:::-;40742:35;;40658:125;;;:::o;40789:118::-;40826:7;40866:34;40859:5;40855:46;40844:57;;40789:118;;;:::o;40913:126::-;40950:7;40990:42;40983:5;40979:54;40968:65;;40913:126;;;:::o;41045:77::-;41082:7;41111:5;41100:16;;41045:77;;;:::o;41128:154::-;41212:6;41207:3;41202;41189:30;41274:1;41265:6;41260:3;41256:16;41249:27;41128:154;;;:::o;41288:307::-;41356:1;41366:113;41380:6;41377:1;41374:13;41366:113;;;41465:1;41460:3;41456:11;41450:18;41446:1;41441:3;41437:11;41430:39;41402:2;41399:1;41395:10;41390:15;;41366:113;;;41497:6;41494:1;41491:13;41488:101;;;41577:1;41568:6;41563:3;41559:16;41552:27;41488:101;41337:258;41288:307;;;:::o;41601:171::-;41640:3;41663:24;41681:5;41663:24;:::i;:::-;41654:33;;41709:4;41702:5;41699:15;41696:41;;;41717:18;;:::i;:::-;41696:41;41764:1;41757:5;41753:13;41746:20;;41601:171;;;:::o;41778:320::-;41822:6;41859:1;41853:4;41849:12;41839:22;;41906:1;41900:4;41896:12;41927:18;41917:81;;41983:4;41975:6;41971:17;41961:27;;41917:81;42045:2;42037:6;42034:14;42014:18;42011:38;42008:84;;;42064:18;;:::i;:::-;42008:84;41829:269;41778:320;;;:::o;42104:281::-;42187:27;42209:4;42187:27;:::i;:::-;42179:6;42175:40;42317:6;42305:10;42302:22;42281:18;42269:10;42266:34;42263:62;42260:88;;;42328:18;;:::i;:::-;42260:88;42368:10;42364:2;42357:22;42147:238;42104:281;;:::o;42391:233::-;42430:3;42453:24;42471:5;42453:24;:::i;:::-;42444:33;;42499:66;42492:5;42489:77;42486:103;;;42569:18;;:::i;:::-;42486:103;42616:1;42609:5;42605:13;42598:20;;42391:233;;;:::o;42630:176::-;42662:1;42679:20;42697:1;42679:20;:::i;:::-;42674:25;;42713:20;42731:1;42713:20;:::i;:::-;42708:25;;42752:1;42742:35;;42757:18;;:::i;:::-;42742:35;42798:1;42795;42791:9;42786:14;;42630:176;;;;:::o;42812:180::-;42860:77;42857:1;42850:88;42957:4;42954:1;42947:15;42981:4;42978:1;42971:15;42998:180;43046:77;43043:1;43036:88;43143:4;43140:1;43133:15;43167:4;43164:1;43157:15;43184:180;43232:77;43229:1;43222:88;43329:4;43326:1;43319:15;43353:4;43350:1;43343:15;43370:180;43418:77;43415:1;43408:88;43515:4;43512:1;43505:15;43539:4;43536:1;43529:15;43556:180;43604:77;43601:1;43594:88;43701:4;43698:1;43691:15;43725:4;43722:1;43715:15;43742:117;43851:1;43848;43841:12;43865:117;43974:1;43971;43964:12;43988:117;44097:1;44094;44087:12;44111:117;44220:1;44217;44210:12;44234:102;44275:6;44326:2;44322:7;44317:2;44310:5;44306:14;44302:28;44292:38;;44234:102;;;:::o;44342:221::-;44482:34;44478:1;44470:6;44466:14;44459:58;44551:4;44546:2;44538:6;44534:15;44527:29;44342:221;:::o;44569:225::-;44709:34;44705:1;44697:6;44693:14;44686:58;44778:8;44773:2;44765:6;44761:15;44754:33;44569:225;:::o;44800:229::-;44940:34;44936:1;44928:6;44924:14;44917:58;45009:12;45004:2;44996:6;44992:15;44985:37;44800:229;:::o;45035:222::-;45175:34;45171:1;45163:6;45159:14;45152:58;45244:5;45239:2;45231:6;45227:15;45220:30;45035:222;:::o;45263:221::-;45403:34;45399:1;45391:6;45387:14;45380:58;45472:4;45467:2;45459:6;45455:15;45448:29;45263:221;:::o;45490:224::-;45630:34;45626:1;45618:6;45614:14;45607:58;45699:7;45694:2;45686:6;45682:15;45675:32;45490:224;:::o;45720:221::-;45860:34;45856:1;45848:6;45844:14;45837:58;45929:4;45924:2;45916:6;45912:15;45905:29;45720:221;:::o;45947:167::-;46087:19;46083:1;46075:6;46071:14;46064:43;45947:167;:::o;46120:244::-;46260:34;46256:1;46248:6;46244:14;46237:58;46329:27;46324:2;46316:6;46312:15;46305:52;46120:244;:::o;46370:230::-;46510:34;46506:1;46498:6;46494:14;46487:58;46579:13;46574:2;46566:6;46562:15;46555:38;46370:230;:::o;46606:225::-;46746:34;46742:1;46734:6;46730:14;46723:58;46815:8;46810:2;46802:6;46798:15;46791:33;46606:225;:::o;46837:155::-;46977:7;46973:1;46965:6;46961:14;46954:31;46837:155;:::o;46998:182::-;47138:34;47134:1;47126:6;47122:14;47115:58;46998:182;:::o;47186:176::-;47326:28;47322:1;47314:6;47310:14;47303:52;47186:176;:::o;47368:237::-;47508:34;47504:1;47496:6;47492:14;47485:58;47577:20;47572:2;47564:6;47560:15;47553:45;47368:237;:::o;47611:221::-;47751:34;47747:1;47739:6;47735:14;47728:58;47820:4;47815:2;47807:6;47803:15;47796:29;47611:221;:::o;47838:238::-;47978:34;47974:1;47966:6;47962:14;47955:58;48047:21;48042:2;48034:6;48030:15;48023:46;47838:238;:::o;48082:179::-;48222:31;48218:1;48210:6;48206:14;48199:55;48082:179;:::o;48267:220::-;48407:34;48403:1;48395:6;48391:14;48384:58;48476:3;48471:2;48463:6;48459:15;48452:28;48267:220;:::o;48493:178::-;48633:30;48629:1;48621:6;48617:14;48610:54;48493:178;:::o;48677:174::-;48817:26;48813:1;48805:6;48801:14;48794:50;48677:174;:::o;48857:233::-;48997:34;48993:1;48985:6;48981:14;48974:58;49066:16;49061:2;49053:6;49049:15;49042:41;48857:233;:::o;49096:181::-;49236:33;49232:1;49224:6;49220:14;49213:57;49096:181;:::o;49283:234::-;49423:34;49419:1;49411:6;49407:14;49400:58;49492:17;49487:2;49479:6;49475:15;49468:42;49283:234;:::o;49523:173::-;49663:25;49659:1;49651:6;49647:14;49640:49;49523:173;:::o;49702:232::-;49842:34;49838:1;49830:6;49826:14;49819:58;49911:15;49906:2;49898:6;49894:15;49887:40;49702:232;:::o;49940:221::-;50080:34;50076:1;50068:6;50064:14;50057:58;50149:4;50144:2;50136:6;50132:15;50125:29;49940:221;:::o;50167:151::-;50307:3;50303:1;50295:6;50291:14;50284:27;50167:151;:::o;50324:122::-;50397:24;50415:5;50397:24;:::i;:::-;50390:5;50387:35;50377:63;;50436:1;50433;50426:12;50377:63;50324:122;:::o;50452:116::-;50522:21;50537:5;50522:21;:::i;:::-;50515:5;50512:32;50502:60;;50558:1;50555;50548:12;50502:60;50452:116;:::o;50574:120::-;50646:23;50663:5;50646:23;:::i;:::-;50639:5;50636:34;50626:62;;50684:1;50681;50674:12;50626:62;50574:120;:::o;50700:150::-;50787:38;50819:5;50787:38;:::i;:::-;50780:5;50777:49;50767:77;;50840:1;50837;50830:12;50767:77;50700:150;:::o;50856:180::-;50958:53;51005:5;50958:53;:::i;:::-;50951:5;50948:64;50938:92;;51026:1;51023;51016:12;50938:92;50856:180;:::o;51042:122::-;51115:24;51133:5;51115:24;:::i;:::-;51108:5;51105:35;51095:63;;51154:1;51151;51144:12;51095:63;51042:122;:::o

Swarm Source

ipfs://1a49510bc290a5bed646862fa7632027b33a32695bc02d25eb1b08b1df2f1787
Loading...
Loading
Loading...
Loading
[ 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.