ETH Price: $3,170.43 (-8.39%)
Gas: 3 Gwei

Token

BeachverseNFT (BEVR)
 

Overview

Max Total Supply

2,222 BEVR

Holders

579

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
y1ppy.eth
Balance
1 BEVR
0xC077107af1B6c41AA70338b7352CEFFf7bA78292
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:
BeachverseNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

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

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmdkAVTkPaEkktYZbVxxsQPaxrC1NmNqgX5m2Lz4XhWJns";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;
    uint256 public constant MAX_MINTS_PER_TX = 5;
    uint256 public maxSupply = 2222;
    uint256 public constant PUBLIC_SALE_PRICE = 0.05 ether;
    bool public isPublicSaleActive = true;




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

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



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

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

    



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


    constructor(
    ) ERC721A("BeachverseNFT", "BEVR", 100, maxSupply) {
    }
    address private wallet1 = 0xB39117Bd800D3E73D611cDdEf750995F9C8BdA04;
    address private wallet2 = 0x1CA600f828f371Cbbc68119c27eB46a3DBefA6C7;
    address private wallet3 = 0xfDC65A64165B6Bc3D5e8EcC3f7747eCeAcdc755F;

    // ============ 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
    //The normal mint function with a cost of 0 would work too
   




    // ============ 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 withdraw() public onlyOwner {
        uint256 _team = address(this).balance;
        uint256 _w1= SafeMath.div(SafeMath.mul(_team,33), 100);
        uint256 _w2 = SafeMath.div(SafeMath.mul(_team,33), 100);
		    uint256 _w3 = SafeMath.div(SafeMath.mul(_team,34), 100);
        payable(wallet1).transfer(_w1);
        payable(wallet2).transfer(_w2);
        payable(wallet3).transfer(_w3);

    }

    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":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60c06040526000805560006007556040518060600160405280603581526020016200511c60359139600b90805190602001906200003e9291906200041c565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506108ae600d556001600e60006101000a81548160ff02191690831515021790555073b39117bd800d3e73d611cddef750995f9c8bda04600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731ca600f828f371cbbc68119c27eb46a3dbefa6c7600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fdc65a64165b6bc3d5e8ecc3f7747eceacdc755f601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001dc57600080fd5b506040518060400160405280600d81526020017f426561636876657273654e4654000000000000000000000000000000000000008152506040518060400160405280600481526020017f42455652000000000000000000000000000000000000000000000000000000008152506064600d546000811162000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b90620005be565b60405180910390fd5b60008211620002da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d1906200059c565b60405180910390fd5b8360019080519060200190620002f29291906200041c565b5082600290805190602001906200030b9291906200041c565b508160a0818152505080608081815250505050505062000340620003346200034e60201b60201c565b6200035660201b60201c565b600160098190555062000656565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200042a90620005f1565b90600052602060002090601f0160209004810192826200044e57600085556200049a565b82601f106200046957805160ff19168380011785556200049a565b828001600101855582156200049a579182015b82811115620004995782518255916020019190600101906200047c565b5b509050620004a99190620004ad565b5090565b5b80821115620004c8576000816000905550600101620004ae565b5090565b6000620004db602783620005e0565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000543602e83620005e0565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620005b781620004cc565b9050919050565b60006020820190508181036000830152620005d98162000534565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200060a57607f821691505b6020821081141562000621576200062062000627565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a051614a95620006876000396000818161241e015281816124470152612bc0015260005050614a956000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146106e6578063e43082f714610711578063e985e9c51461073a578063f2fde38b14610777576101e3565b8063b88d4fde1461062a578063c6a91b4214610653578063c87b56dd1461067e578063d5abeb01146106bb576101e3565b80638da5cb5b116100d15780638da5cb5b1461058f57806395d89b41146105ba578063a0712d68146105e5578063a22cb46514610601576101e3565b80636352211e146104d357806370a0823114610510578063714c53981461054d578063715018a614610578576101e3565b806328cad13d1161017a57806342842e0e1161014957806342842e0e1461041b57806349df728c146104445780634f6ccce71461046d57806355f804b3146104aa576101e3565b806328cad13d146103605780632a55205a146103895780632f745c59146103c75780633ccfd60b14610404576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613454565b6107a0565b60405161021c919061414c565b60405180910390f35b34801561023157600080fd5b5061023a61081a565b6040516102479190614167565b60405180910390f35b34801561025c57600080fd5b506102656108ac565b60405161027291906144a9565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613539565b6108b7565b6040516102af91906140bc565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906133c6565b61093c565b005b3480156102ed57600080fd5b506102f6610a55565b60405161030391906144a9565b60405180910390f35b34801561031857600080fd5b50610321610a5e565b60405161032e919061414c565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906132c0565b610a71565b005b34801561036c57600080fd5b5061038760048036038101906103829190613402565b610a81565b005b34801561039557600080fd5b506103b060048036038101906103ab919061358b565b610b1a565b6040516103be929190614123565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906133c6565b610b86565b6040516103fb91906144a9565b60405180910390f35b34801561041057600080fd5b50610419610d84565b005b34801561042757600080fd5b50610442600480360381019061043d91906132c0565b610f91565b005b34801561045057600080fd5b5061046b600480360381019061046691906134a6565b610fb1565b005b34801561047957600080fd5b50610494600480360381019061048f9190613539565b61114c565b6040516104a191906144a9565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906134f8565b61119f565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613539565b611235565b60405161050791906140bc565b60405180910390f35b34801561051c57600080fd5b506105376004803603810190610532919061325b565b61124b565b60405161054491906144a9565b60405180910390f35b34801561055957600080fd5b50610562611334565b60405161056f9190614167565b60405180910390f35b34801561058457600080fd5b5061058d6113c6565b005b34801561059b57600080fd5b506105a461144e565b6040516105b191906140bc565b60405180910390f35b3480156105c657600080fd5b506105cf611478565b6040516105dc9190614167565b60405180910390f35b6105ff60048036038101906105fa9190613539565b61150a565b005b34801561060d57600080fd5b506106286004803603810190610623919061338a565b6116b3565b005b34801561063657600080fd5b50610651600480360381019061064c919061330f565b611834565b005b34801561065f57600080fd5b50610668611890565b60405161067591906144a9565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613539565b611895565b6040516106b29190614167565b60405180910390f35b3480156106c757600080fd5b506106d061191d565b6040516106dd91906144a9565b60405180910390f35b3480156106f257600080fd5b506106fb611923565b60405161070891906144a9565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613402565b611929565b005b34801561074657600080fd5b50610761600480360381019061075c9190613284565b6119c2565b60405161076e919061414c565b60405180910390f35b34801561078357600080fd5b5061079e6004803603810190610799919061325b565b611adc565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610813575061081282611bd4565b5b9050919050565b6060600180546108299061485c565b80601f01602080910402602001604051908101604052809291908181526020018280546108559061485c565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b60006108c282611d1e565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890614469565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782611235565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90614349565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7611d2b565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00611d2b565b6119c2565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90614289565b60405180910390fd5b610a50838383611d33565b505050565b60008054905090565b600e60009054906101000a900460ff1681565b610a7c838383611de5565b505050565b610a89611d2b565b73ffffffffffffffffffffffffffffffffffffffff16610aa761144e565b73ffffffffffffffffffffffffffffffffffffffff1614610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af4906142e9565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610b2684611d1e565b610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90614269565b60405180910390fd5b30610b7b610b7485600561239e565b60646123b4565b915091509250929050565b6000610b918361124b565b8210610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990614189565b60405180910390fd5b6000610bdc610a55565b905060008060005b83811015610d42576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e5786841415610d1f578195505050505050610d7e565b8380610d2a9061488e565b9450505b508080610d3a9061488e565b915050610be4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906143e9565b60405180910390fd5b92915050565b610d8c611d2b565b73ffffffffffffffffffffffffffffffffffffffff16610daa61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906142e9565b60405180910390fd5b60004790506000610e1c610e1583602161239e565b60646123b4565b90506000610e35610e2e84602161239e565b60646123b4565b90506000610e4e610e4785602261239e565b60646123b4565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015610eb8573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610f21573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f8a573d6000803e3d6000fd5b5050505050565b610fac83838360405180602001604052806000815250611834565b505050565b610fb9611d2b565b73ffffffffffffffffffffffffffffffffffffffff16610fd761144e565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906142e9565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161106891906140bc565b60206040518083038186803b15801561108057600080fd5b505afa158015611094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b89190613562565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110f5929190614123565b602060405180830381600087803b15801561110f57600080fd5b505af1158015611123573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611147919061342b565b505050565b6000611156610a55565b8210611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906141e9565b60405180910390fd5b819050919050565b6111a7611d2b565b73ffffffffffffffffffffffffffffffffffffffff166111c561144e565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906142e9565b60405180910390fd5b80600b9080519060200190611231929190612ff1565b5050565b6000611240826123ca565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906142a9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546113439061485c565b80601f016020809104026020016040519081016040528092919081815260200182805461136f9061485c565b80156113bc5780601f10611391576101008083540402835291602001916113bc565b820191906000526020600020905b81548152906001019060200180831161139f57829003601f168201915b5050505050905090565b6113ce611d2b565b73ffffffffffffffffffffffffffffffffffffffff166113ec61144e565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906142e9565b60405180910390fd5b61144c60006125cd565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546114879061485c565b80601f01602080910402602001604051908101604052809291908181526020018280546114b39061485c565b80156115005780601f106114d557610100808354040283529160200191611500565b820191906000526020600020905b8154815290600101906020018083116114e357829003601f168201915b5050505050905090565b60026009541415611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790614409565b60405180910390fd5b600260098190555066b1a2bc2ec500008134818361156e919061467a565b146115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a5906143c9565b60405180910390fd5b600e60009054906101000a900460ff166115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490614449565b60405180910390fd5b82600d548161160a610a55565b61161491906145f3565b1115611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614209565b60405180910390fd5b83600581111561169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190614249565b60405180910390fd5b6116a43386612693565b50505050600160098190555050565b6116bb611d2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614309565b60405180910390fd5b8060066000611736611d2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117e3611d2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611828919061414c565b60405180910390a35050565b61183f848484611de5565b61184b848484846126b1565b61188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190614369565b60405180910390fd5b50505050565b600581565b60606118a082611d1e565b6118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690614269565b60405180910390fd5b600b6118f66001846118f191906145f3565b612848565b604051602001611907929190614082565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611931611d2b565b73ffffffffffffffffffffffffffffffffffffffff1661194f61144e565b73ffffffffffffffffffffffffffffffffffffffff16146119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906142e9565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611ab957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a5191906140bc565b60206040518083038186803b158015611a6957600080fd5b505afa158015611a7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa191906134cf565b73ffffffffffffffffffffffffffffffffffffffff16145b15611ac8576001915050611ad6565b611ad284846129f5565b9150505b92915050565b611ae4611d2b565b73ffffffffffffffffffffffffffffffffffffffff16611b0261144e565b73ffffffffffffffffffffffffffffffffffffffff1614611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906142e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906141a9565b60405180910390fd5b611bd1816125cd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d0757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d175750611d1682612a89565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611df0826123ca565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e17611d2b565b73ffffffffffffffffffffffffffffffffffffffff161480611e735750611e3c611d2b565b73ffffffffffffffffffffffffffffffffffffffff16611e5b846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8f5750611e8e8260000151611e89611d2b565b6119c2565b5b905080611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614329565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a906142c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90614229565b60405180910390fd5b611fc08585856001612af3565b611fd06000848460000151611d33565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661203e91906146d4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120e291906145ad565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121e891906145f3565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561232e5761225e81611d1e565b1561232d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123968686866001612af9565b505050505050565b600081836123ac919061467a565b905092915050565b600081836123c29190614649565b905092915050565b6123d2613077565b6123db82611d1e565b61241a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612411906141c9565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061247e5760017f0000000000000000000000000000000000000000000000000000000000000000846124719190614708565b61247b91906145f3565b90505b60008390505b81811061258c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612578578093505050506125c8565b50808061258490614832565b915050612484565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf90614429565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126ad828260405180602001604052806000815250612aff565b5050565b60006126d28473ffffffffffffffffffffffffffffffffffffffff16612fde565b1561283b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126fb611d2b565b8786866040518563ffffffff1660e01b815260040161271d94939291906140d7565b602060405180830381600087803b15801561273757600080fd5b505af192505050801561276857506040513d601f19601f82011682018060405250810190612765919061347d565b60015b6127eb573d8060008114612798576040519150601f19603f3d011682016040523d82523d6000602084013e61279d565b606091505b506000815114156127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da90614369565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612840565b600190505b949350505050565b60606000821415612890576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f0565b600082905060005b600082146128c25780806128ab9061488e565b915050600a826128bb9190614649565b9150612898565b60008167ffffffffffffffff811115612904577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129365781602001600182028036833780820191505090505b5090505b600085146129e95760018261294f9190614708565b9150600a8561295e91906148d7565b603061296a91906145f3565b60f81b8183815181106129a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e29190614649565b945061293a565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c906143a9565b60405180910390fd5b612b7e81611d1e565b15612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb590614389565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614489565b60405180910390fd5b612c2e6000858386612af3565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d2b91906145ad565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d5291906145ad565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fc157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6160008884886126b1565b612fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9790614369565b60405180910390fd5b8180612fab9061488e565b9250508080612fb99061488e565b915050612ef0565b5080600081905550612fd66000878588612af9565b505050505050565b600080823b905060008111915050919050565b828054612ffd9061485c565b90600052602060002090601f01602090048101928261301f5760008555613066565b82601f1061303857805160ff1916838001178555613066565b82800160010185558215613066579182015b8281111561306557825182559160200191906001019061304a565b5b50905061307391906130b1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156130ca5760008160009055506001016130b2565b5090565b60006130e16130dc846144f5565b6144c4565b9050828152602081018484840111156130f957600080fd5b6131048482856147f0565b509392505050565b600061311f61311a84614525565b6144c4565b90508281526020810184848401111561313757600080fd5b6131428482856147f0565b509392505050565b600081359050613159816149d5565b92915050565b60008135905061316e816149ec565b92915050565b600081519050613183816149ec565b92915050565b60008135905061319881614a03565b92915050565b6000815190506131ad81614a03565b92915050565b600082601f8301126131c457600080fd5b81356131d48482602086016130ce565b91505092915050565b6000813590506131ec81614a1a565b92915050565b60008151905061320181614a31565b92915050565b600082601f83011261321857600080fd5b813561322884826020860161310c565b91505092915050565b60008135905061324081614a48565b92915050565b60008151905061325581614a48565b92915050565b60006020828403121561326d57600080fd5b600061327b8482850161314a565b91505092915050565b6000806040838503121561329757600080fd5b60006132a58582860161314a565b92505060206132b68582860161314a565b9150509250929050565b6000806000606084860312156132d557600080fd5b60006132e38682870161314a565b93505060206132f48682870161314a565b925050604061330586828701613231565b9150509250925092565b6000806000806080858703121561332557600080fd5b60006133338782880161314a565b94505060206133448782880161314a565b935050604061335587828801613231565b925050606085013567ffffffffffffffff81111561337257600080fd5b61337e878288016131b3565b91505092959194509250565b6000806040838503121561339d57600080fd5b60006133ab8582860161314a565b92505060206133bc8582860161315f565b9150509250929050565b600080604083850312156133d957600080fd5b60006133e78582860161314a565b92505060206133f885828601613231565b9150509250929050565b60006020828403121561341457600080fd5b60006134228482850161315f565b91505092915050565b60006020828403121561343d57600080fd5b600061344b84828501613174565b91505092915050565b60006020828403121561346657600080fd5b600061347484828501613189565b91505092915050565b60006020828403121561348f57600080fd5b600061349d8482850161319e565b91505092915050565b6000602082840312156134b857600080fd5b60006134c6848285016131dd565b91505092915050565b6000602082840312156134e157600080fd5b60006134ef848285016131f2565b91505092915050565b60006020828403121561350a57600080fd5b600082013567ffffffffffffffff81111561352457600080fd5b61353084828501613207565b91505092915050565b60006020828403121561354b57600080fd5b600061355984828501613231565b91505092915050565b60006020828403121561357457600080fd5b600061358284828501613246565b91505092915050565b6000806040838503121561359e57600080fd5b60006135ac85828601613231565b92505060206135bd85828601613231565b9150509250929050565b6135d08161473c565b82525050565b6135df8161474e565b82525050565b60006135f08261456a565b6135fa8185614580565b935061360a8185602086016147ff565b613613816149c4565b840191505092915050565b600061362982614575565b6136338185614591565b93506136438185602086016147ff565b61364c816149c4565b840191505092915050565b600061366282614575565b61366c81856145a2565b935061367c8185602086016147ff565b80840191505092915050565b600081546136958161485c565b61369f81866145a2565b945060018216600081146136ba57600181146136cb576136fe565b60ff198316865281860193506136fe565b6136d485614555565b60005b838110156136f6578154818901526001820191506020810190506136d7565b838801955050505b50505092915050565b6000613714602283614591565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061377a602683614591565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e0602a83614591565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613846602383614591565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ac602283614591565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613912602583614591565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613978602283614591565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139de601183614591565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b6000613a1e603983614591565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613a84602b83614591565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613aea602683614591565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b506005836145a2565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613b90602083614591565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613bd0601a83614591565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613c10603283614591565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613c76602283614591565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cdc603383614591565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613d42601d83614591565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613d82602183614591565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de8601883614591565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b6000613e28602e83614591565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613e8e601f83614591565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613ece602f83614591565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f34601783614591565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b6000613f74602d83614591565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613fda602283614591565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140406001836145a2565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61407c816147e6565b82525050565b600061408e8285613688565b915061409982614033565b91506140a58284613657565b91506140b082613b43565b91508190509392505050565b60006020820190506140d160008301846135c7565b92915050565b60006080820190506140ec60008301876135c7565b6140f960208301866135c7565b6141066040830185614073565b818103606083015261411881846135e5565b905095945050505050565b600060408201905061413860008301856135c7565b6141456020830184614073565b9392505050565b600060208201905061416160008301846135d6565b92915050565b60006020820190508181036000830152614181818461361e565b905092915050565b600060208201905081810360008301526141a281613707565b9050919050565b600060208201905081810360008301526141c28161376d565b9050919050565b600060208201905081810360008301526141e2816137d3565b9050919050565b6000602082019050818103600083015261420281613839565b9050919050565b600060208201905081810360008301526142228161389f565b9050919050565b6000602082019050818103600083015261424281613905565b9050919050565b600060208201905081810360008301526142628161396b565b9050919050565b60006020820190508181036000830152614282816139d1565b9050919050565b600060208201905081810360008301526142a281613a11565b9050919050565b600060208201905081810360008301526142c281613a77565b9050919050565b600060208201905081810360008301526142e281613add565b9050919050565b6000602082019050818103600083015261430281613b83565b9050919050565b6000602082019050818103600083015261432281613bc3565b9050919050565b6000602082019050818103600083015261434281613c03565b9050919050565b6000602082019050818103600083015261436281613c69565b9050919050565b6000602082019050818103600083015261438281613ccf565b9050919050565b600060208201905081810360008301526143a281613d35565b9050919050565b600060208201905081810360008301526143c281613d75565b9050919050565b600060208201905081810360008301526143e281613ddb565b9050919050565b6000602082019050818103600083015261440281613e1b565b9050919050565b6000602082019050818103600083015261442281613e81565b9050919050565b6000602082019050818103600083015261444281613ec1565b9050919050565b6000602082019050818103600083015261446281613f27565b9050919050565b6000602082019050818103600083015261448281613f67565b9050919050565b600060208201905081810360008301526144a281613fcd565b9050919050565b60006020820190506144be6000830184614073565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144eb576144ea614995565b5b8060405250919050565b600067ffffffffffffffff8211156145105761450f614995565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156145405761453f614995565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145b8826147aa565b91506145c3836147aa565b9250826fffffffffffffffffffffffffffffffff038211156145e8576145e7614908565b5b828201905092915050565b60006145fe826147e6565b9150614609836147e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561463e5761463d614908565b5b828201905092915050565b6000614654826147e6565b915061465f836147e6565b92508261466f5761466e614937565b5b828204905092915050565b6000614685826147e6565b9150614690836147e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c9576146c8614908565b5b828202905092915050565b60006146df826147aa565b91506146ea836147aa565b9250828210156146fd576146fc614908565b5b828203905092915050565b6000614713826147e6565b915061471e836147e6565b92508282101561473157614730614908565b5b828203905092915050565b6000614747826147c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006147918261473c565b9050919050565b60006147a38261473c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561481d578082015181840152602081019050614802565b8381111561482c576000848401525b50505050565b600061483d826147e6565b9150600082141561485157614850614908565b5b600182039050919050565b6000600282049050600182168061487457607f821691505b6020821081141561488857614887614966565b5b50919050565b6000614899826147e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148cc576148cb614908565b5b600182019050919050565b60006148e2826147e6565b91506148ed836147e6565b9250826148fd576148fc614937565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6149de8161473c565b81146149e957600080fd5b50565b6149f58161474e565b8114614a0057600080fd5b50565b614a0c8161475a565b8114614a1757600080fd5b50565b614a2381614786565b8114614a2e57600080fd5b50565b614a3a81614798565b8114614a4557600080fd5b50565b614a51816147e6565b8114614a5c57600080fd5b5056fea264697066735822122032ad3f9b871d89bdb26bcc62aeac0af9a70b4cdfb59680499b24e28f70be7e2164736f6c63430008000033697066733a2f2f516d646b4156546b5061456b6b74595a6256787873515061787243314e6d4e716758356d324c7a345868574a6e73

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146106e6578063e43082f714610711578063e985e9c51461073a578063f2fde38b14610777576101e3565b8063b88d4fde1461062a578063c6a91b4214610653578063c87b56dd1461067e578063d5abeb01146106bb576101e3565b80638da5cb5b116100d15780638da5cb5b1461058f57806395d89b41146105ba578063a0712d68146105e5578063a22cb46514610601576101e3565b80636352211e146104d357806370a0823114610510578063714c53981461054d578063715018a614610578576101e3565b806328cad13d1161017a57806342842e0e1161014957806342842e0e1461041b57806349df728c146104445780634f6ccce71461046d57806355f804b3146104aa576101e3565b806328cad13d146103605780632a55205a146103895780632f745c59146103c75780633ccfd60b14610404576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e15780631e84c4131461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613454565b6107a0565b60405161021c919061414c565b60405180910390f35b34801561023157600080fd5b5061023a61081a565b6040516102479190614167565b60405180910390f35b34801561025c57600080fd5b506102656108ac565b60405161027291906144a9565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190613539565b6108b7565b6040516102af91906140bc565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906133c6565b61093c565b005b3480156102ed57600080fd5b506102f6610a55565b60405161030391906144a9565b60405180910390f35b34801561031857600080fd5b50610321610a5e565b60405161032e919061414c565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906132c0565b610a71565b005b34801561036c57600080fd5b5061038760048036038101906103829190613402565b610a81565b005b34801561039557600080fd5b506103b060048036038101906103ab919061358b565b610b1a565b6040516103be929190614123565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e991906133c6565b610b86565b6040516103fb91906144a9565b60405180910390f35b34801561041057600080fd5b50610419610d84565b005b34801561042757600080fd5b50610442600480360381019061043d91906132c0565b610f91565b005b34801561045057600080fd5b5061046b600480360381019061046691906134a6565b610fb1565b005b34801561047957600080fd5b50610494600480360381019061048f9190613539565b61114c565b6040516104a191906144a9565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906134f8565b61119f565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613539565b611235565b60405161050791906140bc565b60405180910390f35b34801561051c57600080fd5b506105376004803603810190610532919061325b565b61124b565b60405161054491906144a9565b60405180910390f35b34801561055957600080fd5b50610562611334565b60405161056f9190614167565b60405180910390f35b34801561058457600080fd5b5061058d6113c6565b005b34801561059b57600080fd5b506105a461144e565b6040516105b191906140bc565b60405180910390f35b3480156105c657600080fd5b506105cf611478565b6040516105dc9190614167565b60405180910390f35b6105ff60048036038101906105fa9190613539565b61150a565b005b34801561060d57600080fd5b506106286004803603810190610623919061338a565b6116b3565b005b34801561063657600080fd5b50610651600480360381019061064c919061330f565b611834565b005b34801561065f57600080fd5b50610668611890565b60405161067591906144a9565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613539565b611895565b6040516106b29190614167565b60405180910390f35b3480156106c757600080fd5b506106d061191d565b6040516106dd91906144a9565b60405180910390f35b3480156106f257600080fd5b506106fb611923565b60405161070891906144a9565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613402565b611929565b005b34801561074657600080fd5b50610761600480360381019061075c9190613284565b6119c2565b60405161076e919061414c565b60405180910390f35b34801561078357600080fd5b5061079e6004803603810190610799919061325b565b611adc565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610813575061081282611bd4565b5b9050919050565b6060600180546108299061485c565b80601f01602080910402602001604051908101604052809291908181526020018280546108559061485c565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b66b1a2bc2ec5000081565b60006108c282611d1e565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890614469565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782611235565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af90614349565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7611d2b565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00611d2b565b6119c2565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90614289565b60405180910390fd5b610a50838383611d33565b505050565b60008054905090565b600e60009054906101000a900460ff1681565b610a7c838383611de5565b505050565b610a89611d2b565b73ffffffffffffffffffffffffffffffffffffffff16610aa761144e565b73ffffffffffffffffffffffffffffffffffffffff1614610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af4906142e9565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610b2684611d1e565b610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90614269565b60405180910390fd5b30610b7b610b7485600561239e565b60646123b4565b915091509250929050565b6000610b918361124b565b8210610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990614189565b60405180910390fd5b6000610bdc610a55565b905060008060005b83811015610d42576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2e5786841415610d1f578195505050505050610d7e565b8380610d2a9061488e565b9450505b508080610d3a9061488e565b915050610be4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d75906143e9565b60405180910390fd5b92915050565b610d8c611d2b565b73ffffffffffffffffffffffffffffffffffffffff16610daa61144e565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df7906142e9565b60405180910390fd5b60004790506000610e1c610e1583602161239e565b60646123b4565b90506000610e35610e2e84602161239e565b60646123b4565b90506000610e4e610e4785602261239e565b60646123b4565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015610eb8573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610f21573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f8a573d6000803e3d6000fd5b5050505050565b610fac83838360405180602001604052806000815250611834565b505050565b610fb9611d2b565b73ffffffffffffffffffffffffffffffffffffffff16610fd761144e565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906142e9565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161106891906140bc565b60206040518083038186803b15801561108057600080fd5b505afa158015611094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b89190613562565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110f5929190614123565b602060405180830381600087803b15801561110f57600080fd5b505af1158015611123573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611147919061342b565b505050565b6000611156610a55565b8210611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906141e9565b60405180910390fd5b819050919050565b6111a7611d2b565b73ffffffffffffffffffffffffffffffffffffffff166111c561144e565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906142e9565b60405180910390fd5b80600b9080519060200190611231929190612ff1565b5050565b6000611240826123ca565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906142a9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546113439061485c565b80601f016020809104026020016040519081016040528092919081815260200182805461136f9061485c565b80156113bc5780601f10611391576101008083540402835291602001916113bc565b820191906000526020600020905b81548152906001019060200180831161139f57829003601f168201915b5050505050905090565b6113ce611d2b565b73ffffffffffffffffffffffffffffffffffffffff166113ec61144e565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611439906142e9565b60405180910390fd5b61144c60006125cd565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546114879061485c565b80601f01602080910402602001604051908101604052809291908181526020018280546114b39061485c565b80156115005780601f106114d557610100808354040283529160200191611500565b820191906000526020600020905b8154815290600101906020018083116114e357829003601f168201915b5050505050905090565b60026009541415611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790614409565b60405180910390fd5b600260098190555066b1a2bc2ec500008134818361156e919061467a565b146115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a5906143c9565b60405180910390fd5b600e60009054906101000a900460ff166115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490614449565b60405180910390fd5b82600d548161160a610a55565b61161491906145f3565b1115611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614209565b60405180910390fd5b83600581111561169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190614249565b60405180910390fd5b6116a43386612693565b50505050600160098190555050565b6116bb611d2b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614309565b60405180910390fd5b8060066000611736611d2b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117e3611d2b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611828919061414c565b60405180910390a35050565b61183f848484611de5565b61184b848484846126b1565b61188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190614369565b60405180910390fd5b50505050565b600581565b60606118a082611d1e565b6118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690614269565b60405180910390fd5b600b6118f66001846118f191906145f3565b612848565b604051602001611907929190614082565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611931611d2b565b73ffffffffffffffffffffffffffffffffffffffff1661194f61144e565b73ffffffffffffffffffffffffffffffffffffffff16146119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906142e9565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611ab957508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a5191906140bc565b60206040518083038186803b158015611a6957600080fd5b505afa158015611a7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa191906134cf565b73ffffffffffffffffffffffffffffffffffffffff16145b15611ac8576001915050611ad6565b611ad284846129f5565b9150505b92915050565b611ae4611d2b565b73ffffffffffffffffffffffffffffffffffffffff16611b0261144e565b73ffffffffffffffffffffffffffffffffffffffff1614611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906142e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf906141a9565b60405180910390fd5b611bd1816125cd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d0757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d175750611d1682612a89565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611df0826123ca565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e17611d2b565b73ffffffffffffffffffffffffffffffffffffffff161480611e735750611e3c611d2b565b73ffffffffffffffffffffffffffffffffffffffff16611e5b846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8f5750611e8e8260000151611e89611d2b565b6119c2565b5b905080611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614329565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a906142c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90614229565b60405180910390fd5b611fc08585856001612af3565b611fd06000848460000151611d33565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661203e91906146d4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120e291906145ad565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121e891906145f3565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561232e5761225e81611d1e565b1561232d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123968686866001612af9565b505050505050565b600081836123ac919061467a565b905092915050565b600081836123c29190614649565b905092915050565b6123d2613077565b6123db82611d1e565b61241a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612411906141c9565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000064831061247e5760017f0000000000000000000000000000000000000000000000000000000000000064846124719190614708565b61247b91906145f3565b90505b60008390505b81811061258c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612578578093505050506125c8565b50808061258490614832565b915050612484565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf90614429565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126ad828260405180602001604052806000815250612aff565b5050565b60006126d28473ffffffffffffffffffffffffffffffffffffffff16612fde565b1561283b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126fb611d2b565b8786866040518563ffffffff1660e01b815260040161271d94939291906140d7565b602060405180830381600087803b15801561273757600080fd5b505af192505050801561276857506040513d601f19601f82011682018060405250810190612765919061347d565b60015b6127eb573d8060008114612798576040519150601f19603f3d011682016040523d82523d6000602084013e61279d565b606091505b506000815114156127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da90614369565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612840565b600190505b949350505050565b60606000821415612890576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f0565b600082905060005b600082146128c25780806128ab9061488e565b915050600a826128bb9190614649565b9150612898565b60008167ffffffffffffffff811115612904577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129365781602001600182028036833780820191505090505b5090505b600085146129e95760018261294f9190614708565b9150600a8561295e91906148d7565b603061296a91906145f3565b60f81b8183815181106129a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e29190614649565b945061293a565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c906143a9565b60405180910390fd5b612b7e81611d1e565b15612bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb590614389565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614489565b60405180910390fd5b612c2e6000858386612af3565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d2b91906145ad565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d5291906145ad565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fc157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6160008884886126b1565b612fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9790614369565b60405180910390fd5b8180612fab9061488e565b9250508080612fb99061488e565b915050612ef0565b5080600081905550612fd66000878588612af9565b505050505050565b600080823b905060008111915050919050565b828054612ffd9061485c565b90600052602060002090601f01602090048101928261301f5760008555613066565b82601f1061303857805160ff1916838001178555613066565b82800160010185558215613066579182015b8281111561306557825182559160200191906001019061304a565b5b50905061307391906130b1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156130ca5760008160009055506001016130b2565b5090565b60006130e16130dc846144f5565b6144c4565b9050828152602081018484840111156130f957600080fd5b6131048482856147f0565b509392505050565b600061311f61311a84614525565b6144c4565b90508281526020810184848401111561313757600080fd5b6131428482856147f0565b509392505050565b600081359050613159816149d5565b92915050565b60008135905061316e816149ec565b92915050565b600081519050613183816149ec565b92915050565b60008135905061319881614a03565b92915050565b6000815190506131ad81614a03565b92915050565b600082601f8301126131c457600080fd5b81356131d48482602086016130ce565b91505092915050565b6000813590506131ec81614a1a565b92915050565b60008151905061320181614a31565b92915050565b600082601f83011261321857600080fd5b813561322884826020860161310c565b91505092915050565b60008135905061324081614a48565b92915050565b60008151905061325581614a48565b92915050565b60006020828403121561326d57600080fd5b600061327b8482850161314a565b91505092915050565b6000806040838503121561329757600080fd5b60006132a58582860161314a565b92505060206132b68582860161314a565b9150509250929050565b6000806000606084860312156132d557600080fd5b60006132e38682870161314a565b93505060206132f48682870161314a565b925050604061330586828701613231565b9150509250925092565b6000806000806080858703121561332557600080fd5b60006133338782880161314a565b94505060206133448782880161314a565b935050604061335587828801613231565b925050606085013567ffffffffffffffff81111561337257600080fd5b61337e878288016131b3565b91505092959194509250565b6000806040838503121561339d57600080fd5b60006133ab8582860161314a565b92505060206133bc8582860161315f565b9150509250929050565b600080604083850312156133d957600080fd5b60006133e78582860161314a565b92505060206133f885828601613231565b9150509250929050565b60006020828403121561341457600080fd5b60006134228482850161315f565b91505092915050565b60006020828403121561343d57600080fd5b600061344b84828501613174565b91505092915050565b60006020828403121561346657600080fd5b600061347484828501613189565b91505092915050565b60006020828403121561348f57600080fd5b600061349d8482850161319e565b91505092915050565b6000602082840312156134b857600080fd5b60006134c6848285016131dd565b91505092915050565b6000602082840312156134e157600080fd5b60006134ef848285016131f2565b91505092915050565b60006020828403121561350a57600080fd5b600082013567ffffffffffffffff81111561352457600080fd5b61353084828501613207565b91505092915050565b60006020828403121561354b57600080fd5b600061355984828501613231565b91505092915050565b60006020828403121561357457600080fd5b600061358284828501613246565b91505092915050565b6000806040838503121561359e57600080fd5b60006135ac85828601613231565b92505060206135bd85828601613231565b9150509250929050565b6135d08161473c565b82525050565b6135df8161474e565b82525050565b60006135f08261456a565b6135fa8185614580565b935061360a8185602086016147ff565b613613816149c4565b840191505092915050565b600061362982614575565b6136338185614591565b93506136438185602086016147ff565b61364c816149c4565b840191505092915050565b600061366282614575565b61366c81856145a2565b935061367c8185602086016147ff565b80840191505092915050565b600081546136958161485c565b61369f81866145a2565b945060018216600081146136ba57600181146136cb576136fe565b60ff198316865281860193506136fe565b6136d485614555565b60005b838110156136f6578154818901526001820191506020810190506136d7565b838801955050505b50505092915050565b6000613714602283614591565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061377a602683614591565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137e0602a83614591565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613846602383614591565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138ac602283614591565b91507f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008301527f6e740000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613912602583614591565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613978602283614591565b91507f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139de601183614591565b91507f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006000830152602082019050919050565b6000613a1e603983614591565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613a84602b83614591565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613aea602683614591565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b506005836145a2565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613b90602083614591565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613bd0601a83614591565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613c10603283614591565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613c76602283614591565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cdc603383614591565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613d42601d83614591565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613d82602183614591565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de8601883614591565b91507f496e636f7272656374204554482076616c75652073656e7400000000000000006000830152602082019050919050565b6000613e28602e83614591565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000613e8e601f83614591565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613ece602f83614591565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613f34601783614591565b91507f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006000830152602082019050919050565b6000613f74602d83614591565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613fda602283614591565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140406001836145a2565b91507f2f000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b61407c816147e6565b82525050565b600061408e8285613688565b915061409982614033565b91506140a58284613657565b91506140b082613b43565b91508190509392505050565b60006020820190506140d160008301846135c7565b92915050565b60006080820190506140ec60008301876135c7565b6140f960208301866135c7565b6141066040830185614073565b818103606083015261411881846135e5565b905095945050505050565b600060408201905061413860008301856135c7565b6141456020830184614073565b9392505050565b600060208201905061416160008301846135d6565b92915050565b60006020820190508181036000830152614181818461361e565b905092915050565b600060208201905081810360008301526141a281613707565b9050919050565b600060208201905081810360008301526141c28161376d565b9050919050565b600060208201905081810360008301526141e2816137d3565b9050919050565b6000602082019050818103600083015261420281613839565b9050919050565b600060208201905081810360008301526142228161389f565b9050919050565b6000602082019050818103600083015261424281613905565b9050919050565b600060208201905081810360008301526142628161396b565b9050919050565b60006020820190508181036000830152614282816139d1565b9050919050565b600060208201905081810360008301526142a281613a11565b9050919050565b600060208201905081810360008301526142c281613a77565b9050919050565b600060208201905081810360008301526142e281613add565b9050919050565b6000602082019050818103600083015261430281613b83565b9050919050565b6000602082019050818103600083015261432281613bc3565b9050919050565b6000602082019050818103600083015261434281613c03565b9050919050565b6000602082019050818103600083015261436281613c69565b9050919050565b6000602082019050818103600083015261438281613ccf565b9050919050565b600060208201905081810360008301526143a281613d35565b9050919050565b600060208201905081810360008301526143c281613d75565b9050919050565b600060208201905081810360008301526143e281613ddb565b9050919050565b6000602082019050818103600083015261440281613e1b565b9050919050565b6000602082019050818103600083015261442281613e81565b9050919050565b6000602082019050818103600083015261444281613ec1565b9050919050565b6000602082019050818103600083015261446281613f27565b9050919050565b6000602082019050818103600083015261448281613f67565b9050919050565b600060208201905081810360008301526144a281613fcd565b9050919050565b60006020820190506144be6000830184614073565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144eb576144ea614995565b5b8060405250919050565b600067ffffffffffffffff8211156145105761450f614995565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156145405761453f614995565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145b8826147aa565b91506145c3836147aa565b9250826fffffffffffffffffffffffffffffffff038211156145e8576145e7614908565b5b828201905092915050565b60006145fe826147e6565b9150614609836147e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561463e5761463d614908565b5b828201905092915050565b6000614654826147e6565b915061465f836147e6565b92508261466f5761466e614937565b5b828204905092915050565b6000614685826147e6565b9150614690836147e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c9576146c8614908565b5b828202905092915050565b60006146df826147aa565b91506146ea836147aa565b9250828210156146fd576146fc614908565b5b828203905092915050565b6000614713826147e6565b915061471e836147e6565b92508282101561473157614730614908565b5b828203905092915050565b6000614747826147c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006147918261473c565b9050919050565b60006147a38261473c565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561481d578082015181840152602081019050614802565b8381111561482c576000848401525b50505050565b600061483d826147e6565b9150600082141561485157614850614908565b5b600182039050919050565b6000600282049050600182168061487457607f821691505b6020821081141561488857614887614966565b5b50919050565b6000614899826147e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148cc576148cb614908565b5b600182019050919050565b60006148e2826147e6565b91506148ed836147e6565b9250826148fd576148fc614937565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6149de8161473c565b81146149e957600080fd5b50565b6149f58161474e565b8114614a0057600080fd5b50565b614a0c8161475a565b8114614a1757600080fd5b50565b614a2381614786565b8114614a2e57600080fd5b50565b614a3a81614798565b8114614a4557600080fd5b50565b614a51816147e6565b8114614a5c57600080fd5b5056fea264697066735822122032ad3f9b871d89bdb26bcc62aeac0af9a70b4cdfb59680499b24e28f70be7e2164736f6c63430008000033

