ETH Price: $2,891.05 (-10.27%)
Gas: 13 Gwei

Token

Lami The Furry (FURRY)
 

Overview

Max Total Supply

541 FURRY

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
noahnleo.eth
Balance
1 FURRY
0xcb5a84c0fbd65b8f00e5c9ccdfd0f14813b3e6c2
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:
FURRY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/lami.sol

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;

contract FURRY is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private tokenCounter;
    uint256 public constant MaxPerTX = 10;
    uint256 public Supply = 555;
    uint256 public constant PRICE = 0.03 ether;
    bool public SaleActive = true;
    string private baseURI = "ipfs://QmRMpFcuyYPpxSXCavYxjp1MG3gZr5dy4pTzKQobZdxaNS";

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

    modifier publicSaleActive() {
        require(SaleActive, "Not Live");
        _;
    }



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

    modifier canMint(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                Supply,
            "OOS"
        );
        _;
    }

    constructor(
    ) ERC721A("Lami The Furry", "FURRY", 100, Supply) {
    }

    modifier PaymentCheck(uint256 price, uint256 numberOfTokens) {
        require(
            (price * numberOfTokens) == msg.value,
            "Wrong ETH Amount Sent"
        );
        _;
    }

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

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        publicSaleActive
        PaymentCheck(PRICE, numberOfTokens)
        canMint(numberOfTokens)
        MintPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }




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

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

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

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


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

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


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

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

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

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

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

        return
            baseURI;
    }

    /**
     * @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":"MaxPerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Supply","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":[{"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":"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"}]

60c060405260008055600060075561022b600b556001600c60006101000a81548160ff021916908315150217905550604051806060016040528060358152602001620048c460359139600d90805190602001906200005f929190620002ad565b503480156200006d57600080fd5b506040518060400160405280600e81526020017f4c616d69205468652046757272790000000000000000000000000000000000008152506040518060400160405280600581526020017f46555252590000000000000000000000000000000000000000000000000000008152506064600b546000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c90620003cd565b60405180910390fd5b600082116200016b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016290620003ab565b60405180910390fd5b836001908051906020019062000183929190620002ad565b5082600290805190602001906200019c929190620002ad565b508160a08181525050806080818152505050505050620001d1620001c5620001df60201b60201c565b620001e760201b60201c565b600160098190555062000503565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bb9062000400565b90600052602060002090601f016020900481019282620002df57600085556200032b565b82601f10620002fa57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032a5782518255916020019190600101906200030d565b5b5090506200033a91906200033e565b5090565b5b80821115620003595760008160009055506001016200033f565b5090565b60006200036c602783620003ef565b9150620003798262000465565b604082019050919050565b600062000393602e83620003ef565b9150620003a082620004b4565b604082019050919050565b60006020820190508181036000830152620003c6816200035d565b9050919050565b60006020820190508181036000830152620003e88162000384565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f62000436565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516143976200052d6000396000818161211001526121390152600050506143976000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c51461067c578063ee07bf22146106b9578063f1d2165f146106e4578063f2fde38b1461070f576101cd565b8063a22cb465146105c2578063b88d4fde146105eb578063c87b56dd14610614578063d7224ba014610651576101cd565b80638d859f3e116100d15780638d859f3e146105255780638da5cb5b1461055057806395d89b411461057b578063a0712d68146105a6576101cd565b806370a08231146104a6578063714c5398146104e3578063715018a61461050e576101cd565b80632a55205a1161016f57806349df728c1161013e57806349df728c146103da5780634f6ccce71461040357806355f804b3146104405780636352211e14610469576101cd565b80632a55205a1461031f5780632f745c591461035d5780633ccfd60b1461039a57806342842e0e146103b1576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806304ccbbf91461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e94565b610738565b6040516102069190613475565b60405180910390f35b34801561021b57600080fd5b506102246107b2565b60405161023191906137b2565b60405180910390f35b34801561024657600080fd5b5061024f6107b7565b60405161025c9190613490565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612f64565b610849565b60405161029991906133e5565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612e27565b6108ce565b005b3480156102d757600080fd5b506102e06109e7565b6040516102ed91906137b2565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612d11565b6109f0565b005b34801561032b57600080fd5b5061034660048036038101906103419190612fbe565b610a00565b60405161035492919061344c565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190612e27565b610a6c565b60405161039191906137b2565b60405180910390f35b3480156103a657600080fd5b506103af610c6a565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612d11565b610d35565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612eee565b610d55565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612f64565b610ef0565b60405161043791906137b2565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612f1b565b610f43565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f64565b610fd9565b60405161049d91906133e5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612ca4565b610fef565b6040516104da91906137b2565b60405180910390f35b3480156104ef57600080fd5b506104f86110d8565b6040516105059190613490565b60405180910390f35b34801561051a57600080fd5b5061052361116a565b005b34801561053157600080fd5b5061053a6111f2565b60405161054791906137b2565b60405180910390f35b34801561055c57600080fd5b506105656111fd565b60405161057291906133e5565b60405180910390f35b34801561058757600080fd5b50610590611227565b60405161059d9190613490565b60405180910390f35b6105c060048036038101906105bb9190612f64565b6112b9565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612de7565b611462565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612d64565b6115e3565b005b34801561062057600080fd5b5061063b60048036038101906106369190612f64565b61163f565b6040516106489190613490565b60405180910390f35b34801561065d57600080fd5b5061066661171b565b60405161067391906137b2565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612cd1565b611721565b6040516106b09190613475565b60405180910390f35b3480156106c557600080fd5b506106ce6117b5565b6040516106db91906137b2565b60405180910390f35b3480156106f057600080fd5b506106f96117bb565b6040516107069190613475565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612ca4565b6117ce565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ab57506107aa826118c6565b5b9050919050565b600a81565b6060600180546107c690613b29565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290613b29565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b600061085482611a10565b610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90613792565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d982610fd9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613692565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610969611a1d565b73ffffffffffffffffffffffffffffffffffffffff161480610998575061099781610992611a1d565b611721565b5b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906135d2565b60405180910390fd5b6109e2838383611a25565b505050565b60008054905090565b6109fb838383611ad7565b505050565b600080610a0c84611a10565b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906135b2565b60405180910390fd5b30610a61610a5a856005612090565b60646120a6565b915091509250929050565b6000610a7783610fef565b8210610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906134b2565b60405180910390fd5b6000610ac26109e7565b905060008060005b83811015610c28576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bbc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c145786841415610c05578195505050505050610c64565b8380610c1090613b8c565b9450505b508080610c2090613b8c565b915050610aca565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613712565b60405180910390fd5b92915050565b610c72611a1d565b73ffffffffffffffffffffffffffffffffffffffff16610c906111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613632565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d31573d6000803e3d6000fd5b5050565b610d50838383604051806020016040528060008152506115e3565b505050565b610d5d611a1d565b73ffffffffffffffffffffffffffffffffffffffff16610d7b6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890613632565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0c91906133e5565b60206040518083038186803b158015610e2457600080fd5b505afa158015610e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5c9190612f91565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e9992919061344c565b602060405180830381600087803b158015610eb357600080fd5b505af1158015610ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eeb9190612e67565b505050565b6000610efa6109e7565b8210610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613552565b60405180910390fd5b819050919050565b610f4b611a1d565b73ffffffffffffffffffffffffffffffffffffffff16610f696111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613632565b60405180910390fd5b80600d9080519060200190610fd5929190612a3f565b5050565b6000610fe4826120bc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611057906135f2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600d80546110e790613b29565b80601f016020809104026020016040519081016040528092919081815260200182805461111390613b29565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b611172611a1d565b73ffffffffffffffffffffffffffffffffffffffff166111906111fd565b73ffffffffffffffffffffffffffffffffffffffff16146111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd90613632565b60405180910390fd5b6111f060006122bf565b565b666a94d74f43000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461123690613b29565b80601f016020809104026020016040519081016040528092919081815260200182805461126290613b29565b80156112af5780601f10611284576101008083540402835291602001916112af565b820191906000526020600020905b81548152906001019060200180831161129257829003601f168201915b5050505050905090565b600260095414156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613752565b60405180910390fd5b6002600981905550600c60009054906101000a900460ff16611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d906134d2565b60405180910390fd5b666a94d74f4300008134818361136c9190613959565b146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a3906134f2565b60405180910390fd5b82600b54816113b96109e7565b6113c391906138d2565b1115611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613732565b60405180910390fd5b83600a811115611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613592565b60405180910390fd5b6114533386612385565b50505050600160098190555050565b61146a611a1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613652565b60405180910390fd5b80600660006114e5611a1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611592611a1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d79190613475565b60405180910390a35050565b6115ee848484611ad7565b6115fa848484846123a3565b611639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611630906136b2565b60405180910390fd5b50505050565b606061164a82611a10565b611689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611680906135b2565b60405180910390fd5b600d805461169690613b29565b80601f01602080910402602001604051908101604052809291908181526020018280546116c290613b29565b801561170f5780601f106116e45761010080835404028352916020019161170f565b820191906000526020600020905b8154815290600101906020018083116116f257829003601f168201915b50505050509050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b600c60009054906101000a900460ff1681565b6117d6611a1d565b73ffffffffffffffffffffffffffffffffffffffff166117f46111fd565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190613632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613512565b60405180910390fd5b6118c3816122bf565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061199157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119f957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a095750611a088261253a565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ae2826120bc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b09611a1d565b73ffffffffffffffffffffffffffffffffffffffff161480611b655750611b2e611a1d565b73ffffffffffffffffffffffffffffffffffffffff16611b4d84610849565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b815750611b808260000151611b7b611a1d565b611721565b5b905080611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90613672565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613612565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90613572565b60405180910390fd5b611cb285858560016125a4565b611cc26000848460000151611a25565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d3091906139b3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dd4919061388c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611eda91906138d2565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202057611f5081611a10565b1561201f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208886868660016125aa565b505050505050565b6000818361209e9190613959565b905092915050565b600081836120b49190613928565b905092915050565b6120c4612ac5565b6120cd82611a10565b61210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613532565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121705760017f00000000000000000000000000000000000000000000000000000000000000008461216391906139e7565b61216d91906138d2565b90505b60008390505b81811061227e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461226a578093505050506122ba565b50808061227690613aff565b915050612176565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190613772565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61239f8282604051806020016040528060008152506125b0565b5050565b60006123c48473ffffffffffffffffffffffffffffffffffffffff16612a2c565b1561252d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ed611a1d565b8786866040518563ffffffff1660e01b815260040161240f9493929190613400565b602060405180830381600087803b15801561242957600080fd5b505af192505050801561245a57506040513d601f19601f820116820180604052508101906124579190612ec1565b60015b6124dd573d806000811461248a576040519150601f19603f3d011682016040523d82523d6000602084013e61248f565b606091505b506000815114156124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc906136b2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612532565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d906136f2565b60405180910390fd5b61262f81611a10565b1561266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906136d2565b60405180910390fd5b61267c60008583866125a4565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612779919061388c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127a0919061388c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612a0f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129af60008884886123a3565b6129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e5906136b2565b60405180910390fd5b81806129f990613b8c565b9250508080612a0790613b8c565b91505061293e565b5080600081905550612a2460008785886125aa565b505050505050565b600080823b905060008111915050919050565b828054612a4b90613b29565b90600052602060002090601f016020900481019282612a6d5760008555612ab4565b82601f10612a8657805160ff1916838001178555612ab4565b82800160010185558215612ab4579182015b82811115612ab3578251825591602001919060010190612a98565b5b509050612ac19190612aff565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b18576000816000905550600101612b00565b5090565b6000612b2f612b2a846137f2565b6137cd565b905082815260208101848484011115612b4b57612b4a613c96565b5b612b56848285613abd565b509392505050565b6000612b71612b6c84613823565b6137cd565b905082815260208101848484011115612b8d57612b8c613c96565b5b612b98848285613abd565b509392505050565b600081359050612baf816142ee565b92915050565b600081359050612bc481614305565b92915050565b600081519050612bd981614305565b92915050565b600081359050612bee8161431c565b92915050565b600081519050612c038161431c565b92915050565b600082601f830112612c1e57612c1d613c91565b5b8135612c2e848260208601612b1c565b91505092915050565b600081359050612c4681614333565b92915050565b600082601f830112612c6157612c60613c91565b5b8135612c71848260208601612b5e565b91505092915050565b600081359050612c898161434a565b92915050565b600081519050612c9e8161434a565b92915050565b600060208284031215612cba57612cb9613ca0565b5b6000612cc884828501612ba0565b91505092915050565b60008060408385031215612ce857612ce7613ca0565b5b6000612cf685828601612ba0565b9250506020612d0785828601612ba0565b9150509250929050565b600080600060608486031215612d2a57612d29613ca0565b5b6000612d3886828701612ba0565b9350506020612d4986828701612ba0565b9250506040612d5a86828701612c7a565b9150509250925092565b60008060008060808587031215612d7e57612d7d613ca0565b5b6000612d8c87828801612ba0565b9450506020612d9d87828801612ba0565b9350506040612dae87828801612c7a565b925050606085013567ffffffffffffffff811115612dcf57612dce613c9b565b5b612ddb87828801612c09565b91505092959194509250565b60008060408385031215612dfe57612dfd613ca0565b5b6000612e0c85828601612ba0565b9250506020612e1d85828601612bb5565b9150509250929050565b60008060408385031215612e3e57612e3d613ca0565b5b6000612e4c85828601612ba0565b9250506020612e5d85828601612c7a565b9150509250929050565b600060208284031215612e7d57612e7c613ca0565b5b6000612e8b84828501612bca565b91505092915050565b600060208284031215612eaa57612ea9613ca0565b5b6000612eb884828501612bdf565b91505092915050565b600060208284031215612ed757612ed6613ca0565b5b6000612ee584828501612bf4565b91505092915050565b600060208284031215612f0457612f03613ca0565b5b6000612f1284828501612c37565b91505092915050565b600060208284031215612f3157612f30613ca0565b5b600082013567ffffffffffffffff811115612f4f57612f4e613c9b565b5b612f5b84828501612c4c565b91505092915050565b600060208284031215612f7a57612f79613ca0565b5b6000612f8884828501612c7a565b91505092915050565b600060208284031215612fa757612fa6613ca0565b5b6000612fb584828501612c8f565b91505092915050565b60008060408385031215612fd557612fd4613ca0565b5b6000612fe385828601612c7a565b9250506020612ff485828601612c7a565b9150509250929050565b61300781613a1b565b82525050565b61301681613a2d565b82525050565b600061302782613854565b613031818561386a565b9350613041818560208601613acc565b61304a81613ca5565b840191505092915050565b60006130608261385f565b61306a818561387b565b935061307a818560208601613acc565b61308381613ca5565b840191505092915050565b600061309b60228361387b565b91506130a682613cb6565b604082019050919050565b60006130be60088361387b565b91506130c982613d05565b602082019050919050565b60006130e160158361387b565b91506130ec82613d2e565b602082019050919050565b600061310460268361387b565b915061310f82613d57565b604082019050919050565b6000613127602a8361387b565b915061313282613da6565b604082019050919050565b600061314a60238361387b565b915061315582613df5565b604082019050919050565b600061316d60258361387b565b915061317882613e44565b604082019050919050565b600061319060228361387b565b915061319b82613e93565b604082019050919050565b60006131b360118361387b565b91506131be82613ee2565b602082019050919050565b60006131d660398361387b565b91506131e182613f0b565b604082019050919050565b60006131f9602b8361387b565b915061320482613f5a565b604082019050919050565b600061321c60268361387b565b915061322782613fa9565b604082019050919050565b600061323f60208361387b565b915061324a82613ff8565b602082019050919050565b6000613262601a8361387b565b915061326d82614021565b602082019050919050565b600061328560328361387b565b91506132908261404a565b604082019050919050565b60006132a860228361387b565b91506132b382614099565b604082019050919050565b60006132cb60338361387b565b91506132d6826140e8565b604082019050919050565b60006132ee601d8361387b565b91506132f982614137565b602082019050919050565b600061331160218361387b565b915061331c82614160565b604082019050919050565b6000613334602e8361387b565b915061333f826141af565b604082019050919050565b600061335760038361387b565b9150613362826141fe565b602082019050919050565b600061337a601f8361387b565b915061338582614227565b602082019050919050565b600061339d602f8361387b565b91506133a882614250565b604082019050919050565b60006133c0602d8361387b565b91506133cb8261429f565b604082019050919050565b6133df81613ab3565b82525050565b60006020820190506133fa6000830184612ffe565b92915050565b60006080820190506134156000830187612ffe565b6134226020830186612ffe565b61342f60408301856133d6565b8181036060830152613441818461301c565b905095945050505050565b60006040820190506134616000830185612ffe565b61346e60208301846133d6565b9392505050565b600060208201905061348a600083018461300d565b92915050565b600060208201905081810360008301526134aa8184613055565b905092915050565b600060208201905081810360008301526134cb8161308e565b9050919050565b600060208201905081810360008301526134eb816130b1565b9050919050565b6000602082019050818103600083015261350b816130d4565b9050919050565b6000602082019050818103600083015261352b816130f7565b9050919050565b6000602082019050818103600083015261354b8161311a565b9050919050565b6000602082019050818103600083015261356b8161313d565b9050919050565b6000602082019050818103600083015261358b81613160565b9050919050565b600060208201905081810360008301526135ab81613183565b9050919050565b600060208201905081810360008301526135cb816131a6565b9050919050565b600060208201905081810360008301526135eb816131c9565b9050919050565b6000602082019050818103600083015261360b816131ec565b9050919050565b6000602082019050818103600083015261362b8161320f565b9050919050565b6000602082019050818103600083015261364b81613232565b9050919050565b6000602082019050818103600083015261366b81613255565b9050919050565b6000602082019050818103600083015261368b81613278565b9050919050565b600060208201905081810360008301526136ab8161329b565b9050919050565b600060208201905081810360008301526136cb816132be565b9050919050565b600060208201905081810360008301526136eb816132e1565b9050919050565b6000602082019050818103600083015261370b81613304565b9050919050565b6000602082019050818103600083015261372b81613327565b9050919050565b6000602082019050818103600083015261374b8161334a565b9050919050565b6000602082019050818103600083015261376b8161336d565b9050919050565b6000602082019050818103600083015261378b81613390565b9050919050565b600060208201905081810360008301526137ab816133b3565b9050919050565b60006020820190506137c760008301846133d6565b92915050565b60006137d76137e8565b90506137e38282613b5b565b919050565b6000604051905090565b600067ffffffffffffffff82111561380d5761380c613c62565b5b61381682613ca5565b9050602081019050919050565b600067ffffffffffffffff82111561383e5761383d613c62565b5b61384782613ca5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061389782613a77565b91506138a283613a77565b9250826fffffffffffffffffffffffffffffffff038211156138c7576138c6613bd5565b5b828201905092915050565b60006138dd82613ab3565b91506138e883613ab3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391d5761391c613bd5565b5b828201905092915050565b600061393382613ab3565b915061393e83613ab3565b92508261394e5761394d613c04565b5b828204905092915050565b600061396482613ab3565b915061396f83613ab3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a8576139a7613bd5565b5b828202905092915050565b60006139be82613a77565b91506139c983613a77565b9250828210156139dc576139db613bd5565b5b828203905092915050565b60006139f282613ab3565b91506139fd83613ab3565b925082821015613a1057613a0f613bd5565b5b828203905092915050565b6000613a2682613a93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a7082613a1b565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aea578082015181840152602081019050613acf565b83811115613af9576000848401525b50505050565b6000613b0a82613ab3565b91506000821415613b1e57613b1d613bd5565b5b600182039050919050565b60006002820490506001821680613b4157607f821691505b60208210811415613b5557613b54613c33565b5b50919050565b613b6482613ca5565b810181811067ffffffffffffffff82111715613b8357613b82613c62565b5b80604052505050565b6000613b9782613ab3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bca57613bc9613bd5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74204c697665000000000000000000000000000000000000000000000000600082015250565b7f57726f6e672045544820416d6f756e742053656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6142f781613a1b565b811461430257600080fd5b50565b61430e81613a2d565b811461431957600080fd5b50565b61432581613a39565b811461433057600080fd5b50565b61433c81613a65565b811461434757600080fd5b50565b61435381613ab3565b811461435e57600080fd5b5056fea264697066735822122028b380062f8e632f8dca1bf46aaa9797bc95a671d100f0aa33ccf4b45c27d94864736f6c63430008070033697066733a2f2f516d524d704663757959507078535843617659786a70314d4733675a723564793470547a4b516f625a6478614e53

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c51461067c578063ee07bf22146106b9578063f1d2165f146106e4578063f2fde38b1461070f576101cd565b8063a22cb465146105c2578063b88d4fde146105eb578063c87b56dd14610614578063d7224ba014610651576101cd565b80638d859f3e116100d15780638d859f3e146105255780638da5cb5b1461055057806395d89b411461057b578063a0712d68146105a6576101cd565b806370a08231146104a6578063714c5398146104e3578063715018a61461050e576101cd565b80632a55205a1161016f57806349df728c1161013e57806349df728c146103da5780634f6ccce71461040357806355f804b3146104405780636352211e14610469576101cd565b80632a55205a1461031f5780632f745c591461035d5780633ccfd60b1461039a57806342842e0e146103b1576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806304ccbbf91461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e94565b610738565b6040516102069190613475565b60405180910390f35b34801561021b57600080fd5b506102246107b2565b60405161023191906137b2565b60405180910390f35b34801561024657600080fd5b5061024f6107b7565b60405161025c9190613490565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612f64565b610849565b60405161029991906133e5565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612e27565b6108ce565b005b3480156102d757600080fd5b506102e06109e7565b6040516102ed91906137b2565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612d11565b6109f0565b005b34801561032b57600080fd5b5061034660048036038101906103419190612fbe565b610a00565b60405161035492919061344c565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190612e27565b610a6c565b60405161039191906137b2565b60405180910390f35b3480156103a657600080fd5b506103af610c6a565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612d11565b610d35565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612eee565b610d55565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612f64565b610ef0565b60405161043791906137b2565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190612f1b565b610f43565b005b34801561047557600080fd5b50610490600480360381019061048b9190612f64565b610fd9565b60405161049d91906133e5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612ca4565b610fef565b6040516104da91906137b2565b60405180910390f35b3480156104ef57600080fd5b506104f86110d8565b6040516105059190613490565b60405180910390f35b34801561051a57600080fd5b5061052361116a565b005b34801561053157600080fd5b5061053a6111f2565b60405161054791906137b2565b60405180910390f35b34801561055c57600080fd5b506105656111fd565b60405161057291906133e5565b60405180910390f35b34801561058757600080fd5b50610590611227565b60405161059d9190613490565b60405180910390f35b6105c060048036038101906105bb9190612f64565b6112b9565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612de7565b611462565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612d64565b6115e3565b005b34801561062057600080fd5b5061063b60048036038101906106369190612f64565b61163f565b6040516106489190613490565b60405180910390f35b34801561065d57600080fd5b5061066661171b565b60405161067391906137b2565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612cd1565b611721565b6040516106b09190613475565b60405180910390f35b3480156106c557600080fd5b506106ce6117b5565b6040516106db91906137b2565b60405180910390f35b3480156106f057600080fd5b506106f96117bb565b6040516107069190613475565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612ca4565b6117ce565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ab57506107aa826118c6565b5b9050919050565b600a81565b6060600180546107c690613b29565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290613b29565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b600061085482611a10565b610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90613792565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d982610fd9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613692565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610969611a1d565b73ffffffffffffffffffffffffffffffffffffffff161480610998575061099781610992611a1d565b611721565b5b6109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906135d2565b60405180910390fd5b6109e2838383611a25565b505050565b60008054905090565b6109fb838383611ad7565b505050565b600080610a0c84611a10565b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906135b2565b60405180910390fd5b30610a61610a5a856005612090565b60646120a6565b915091509250929050565b6000610a7783610fef565b8210610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906134b2565b60405180910390fd5b6000610ac26109e7565b905060008060005b83811015610c28576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bbc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c145786841415610c05578195505050505050610c64565b8380610c1090613b8c565b9450505b508080610c2090613b8c565b915050610aca565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613712565b60405180910390fd5b92915050565b610c72611a1d565b73ffffffffffffffffffffffffffffffffffffffff16610c906111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613632565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d31573d6000803e3d6000fd5b5050565b610d50838383604051806020016040528060008152506115e3565b505050565b610d5d611a1d565b73ffffffffffffffffffffffffffffffffffffffff16610d7b6111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890613632565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e0c91906133e5565b60206040518083038186803b158015610e2457600080fd5b505afa158015610e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5c9190612f91565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e9992919061344c565b602060405180830381600087803b158015610eb357600080fd5b505af1158015610ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eeb9190612e67565b505050565b6000610efa6109e7565b8210610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613552565b60405180910390fd5b819050919050565b610f4b611a1d565b73ffffffffffffffffffffffffffffffffffffffff16610f696111fd565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613632565b60405180910390fd5b80600d9080519060200190610fd5929190612a3f565b5050565b6000610fe4826120bc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611057906135f2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600d80546110e790613b29565b80601f016020809104026020016040519081016040528092919081815260200182805461111390613b29565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b611172611a1d565b73ffffffffffffffffffffffffffffffffffffffff166111906111fd565b73ffffffffffffffffffffffffffffffffffffffff16146111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd90613632565b60405180910390fd5b6111f060006122bf565b565b666a94d74f43000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461123690613b29565b80601f016020809104026020016040519081016040528092919081815260200182805461126290613b29565b80156112af5780601f10611284576101008083540402835291602001916112af565b820191906000526020600020905b81548152906001019060200180831161129257829003601f168201915b5050505050905090565b600260095414156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613752565b60405180910390fd5b6002600981905550600c60009054906101000a900460ff16611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d906134d2565b60405180910390fd5b666a94d74f4300008134818361136c9190613959565b146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a3906134f2565b60405180910390fd5b82600b54816113b96109e7565b6113c391906138d2565b1115611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613732565b60405180910390fd5b83600a811115611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613592565b60405180910390fd5b6114533386612385565b50505050600160098190555050565b61146a611a1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613652565b60405180910390fd5b80600660006114e5611a1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611592611a1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d79190613475565b60405180910390a35050565b6115ee848484611ad7565b6115fa848484846123a3565b611639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611630906136b2565b60405180910390fd5b50505050565b606061164a82611a10565b611689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611680906135b2565b60405180910390fd5b600d805461169690613b29565b80601f01602080910402602001604051908101604052809291908181526020018280546116c290613b29565b801561170f5780601f106116e45761010080835404028352916020019161170f565b820191906000526020600020905b8154815290600101906020018083116116f257829003601f168201915b50505050509050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b600c60009054906101000a900460ff1681565b6117d6611a1d565b73ffffffffffffffffffffffffffffffffffffffff166117f46111fd565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190613632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b190613512565b60405180910390fd5b6118c3816122bf565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061199157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119f957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a095750611a088261253a565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ae2826120bc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b09611a1d565b73ffffffffffffffffffffffffffffffffffffffff161480611b655750611b2e611a1d565b73ffffffffffffffffffffffffffffffffffffffff16611b4d84610849565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b815750611b808260000151611b7b611a1d565b611721565b5b905080611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90613672565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613612565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90613572565b60405180910390fd5b611cb285858560016125a4565b611cc26000848460000151611a25565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611d3091906139b3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dd4919061388c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611eda91906138d2565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561202057611f5081611a10565b1561201f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208886868660016125aa565b505050505050565b6000818361209e9190613959565b905092915050565b600081836120b49190613928565b905092915050565b6120c4612ac5565b6120cd82611a10565b61210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613532565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106121705760017f00000000000000000000000000000000000000000000000000000000000000648461216391906139e7565b61216d91906138d2565b90505b60008390505b81811061227e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461226a578093505050506122ba565b50808061227690613aff565b915050612176565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190613772565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61239f8282604051806020016040528060008152506125b0565b5050565b60006123c48473ffffffffffffffffffffffffffffffffffffffff16612a2c565b1561252d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ed611a1d565b8786866040518563ffffffff1660e01b815260040161240f9493929190613400565b602060405180830381600087803b15801561242957600080fd5b505af192505050801561245a57506040513d601f19601f820116820180604052508101906124579190612ec1565b60015b6124dd573d806000811461248a576040519150601f19603f3d011682016040523d82523d6000602084013e61248f565b606091505b506000815114156124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc906136b2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612532565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d906136f2565b60405180910390fd5b61262f81611a10565b1561266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906136d2565b60405180910390fd5b61267c60008583866125a4565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612779919061388c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127a0919061388c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612a0f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129af60008884886123a3565b6129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e5906136b2565b60405180910390fd5b81806129f990613b8c565b9250508080612a0790613b8c565b91505061293e565b5080600081905550612a2460008785886125aa565b505050505050565b600080823b905060008111915050919050565b828054612a4b90613b29565b90600052602060002090601f016020900481019282612a6d5760008555612ab4565b82601f10612a8657805160ff1916838001178555612ab4565b82800160010185558215612ab4579182015b82811115612ab3578251825591602001919060010190612a98565b5b509050612ac19190612aff565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612b18576000816000905550600101612b00565b5090565b6000612b2f612b2a846137f2565b6137cd565b905082815260208101848484011115612b4b57612b4a613c96565b5b612b56848285613abd565b509392505050565b6000612b71612b6c84613823565b6137cd565b905082815260208101848484011115612b8d57612b8c613c96565b5b612b98848285613abd565b509392505050565b600081359050612baf816142ee565b92915050565b600081359050612bc481614305565b92915050565b600081519050612bd981614305565b92915050565b600081359050612bee8161431c565b92915050565b600081519050612c038161431c565b92915050565b600082601f830112612c1e57612c1d613c91565b5b8135612c2e848260208601612b1c565b91505092915050565b600081359050612c4681614333565b92915050565b600082601f830112612c6157612c60613c91565b5b8135612c71848260208601612b5e565b91505092915050565b600081359050612c898161434a565b92915050565b600081519050612c9e8161434a565b92915050565b600060208284031215612cba57612cb9613ca0565b5b6000612cc884828501612ba0565b91505092915050565b60008060408385031215612ce857612ce7613ca0565b5b6000612cf685828601612ba0565b9250506020612d0785828601612ba0565b9150509250929050565b600080600060608486031215612d2a57612d29613ca0565b5b6000612d3886828701612ba0565b9350506020612d4986828701612ba0565b9250506040612d5a86828701612c7a565b9150509250925092565b60008060008060808587031215612d7e57612d7d613ca0565b5b6000612d8c87828801612ba0565b9450506020612d9d87828801612ba0565b9350506040612dae87828801612c7a565b925050606085013567ffffffffffffffff811115612dcf57612dce613c9b565b5b612ddb87828801612c09565b91505092959194509250565b60008060408385031215612dfe57612dfd613ca0565b5b6000612e0c85828601612ba0565b9250506020612e1d85828601612bb5565b9150509250929050565b60008060408385031215612e3e57612e3d613ca0565b5b6000612e4c85828601612ba0565b9250506020612e5d85828601612c7a565b9150509250929050565b600060208284031215612e7d57612e7c613ca0565b5b6000612e8b84828501612bca565b91505092915050565b600060208284031215612eaa57612ea9613ca0565b5b6000612eb884828501612bdf565b91505092915050565b600060208284031215612ed757612ed6613ca0565b5b6000612ee584828501612bf4565b91505092915050565b600060208284031215612f0457612f03613ca0565b5b6000612f1284828501612c37565b91505092915050565b600060208284031215612f3157612f30613ca0565b5b600082013567ffffffffffffffff811115612f4f57612f4e613c9b565b5b612f5b84828501612c4c565b91505092915050565b600060208284031215612f7a57612f79613ca0565b5b6000612f8884828501612c7a565b91505092915050565b600060208284031215612fa757612fa6613ca0565b5b6000612fb584828501612c8f565b91505092915050565b60008060408385031215612fd557612fd4613ca0565b5b6000612fe385828601612c7a565b9250506020612ff485828601612c7a565b9150509250929050565b61300781613a1b565b82525050565b61301681613a2d565b82525050565b600061302782613854565b613031818561386a565b9350613041818560208601613acc565b61304a81613ca5565b840191505092915050565b60006130608261385f565b61306a818561387b565b935061307a818560208601613acc565b61308381613ca5565b840191505092915050565b600061309b60228361387b565b91506130a682613cb6565b604082019050919050565b60006130be60088361387b565b91506130c982613d05565b602082019050919050565b60006130e160158361387b565b91506130ec82613d2e565b602082019050919050565b600061310460268361387b565b915061310f82613d57565b604082019050919050565b6000613127602a8361387b565b915061313282613da6565b604082019050919050565b600061314a60238361387b565b915061315582613df5565b604082019050919050565b600061316d60258361387b565b915061317882613e44565b604082019050919050565b600061319060228361387b565b915061319b82613e93565b604082019050919050565b60006131b360118361387b565b91506131be82613ee2565b602082019050919050565b60006131d660398361387b565b91506131e182613f0b565b604082019050919050565b60006131f9602b8361387b565b915061320482613f5a565b604082019050919050565b600061321c60268361387b565b915061322782613fa9565b604082019050919050565b600061323f60208361387b565b915061324a82613ff8565b602082019050919050565b6000613262601a8361387b565b915061326d82614021565b602082019050919050565b600061328560328361387b565b91506132908261404a565b604082019050919050565b60006132a860228361387b565b91506132b382614099565b604082019050919050565b60006132cb60338361387b565b91506132d6826140e8565b604082019050919050565b60006132ee601d8361387b565b91506132f982614137565b602082019050919050565b600061331160218361387b565b915061331c82614160565b604082019050919050565b6000613334602e8361387b565b915061333f826141af565b604082019050919050565b600061335760038361387b565b9150613362826141fe565b602082019050919050565b600061337a601f8361387b565b915061338582614227565b602082019050919050565b600061339d602f8361387b565b91506133a882614250565b604082019050919050565b60006133c0602d8361387b565b91506133cb8261429f565b604082019050919050565b6133df81613ab3565b82525050565b60006020820190506133fa6000830184612ffe565b92915050565b60006080820190506134156000830187612ffe565b6134226020830186612ffe565b61342f60408301856133d6565b8181036060830152613441818461301c565b905095945050505050565b60006040820190506134616000830185612ffe565b61346e60208301846133d6565b9392505050565b600060208201905061348a600083018461300d565b92915050565b600060208201905081810360008301526134aa8184613055565b905092915050565b600060208201905081810360008301526134cb8161308e565b9050919050565b600060208201905081810360008301526134eb816130b1565b9050919050565b6000602082019050818103600083015261350b816130d4565b9050919050565b6000602082019050818103600083015261352b816130f7565b9050919050565b6000602082019050818103600083015261354b8161311a565b9050919050565b6000602082019050818103600083015261356b8161313d565b9050919050565b6000602082019050818103600083015261358b81613160565b9050919050565b600060208201905081810360008301526135ab81613183565b9050919050565b600060208201905081810360008301526135cb816131a6565b9050919050565b600060208201905081810360008301526135eb816131c9565b9050919050565b6000602082019050818103600083015261360b816131ec565b9050919050565b6000602082019050818103600083015261362b8161320f565b9050919050565b6000602082019050818103600083015261364b81613232565b9050919050565b6000602082019050818103600083015261366b81613255565b9050919050565b6000602082019050818103600083015261368b81613278565b9050919050565b600060208201905081810360008301526136ab8161329b565b9050919050565b600060208201905081810360008301526136cb816132be565b9050919050565b600060208201905081810360008301526136eb816132e1565b9050919050565b6000602082019050818103600083015261370b81613304565b9050919050565b6000602082019050818103600083015261372b81613327565b9050919050565b6000602082019050818103600083015261374b8161334a565b9050919050565b6000602082019050818103600083015261376b8161336d565b9050919050565b6000602082019050818103600083015261378b81613390565b9050919050565b600060208201905081810360008301526137ab816133b3565b9050919050565b60006020820190506137c760008301846133d6565b92915050565b60006137d76137e8565b90506137e38282613b5b565b919050565b6000604051905090565b600067ffffffffffffffff82111561380d5761380c613c62565b5b61381682613ca5565b9050602081019050919050565b600067ffffffffffffffff82111561383e5761383d613c62565b5b61384782613ca5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061389782613a77565b91506138a283613a77565b9250826fffffffffffffffffffffffffffffffff038211156138c7576138c6613bd5565b5b828201905092915050565b60006138dd82613ab3565b91506138e883613ab3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561391d5761391c613bd5565b5b828201905092915050565b600061393382613ab3565b915061393e83613ab3565b92508261394e5761394d613c04565b5b828204905092915050565b600061396482613ab3565b915061396f83613ab3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a8576139a7613bd5565b5b828202905092915050565b60006139be82613a77565b91506139c983613a77565b9250828210156139dc576139db613bd5565b5b828203905092915050565b60006139f282613ab3565b91506139fd83613ab3565b925082821015613a1057613a0f613bd5565b5b828203905092915050565b6000613a2682613a93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a7082613a1b565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aea578082015181840152602081019050613acf565b83811115613af9576000848401525b50505050565b6000613b0a82613ab3565b91506000821415613b1e57613b1d613bd5565b5b600182039050919050565b60006002820490506001821680613b4157607f821691505b60208210811415613b5557613b54613c33565b5b50919050565b613b6482613ca5565b810181811067ffffffffffffffff82111715613b8357613b82613c62565b5b80604052505050565b6000613b9782613ab3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bca57613bc9613bd5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74204c697665000000000000000000000000000000000000000000000000600082015250565b7f57726f6e672045544820416d6f756e742053656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6142f781613a1b565b811461430257600080fd5b50565b61430e81613a2d565b811461431957600080fd5b50565b61432581613a39565b811461433057600080fd5b50565b61433c81613a65565b811461434757600080fd5b50565b61435381613ab3565b811461435e57600080fd5b5056fea264697066735822122028b380062f8e632f8dca1bf46aaa9797bc95a671d100f0aa33ccf4b45c27d94864736f6c63430008070033

Deployed Bytecode Sourcemap

54996:3570:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57573:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55183:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44199:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45724:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45287:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41034:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46574:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58245:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41665:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56992:143;;;;;;;;;;;;;:::i;:::-;;46779:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57143:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41197:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56882:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44022:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42899:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56718:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19057:103;;;;;;;;;;;;;:::i;:::-;;55261:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18406:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44354:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56344:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45992:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46999:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57936:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51417:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46329:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55227:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55310:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19315:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57573:292;57721:4;57778:26;57763:41;;;:11;:41;;;;:94;;;;57821:36;57845:11;57821:23;:36::i;:::-;57763:94;57743:114;;57573:292;;;:::o;55183:37::-;55218:2;55183:37;:::o;44199:94::-;44253:13;44282:5;44275:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44199:94;:::o;45724:204::-;45792:7;45816:16;45824:7;45816;:16::i;:::-;45808:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45898:15;:24;45914:7;45898:24;;;;;;;;;;;;;;;;;;;;;45891:31;;45724:204;;;:::o;45287:379::-;45356:13;45372:24;45388:7;45372:15;:24::i;:::-;45356:40;;45417:5;45411:11;;:2;:11;;;;45403:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45502:5;45486:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45511:37;45528:5;45535:12;:10;:12::i;:::-;45511:16;:37::i;:::-;45486:62;45470:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45632:28;45641:2;45645:7;45654:5;45632:8;:28::i;:::-;45349:317;45287:379;;:::o;41034:94::-;41087:7;41110:12;;41103:19;;41034:94;:::o;46574:142::-;46682:28;46692:4;46698:2;46702:7;46682:9;:28::i;:::-;46574:142;;;:::o;58245:318::-;58370:16;58388:21;58435:16;58443:7;58435;:16::i;:::-;58427:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58502:4;58509:45;58522:26;58535:9;58546:1;58522:12;:26::i;:::-;58550:3;58509:12;:45::i;:::-;58486:69;;;;58245:318;;;;;:::o;41665:744::-;41774:7;41809:16;41819:5;41809:9;:16::i;:::-;41801:5;:24;41793:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41871:22;41896:13;:11;:13::i;:::-;41871:38;;41916:19;41946:25;41996:9;41991:350;42015:14;42011:1;:18;41991:350;;;42045:31;42079:11;:14;42091:1;42079:14;;;;;;;;;;;42045:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42132:1;42106:28;;:9;:14;;;:28;;;42102:89;;42167:9;:14;;;42147:34;;42102:89;42224:5;42203:26;;:17;:26;;;42199:135;;;42261:5;42246:11;:20;42242:59;;;42288:1;42281:8;;;;;;;;;42242:59;42311:13;;;;;:::i;:::-;;;;42199:135;42036:305;42031:3;;;;;:::i;:::-;;;;41991:350;;;;42347:56;;;;;;;;;;:::i;:::-;;;;;;;;41665:744;;;;;:::o;56992:143::-;18637:12;:10;:12::i;:::-;18626:23;;:7;:5;:7::i;:::-;:23;;;18618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57040:15:::1;57058:21;57040:39;;57098:10;57090:28;;:37;57119:7;57090:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57029:106;56992:143::o:0;46779:157::-;46891:39;46908:4;46914:2;46918:7;46891:39;;;;;;;;;;;;:16;:39::i;:::-;46779:157;;;:::o;57143:168::-;18637:12;:10;:12::i;:::-;18626:23;;:7;:5;:7::i;:::-;:23;;;18618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57209:15:::1;57227:5;:15;;;57251:4;57227:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57209:48;;57268:5;:14;;;57283:10;57295:7;57268:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57198:113;57143:168:::0;:::o;41197:177::-;41264:7;41296:13;:11;:13::i;:::-;41288:5;:21;41280:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41363:5;41356:12;;41197:177;;;:::o;56882:100::-;18637:12;:10;:12::i;:::-;18626:23;;:7;:5;:7::i;:::-;:23;;;18618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56966:8:::1;56956:7;:18;;;;;;;;;;;;:::i;:::-;;56882:100:::0;:::o;44022:118::-;44086:7;44109:20;44121:7;44109:11;:20::i;:::-;:25;;;44102:32;;44022:118;;;:::o;42899:211::-;42963:7;43004:1;42987:19;;:5;:19;;;;42979:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43076:12;:19;43089:5;43076:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43068:36;;43061:43;;42899:211;;;:::o;56718:93::-;56763:13;56796:7;56789:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56718:93;:::o;19057:103::-;18637:12;:10;:12::i;:::-;18626:23;;:7;:5;:7::i;:::-;:23;;;18618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19122:30:::1;19149:1;19122:18;:30::i;:::-;19057:103::o:0;55261:42::-;55293:10;55261:42;:::o;18406:87::-;18452:7;18479:6;;;;;;;;;;;18472:13;;18406:87;:::o;44354:98::-;44410:13;44439:7;44432:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44354:98;:::o;56344:297::-;10335:1;10933:7;;:19;;10925:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10335:1;11066:7;:18;;;;55550:10:::1;;;;;;;;;;;55542:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;55293:10:::2;56494:14;56193:9;56174:14;56166:5;:22;;;;:::i;:::-;56165:37;56143:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;56527:14:::3;55922:6;;55887:14;55871:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:57;;55849:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;56562:14:::4;55218:2;55681:14;:26;;55659:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;56596:37:::5;56606:10;56618:14;56596:9;:37::i;:::-;55970:1:::4;56262::::3;55584::::2;;10291::::0;11245:7;:22;;;;56344:297;:::o;45992:274::-;46095:12;:10;:12::i;:::-;46083:24;;:8;:24;;;;46075:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46192:8;46147:18;:32;46166:12;:10;:12::i;:::-;46147:32;;;;;;;;;;;;;;;:42;46180:8;46147:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46241:8;46212:48;;46227:12;:10;:12::i;:::-;46212:48;;;46251:8;46212:48;;;;;;:::i;:::-;;;;;;;;45992:274;;:::o;46999:311::-;47136:28;47146:4;47152:2;47156:7;47136:9;:28::i;:::-;47187:48;47210:4;47216:2;47220:7;47229:5;47187:22;:48::i;:::-;47171:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;46999:311;;;;:::o;57936:243::-;58054:13;58093:16;58101:7;58093;:16::i;:::-;58085:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58164:7;58144:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57936:243;;;:::o;51417:43::-;;;;:::o;46329:186::-;46451:4;46474:18;:25;46493:5;46474:25;;;;;;;;;;;;;;;:35;46500:8;46474:35;;;;;;;;;;;;;;;;;;;;;;;;;46467:42;;46329:186;;;;:::o;55227:27::-;;;;:::o;55310:29::-;;;;;;;;;;;;;:::o;19315:201::-;18637:12;:10;:12::i;:::-;18626:23;;:7;:5;:7::i;:::-;:23;;;18618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19424:1:::1;19404:22;;:8;:22;;;;19396:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19480:28;19499:8;19480:18;:28::i;:::-;19315:201:::0;:::o;42473:370::-;42600:4;42645:25;42630:40;;;:11;:40;;;;:99;;;;42696:33;42681:48;;;:11;:48;;;;42630:99;:160;;;;42755:35;42740:50;;;:11;:50;;;;42630:160;:207;;;;42801:36;42825:11;42801:23;:36::i;:::-;42630:207;42616:221;;42473:370;;;:::o;47549:105::-;47606:4;47636:12;;47626:7;:22;47619:29;;47549:105;;;:::o;17130:98::-;17183:7;17210:10;17203:17;;17130:98;:::o;51239:172::-;51363:2;51336:15;:24;51352:7;51336:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51397:7;51393:2;51377:28;;51386:5;51377:28;;;;;;;;;;;;51239:172;;;:::o;49604:1529::-;49701:35;49739:20;49751:7;49739:11;:20::i;:::-;49701:58;;49768:22;49810:13;:18;;;49794:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49863:12;:10;:12::i;:::-;49839:36;;:20;49851:7;49839:11;:20::i;:::-;:36;;;49794:81;:142;;;;49886:50;49903:13;:18;;;49923:12;:10;:12::i;:::-;49886:16;:50::i;:::-;49794:142;49768:169;;49962:17;49946:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50094:4;50072:26;;:13;:18;;;:26;;;50056:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50183:1;50169:16;;:2;:16;;;;50161:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50236:43;50258:4;50264:2;50268:7;50277:1;50236:21;:43::i;:::-;50336:49;50353:1;50357:7;50366:13;:18;;;50336:8;:49::i;:::-;50424:1;50394:12;:18;50407:4;50394:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50460:1;50432:12;:16;50445:2;50432:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50491:43;;;;;;;;50506:2;50491:43;;;;;;50517:15;50491:43;;;;;50468:11;:20;50480:7;50468:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50762:19;50794:1;50784:7;:11;;;;:::i;:::-;50762:33;;50847:1;50806:43;;:11;:24;50818:11;50806:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50802:236;;;50864:20;50872:11;50864:7;:20::i;:::-;50860:171;;;50924:97;;;;;;;;50951:13;:18;;;50924:97;;;;;;50982:13;:28;;;50924:97;;;;;50897:11;:24;50909:11;50897:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50860:171;50802:236;51070:7;51066:2;51051:27;;51060:4;51051:27;;;;;;;;;;;;51085:42;51106:4;51112:2;51116:7;51125:1;51085:20;:42::i;:::-;49694:1439;;;49604:1529;;;:::o;3631:98::-;3689:7;3720:1;3716;:5;;;;:::i;:::-;3709:12;;3631:98;;;;:::o;4030:::-;4088:7;4119:1;4115;:5;;;;:::i;:::-;4108:12;;4030:98;;;;:::o;43362:606::-;43438:21;;:::i;:::-;43479:16;43487:7;43479;:16::i;:::-;43471:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43551:26;43599:12;43588:7;:23;43584:93;;43668:1;43653:12;43643:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43622:47;;43584:93;43690:12;43705:7;43690:22;;43685:212;43722:18;43714:4;:26;43685:212;;43759:31;43793:11;:17;43805:4;43793:17;;;;;;;;;;;43759:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43849:1;43823:28;;:9;:14;;;:28;;;43819:71;;43871:9;43864:16;;;;;;;43819:71;43750:147;43742:6;;;;;:::i;:::-;;;;43685:212;;;;43905:57;;;;;;;;;;:::i;:::-;;;;;;;;43362:606;;;;:::o;19676:191::-;19750:16;19769:6;;;;;;;;;;;19750:25;;19795:8;19786:6;;:17;;;;;;;;;;;;;;;;;;19850:8;19819:40;;19840:8;19819:40;;;;;;;;;;;;19739:128;19676:191;:::o;47660:98::-;47725:27;47735:2;47739:8;47725:27;;;;;;;;;;;;:9;:27::i;:::-;47660:98;;:::o;52954:690::-;53091:4;53108:15;:2;:13;;;:15::i;:::-;53104:535;;;53163:2;53147:36;;;53184:12;:10;:12::i;:::-;53198:4;53204:7;53213:5;53147:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53134:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53395:1;53378:6;:13;:18;53374:215;;;53411:61;;;;;;;;;;:::i;:::-;;;;;;;;53374:215;53557:6;53551:13;53542:6;53538:2;53534:15;53527:38;53134:464;53279:45;;;53269:55;;;:6;:55;;;;53262:62;;;;;53104:535;53627:4;53620:11;;52954:690;;;;;;;:::o;31806:157::-;31891:4;31930:25;31915:40;;;:11;:40;;;;31908:47;;31806:157;;;:::o;54106:141::-;;;;;:::o;54633:140::-;;;;;:::o;48097:1275::-;48202:20;48225:12;;48202:35;;48266:1;48252:16;;:2;:16;;;;48244:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48443:21;48451:12;48443:7;:21::i;:::-;48442:22;48434:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48588:61;48618:1;48622:2;48626:12;48640:8;48588:21;:61::i;:::-;48658:30;48691:12;:16;48704:2;48691:16;;;;;;;;;;;;;;;48658:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48733:119;;;;;;;;48783:8;48753:11;:19;;;:39;;;;:::i;:::-;48733:119;;;;;;48836:8;48801:11;:24;;;:44;;;;:::i;:::-;48733:119;;;;;48714:12;:16;48727:2;48714:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48887:43;;;;;;;;48902:2;48887:43;;;;;;48913:15;48887:43;;;;;48859:11;:25;48871:12;48859:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48939:20;48962:12;48939:35;;48988:9;48983:281;49007:8;49003:1;:12;48983:281;;;49061:12;49057:2;49036:38;;49053:1;49036:38;;;;;;;;;;;;49101:59;49132:1;49136:2;49140:12;49154:5;49101:22;:59::i;:::-;49083:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49242:14;;;;;:::i;:::-;;;;49017:3;;;;;:::i;:::-;;;;48983:281;;;;49287:12;49272;:27;;;;49306:60;49335:1;49339:2;49343:12;49357:8;49306:20;:60::i;:::-;48195:1177;;;48097:1275;;;:::o;20694:387::-;20754:4;20962:12;21029:7;21017:20;21009:28;;21072:1;21065:4;:8;21058:15;;;20694:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2102:340::-;2158:5;2207:3;2200:4;2192:6;2188:17;2184:27;2174:122;;2215:79;;:::i;:::-;2174:122;2332:6;2319:20;2357:79;2432:3;2424:6;2417:4;2409:6;2405:17;2357:79;:::i;:::-;2348:88;;2164:278;2102:340;;;;:::o;2448:139::-;2494:5;2532:6;2519:20;2510:29;;2548:33;2575:5;2548:33;:::i;:::-;2448:139;;;;:::o;2593:143::-;2650:5;2681:6;2675:13;2666:22;;2697:33;2724:5;2697:33;:::i;:::-;2593:143;;;;:::o;2742:329::-;2801:6;2850:2;2838:9;2829:7;2825:23;2821:32;2818:119;;;2856:79;;:::i;:::-;2818:119;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;2742:329;;;;:::o;3077:474::-;3145:6;3153;3202:2;3190:9;3181:7;3177:23;3173:32;3170:119;;;3208:79;;:::i;:::-;3170:119;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3077:474;;;;;:::o;3557:619::-;3634:6;3642;3650;3699:2;3687:9;3678:7;3674:23;3670:32;3667:119;;;3705:79;;:::i;:::-;3667:119;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;3557:619;;;;;:::o;4182:943::-;4277:6;4285;4293;4301;4350:3;4338:9;4329:7;4325:23;4321:33;4318:120;;;4357:79;;:::i;:::-;4318:120;4477:1;4502:53;4547:7;4538:6;4527:9;4523:22;4502:53;:::i;:::-;4492:63;;4448:117;4604:2;4630:53;4675:7;4666:6;4655:9;4651:22;4630:53;:::i;:::-;4620:63;;4575:118;4732:2;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4703:118;4888:2;4877:9;4873:18;4860:32;4919:18;4911:6;4908:30;4905:117;;;4941:79;;:::i;:::-;4905:117;5046:62;5100:7;5091:6;5080:9;5076:22;5046:62;:::i;:::-;5036:72;;4831:287;4182:943;;;;;;;:::o;5131:468::-;5196:6;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:50;5574:7;5565:6;5554:9;5550:22;5532:50;:::i;:::-;5522:60;;5477:115;5131:468;;;;;:::o;5605:474::-;5673:6;5681;5730:2;5718:9;5709:7;5705:23;5701:32;5698:119;;;5736:79;;:::i;:::-;5698:119;5856:1;5881:53;5926:7;5917:6;5906:9;5902:22;5881:53;:::i;:::-;5871:63;;5827:117;5983:2;6009:53;6054:7;6045:6;6034:9;6030:22;6009:53;:::i;:::-;5999:63;;5954:118;5605:474;;;;;:::o;6085:345::-;6152:6;6201:2;6189:9;6180:7;6176:23;6172:32;6169:119;;;6207:79;;:::i;:::-;6169:119;6327:1;6352:61;6405:7;6396:6;6385:9;6381:22;6352:61;:::i;:::-;6342:71;;6298:125;6085:345;;;;:::o;6436:327::-;6494:6;6543:2;6531:9;6522:7;6518:23;6514:32;6511:119;;;6549:79;;:::i;:::-;6511:119;6669:1;6694:52;6738:7;6729:6;6718:9;6714:22;6694:52;:::i;:::-;6684:62;;6640:116;6436:327;;;;:::o;6769:349::-;6838:6;6887:2;6875:9;6866:7;6862:23;6858:32;6855:119;;;6893:79;;:::i;:::-;6855:119;7013:1;7038:63;7093:7;7084:6;7073:9;7069:22;7038:63;:::i;:::-;7028:73;;6984:127;6769:349;;;;:::o;7124:357::-;7197:6;7246:2;7234:9;7225:7;7221:23;7217:32;7214:119;;;7252:79;;:::i;:::-;7214:119;7372:1;7397:67;7456:7;7447:6;7436:9;7432:22;7397:67;:::i;:::-;7387:77;;7343:131;7124:357;;;;:::o;7487:509::-;7556:6;7605:2;7593:9;7584:7;7580:23;7576:32;7573:119;;;7611:79;;:::i;:::-;7573:119;7759:1;7748:9;7744:17;7731:31;7789:18;7781:6;7778:30;7775:117;;;7811:79;;:::i;:::-;7775:117;7916:63;7971:7;7962:6;7951:9;7947:22;7916:63;:::i;:::-;7906:73;;7702:287;7487:509;;;;:::o;8002:329::-;8061:6;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8002:329;;;;:::o;8337:351::-;8407:6;8456:2;8444:9;8435:7;8431:23;8427:32;8424:119;;;8462:79;;:::i;:::-;8424:119;8582:1;8607:64;8663:7;8654:6;8643:9;8639:22;8607:64;:::i;:::-;8597:74;;8553:128;8337:351;;;;:::o;8694:474::-;8762:6;8770;8819:2;8807:9;8798:7;8794:23;8790:32;8787:119;;;8825:79;;:::i;:::-;8787:119;8945:1;8970:53;9015:7;9006:6;8995:9;8991:22;8970:53;:::i;:::-;8960:63;;8916:117;9072:2;9098:53;9143:7;9134:6;9123:9;9119:22;9098:53;:::i;:::-;9088:63;;9043:118;8694:474;;;;;:::o;9174:118::-;9261:24;9279:5;9261:24;:::i;:::-;9256:3;9249:37;9174:118;;:::o;9298:109::-;9379:21;9394:5;9379:21;:::i;:::-;9374:3;9367:34;9298:109;;:::o;9413:360::-;9499:3;9527:38;9559:5;9527:38;:::i;:::-;9581:70;9644:6;9639:3;9581:70;:::i;:::-;9574:77;;9660:52;9705:6;9700:3;9693:4;9686:5;9682:16;9660:52;:::i;:::-;9737:29;9759:6;9737:29;:::i;:::-;9732:3;9728:39;9721:46;;9503:270;9413:360;;;;:::o;9779:364::-;9867:3;9895:39;9928:5;9895:39;:::i;:::-;9950:71;10014:6;10009:3;9950:71;:::i;:::-;9943:78;;10030:52;10075:6;10070:3;10063:4;10056:5;10052:16;10030:52;:::i;:::-;10107:29;10129:6;10107:29;:::i;:::-;10102:3;10098:39;10091:46;;9871:272;9779:364;;;;:::o;10149:366::-;10291:3;10312:67;10376:2;10371:3;10312:67;:::i;:::-;10305:74;;10388:93;10477:3;10388:93;:::i;:::-;10506:2;10501:3;10497:12;10490:19;;10149:366;;;:::o;10521:365::-;10663:3;10684:66;10748:1;10743:3;10684:66;:::i;:::-;10677:73;;10759:93;10848:3;10759:93;:::i;:::-;10877:2;10872:3;10868:12;10861:19;;10521:365;;;:::o;10892:366::-;11034:3;11055:67;11119:2;11114:3;11055:67;:::i;:::-;11048:74;;11131:93;11220:3;11131:93;:::i;:::-;11249:2;11244:3;11240:12;11233:19;;10892:366;;;:::o;11264:::-;11406:3;11427:67;11491:2;11486:3;11427:67;:::i;:::-;11420:74;;11503:93;11592:3;11503:93;:::i;:::-;11621:2;11616:3;11612:12;11605:19;;11264:366;;;:::o;11636:::-;11778:3;11799:67;11863:2;11858:3;11799:67;:::i;:::-;11792:74;;11875:93;11964:3;11875:93;:::i;:::-;11993:2;11988:3;11984:12;11977:19;;11636:366;;;:::o;12008:::-;12150:3;12171:67;12235:2;12230:3;12171:67;:::i;:::-;12164:74;;12247:93;12336:3;12247:93;:::i;:::-;12365:2;12360:3;12356:12;12349:19;;12008:366;;;:::o;12380:::-;12522:3;12543:67;12607:2;12602:3;12543:67;:::i;:::-;12536:74;;12619:93;12708:3;12619:93;:::i;:::-;12737:2;12732:3;12728:12;12721:19;;12380:366;;;:::o;12752:::-;12894:3;12915:67;12979:2;12974:3;12915:67;:::i;:::-;12908:74;;12991:93;13080:3;12991:93;:::i;:::-;13109:2;13104:3;13100:12;13093:19;;12752:366;;;:::o;13124:::-;13266:3;13287:67;13351:2;13346:3;13287:67;:::i;:::-;13280:74;;13363:93;13452:3;13363:93;:::i;:::-;13481:2;13476:3;13472:12;13465:19;;13124:366;;;:::o;13496:::-;13638:3;13659:67;13723:2;13718:3;13659:67;:::i;:::-;13652:74;;13735:93;13824:3;13735:93;:::i;:::-;13853:2;13848:3;13844:12;13837:19;;13496:366;;;:::o;13868:::-;14010:3;14031:67;14095:2;14090:3;14031:67;:::i;:::-;14024:74;;14107:93;14196:3;14107:93;:::i;:::-;14225:2;14220:3;14216:12;14209:19;;13868:366;;;:::o;14240:::-;14382:3;14403:67;14467:2;14462:3;14403:67;:::i;:::-;14396:74;;14479:93;14568:3;14479:93;:::i;:::-;14597:2;14592:3;14588:12;14581:19;;14240:366;;;:::o;14612:::-;14754:3;14775:67;14839:2;14834:3;14775:67;:::i;:::-;14768:74;;14851:93;14940:3;14851:93;:::i;:::-;14969:2;14964:3;14960:12;14953:19;;14612:366;;;:::o;14984:::-;15126:3;15147:67;15211:2;15206:3;15147:67;:::i;:::-;15140:74;;15223:93;15312:3;15223:93;:::i;:::-;15341:2;15336:3;15332:12;15325:19;;14984:366;;;:::o;15356:::-;15498:3;15519:67;15583:2;15578:3;15519:67;:::i;:::-;15512:74;;15595:93;15684:3;15595:93;:::i;:::-;15713:2;15708:3;15704:12;15697:19;;15356:366;;;:::o;15728:::-;15870:3;15891:67;15955:2;15950:3;15891:67;:::i;:::-;15884:74;;15967:93;16056:3;15967:93;:::i;:::-;16085:2;16080:3;16076:12;16069:19;;15728:366;;;:::o;16100:::-;16242:3;16263:67;16327:2;16322:3;16263:67;:::i;:::-;16256:74;;16339:93;16428:3;16339:93;:::i;:::-;16457:2;16452:3;16448:12;16441:19;;16100:366;;;:::o;16472:::-;16614:3;16635:67;16699:2;16694:3;16635:67;:::i;:::-;16628:74;;16711:93;16800:3;16711:93;:::i;:::-;16829:2;16824:3;16820:12;16813:19;;16472:366;;;:::o;16844:::-;16986:3;17007:67;17071:2;17066:3;17007:67;:::i;:::-;17000:74;;17083:93;17172:3;17083:93;:::i;:::-;17201:2;17196:3;17192:12;17185:19;;16844:366;;;:::o;17216:::-;17358:3;17379:67;17443:2;17438:3;17379:67;:::i;:::-;17372:74;;17455:93;17544:3;17455:93;:::i;:::-;17573:2;17568:3;17564:12;17557:19;;17216:366;;;:::o;17588:365::-;17730:3;17751:66;17815:1;17810:3;17751:66;:::i;:::-;17744:73;;17826:93;17915:3;17826:93;:::i;:::-;17944:2;17939:3;17935:12;17928:19;;17588:365;;;:::o;17959:366::-;18101:3;18122:67;18186:2;18181:3;18122:67;:::i;:::-;18115:74;;18198:93;18287:3;18198:93;:::i;:::-;18316:2;18311:3;18307:12;18300:19;;17959:366;;;:::o;18331:::-;18473:3;18494:67;18558:2;18553:3;18494:67;:::i;:::-;18487:74;;18570:93;18659:3;18570:93;:::i;:::-;18688:2;18683:3;18679:12;18672:19;;18331:366;;;:::o;18703:::-;18845:3;18866:67;18930:2;18925:3;18866:67;:::i;:::-;18859:74;;18942:93;19031:3;18942:93;:::i;:::-;19060:2;19055:3;19051:12;19044:19;;18703:366;;;:::o;19075:118::-;19162:24;19180:5;19162:24;:::i;:::-;19157:3;19150:37;19075:118;;:::o;19199:222::-;19292:4;19330:2;19319:9;19315:18;19307:26;;19343:71;19411:1;19400:9;19396:17;19387:6;19343:71;:::i;:::-;19199:222;;;;:::o;19427:640::-;19622:4;19660:3;19649:9;19645:19;19637:27;;19674:71;19742:1;19731:9;19727:17;19718:6;19674:71;:::i;:::-;19755:72;19823:2;19812:9;19808:18;19799:6;19755:72;:::i;:::-;19837;19905:2;19894:9;19890:18;19881:6;19837:72;:::i;:::-;19956:9;19950:4;19946:20;19941:2;19930:9;19926:18;19919:48;19984:76;20055:4;20046:6;19984:76;:::i;:::-;19976:84;;19427:640;;;;;;;:::o;20073:332::-;20194:4;20232:2;20221:9;20217:18;20209:26;;20245:71;20313:1;20302:9;20298:17;20289:6;20245:71;:::i;:::-;20326:72;20394:2;20383:9;20379:18;20370:6;20326:72;:::i;:::-;20073:332;;;;;:::o;20411:210::-;20498:4;20536:2;20525:9;20521:18;20513:26;;20549:65;20611:1;20600:9;20596:17;20587:6;20549:65;:::i;:::-;20411:210;;;;:::o;20627:313::-;20740:4;20778:2;20767:9;20763:18;20755:26;;20827:9;20821:4;20817:20;20813:1;20802:9;20798:17;20791:47;20855:78;20928:4;20919:6;20855:78;:::i;:::-;20847:86;;20627:313;;;;:::o;20946:419::-;21112:4;21150:2;21139:9;21135:18;21127:26;;21199:9;21193:4;21189:20;21185:1;21174:9;21170:17;21163:47;21227:131;21353:4;21227:131;:::i;:::-;21219:139;;20946:419;;;:::o;21371:::-;21537:4;21575:2;21564:9;21560:18;21552:26;;21624:9;21618:4;21614:20;21610:1;21599:9;21595:17;21588:47;21652:131;21778:4;21652:131;:::i;:::-;21644:139;;21371:419;;;:::o;21796:::-;21962:4;22000:2;21989:9;21985:18;21977:26;;22049:9;22043:4;22039:20;22035:1;22024:9;22020:17;22013:47;22077:131;22203:4;22077:131;:::i;:::-;22069:139;;21796:419;;;:::o;22221:::-;22387:4;22425:2;22414:9;22410:18;22402:26;;22474:9;22468:4;22464:20;22460:1;22449:9;22445:17;22438:47;22502:131;22628:4;22502:131;:::i;:::-;22494:139;;22221:419;;;:::o;22646:::-;22812:4;22850:2;22839:9;22835:18;22827:26;;22899:9;22893:4;22889:20;22885:1;22874:9;22870:17;22863:47;22927:131;23053:4;22927:131;:::i;:::-;22919:139;;22646:419;;;:::o;23071:::-;23237:4;23275:2;23264:9;23260:18;23252:26;;23324:9;23318:4;23314:20;23310:1;23299:9;23295:17;23288:47;23352:131;23478:4;23352:131;:::i;:::-;23344:139;;23071:419;;;:::o;23496:::-;23662:4;23700:2;23689:9;23685:18;23677:26;;23749:9;23743:4;23739:20;23735:1;23724:9;23720:17;23713:47;23777:131;23903:4;23777:131;:::i;:::-;23769:139;;23496:419;;;:::o;23921:::-;24087:4;24125:2;24114:9;24110:18;24102:26;;24174:9;24168:4;24164:20;24160:1;24149:9;24145:17;24138:47;24202:131;24328:4;24202:131;:::i;:::-;24194:139;;23921:419;;;:::o;24346:::-;24512:4;24550:2;24539:9;24535:18;24527:26;;24599:9;24593:4;24589:20;24585:1;24574:9;24570:17;24563:47;24627:131;24753:4;24627:131;:::i;:::-;24619:139;;24346:419;;;:::o;24771:::-;24937:4;24975:2;24964:9;24960:18;24952:26;;25024:9;25018:4;25014:20;25010:1;24999:9;24995:17;24988:47;25052:131;25178:4;25052:131;:::i;:::-;25044:139;;24771:419;;;:::o;25196:::-;25362:4;25400:2;25389:9;25385:18;25377:26;;25449:9;25443:4;25439:20;25435:1;25424:9;25420:17;25413:47;25477:131;25603:4;25477:131;:::i;:::-;25469:139;;25196:419;;;:::o;25621:::-;25787:4;25825:2;25814:9;25810:18;25802:26;;25874:9;25868:4;25864:20;25860:1;25849:9;25845:17;25838:47;25902:131;26028:4;25902:131;:::i;:::-;25894:139;;25621:419;;;:::o;26046:::-;26212:4;26250:2;26239:9;26235:18;26227:26;;26299:9;26293:4;26289:20;26285:1;26274:9;26270:17;26263:47;26327:131;26453:4;26327:131;:::i;:::-;26319:139;;26046:419;;;:::o;26471:::-;26637:4;26675:2;26664:9;26660:18;26652:26;;26724:9;26718:4;26714:20;26710:1;26699:9;26695:17;26688:47;26752:131;26878:4;26752:131;:::i;:::-;26744:139;;26471:419;;;:::o;26896:::-;27062:4;27100:2;27089:9;27085:18;27077:26;;27149:9;27143:4;27139:20;27135:1;27124:9;27120:17;27113:47;27177:131;27303:4;27177:131;:::i;:::-;27169:139;;26896:419;;;:::o;27321:::-;27487:4;27525:2;27514:9;27510:18;27502:26;;27574:9;27568:4;27564:20;27560:1;27549:9;27545:17;27538:47;27602:131;27728:4;27602:131;:::i;:::-;27594:139;;27321:419;;;:::o;27746:::-;27912:4;27950:2;27939:9;27935:18;27927:26;;27999:9;27993:4;27989:20;27985:1;27974:9;27970:17;27963:47;28027:131;28153:4;28027:131;:::i;:::-;28019:139;;27746:419;;;:::o;28171:::-;28337:4;28375:2;28364:9;28360:18;28352:26;;28424:9;28418:4;28414:20;28410:1;28399:9;28395:17;28388:47;28452:131;28578:4;28452:131;:::i;:::-;28444:139;;28171:419;;;:::o;28596:::-;28762:4;28800:2;28789:9;28785:18;28777:26;;28849:9;28843:4;28839:20;28835:1;28824:9;28820:17;28813:47;28877:131;29003:4;28877:131;:::i;:::-;28869:139;;28596:419;;;:::o;29021:::-;29187:4;29225:2;29214:9;29210:18;29202:26;;29274:9;29268:4;29264:20;29260:1;29249:9;29245:17;29238:47;29302:131;29428:4;29302:131;:::i;:::-;29294:139;;29021:419;;;:::o;29446:::-;29612:4;29650:2;29639:9;29635:18;29627:26;;29699:9;29693:4;29689:20;29685:1;29674:9;29670:17;29663:47;29727:131;29853:4;29727:131;:::i;:::-;29719:139;;29446:419;;;:::o;29871:::-;30037:4;30075:2;30064:9;30060:18;30052:26;;30124:9;30118:4;30114:20;30110:1;30099:9;30095:17;30088:47;30152:131;30278:4;30152:131;:::i;:::-;30144:139;;29871:419;;;:::o;30296:::-;30462:4;30500:2;30489:9;30485:18;30477:26;;30549:9;30543:4;30539:20;30535:1;30524:9;30520:17;30513:47;30577:131;30703:4;30577:131;:::i;:::-;30569:139;;30296:419;;;:::o;30721:::-;30887:4;30925:2;30914:9;30910:18;30902:26;;30974:9;30968:4;30964:20;30960:1;30949:9;30945:17;30938:47;31002:131;31128:4;31002:131;:::i;:::-;30994:139;;30721:419;;;:::o;31146:222::-;31239:4;31277:2;31266:9;31262:18;31254:26;;31290:71;31358:1;31347:9;31343:17;31334:6;31290:71;:::i;:::-;31146:222;;;;:::o;31374:129::-;31408:6;31435:20;;:::i;:::-;31425:30;;31464:33;31492:4;31484:6;31464:33;:::i;:::-;31374:129;;;:::o;31509:75::-;31542:6;31575:2;31569:9;31559:19;;31509:75;:::o;31590:307::-;31651:4;31741:18;31733:6;31730:30;31727:56;;;31763:18;;:::i;:::-;31727:56;31801:29;31823:6;31801:29;:::i;:::-;31793:37;;31885:4;31879;31875:15;31867:23;;31590:307;;;:::o;31903:308::-;31965:4;32055:18;32047:6;32044:30;32041:56;;;32077:18;;:::i;:::-;32041:56;32115:29;32137:6;32115:29;:::i;:::-;32107:37;;32199:4;32193;32189:15;32181:23;;31903:308;;;:::o;32217:98::-;32268:6;32302:5;32296:12;32286:22;;32217:98;;;:::o;32321:99::-;32373:6;32407:5;32401:12;32391:22;;32321:99;;;:::o;32426:168::-;32509:11;32543:6;32538:3;32531:19;32583:4;32578:3;32574:14;32559:29;;32426:168;;;;:::o;32600:169::-;32684:11;32718:6;32713:3;32706:19;32758:4;32753:3;32749:14;32734:29;;32600:169;;;;:::o;32775:273::-;32815:3;32834:20;32852:1;32834:20;:::i;:::-;32829:25;;32868:20;32886:1;32868:20;:::i;:::-;32863:25;;32990:1;32954:34;32950:42;32947:1;32944:49;32941:75;;;32996:18;;:::i;:::-;32941:75;33040:1;33037;33033:9;33026:16;;32775:273;;;;:::o;33054:305::-;33094:3;33113:20;33131:1;33113:20;:::i;:::-;33108:25;;33147:20;33165:1;33147:20;:::i;:::-;33142:25;;33301:1;33233:66;33229:74;33226:1;33223:81;33220:107;;;33307:18;;:::i;:::-;33220:107;33351:1;33348;33344:9;33337:16;;33054:305;;;;:::o;33365:185::-;33405:1;33422:20;33440:1;33422:20;:::i;:::-;33417:25;;33456:20;33474:1;33456:20;:::i;:::-;33451:25;;33495:1;33485:35;;33500:18;;:::i;:::-;33485:35;33542:1;33539;33535:9;33530:14;;33365:185;;;;:::o;33556:348::-;33596:7;33619:20;33637:1;33619:20;:::i;:::-;33614:25;;33653:20;33671:1;33653:20;:::i;:::-;33648:25;;33841:1;33773:66;33769:74;33766:1;33763:81;33758:1;33751:9;33744:17;33740:105;33737:131;;;33848:18;;:::i;:::-;33737:131;33896:1;33893;33889:9;33878:20;;33556:348;;;;:::o;33910:191::-;33950:4;33970:20;33988:1;33970:20;:::i;:::-;33965:25;;34004:20;34022:1;34004:20;:::i;:::-;33999:25;;34043:1;34040;34037:8;34034:34;;;34048:18;;:::i;:::-;34034:34;34093:1;34090;34086:9;34078:17;;33910:191;;;;:::o;34107:::-;34147:4;34167:20;34185:1;34167:20;:::i;:::-;34162:25;;34201:20;34219:1;34201:20;:::i;:::-;34196:25;;34240:1;34237;34234:8;34231:34;;;34245:18;;:::i;:::-;34231:34;34290:1;34287;34283:9;34275:17;;34107:191;;;;:::o;34304:96::-;34341:7;34370:24;34388:5;34370:24;:::i;:::-;34359:35;;34304:96;;;:::o;34406:90::-;34440:7;34483:5;34476:13;34469:21;34458:32;;34406:90;;;:::o;34502:149::-;34538:7;34578:66;34571:5;34567:78;34556:89;;34502:149;;;:::o;34657:110::-;34708:7;34737:24;34755:5;34737:24;:::i;:::-;34726:35;;34657:110;;;:::o;34773:118::-;34810:7;34850:34;34843:5;34839:46;34828:57;;34773:118;;;:::o;34897:126::-;34934:7;34974:42;34967:5;34963:54;34952:65;;34897:126;;;:::o;35029:77::-;35066:7;35095:5;35084:16;;35029:77;;;:::o;35112:154::-;35196:6;35191:3;35186;35173:30;35258:1;35249:6;35244:3;35240:16;35233:27;35112:154;;;:::o;35272:307::-;35340:1;35350:113;35364:6;35361:1;35358:13;35350:113;;;35449:1;35444:3;35440:11;35434:18;35430:1;35425:3;35421:11;35414:39;35386:2;35383:1;35379:10;35374:15;;35350:113;;;35481:6;35478:1;35475:13;35472:101;;;35561:1;35552:6;35547:3;35543:16;35536:27;35472:101;35321:258;35272:307;;;:::o;35585:171::-;35624:3;35647:24;35665:5;35647:24;:::i;:::-;35638:33;;35693:4;35686:5;35683:15;35680:41;;;35701:18;;:::i;:::-;35680:41;35748:1;35741:5;35737:13;35730:20;;35585:171;;;:::o;35762:320::-;35806:6;35843:1;35837:4;35833:12;35823:22;;35890:1;35884:4;35880:12;35911:18;35901:81;;35967:4;35959:6;35955:17;35945:27;;35901:81;36029:2;36021:6;36018:14;35998:18;35995:38;35992:84;;;36048:18;;:::i;:::-;35992:84;35813:269;35762:320;;;:::o;36088:281::-;36171:27;36193:4;36171:27;:::i;:::-;36163:6;36159:40;36301:6;36289:10;36286:22;36265:18;36253:10;36250:34;36247:62;36244:88;;;36312:18;;:::i;:::-;36244:88;36352:10;36348:2;36341:22;36131:238;36088:281;;:::o;36375:233::-;36414:3;36437:24;36455:5;36437:24;:::i;:::-;36428:33;;36483:66;36476:5;36473:77;36470:103;;;36553:18;;:::i;:::-;36470:103;36600:1;36593:5;36589:13;36582:20;;36375:233;;;:::o;36614:180::-;36662:77;36659:1;36652:88;36759:4;36756:1;36749:15;36783:4;36780:1;36773:15;36800:180;36848:77;36845:1;36838:88;36945:4;36942:1;36935:15;36969:4;36966:1;36959:15;36986:180;37034:77;37031:1;37024:88;37131:4;37128:1;37121:15;37155:4;37152:1;37145:15;37172:180;37220:77;37217:1;37210:88;37317:4;37314:1;37307:15;37341:4;37338:1;37331:15;37358:117;37467:1;37464;37457:12;37481:117;37590:1;37587;37580:12;37604:117;37713:1;37710;37703:12;37727:117;37836:1;37833;37826:12;37850:102;37891:6;37942:2;37938:7;37933:2;37926:5;37922:14;37918:28;37908:38;;37850:102;;;:::o;37958:221::-;38098:34;38094:1;38086:6;38082:14;38075:58;38167:4;38162:2;38154:6;38150:15;38143:29;37958:221;:::o;38185:158::-;38325:10;38321:1;38313:6;38309:14;38302:34;38185:158;:::o;38349:171::-;38489:23;38485:1;38477:6;38473:14;38466:47;38349:171;:::o;38526:225::-;38666:34;38662:1;38654:6;38650:14;38643:58;38735:8;38730:2;38722:6;38718:15;38711:33;38526:225;:::o;38757:229::-;38897:34;38893:1;38885:6;38881:14;38874:58;38966:12;38961:2;38953:6;38949:15;38942:37;38757:229;:::o;38992:222::-;39132:34;39128:1;39120:6;39116:14;39109:58;39201:5;39196:2;39188:6;39184:15;39177:30;38992:222;:::o;39220:224::-;39360:34;39356:1;39348:6;39344:14;39337:58;39429:7;39424:2;39416:6;39412:15;39405:32;39220:224;:::o;39450:221::-;39590:34;39586:1;39578:6;39574:14;39567:58;39659:4;39654:2;39646:6;39642:15;39635:29;39450:221;:::o;39677:167::-;39817:19;39813:1;39805:6;39801:14;39794:43;39677:167;:::o;39850:244::-;39990:34;39986:1;39978:6;39974:14;39967:58;40059:27;40054:2;40046:6;40042:15;40035:52;39850:244;:::o;40100:230::-;40240:34;40236:1;40228:6;40224:14;40217:58;40309:13;40304:2;40296:6;40292:15;40285:38;40100:230;:::o;40336:225::-;40476:34;40472:1;40464:6;40460:14;40453:58;40545:8;40540:2;40532:6;40528:15;40521:33;40336:225;:::o;40567:182::-;40707:34;40703:1;40695:6;40691:14;40684:58;40567:182;:::o;40755:176::-;40895:28;40891:1;40883:6;40879:14;40872:52;40755:176;:::o;40937:237::-;41077:34;41073:1;41065:6;41061:14;41054:58;41146:20;41141:2;41133:6;41129:15;41122:45;40937:237;:::o;41180:221::-;41320:34;41316:1;41308:6;41304:14;41297:58;41389:4;41384:2;41376:6;41372:15;41365:29;41180:221;:::o;41407:238::-;41547:34;41543:1;41535:6;41531:14;41524:58;41616:21;41611:2;41603:6;41599:15;41592:46;41407:238;:::o;41651:179::-;41791:31;41787:1;41779:6;41775:14;41768:55;41651:179;:::o;41836:220::-;41976:34;41972:1;41964:6;41960:14;41953:58;42045:3;42040:2;42032:6;42028:15;42021:28;41836:220;:::o;42062:233::-;42202:34;42198:1;42190:6;42186:14;42179:58;42271:16;42266:2;42258:6;42254:15;42247:41;42062:233;:::o;42301:153::-;42441:5;42437:1;42429:6;42425:14;42418:29;42301:153;:::o;42460:181::-;42600:33;42596:1;42588:6;42584:14;42577:57;42460:181;:::o;42647:234::-;42787:34;42783:1;42775:6;42771:14;42764:58;42856:17;42851:2;42843:6;42839:15;42832:42;42647:234;:::o;42887:232::-;43027:34;43023:1;43015:6;43011:14;43004:58;43096:15;43091:2;43083:6;43079:15;43072:40;42887:232;:::o;43125:122::-;43198:24;43216:5;43198:24;:::i;:::-;43191:5;43188:35;43178:63;;43237:1;43234;43227:12;43178:63;43125:122;:::o;43253:116::-;43323:21;43338:5;43323:21;:::i;:::-;43316:5;43313:32;43303:60;;43359:1;43356;43349:12;43303:60;43253:116;:::o;43375:120::-;43447:23;43464:5;43447:23;:::i;:::-;43440:5;43437:34;43427:62;;43485:1;43482;43475:12;43427:62;43375:120;:::o;43501:150::-;43588:38;43620:5;43588:38;:::i;:::-;43581:5;43578:49;43568:77;;43641:1;43638;43631:12;43568:77;43501:150;:::o;43657:122::-;43730:24;43748:5;43730:24;:::i;:::-;43723:5;43720:35;43710:63;;43769:1;43766;43759:12;43710:63;43657:122;:::o

Swarm Source

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