Deployed Bytecode Sourcemap

55020:5797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59006:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44239:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55537:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45764:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45327:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41074:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55598:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46614:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57978:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60496:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58153:413;;;;;;;;;;;;;:::i;:::-;;46819:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58574:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41237:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57580:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44062:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42939:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57416:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19097:103;;;;;;;;;;;;;:::i;:::-;;18446:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44394:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56889:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46032:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47039:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55448:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60123:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55499:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51454:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57804:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59435:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59006:292;59154:4;59211:26;59196:41;;;:11;:41;;;;:94;;;;59254:36;59278:11;59254:23;:36::i;:::-;59196:94;59176:114;;59006:292;;;:::o;44239:94::-;44293:13;44322:5;44315:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44239:94;:::o;55537:54::-;55581:10;55537:54;:::o;45764:204::-;45832:7;45856:16;45864:7;45856;:16::i;:::-;45848:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45938:15;:24;45954:7;45938:24;;;;;;;;;;;;;;;;;;;;;45931:31;;45764:204;;;:::o;45327:379::-;45396:13;45412:24;45428:7;45412:15;:24::i;:::-;45396:40;;45457:5;45451:11;;:2;:11;;;;45443:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45542:5;45526:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45551:37;45568:5;45575:12;:10;:12::i;:::-;45551:16;:37::i;:::-;45526:62;45510:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45672:28;45681:2;45685:7;45694:5;45672:8;:28::i;:::-;45327:379;;;:::o;41074:94::-;41127:7;41150:12;;41143:19;;41074:94;:::o;55598:37::-;;;;;;;;;;;;;:::o;46614:142::-;46722:28;46732:4;46738:2;46742:7;46722:9;:28::i;:::-;46614:142;;;:::o;57978:158::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58109:19:::1;58088:18;;:40;;;;;;;;;;;;;;;;;;57978:158:::0;:::o;60496:318::-;60621:16;60639:21;60686:16;60694:7;60686;:16::i;:::-;60678:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60753:4;60760:45;60773:26;60786:9;60797:1;60773:12;:26::i;:::-;60801:3;60760:12;:45::i;:::-;60737:69;;;;60496:318;;;;;:::o;41705:744::-;41814:7;41849:16;41859:5;41849:9;:16::i;:::-;41841:5;:24;41833:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41911:22;41936:13;:11;:13::i;:::-;41911:38;;41956:19;41986:25;42036:9;42031:350;42055:14;42051:1;:18;42031:350;;;42085:31;42119:11;:14;42131:1;42119:14;;;;;;;;;;;42085:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42172:1;42146:28;;:9;:14;;;:28;;;42142:89;;42207:9;:14;;;42187:34;;42142:89;42264:5;42243:26;;:17;:26;;;42239:135;;;42301:5;42286:11;:20;42282:59;;;42328:1;42321:8;;;;;;;;;42282:59;42351:13;;;;;:::i;:::-;;;;42239:135;42031:350;42071:3;;;;;:::i;:::-;;;;42031:350;;;;42387:56;;;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;:::o;58153:413::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58201:13:::1;58217:21;58201:37;;58249:11;58262:41;58275:22;58288:5;58294:2;58275:12;:22::i;:::-;58299:3;58262:12;:41::i;:::-;58249:54;;58314:11;58328:41;58341:22;58354:5;58360:2;58341:12;:22::i;:::-;58365:3;58328:12;:41::i;:::-;58314:55;;58378:11;58392:41;58405:22;58418:5;58424:2;58405:12;:22::i;:::-;58429:3;58392:12;:41::i;:::-;58378:55;;58452:7;;;;;;;;;;;58444:25;;:30;58470:3;58444:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58493:7;;;;;;;;;;;58485:25;;:30;58511:3;58485:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58534:7;;;;;;;;;;;58526:25;;:30;58552:3;58526:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;18737:1;;;;58153:413::o:0;46819:157::-;46931:39;46948:4;46954:2;46958:7;46931:39;;;;;;;;;;;;:16;:39::i;:::-;46819:157;;;:::o;58574:168::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58640:15:::1;58658:5;:15;;;58682:4;58658:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58640:48;;58699:5;:14;;;58714:10;58726:7;58699:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18737:1;58574:168:::0;:::o;41237:177::-;41304:7;41336:13;:11;:13::i;:::-;41328:5;:21;41320:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41403:5;41396:12;;41237:177;;;:::o;57580:100::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57664:8:::1;57654:7;:18;;;;;;;;;;;;:::i;:::-;;57580:100:::0;:::o;44062:118::-;44126:7;44149:20;44161:7;44149:11;:20::i;:::-;:25;;;44142:32;;44062:118;;;:::o;42939:211::-;43003:7;43044:1;43027:19;;:5;:19;;;;43019:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43116:12;:19;43129:5;43116:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43108:36;;43101:43;;42939:211;;;:::o;57416:93::-;57461:13;57494:7;57487:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57416:93;:::o;19097:103::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19162:30:::1;19189:1;19162:18;:30::i;:::-;19097:103::o:0;18446:87::-;18492:7;18519:6;;;;;;;;;;;18512:13;;18446:87;:::o;44394:98::-;44450:13;44479:7;44472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44394:98;:::o;56889:321::-;10375:1;10973:7;;:19;;10965:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10375:1;11106:7;:18;;;;55581:10:::1;57029:14;56413:9;56394:14;56386:5;:22;;;;:::i;:::-;56385:37;56363:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;55765:18:::2;;;;;;;;;;;55757:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57092:14:::3;56176:9;;56141:14;56125:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56103:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57131:14:::4;55491:1;55923:14;:34;;55901:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57165:37:::5;57175:10;57187:14;57165:9;:37::i;:::-;56258:1:::4;55822::::3;11137::::1;;10331::::0;11285:7;:22;;;;56889:321;:::o;46032:274::-;46135:12;:10;:12::i;:::-;46123:24;;:8;:24;;;;46115:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46232:8;46187:18;:32;46206:12;:10;:12::i;:::-;46187:32;;;;;;;;;;;;;;;:42;46220:8;46187:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46281:8;46252:48;;46267:12;:10;:12::i;:::-;46252:48;;;46291:8;46252:48;;;;;;:::i;:::-;;;;;;;;46032:274;;:::o;47039:311::-;47176:28;47186:4;47192:2;47196:7;47176:9;:28::i;:::-;47227:48;47250:4;47256:2;47260:7;47269:5;47227:22;:48::i;:::-;47211:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47039:311;;;;:::o;55448:44::-;55491:1;55448:44;:::o;60123:307::-;60241:13;60280:16;60288:7;60280;:16::i;:::-;60272:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60375:7;60389:22;60398:1;60390:7;:9;;;;:::i;:::-;60389:20;:22::i;:::-;60358:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60331:91;;60123:307;;;:::o;55499:31::-;;;;:::o;51454:43::-;;;;:::o;57804:166::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57941:21:::1;57918:20;;:44;;;;;;;;;;;;;;;;;;57804:166:::0;:::o;59435:617::-;59560:4;59725:27;59783;;;;;;;;;;;59725:96;;59850:20;;;;;;;;;;;:86;;;;;59928:8;59887:49;;59895:13;:21;;;59917:5;59895:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59887:49;;;59850:86;59832:154;;;59970:4;59963:11;;;;;59832:154;60005:39;60028:5;60035:8;60005:22;:39::i;:::-;59998:46;;;59435:617;;;;;:::o;19355:201::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19464:1:::1;19444:22;;:8;:22;;;;19436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19520:28;19539:8;19520:18;:28::i;:::-;19355:201:::0;:::o;42513:370::-;42640:4;42685:25;42670:40;;;:11;:40;;;;:99;;;;42736:33;42721:48;;;:11;:48;;;;42670:99;:160;;;;42795:35;42780:50;;;:11;:50;;;;42670:160;:207;;;;42841:36;42865:11;42841:23;:36::i;:::-;42670:207;42656:221;;42513:370;;;:::o;47589:105::-;47646:4;47676:12;;47666:7;:22;47659:29;;47589:105;;;:::o;17170:98::-;17223:7;17250:10;17243:17;;17170:98;:::o;51276:172::-;51400:2;51373:15;:24;51389:7;51373:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51434:7;51430:2;51414:28;;51423:5;51414:28;;;;;;;;;;;;51276:172;;;:::o;49641:1529::-;49738:35;49776:20;49788:7;49776:11;:20::i;:::-;49738:58;;49805:22;49847:13;:18;;;49831:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49900:12;:10;:12::i;:::-;49876:36;;:20;49888:7;49876:11;:20::i;:::-;:36;;;49831:81;:142;;;;49923:50;49940:13;:18;;;49960:12;:10;:12::i;:::-;49923:16;:50::i;:::-;49831:142;49805:169;;49999:17;49983:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50131:4;50109:26;;:13;:18;;;:26;;;50093:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50220:1;50206:16;;:2;:16;;;;50198:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50273:43;50295:4;50301:2;50305:7;50314:1;50273:21;:43::i;:::-;50373:49;50390:1;50394:7;50403:13;:18;;;50373:8;:49::i;:::-;50461:1;50431:12;:18;50444:4;50431:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50497:1;50469:12;:16;50482:2;50469:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50528:43;;;;;;;;50543:2;50528:43;;;;;;50554:15;50528:43;;;;;50505:11;:20;50517:7;50505:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50799:19;50831:1;50821:7;:11;;;;:::i;:::-;50799:33;;50884:1;50843:43;;:11;:24;50855:11;50843:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50839:236;;;50901:20;50909:11;50901:7;:20::i;:::-;50897:171;;;50961:97;;;;;;;;50988:13;:18;;;50961:97;;;;;;51019:13;:28;;;50961:97;;;;;50934:11;:24;50946:11;50934:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50897:171;50839:236;51107:7;51103:2;51088:27;;51097:4;51088:27;;;;;;;;;;;;51122:42;51143:4;51149:2;51153:7;51162:1;51122:20;:42::i;:::-;49641:1529;;;;;;:::o;3671:98::-;3729:7;3760:1;3756;:5;;;;:::i;:::-;3749:12;;3671:98;;;;:::o;4070:::-;4128:7;4159:1;4155;:5;;;;:::i;:::-;4148:12;;4070:98;;;;:::o;43402:606::-;43478:21;;:::i;:::-;43519:16;43527:7;43519;:16::i;:::-;43511:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43591:26;43639:12;43628:7;:23;43624:93;;43708:1;43693:12;43683:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43662:47;;43624:93;43730:12;43745:7;43730:22;;43725:212;43762:18;43754:4;:26;43725:212;;43799:31;43833:11;:17;43845:4;43833:17;;;;;;;;;;;43799:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43889:1;43863:28;;:9;:14;;;:28;;;43859:71;;43911:9;43904:16;;;;;;;43859:71;43725:212;43782:6;;;;;:::i;:::-;;;;43725:212;;;;43945:57;;;;;;;;;;:::i;:::-;;;;;;;;43402:606;;;;:::o;19716:191::-;19790:16;19809:6;;;;;;;;;;;19790:25;;19835:8;19826:6;;:17;;;;;;;;;;;;;;;;;;19890:8;19859:40;;19880:8;19859:40;;;;;;;;;;;;19716:191;;:::o;47700:98::-;47765:27;47775:2;47779:8;47765:27;;;;;;;;;;;;:9;:27::i;:::-;47700:98;;:::o;52991:690::-;53128:4;53145:15;:2;:13;;;:15::i;:::-;53141:535;;;53200:2;53184:36;;;53221:12;:10;:12::i;:::-;53235:4;53241:7;53250:5;53184:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53171:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53432:1;53415:6;:13;:18;53411:215;;;53448:61;;;;;;;;;;:::i;:::-;;;;;;;;53411:215;53594:6;53588:13;53579:6;53575:2;53571:15;53564:38;53171:464;53316:45;;;53306:55;;;:6;:55;;;;53299:62;;;;;53141:535;53664:4;53657:11;;52991:690;;;;;;;:::o;14732:723::-;14788:13;15018:1;15009:5;:10;15005:53;;;15036:10;;;;;;;;;;;;;;;;;;;;;15005:53;15068:12;15083:5;15068:20;;15099:14;15124:78;15139:1;15131:4;:9;15124:78;;15157:8;;;;;:::i;:::-;;;;15188:2;15180:10;;;;;:::i;:::-;;;15124:78;;;15212:19;15244:6;15234:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15212:39;;15262:154;15278:1;15269:5;:10;15262:154;;15306:1;15296:11;;;;;:::i;:::-;;;15373:2;15365:5;:10;;;;:::i;:::-;15352:2;:24;;;;:::i;:::-;15339:39;;15322:6;15329;15322:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;15402:2;15393:11;;;;;:::i;:::-;;;15262:154;;;15440:6;15426:21;;;;;14732:723;;;;:::o;46369:186::-;46491:4;46514:18;:25;46533:5;46514:25;;;;;;;;;;;;;;;:35;46540:8;46514:35;;;;;;;;;;;;;;;;;;;;;;;;;46507:42;;46369:186;;;;:::o;31846:157::-;31931:4;31970:25;31955:40;;;:11;:40;;;;31948:47;;31846:157;;;:::o;54143:141::-;;;;;:::o;54670:140::-;;;;;:::o;48137:1272::-;48242:20;48265:12;;48242:35;;48306:1;48292:16;;:2;:16;;;;48284:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48483:21;48491:12;48483:7;:21::i;:::-;48482:22;48474:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48565:12;48553:8;:24;;48545:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48625:61;48655:1;48659:2;48663:12;48677:8;48625:21;:61::i;:::-;48695:30;48728:12;:16;48741:2;48728:16;;;;;;;;;;;;;;;48695:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48770:119;;;;;;;;48820:8;48790:11;:19;;;:39;;;;:::i;:::-;48770:119;;;;;;48873:8;48838:11;:24;;;:44;;;;:::i;:::-;48770:119;;;;;48751:12;:16;48764:2;48751:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48924:43;;;;;;;;48939:2;48924:43;;;;;;48950:15;48924:43;;;;;48896:11;:25;48908:12;48896:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48976:20;48999:12;48976:35;;49025:9;49020:281;49044:8;49040:1;:12;49020:281;;;49098:12;49094:2;49073:38;;49090:1;49073:38;;;;;;;;;;;;49138:59;49169:1;49173:2;49177:12;49191:5;49138:22;:59::i;:::-;49120:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49279:14;;;;;:::i;:::-;;;;49054:3;;;;;:::i;:::-;;;;49020:281;;;;49324:12;49309;:27;;;;49343:60;49372:1;49376:2;49380:12;49394:8;49343:20;:60::i;:::-;48137:1272;;;;;;:::o;20734:387::-;20794:4;21002:12;21069:7;21057:20;21049:28;;21112:1;21105:4;:8;21098:15;;;20734:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1074:6;1068:13;1059:22;;1090:30;1114:5;1090:30;:::i;:::-;1049:77;;;;:::o;1132:137::-;;1215:6;1202:20;1193:29;;1231:32;1257:5;1231:32;:::i;:::-;1183:86;;;;:::o;1275:141::-;;1362:6;1356:13;1347:22;;1378:32;1404:5;1378:32;:::i;:::-;1337:79;;;;:::o;1435:271::-;;1539:3;1532:4;1524:6;1520:17;1516:27;1506:2;;1557:1;1554;1547:12;1506:2;1597:6;1584:20;1622:78;1696:3;1688:6;1681:4;1673:6;1669:17;1622:78;:::i;:::-;1613:87;;1496:210;;;;;:::o;1712:167::-;;1810:6;1797:20;1788:29;;1826:47;1867:5;1826:47;:::i;:::-;1778:101;;;;:::o;1885:201::-;;2002:6;1996:13;1987:22;;2018:62;2074:5;2018:62;:::i;:::-;1977:109;;;;:::o;2106:273::-;;2211:3;2204:4;2196:6;2192:17;2188:27;2178:2;;2229:1;2226;2219:12;2178:2;2269:6;2256:20;2294:79;2369:3;2361:6;2354:4;2346:6;2342:17;2294:79;:::i;:::-;2285:88;;2168:211;;;;;:::o;2385:139::-;;2469:6;2456:20;2447:29;;2485:33;2512:5;2485:33;:::i;:::-;2437:87;;;;:::o;2530:143::-;;2618:6;2612:13;2603:22;;2634:33;2661:5;2634:33;:::i;:::-;2593:80;;;;:::o;2679:262::-;;2787:2;2775:9;2766:7;2762:23;2758:32;2755:2;;;2803:1;2800;2793:12;2755:2;2846:1;2871:53;2916:7;2907:6;2896:9;2892:22;2871:53;:::i;:::-;2861:63;;2817:117;2745:196;;;;:::o;2947:407::-;;;3072:2;3060:9;3051:7;3047:23;3043:32;3040:2;;;3088:1;3085;3078:12;3040:2;3131:1;3156:53;3201:7;3192:6;3181:9;3177:22;3156:53;:::i;:::-;3146:63;;3102:117;3258:2;3284:53;3329:7;3320:6;3309:9;3305:22;3284:53;:::i;:::-;3274:63;;3229:118;3030:324;;;;;:::o;3360:552::-;;;;3502:2;3490:9;3481:7;3477:23;3473:32;3470:2;;;3518:1;3515;3508:12;3470:2;3561:1;3586:53;3631:7;3622:6;3611:9;3607:22;3586:53;:::i;:::-;3576:63;;3532:117;3688:2;3714:53;3759:7;3750:6;3739:9;3735:22;3714:53;:::i;:::-;3704:63;;3659:118;3816:2;3842:53;3887:7;3878:6;3867:9;3863:22;3842:53;:::i;:::-;3832:63;;3787:118;3460:452;;;;;:::o;3918:809::-;;;;;4086:3;4074:9;4065:7;4061:23;4057:33;4054:2;;;4103:1;4100;4093:12;4054:2;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;4401:2;4427:53;4472:7;4463:6;4452:9;4448:22;4427:53;:::i;:::-;4417:63;;4372:118;4557:2;4546:9;4542:18;4529:32;4588:18;4580:6;4577:30;4574:2;;;4620:1;4617;4610:12;4574:2;4648:62;4702:7;4693:6;4682:9;4678:22;4648:62;:::i;:::-;4638:72;;4500:220;4044:683;;;;;;;:::o;4733:401::-;;;4855:2;4843:9;4834:7;4830:23;4826:32;4823:2;;;4871:1;4868;4861:12;4823:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4813:321;;;;;:::o;5140:407::-;;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:53;5394:7;5385:6;5374:9;5370:22;5349:53;:::i;:::-;5339:63;;5295:117;5451:2;5477:53;5522:7;5513:6;5502:9;5498:22;5477:53;:::i;:::-;5467:63;;5422:118;5223:324;;;;;:::o;5553:256::-;;5658:2;5646:9;5637:7;5633:23;5629:32;5626:2;;;5674:1;5671;5664:12;5626:2;5717:1;5742:50;5784:7;5775:6;5764:9;5760:22;5742:50;:::i;:::-;5732:60;;5688:114;5616:193;;;;:::o;5815:278::-;;5931:2;5919:9;5910:7;5906:23;5902:32;5899:2;;;5947:1;5944;5937:12;5899:2;5990:1;6015:61;6068:7;6059:6;6048:9;6044:22;6015:61;:::i;:::-;6005:71;;5961:125;5889:204;;;;:::o;6099:260::-;;6206:2;6194:9;6185:7;6181:23;6177:32;6174:2;;;6222:1;6219;6212:12;6174:2;6265:1;6290:52;6334:7;6325:6;6314:9;6310:22;6290:52;:::i;:::-;6280:62;;6236:116;6164:195;;;;:::o;6365:282::-;;6483:2;6471:9;6462:7;6458:23;6454:32;6451:2;;;6499:1;6496;6489:12;6451:2;6542:1;6567:63;6622:7;6613:6;6602:9;6598:22;6567:63;:::i;:::-;6557:73;;6513:127;6441:206;;;;:::o;6653:290::-;;6775:2;6763:9;6754:7;6750:23;6746:32;6743:2;;;6791:1;6788;6781:12;6743:2;6834:1;6859:67;6918:7;6909:6;6898:9;6894:22;6859:67;:::i;:::-;6849:77;;6805:131;6733:210;;;;:::o;6949:342::-;;7097:2;7085:9;7076:7;7072:23;7068:32;7065:2;;;7113:1;7110;7103:12;7065:2;7156:1;7181:93;7266:7;7257:6;7246:9;7242:22;7181:93;:::i;:::-;7171:103;;7127:157;7055:236;;;;:::o;7297:375::-;;7415:2;7403:9;7394:7;7390:23;7386:32;7383:2;;;7431:1;7428;7421:12;7383:2;7502:1;7491:9;7487:17;7474:31;7532:18;7524:6;7521:30;7518:2;;;7564:1;7561;7554:12;7518:2;7592:63;7647:7;7638:6;7627:9;7623:22;7592:63;:::i;:::-;7582:73;;7445:220;7373:299;;;;:::o;7678:262::-;;7786:2;7774:9;7765:7;7761:23;7757:32;7754:2;;;7802:1;7799;7792:12;7754:2;7845:1;7870:53;7915:7;7906:6;7895:9;7891:22;7870:53;:::i;:::-;7860:63;;7816:117;7744:196;;;;:::o;7946:284::-;;8065:2;8053:9;8044:7;8040:23;8036:32;8033:2;;;8081:1;8078;8071:12;8033:2;8124:1;8149:64;8205:7;8196:6;8185:9;8181:22;8149:64;:::i;:::-;8139:74;;8095:128;8023:207;;;;:::o;8236:407::-;;;8361:2;8349:9;8340:7;8336:23;8332:32;8329:2;;;8377:1;8374;8367:12;8329:2;8420:1;8445:53;8490:7;8481:6;8470:9;8466:22;8445:53;:::i;:::-;8435:63;;8391:117;8547:2;8573:53;8618:7;8609:6;8598:9;8594:22;8573:53;:::i;:::-;8563:63;;8518:118;8319:324;;;;;:::o;8649:118::-;8736:24;8754:5;8736:24;:::i;:::-;8731:3;8724:37;8714:53;;:::o;8773:109::-;8854:21;8869:5;8854:21;:::i;:::-;8849:3;8842:34;8832:50;;:::o;8888:360::-;;9002:38;9034:5;9002:38;:::i;:::-;9056:70;9119:6;9114:3;9056:70;:::i;:::-;9049:77;;9135:52;9180:6;9175:3;9168:4;9161:5;9157:16;9135:52;:::i;:::-;9212:29;9234:6;9212:29;:::i;:::-;9207:3;9203:39;9196:46;;8978:270;;;;;:::o;9254:364::-;;9370:39;9403:5;9370:39;:::i;:::-;9425:71;9489:6;9484:3;9425:71;:::i;:::-;9418:78;;9505:52;9550:6;9545:3;9538:4;9531:5;9527:16;9505:52;:::i;:::-;9582:29;9604:6;9582:29;:::i;:::-;9577:3;9573:39;9566:46;;9346:272;;;;;:::o;9624:377::-;;9758:39;9791:5;9758:39;:::i;:::-;9813:89;9895:6;9890:3;9813:89;:::i;:::-;9806:96;;9911:52;9956:6;9951:3;9944:4;9937:5;9933:16;9911:52;:::i;:::-;9988:6;9983:3;9979:16;9972:23;;9734:267;;;;;:::o;10031:845::-;;10171:5;10165:12;10200:36;10226:9;10200:36;:::i;:::-;10252:89;10334:6;10329:3;10252:89;:::i;:::-;10245:96;;10372:1;10361:9;10357:17;10388:1;10383:137;;;;10534:1;10529:341;;;;10350:520;;10383:137;10467:4;10463:9;10452;10448:25;10443:3;10436:38;10503:6;10498:3;10494:16;10487:23;;10383:137;;10529:341;10596:38;10628:5;10596:38;:::i;:::-;10656:1;10670:154;10684:6;10681:1;10678:13;10670:154;;;10758:7;10752:14;10748:1;10743:3;10739:11;10732:35;10808:1;10799:7;10795:15;10784:26;;10706:4;10703:1;10699:12;10694:17;;10670:154;;;10853:6;10848:3;10844:16;10837:23;;10536:334;;10350:520;;10138:738;;;;;;:::o;10882:366::-;;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11142:34;11138:1;11133:3;11129:11;11122:55;11208:4;11203:2;11198:3;11194:12;11187:26;11239:2;11234:3;11230:12;11223:19;;11028:220;;;:::o;11254:370::-;;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11514:34;11510:1;11505:3;11501:11;11494:55;11580:8;11575:2;11570:3;11566:12;11559:30;11615:2;11610:3;11606:12;11599:19;;11400:224;;;:::o;11630:374::-;;11793:67;11857:2;11852:3;11793:67;:::i;:::-;11786:74;;11890:34;11886:1;11881:3;11877:11;11870:55;11956:12;11951:2;11946:3;11942:12;11935:34;11995:2;11990:3;11986:12;11979:19;;11776:228;;;:::o;12010:367::-;;12173:67;12237:2;12232:3;12173:67;:::i;:::-;12166:74;;12270:34;12266:1;12261:3;12257:11;12250:55;12336:5;12331:2;12326:3;12322:12;12315:27;12368:2;12363:3;12359:12;12352:19;;12156:221;;;:::o;12383:366::-;;12546:67;12610:2;12605:3;12546:67;:::i;:::-;12539:74;;12643:34;12639:1;12634:3;12630:11;12623:55;12709:4;12704:2;12699:3;12695:12;12688:26;12740:2;12735:3;12731:12;12724:19;;12529:220;;;:::o;12755:369::-;;12918:67;12982:2;12977:3;12918:67;:::i;:::-;12911:74;;13015:34;13011:1;13006:3;13002:11;12995:55;13081:7;13076:2;13071:3;13067:12;13060:29;13115:2;13110:3;13106:12;13099:19;;12901:223;;;:::o;13130:366::-;;13293:67;13357:2;13352:3;13293:67;:::i;:::-;13286:74;;13390:34;13386:1;13381:3;13377:11;13370:55;13456:4;13451:2;13446:3;13442:12;13435:26;13487:2;13482:3;13478:12;13471:19;;13276:220;;;:::o;13502:315::-;;13665:67;13729:2;13724:3;13665:67;:::i;:::-;13658:74;;13762:19;13758:1;13753:3;13749:11;13742:40;13808:2;13803:3;13799:12;13792:19;;13648:169;;;:::o;13823:389::-;;13986:67;14050:2;14045:3;13986:67;:::i;:::-;13979:74;;14083:34;14079:1;14074:3;14070:11;14063:55;14149:27;14144:2;14139:3;14135:12;14128:49;14203:2;14198:3;14194:12;14187:19;;13969:243;;;:::o;14218:375::-;;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14478:34;14474:1;14469:3;14465:11;14458:55;14544:13;14539:2;14534:3;14530:12;14523:35;14584:2;14579:3;14575:12;14568:19;;14364:229;;;:::o;14599:370::-;;14762:67;14826:2;14821:3;14762:67;:::i;:::-;14755:74;;14859:34;14855:1;14850:3;14846:11;14839:55;14925:8;14920:2;14915:3;14911:12;14904:30;14960:2;14955:3;14951:12;14944:19;;14745:224;;;:::o;14975:337::-;;15156:84;15238:1;15233:3;15156:84;:::i;:::-;15149:91;;15270:7;15266:1;15261:3;15257:11;15250:28;15304:1;15299:3;15295:11;15288:18;;15139:173;;;:::o;15318:330::-;;15481:67;15545:2;15540:3;15481:67;:::i;:::-;15474:74;;15578:34;15574:1;15569:3;15565:11;15558:55;15639:2;15634:3;15630:12;15623:19;;15464:184;;;:::o;15654:324::-;;15817:67;15881:2;15876:3;15817:67;:::i;:::-;15810:74;;15914:28;15910:1;15905:3;15901:11;15894:49;15969:2;15964:3;15960:12;15953:19;;15800:178;;;:::o;15984:382::-;;16147:67;16211:2;16206:3;16147:67;:::i;:::-;16140:74;;16244:34;16240:1;16235:3;16231:11;16224:55;16310:20;16305:2;16300:3;16296:12;16289:42;16357:2;16352:3;16348:12;16341:19;;16130:236;;;:::o;16372:366::-;;16535:67;16599:2;16594:3;16535:67;:::i;:::-;16528:74;;16632:34;16628:1;16623:3;16619:11;16612:55;16698:4;16693:2;16688:3;16684:12;16677:26;16729:2;16724:3;16720:12;16713:19;;16518:220;;;:::o;16744:383::-;;16907:67;16971:2;16966:3;16907:67;:::i;:::-;16900:74;;17004:34;17000:1;16995:3;16991:11;16984:55;17070:21;17065:2;17060:3;17056:12;17049:43;17118:2;17113:3;17109:12;17102:19;;16890:237;;;:::o;17133:327::-;;17296:67;17360:2;17355:3;17296:67;:::i;:::-;17289:74;;17393:31;17389:1;17384:3;17380:11;17373:52;17451:2;17446:3;17442:12;17435:19;;17279:181;;;:::o;17466:365::-;;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17726:34;17722:1;17717:3;17713:11;17706:55;17792:3;17787:2;17782:3;17778:12;17771:25;17822:2;17817:3;17813:12;17806:19;;17612:219;;;:::o;17837:322::-;;18000:67;18064:2;18059:3;18000:67;:::i;:::-;17993:74;;18097:26;18093:1;18088:3;18084:11;18077:47;18150:2;18145:3;18141:12;18134:19;;17983:176;;;:::o;18165:378::-;;18328:67;18392:2;18387:3;18328:67;:::i;:::-;18321:74;;18425:34;18421:1;18416:3;18412:11;18405:55;18491:16;18486:2;18481:3;18477:12;18470:38;18534:2;18529:3;18525:12;18518:19;;18311:232;;;:::o;18549:329::-;;18712:67;18776:2;18771:3;18712:67;:::i;:::-;18705:74;;18809:33;18805:1;18800:3;18796:11;18789:54;18869:2;18864:3;18860:12;18853:19;;18695:183;;;:::o;18884:379::-;;19047:67;19111:2;19106:3;19047:67;:::i;:::-;19040:74;;19144:34;19140:1;19135:3;19131:11;19124:55;19210:17;19205:2;19200:3;19196:12;19189:39;19254:2;19249:3;19245:12;19238:19;;19030:233;;;:::o;19269:321::-;;19432:67;19496:2;19491:3;19432:67;:::i;:::-;19425:74;;19529:25;19525:1;19520:3;19516:11;19509:46;19581:2;19576:3;19572:12;19565:19;;19415:175;;;:::o;19596:377::-;;19759:67;19823:2;19818:3;19759:67;:::i;:::-;19752:74;;19856:34;19852:1;19847:3;19843:11;19836:55;19922:15;19917:2;19912:3;19908:12;19901:37;19964:2;19959:3;19955:12;19948:19;;19742:231;;;:::o;19979:366::-;;20142:67;20206:2;20201:3;20142:67;:::i;:::-;20135:74;;20239:34;20235:1;20230:3;20226:11;20219:55;20305:4;20300:2;20295:3;20291:12;20284:26;20336:2;20331:3;20327:12;20320:19;;20125:220;;;:::o;20351:333::-;;20532:84;20614:1;20609:3;20532:84;:::i;:::-;20525:91;;20646:3;20642:1;20637:3;20633:11;20626:24;20676:1;20671:3;20667:11;20660:18;;20515:169;;;:::o;20690:118::-;20777:24;20795:5;20777:24;:::i;:::-;20772:3;20765:37;20755:53;;:::o;20814:961::-;;21215:92;21303:3;21294:6;21215:92;:::i;:::-;21208:99;;21324:148;21468:3;21324:148;:::i;:::-;21317:155;;21489:95;21580:3;21571:6;21489:95;:::i;:::-;21482:102;;21601:148;21745:3;21601:148;:::i;:::-;21594:155;;21766:3;21759:10;;21197:578;;;;;:::o;21781:222::-;;21912:2;21901:9;21897:18;21889:26;;21925:71;21993:1;21982:9;21978:17;21969:6;21925:71;:::i;:::-;21879:124;;;;:::o;22009:640::-;;22242:3;22231:9;22227:19;22219:27;;22256:71;22324:1;22313:9;22309:17;22300:6;22256:71;:::i;:::-;22337:72;22405:2;22394:9;22390:18;22381:6;22337:72;:::i;:::-;22419;22487:2;22476:9;22472:18;22463:6;22419:72;:::i;:::-;22538:9;22532:4;22528:20;22523:2;22512:9;22508:18;22501:48;22566:76;22637:4;22628:6;22566:76;:::i;:::-;22558:84;;22209:440;;;;;;;:::o;22655:332::-;;22814:2;22803:9;22799:18;22791:26;;22827:71;22895:1;22884:9;22880:17;22871:6;22827:71;:::i;:::-;22908:72;22976:2;22965:9;22961:18;22952:6;22908:72;:::i;:::-;22781:206;;;;;:::o;22993:210::-;;23118:2;23107:9;23103:18;23095:26;;23131:65;23193:1;23182:9;23178:17;23169:6;23131:65;:::i;:::-;23085:118;;;;:::o;23209:313::-;;23360:2;23349:9;23345:18;23337:26;;23409:9;23403:4;23399:20;23395:1;23384:9;23380:17;23373:47;23437:78;23510:4;23501:6;23437:78;:::i;:::-;23429:86;;23327:195;;;;:::o;23528:419::-;;23732:2;23721:9;23717:18;23709:26;;23781:9;23775:4;23771:20;23767:1;23756:9;23752:17;23745:47;23809:131;23935:4;23809:131;:::i;:::-;23801:139;;23699:248;;;:::o;23953:419::-;;24157:2;24146:9;24142:18;24134:26;;24206:9;24200:4;24196:20;24192:1;24181:9;24177:17;24170:47;24234:131;24360:4;24234:131;:::i;:::-;24226:139;;24124:248;;;:::o;24378:419::-;;24582:2;24571:9;24567:18;24559:26;;24631:9;24625:4;24621:20;24617:1;24606:9;24602:17;24595:47;24659:131;24785:4;24659:131;:::i;:::-;24651:139;;24549:248;;;:::o;24803:419::-;;25007:2;24996:9;24992:18;24984:26;;25056:9;25050:4;25046:20;25042:1;25031:9;25027:17;25020:47;25084:131;25210:4;25084:131;:::i;:::-;25076:139;;24974:248;;;:::o;25228:419::-;;25432:2;25421:9;25417:18;25409:26;;25481:9;25475:4;25471:20;25467:1;25456:9;25452:17;25445:47;25509:131;25635:4;25509:131;:::i;:::-;25501:139;;25399:248;;;:::o;25653:419::-;;25857:2;25846:9;25842:18;25834:26;;25906:9;25900:4;25896:20;25892:1;25881:9;25877:17;25870:47;25934:131;26060:4;25934:131;:::i;:::-;25926:139;;25824:248;;;:::o;26078:419::-;;26282:2;26271:9;26267:18;26259:26;;26331:9;26325:4;26321:20;26317:1;26306:9;26302:17;26295:47;26359:131;26485:4;26359:131;:::i;:::-;26351:139;;26249:248;;;:::o;26503:419::-;;26707:2;26696:9;26692:18;26684:26;;26756:9;26750:4;26746:20;26742:1;26731:9;26727:17;26720:47;26784:131;26910:4;26784:131;:::i;:::-;26776:139;;26674:248;;;:::o;26928:419::-;;27132:2;27121:9;27117:18;27109:26;;27181:9;27175:4;27171:20;27167:1;27156:9;27152:17;27145:47;27209:131;27335:4;27209:131;:::i;:::-;27201:139;;27099:248;;;:::o;27353:419::-;;27557:2;27546:9;27542:18;27534:26;;27606:9;27600:4;27596:20;27592:1;27581:9;27577:17;27570:47;27634:131;27760:4;27634:131;:::i;:::-;27626:139;;27524:248;;;:::o;27778:419::-;;27982:2;27971:9;27967:18;27959:26;;28031:9;28025:4;28021:20;28017:1;28006:9;28002:17;27995:47;28059:131;28185:4;28059:131;:::i;:::-;28051:139;;27949:248;;;:::o;28203:419::-;;28407:2;28396:9;28392:18;28384:26;;28456:9;28450:4;28446:20;28442:1;28431:9;28427:17;28420:47;28484:131;28610:4;28484:131;:::i;:::-;28476:139;;28374:248;;;:::o;28628:419::-;;28832:2;28821:9;28817:18;28809:26;;28881:9;28875:4;28871:20;28867:1;28856:9;28852:17;28845:47;28909:131;29035:4;28909:131;:::i;:::-;28901:139;;28799:248;;;:::o;29053:419::-;;29257:2;29246:9;29242:18;29234:26;;29306:9;29300:4;29296:20;29292:1;29281:9;29277:17;29270:47;29334:131;29460:4;29334:131;:::i;:::-;29326:139;;29224:248;;;:::o;29478:419::-;;29682:2;29671:9;29667:18;29659:26;;29731:9;29725:4;29721:20;29717:1;29706:9;29702:17;29695:47;29759:131;29885:4;29759:131;:::i;:::-;29751:139;;29649:248;;;:::o;29903:419::-;;30107:2;30096:9;30092:18;30084:26;;30156:9;30150:4;30146:20;30142:1;30131:9;30127:17;30120:47;30184:131;30310:4;30184:131;:::i;:::-;30176:139;;30074:248;;;:::o;30328:419::-;;30532:2;30521:9;30517:18;30509:26;;30581:9;30575:4;30571:20;30567:1;30556:9;30552:17;30545:47;30609:131;30735:4;30609:131;:::i;:::-;30601:139;;30499:248;;;:::o;30753:419::-;;30957:2;30946:9;30942:18;30934:26;;31006:9;31000:4;30996:20;30992:1;30981:9;30977:17;30970:47;31034:131;31160:4;31034:131;:::i;:::-;31026:139;;30924:248;;;:::o;31178:419::-;;31382:2;31371:9;31367:18;31359:26;;31431:9;31425:4;31421:20;31417:1;31406:9;31402:17;31395:47;31459:131;31585:4;31459:131;:::i;:::-;31451:139;;31349:248;;;:::o;31603:419::-;;31807:2;31796:9;31792:18;31784:26;;31856:9;31850:4;31846:20;31842:1;31831:9;31827:17;31820:47;31884:131;32010:4;31884:131;:::i;:::-;31876:139;;31774:248;;;:::o;32028:419::-;;32232:2;32221:9;32217:18;32209:26;;32281:9;32275:4;32271:20;32267:1;32256:9;32252:17;32245:47;32309:131;32435:4;32309:131;:::i;:::-;32301:139;;32199:248;;;:::o;32453:419::-;;32657:2;32646:9;32642:18;32634:26;;32706:9;32700:4;32696:20;32692:1;32681:9;32677:17;32670:47;32734:131;32860:4;32734:131;:::i;:::-;32726:139;;32624:248;;;:::o;32878:419::-;;33082:2;33071:9;33067:18;33059:26;;33131:9;33125:4;33121:20;33117:1;33106:9;33102:17;33095:47;33159:131;33285:4;33159:131;:::i;:::-;33151:139;;33049:248;;;:::o;33303:419::-;;33507:2;33496:9;33492:18;33484:26;;33556:9;33550:4;33546:20;33542:1;33531:9;33527:17;33520:47;33584:131;33710:4;33584:131;:::i;:::-;33576:139;;33474:248;;;:::o;33728:419::-;;33932:2;33921:9;33917:18;33909:26;;33981:9;33975:4;33971:20;33967:1;33956:9;33952:17;33945:47;34009:131;34135:4;34009:131;:::i;:::-;34001:139;;33899:248;;;:::o;34153:222::-;;34284:2;34273:9;34269:18;34261:26;;34297:71;34365:1;34354:9;34350:17;34341:6;34297:71;:::i;:::-;34251:124;;;;:::o;34381:283::-;;34447:2;34441:9;34431:19;;34489:4;34481:6;34477:17;34596:6;34584:10;34581:22;34560:18;34548:10;34545:34;34542:62;34539:2;;;34607:18;;:::i;:::-;34539:2;34647:10;34643:2;34636:22;34421:243;;;;:::o;34670:331::-;;34821:18;34813:6;34810:30;34807:2;;;34843:18;;:::i;:::-;34807:2;34928:4;34924:9;34917:4;34909:6;34905:17;34901:33;34893:41;;34989:4;34983;34979:15;34971:23;;34736:265;;;:::o;35007:332::-;;35159:18;35151:6;35148:30;35145:2;;;35181:18;;:::i;:::-;35145:2;35266:4;35262:9;35255:4;35247:6;35243:17;35239:33;35231:41;;35327:4;35321;35317:15;35309:23;;35074:265;;;:::o;35345:141::-;;35417:3;35409:11;;35440:3;35437:1;35430:14;35474:4;35471:1;35461:18;35453:26;;35399:87;;;:::o;35492:98::-;;35577:5;35571:12;35561:22;;35550:40;;;:::o;35596:99::-;;35682:5;35676:12;35666:22;;35655:40;;;:::o;35701:168::-;;35818:6;35813:3;35806:19;35858:4;35853:3;35849:14;35834:29;;35796:73;;;;:::o;35875:169::-;;35993:6;35988:3;35981:19;36033:4;36028:3;36024:14;36009:29;;35971:73;;;;:::o;36050:148::-;;36189:3;36174:18;;36164:34;;;;:::o;36204:273::-;;36263:20;36281:1;36263:20;:::i;:::-;36258:25;;36297:20;36315:1;36297:20;:::i;:::-;36292:25;;36419:1;36383:34;36379:42;36376:1;36373:49;36370:2;;;36425:18;;:::i;:::-;36370:2;36469:1;36466;36462:9;36455:16;;36248:229;;;;:::o;36483:305::-;;36542:20;36560:1;36542:20;:::i;:::-;36537:25;;36576:20;36594:1;36576:20;:::i;:::-;36571:25;;36730:1;36662:66;36658:74;36655:1;36652:81;36649:2;;;36736:18;;:::i;:::-;36649:2;36780:1;36777;36773:9;36766:16;;36527:261;;;;:::o;36794:185::-;;36851:20;36869:1;36851:20;:::i;:::-;36846:25;;36885:20;36903:1;36885:20;:::i;:::-;36880:25;;36924:1;36914:2;;36929:18;;:::i;:::-;36914:2;36971:1;36968;36964:9;36959:14;;36836:143;;;;:::o;36985:348::-;;37048:20;37066:1;37048:20;:::i;:::-;37043:25;;37082:20;37100:1;37082:20;:::i;:::-;37077:25;;37270:1;37202:66;37198:74;37195:1;37192:81;37187:1;37180:9;37173:17;37169:105;37166:2;;;37277:18;;:::i;:::-;37166:2;37325:1;37322;37318:9;37307:20;;37033:300;;;;:::o;37339:191::-;;37399:20;37417:1;37399:20;:::i;:::-;37394:25;;37433:20;37451:1;37433:20;:::i;:::-;37428:25;;37472:1;37469;37466:8;37463:2;;;37477:18;;:::i;:::-;37463:2;37522:1;37519;37515:9;37507:17;;37384:146;;;;:::o;37536:191::-;;37596:20;37614:1;37596:20;:::i;:::-;37591:25;;37630:20;37648:1;37630:20;:::i;:::-;37625:25;;37669:1;37666;37663:8;37660:2;;;37674:18;;:::i;:::-;37660:2;37719:1;37716;37712:9;37704:17;;37581:146;;;;:::o;37733:96::-;;37799:24;37817:5;37799:24;:::i;:::-;37788:35;;37778:51;;;:::o;37835:90::-;;37912:5;37905:13;37898:21;37887:32;;37877:48;;;:::o;37931:149::-;;38007:66;38000:5;37996:78;37985:89;;37975:105;;;:::o;38086:110::-;;38166:24;38184:5;38166:24;:::i;:::-;38155:35;;38145:51;;;:::o;38202:125::-;;38297:24;38315:5;38297:24;:::i;:::-;38286:35;;38276:51;;;:::o;38333:118::-;;38410:34;38403:5;38399:46;38388:57;;38378:73;;;:::o;38457:126::-;;38534:42;38527:5;38523:54;38512:65;;38502:81;;;:::o;38589:77::-;;38655:5;38644:16;;38634:32;;;:::o;38672:154::-;38756:6;38751:3;38746;38733:30;38818:1;38809:6;38804:3;38800:16;38793:27;38723:103;;;:::o;38832:307::-;38900:1;38910:113;38924:6;38921:1;38918:13;38910:113;;;39009:1;39004:3;39000:11;38994:18;38990:1;38985:3;38981:11;38974:39;38946:2;38943:1;38939:10;38934:15;;38910:113;;;39041:6;39038:1;39035:13;39032:2;;;39121:1;39112:6;39107:3;39103:16;39096:27;39032:2;38881:258;;;;:::o;39145:171::-;;39207:24;39225:5;39207:24;:::i;:::-;39198:33;;39253:4;39246:5;39243:15;39240:2;;;39261:18;;:::i;:::-;39240:2;39308:1;39301:5;39297:13;39290:20;;39188:128;;;:::o;39322:320::-;;39403:1;39397:4;39393:12;39383:22;;39450:1;39444:4;39440:12;39471:18;39461:2;;39527:4;39519:6;39515:17;39505:27;;39461:2;39589;39581:6;39578:14;39558:18;39555:38;39552:2;;;39608:18;;:::i;:::-;39552:2;39373:269;;;;:::o;39648:233::-;;39710:24;39728:5;39710:24;:::i;:::-;39701:33;;39756:66;39749:5;39746:77;39743:2;;;39826:18;;:::i;:::-;39743:2;39873:1;39866:5;39862:13;39855:20;;39691:190;;;:::o;39887:176::-;;39936:20;39954:1;39936:20;:::i;:::-;39931:25;;39970:20;39988:1;39970:20;:::i;:::-;39965:25;;40009:1;39999:2;;40014:18;;:::i;:::-;39999:2;40055:1;40052;40048:9;40043:14;;39921:142;;;;:::o;40069:180::-;40117:77;40114:1;40107:88;40214:4;40211:1;40204:15;40238:4;40235:1;40228:15;40255:180;40303:77;40300:1;40293:88;40400:4;40397:1;40390:15;40424:4;40421:1;40414:15;40441:180;40489:77;40486:1;40479:88;40586:4;40583:1;40576:15;40610:4;40607:1;40600:15;40627:180;40675:77;40672:1;40665:88;40772:4;40769:1;40762:15;40796:4;40793:1;40786:15;40813:102;;40905:2;40901:7;40896:2;40889:5;40885:14;40881:28;40871:38;;40861:54;;;:::o;40921:122::-;40994:24;41012:5;40994:24;:::i;:::-;40987:5;40984:35;40974:2;;41033:1;41030;41023:12;40974:2;40964:79;:::o;41049:116::-;41119:21;41134:5;41119:21;:::i;:::-;41112:5;41109:32;41099:2;;41155:1;41152;41145:12;41099:2;41089:76;:::o;41171:120::-;41243:23;41260:5;41243:23;:::i;:::-;41236:5;41233:34;41223:2;;41281:1;41278;41271:12;41223:2;41213:78;:::o;41297:150::-;41384:38;41416:5;41384:38;:::i;:::-;41377:5;41374:49;41364:2;;41437:1;41434;41427:12;41364:2;41354:93;:::o;41453:180::-;41555:53;41602:5;41555:53;:::i;:::-;41548:5;41545:64;41535:2;;41623:1;41620;41613:12;41535:2;41525:108;:::o;41639:122::-;41712:24;41730:5;41712:24;:::i;:::-;41705:5;41702:35;41692:2;;41751:1;41748;41741:12;41692:2;41682:79;:::o

Swarm Source

ipfs://32ad3f9b871d89bdb26bcc62aeac0af9a70b4cdfb59680499b24e28f70be7e21
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.