ETH Price: $3,104.57 (+0.37%)
Gas: 4 Gwei

Token

GaryDAO (GARY)
 

Overview

Max Total Supply

908 GARY

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
reagentzero.eth
Balance
1 GARY
0xaad1195adcec96c05534c80069fa30d19e19b1f1
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:
GaryDAO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmPkAMaTysQZnjdJbtBRmTtndkt2NvB25dTaePSZEcoAdj";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

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

    uint256 public constant PUBLIC_SALE_PRICE = 0.01 ether;
    uint256 public NUM_FREE_MINTS = 555;
    bool public isPublicSaleActive = true;




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

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



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

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

    modifier freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



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


    constructor(
    ) ERC721A("GaryDAO", "GARY", 100, maxSupply) {
    }

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

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

        _safeMint(msg.sender, numberOfTokens);
    }



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




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

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

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

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

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

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

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


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

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



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

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

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

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

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

        return super.isApprovedForAll(owner, operator);
    }

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

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60016000908155600755610120604052603560c08181529062002d6e60e03980516200003491600b91602090910190620001cf565b50600c805460ff60a01b196001600160a01b031990911673a5409ec958c83c3f309868babaca7c86dcb077c11716600160a01b179055610457600d5561022b600e55600f805460ff191660011790553480156200009057600080fd5b50604051806040016040528060078152602001664761727944414f60c81b815250604051806040016040528060048152602001634741525960e01b8152506064600d5460008111620000ff5760405162461bcd60e51b8152600401620000f690620002bc565b60405180910390fd5b60008211620001225760405162461bcd60e51b8152600401620000f69062000275565b835162000137906001906020870190620001cf565b5082516200014d906002906020860190620001cf565b5060a091909152608052506200016e90506200016862000179565b6200017d565b600160095562000347565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001dd906200030a565b90600052602060002090601f0160209004810192826200020157600085556200024c565b82601f106200021c57805160ff19168380011785556200024c565b828001600101855582156200024c579182015b828111156200024c5782518255916020019190600101906200022f565b506200025a9291506200025e565b5090565b5b808211156200025a57600081556001016200025f565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200031f57607f821691505b602082108114156200034157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516129f662000378600039600081816115d0015281816115fa01526119d20152600050506129f66000f3fe6080604052600436106102045760003560e01c80635b70ea9f11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610585578063d7224ba01461059a578063e43082f7146105af578063e985e9c5146105cf578063f2fde38b146105ef57610204565b8063a22cb46514610510578063b88d4fde14610530578063c6a91b4214610550578063c87b56dd1461056557610204565b8063715018a6116100e7578063715018a6146104a95780638da5cb5b146104be57806395d89b41146104d3578063982d669e146104e8578063a0712d68146104fd57610204565b80635b70ea9f1461043f5780636352211e1461045457806370a0823114610474578063714c53981461049457610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b146103aa57806342842e0e146103bf57806349df728c146103df5780634f6ccce7146103ff57806355f804b31461041f57610204565b806323b872dd1461031c57806328cad13d1461033c5780632a55205a1461035c5780632f745c591461038a57610204565b8063095ea7b3116101d7578063095ea7b3146102b05780630a00ae83146102d257806318160ddd146102f25780631e84c4131461030757610204565b806301ffc9a71461020957806306fdde031461023f57806307e89ec014610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611eb7565b61060f565b6040516102369190612128565b60405180910390f35b34801561024b57600080fd5b5061025461063c565b6040516102369190612133565b34801561026d57600080fd5b506102766106ce565b60405161023691906127ce565b34801561028f57600080fd5b506102a361029e366004611f51565b6106d9565b60405161023691906120be565b3480156102bc57600080fd5b506102d06102cb366004611e54565b610725565b005b3480156102de57600080fd5b506102d06102ed366004611f51565b6107be565b3480156102fe57600080fd5b50610276610802565b34801561031357600080fd5b50610229610808565b34801561032857600080fd5b506102d0610337366004611d6a565b610811565b34801561034857600080fd5b506102d0610357366004611e7f565b61081c565b34801561036857600080fd5b5061037c610377366004611f81565b61086e565b60405161023692919061210f565b34801561039657600080fd5b506102766103a5366004611e54565b6108b7565b3480156103b657600080fd5b506102d06109b3565b3480156103cb57600080fd5b506102d06103da366004611d6a565b610a25565b3480156103eb57600080fd5b506102d06103fa366004611d16565b610a40565b34801561040b57600080fd5b5061027661041a366004611f51565b610b81565b34801561042b57600080fd5b506102d061043a366004611f0b565b610bad565b34801561044b57600080fd5b506102d0610bff565b34801561046057600080fd5b506102a361046f366004611f51565b610cbe565b34801561048057600080fd5b5061027661048f366004611d16565b610cd0565b3480156104a057600080fd5b50610254610d1d565b3480156104b557600080fd5b506102d0610d2c565b3480156104ca57600080fd5b506102a3610d77565b3480156104df57600080fd5b50610254610d86565b3480156104f457600080fd5b50610276610d95565b6102d061050b366004611f51565b610d9b565b34801561051c57600080fd5b506102d061052b366004611e27565b610e73565b34801561053c57600080fd5b506102d061054b366004611daa565b610f41565b34801561055c57600080fd5b50610276610f7a565b34801561057157600080fd5b50610254610580366004611f51565b610f7f565b34801561059157600080fd5b50610276610fe2565b3480156105a657600080fd5b50610276610fe8565b3480156105bb57600080fd5b506102d06105ca366004611e7f565b610fee565b3480156105db57600080fd5b506102296105ea366004611d32565b61104b565b3480156105fb57600080fd5b506102d061060a366004611d16565b61111f565b60006001600160e01b0319821663152a902d60e11b1480610634575061063482611190565b90505b919050565b60606001805461064b906128db565b80601f0160208091040260200160405190810160405280929190818152602001828054610677906128db565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b662386f26fc1000081565b60006106e4826111eb565b6107095760405162461bcd60e51b81526004016107009061273f565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073082610cbe565b9050806001600160a01b0316836001600160a01b031614156107645760405162461bcd60e51b8152600401610700906124b9565b806001600160a01b03166107766111f2565b6001600160a01b031614806107925750610792816105ea6111f2565b6107ae5760405162461bcd60e51b81526004016107009061230d565b6107b98383836111f6565b505050565b6107c66111f2565b6001600160a01b03166107d7610d77565b6001600160a01b0316146107fd5760405162461bcd60e51b8152600401610700906123fb565b600e55565b60005490565b600f5460ff1681565b6107b9838383611252565b6108246111f2565b6001600160a01b0316610835610d77565b6001600160a01b03161461085b5760405162461bcd60e51b8152600401610700906123fb565b600f805460ff1916911515919091179055565b60008061087a846111eb565b6108965760405162461bcd60e51b8152600401610700906122e2565b306108ac6108a5856005611566565b6064611579565b915091509250929050565b60006108c283610cd0565b82106108e05760405162461bcd60e51b815260040161070090612146565b60006108ea610802565b905060008060005b83811015610994576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094557805192505b876001600160a01b0316836001600160a01b031614156109815786841415610973575093506109ad92505050565b8361097d81612916565b9450505b508061098c81612916565b9150506108f2565b5060405162461bcd60e51b815260040161070090612634565b92915050565b6109bb6111f2565b6001600160a01b03166109cc610d77565b6001600160a01b0316146109f25760405162461bcd60e51b8152600401610700906123fb565b6040514790339082156108fc029083906000818181858888f19350505050158015610a21573d6000803e3d6000fd5b5050565b6107b983838360405180602001604052806000815250610f41565b610a486111f2565b6001600160a01b0316610a59610d77565b6001600160a01b031614610a7f5760405162461bcd60e51b8152600401610700906123fb565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610aae9030906004016120be565b60206040518083038186803b158015610ac657600080fd5b505afa158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afe9190611f69565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610b2f903390859060040161210f565b602060405180830381600087803b158015610b4957600080fd5b505af1158015610b5d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b99190611e9b565b6000610b8b610802565b8210610ba95760405162461bcd60e51b815260040161070090612218565b5090565b610bb56111f2565b6001600160a01b0316610bc6610d77565b6001600160a01b031614610bec5760405162461bcd60e51b8152600401610700906123fb565b8051610a2190600b906020840190611bfa565b60026009541415610c225760405162461bcd60e51b815260040161070090612682565b6002600955600f5460ff16610c495760405162461bcd60e51b815260040161070090612708565b6001600d5481610c57610802565b610c61919061280e565b1115610c7f5760405162461bcd60e51b81526004016107009061225b565b6001600e54610c8c610802565b1115610caa5760405162461bcd60e51b8152600401610700906125c6565b610cb5336001611585565b50506001600955565b6000610cc98261159f565b5192915050565b60006001600160a01b038216610cf85760405162461bcd60e51b81526004016107009061236a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461064b906128db565b610d346111f2565b6001600160a01b0316610d45610d77565b6001600160a01b031614610d6b5760405162461bcd60e51b8152600401610700906123fb565b610d7560006116b2565b565b6008546001600160a01b031690565b60606002805461064b906128db565b600e5481565b60026009541415610dbe5760405162461bcd60e51b815260040161070090612682565b6002600955600e54662386f26fc10000908290610dd9610802565b1115610e075734610dea828461283a565b14610e075760405162461bcd60e51b8152600401610700906125fd565b600f5460ff16610e295760405162461bcd60e51b815260040161070090612708565b82600d5481610e36610802565b610e40919061280e565b1115610e5e5760405162461bcd60e51b81526004016107009061225b565b610e683385611585565b505060016009555050565b610e7b6111f2565b6001600160a01b0316826001600160a01b03161415610eac5760405162461bcd60e51b815260040161070090612430565b8060066000610eb96111f2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610efd6111f2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f359190612128565b60405180910390a35050565b610f4c848484611252565b610f5884848484611704565b610f745760405162461bcd60e51b8152600401610700906124fb565b50505050565b600a81565b6060610f8a826111eb565b610fa65760405162461bcd60e51b8152600401610700906122e2565b600b610fbb610fb684600161280e565b61181f565b604051602001610fcc929190612008565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610ff66111f2565b6001600160a01b0316611007610d77565b6001600160a01b03161461102d5760405162461bcd60e51b8152600401610700906123fb565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff1680156110fe5750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b81526004016110a391906120be565b60206040518083038186803b1580156110bb57600080fd5b505afa1580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190611eef565b6001600160a01b0316145b1561110d5760019150506109ad565b611117848461193a565b949350505050565b6111276111f2565b6001600160a01b0316611138610d77565b6001600160a01b03161461115e5760405162461bcd60e51b8152600401610700906123fb565b6001600160a01b0381166111845760405162461bcd60e51b815260040161070090612188565b61118d816116b2565b50565b60006001600160e01b031982166380ac58cd60e01b14806111c157506001600160e01b03198216635b5e139f60e01b145b806111dc57506001600160e01b0319821663780e9d6360e01b145b80610634575061063482611968565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061125d8261159f565b9050600081600001516001600160a01b03166112776111f2565b6001600160a01b031614806112ac575061128f6111f2565b6001600160a01b03166112a1846106d9565b6001600160a01b0316145b806112c0575081516112c0906105ea6111f2565b9050806112df5760405162461bcd60e51b815260040161070090612467565b846001600160a01b031682600001516001600160a01b0316146113145760405162461bcd60e51b8152600401610700906123b5565b6001600160a01b03841661133a5760405162461bcd60e51b81526004016107009061229d565b6113478585856001610f74565b61135760008484600001516111f6565b6001600160a01b03851660009081526004602052604081208054600192906113899084906001600160801b0316612859565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926113d5918591166127e3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561146b84600161280e565b6000818152600360205260409020549091506001600160a01b031661151057611493816111eb565b156115105760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461155e8686866001610f74565b505050505050565b6000611572828461283a565b9392505050565b60006115728284612826565b610a21828260405180602001604052806000815250611981565b6115a7611c7a565b6115b0826111eb565b6115cc5760405162461bcd60e51b8152600401610700906121ce565b60007f0000000000000000000000000000000000000000000000000000000000000000831061162d5761161f7f000000000000000000000000000000000000000000000000000000000000000084612881565b61162a90600161280e565b90505b825b818110611699576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611686579250610637915050565b5080611691816128c4565b91505061162f565b5060405162461bcd60e51b8152600401610700906126b9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611718846001600160a01b0316611bf4565b1561181457836001600160a01b031663150b7a026117346111f2565b8786866040518563ffffffff1660e01b815260040161175694939291906120d2565b602060405180830381600087803b15801561177057600080fd5b505af19250505080156117a0575060408051601f3d908101601f1916820190925261179d91810190611ed3565b60015b6117fa573d8080156117ce576040519150601f19603f3d011682016040523d82523d6000602084013e6117d3565b606091505b5080516117f25760405162461bcd60e51b8152600401610700906124fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611117565b506001949350505050565b60608161184457506040805180820190915260018152600360fc1b6020820152610637565b8160005b811561186e578061185881612916565b91506118679050600a83612826565b9150611848565b60008167ffffffffffffffff81111561189757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118c1576020820181803683370190505b5090505b8415611117576118d6600183612881565b91506118e3600a86612931565b6118ee90603061280e565b60f81b81838151811061191157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611933600a86612826565b94506118c5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166119aa5760405162461bcd60e51b815260040161070090612585565b6119b3816111eb565b156119d05760405162461bcd60e51b81526004016107009061254e565b7f0000000000000000000000000000000000000000000000000000000000000000831115611a105760405162461bcd60e51b81526004016107009061278c565b611a1d6000858386610f74565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a799087906127e3565b6001600160801b03168152602001858360200151611a9791906127e3565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611be25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ba66000888488611704565b611bc25760405162461bcd60e51b8152600401610700906124fb565b81611bcc81612916565b9250508080611bda90612916565b915050611b59565b50600081815561155e90878588610f74565b3b151590565b828054611c06906128db565b90600052602060002090601f016020900481019282611c285760008555611c6e565b82601f10611c4157805160ff1916838001178555611c6e565b82800160010185558215611c6e579182015b82811115611c6e578251825591602001919060010190611c53565b50610ba9929150611c91565b604080518082019091526000808252602082015290565b5b80821115610ba95760008155600101611c92565b600067ffffffffffffffff80841115611cc157611cc1612971565b604051601f8501601f191681016020018281118282101715611ce557611ce5612971565b604052848152915081838501861015611cfd57600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611d27578081fd5b813561157281612987565b60008060408385031215611d44578081fd5b8235611d4f81612987565b91506020830135611d5f81612987565b809150509250929050565b600080600060608486031215611d7e578081fd5b8335611d8981612987565b92506020840135611d9981612987565b929592945050506040919091013590565b60008060008060808587031215611dbf578081fd5b8435611dca81612987565b93506020850135611dda81612987565b925060408501359150606085013567ffffffffffffffff811115611dfc578182fd5b8501601f81018713611e0c578182fd5b611e1b87823560208401611ca6565b91505092959194509250565b60008060408385031215611e39578182fd5b8235611e4481612987565b91506020830135611d5f8161299c565b60008060408385031215611e66578182fd5b8235611e7181612987565b946020939093013593505050565b600060208284031215611e90578081fd5b81356115728161299c565b600060208284031215611eac578081fd5b81516115728161299c565b600060208284031215611ec8578081fd5b8135611572816129aa565b600060208284031215611ee4578081fd5b8151611572816129aa565b600060208284031215611f00578081fd5b815161157281612987565b600060208284031215611f1c578081fd5b813567ffffffffffffffff811115611f32578182fd5b8201601f81018413611f42578182fd5b61111784823560208401611ca6565b600060208284031215611f62578081fd5b5035919050565b600060208284031215611f7a578081fd5b5051919050565b60008060408385031215611f93578182fd5b50508035926020909101359150565b60008151808452611fba816020860160208601612898565b601f01601f19169290920160200192915050565b60008151611fe0818560208601612898565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b825460009081906002810460018083168061202457607f831692505b602080841082141561204457634e487b7160e01b87526022600452602487fd5b818015612058576001811461206957612095565b60ff19861689528489019650612095565b6120728b6127d7565b885b8681101561208d5781548b820152908501908301612074565b505084890196505b5050505050506120b56120b06120aa83611ffb565b86611fce565b611fea565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210590830184611fa2565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526115726020830184611fa2565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601c908201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000604082015260600190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b0380831681851680830382111561280557612805612945565b01949350505050565b6000821982111561282157612821612945565b500190565b6000826128355761283561295b565b500490565b600081600019048311821515161561285457612854612945565b500290565b60006001600160801b038381169083168181101561287957612879612945565b039392505050565b60008282101561289357612893612945565b500390565b60005b838110156128b357818101518382015260200161289b565b83811115610f745750506000910152565b6000816128d3576128d3612945565b506000190190565b6002810460018216806128ef57607f821691505b6020821081141561291057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561292a5761292a612945565b5060010190565b6000826129405761294061295b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461118d57600080fd5b801515811461118d57600080fd5b6001600160e01b03198116811461118d57600080fdfea2646970667358221220316712c44964dca20e26fbee7eb3a5d68c3fb60968971700fc24af14ea4f171664736f6c63430008000033697066733a2f2f516d506b414d61547973515a6e6a644a627442526d54746e646b74324e764232356454616550535a45636f41646a

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635b70ea9f11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610585578063d7224ba01461059a578063e43082f7146105af578063e985e9c5146105cf578063f2fde38b146105ef57610204565b8063a22cb46514610510578063b88d4fde14610530578063c6a91b4214610550578063c87b56dd1461056557610204565b8063715018a6116100e7578063715018a6146104a95780638da5cb5b146104be57806395d89b41146104d3578063982d669e146104e8578063a0712d68146104fd57610204565b80635b70ea9f1461043f5780636352211e1461045457806370a0823114610474578063714c53981461049457610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b146103aa57806342842e0e146103bf57806349df728c146103df5780634f6ccce7146103ff57806355f804b31461041f57610204565b806323b872dd1461031c57806328cad13d1461033c5780632a55205a1461035c5780632f745c591461038a57610204565b8063095ea7b3116101d7578063095ea7b3146102b05780630a00ae83146102d257806318160ddd146102f25780631e84c4131461030757610204565b806301ffc9a71461020957806306fdde031461023f57806307e89ec014610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611eb7565b61060f565b6040516102369190612128565b60405180910390f35b34801561024b57600080fd5b5061025461063c565b6040516102369190612133565b34801561026d57600080fd5b506102766106ce565b60405161023691906127ce565b34801561028f57600080fd5b506102a361029e366004611f51565b6106d9565b60405161023691906120be565b3480156102bc57600080fd5b506102d06102cb366004611e54565b610725565b005b3480156102de57600080fd5b506102d06102ed366004611f51565b6107be565b3480156102fe57600080fd5b50610276610802565b34801561031357600080fd5b50610229610808565b34801561032857600080fd5b506102d0610337366004611d6a565b610811565b34801561034857600080fd5b506102d0610357366004611e7f565b61081c565b34801561036857600080fd5b5061037c610377366004611f81565b61086e565b60405161023692919061210f565b34801561039657600080fd5b506102766103a5366004611e54565b6108b7565b3480156103b657600080fd5b506102d06109b3565b3480156103cb57600080fd5b506102d06103da366004611d6a565b610a25565b3480156103eb57600080fd5b506102d06103fa366004611d16565b610a40565b34801561040b57600080fd5b5061027661041a366004611f51565b610b81565b34801561042b57600080fd5b506102d061043a366004611f0b565b610bad565b34801561044b57600080fd5b506102d0610bff565b34801561046057600080fd5b506102a361046f366004611f51565b610cbe565b34801561048057600080fd5b5061027661048f366004611d16565b610cd0565b3480156104a057600080fd5b50610254610d1d565b3480156104b557600080fd5b506102d0610d2c565b3480156104ca57600080fd5b506102a3610d77565b3480156104df57600080fd5b50610254610d86565b3480156104f457600080fd5b50610276610d95565b6102d061050b366004611f51565b610d9b565b34801561051c57600080fd5b506102d061052b366004611e27565b610e73565b34801561053c57600080fd5b506102d061054b366004611daa565b610f41565b34801561055c57600080fd5b50610276610f7a565b34801561057157600080fd5b50610254610580366004611f51565b610f7f565b34801561059157600080fd5b50610276610fe2565b3480156105a657600080fd5b50610276610fe8565b3480156105bb57600080fd5b506102d06105ca366004611e7f565b610fee565b3480156105db57600080fd5b506102296105ea366004611d32565b61104b565b3480156105fb57600080fd5b506102d061060a366004611d16565b61111f565b60006001600160e01b0319821663152a902d60e11b1480610634575061063482611190565b90505b919050565b60606001805461064b906128db565b80601f0160208091040260200160405190810160405280929190818152602001828054610677906128db565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b662386f26fc1000081565b60006106e4826111eb565b6107095760405162461bcd60e51b81526004016107009061273f565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073082610cbe565b9050806001600160a01b0316836001600160a01b031614156107645760405162461bcd60e51b8152600401610700906124b9565b806001600160a01b03166107766111f2565b6001600160a01b031614806107925750610792816105ea6111f2565b6107ae5760405162461bcd60e51b81526004016107009061230d565b6107b98383836111f6565b505050565b6107c66111f2565b6001600160a01b03166107d7610d77565b6001600160a01b0316146107fd5760405162461bcd60e51b8152600401610700906123fb565b600e55565b60005490565b600f5460ff1681565b6107b9838383611252565b6108246111f2565b6001600160a01b0316610835610d77565b6001600160a01b03161461085b5760405162461bcd60e51b8152600401610700906123fb565b600f805460ff1916911515919091179055565b60008061087a846111eb565b6108965760405162461bcd60e51b8152600401610700906122e2565b306108ac6108a5856005611566565b6064611579565b915091509250929050565b60006108c283610cd0565b82106108e05760405162461bcd60e51b815260040161070090612146565b60006108ea610802565b905060008060005b83811015610994576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094557805192505b876001600160a01b0316836001600160a01b031614156109815786841415610973575093506109ad92505050565b8361097d81612916565b9450505b508061098c81612916565b9150506108f2565b5060405162461bcd60e51b815260040161070090612634565b92915050565b6109bb6111f2565b6001600160a01b03166109cc610d77565b6001600160a01b0316146109f25760405162461bcd60e51b8152600401610700906123fb565b6040514790339082156108fc029083906000818181858888f19350505050158015610a21573d6000803e3d6000fd5b5050565b6107b983838360405180602001604052806000815250610f41565b610a486111f2565b6001600160a01b0316610a59610d77565b6001600160a01b031614610a7f5760405162461bcd60e51b8152600401610700906123fb565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610aae9030906004016120be565b60206040518083038186803b158015610ac657600080fd5b505afa158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afe9190611f69565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610b2f903390859060040161210f565b602060405180830381600087803b158015610b4957600080fd5b505af1158015610b5d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b99190611e9b565b6000610b8b610802565b8210610ba95760405162461bcd60e51b815260040161070090612218565b5090565b610bb56111f2565b6001600160a01b0316610bc6610d77565b6001600160a01b031614610bec5760405162461bcd60e51b8152600401610700906123fb565b8051610a2190600b906020840190611bfa565b60026009541415610c225760405162461bcd60e51b815260040161070090612682565b6002600955600f5460ff16610c495760405162461bcd60e51b815260040161070090612708565b6001600d5481610c57610802565b610c61919061280e565b1115610c7f5760405162461bcd60e51b81526004016107009061225b565b6001600e54610c8c610802565b1115610caa5760405162461bcd60e51b8152600401610700906125c6565b610cb5336001611585565b50506001600955565b6000610cc98261159f565b5192915050565b60006001600160a01b038216610cf85760405162461bcd60e51b81526004016107009061236a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461064b906128db565b610d346111f2565b6001600160a01b0316610d45610d77565b6001600160a01b031614610d6b5760405162461bcd60e51b8152600401610700906123fb565b610d7560006116b2565b565b6008546001600160a01b031690565b60606002805461064b906128db565b600e5481565b60026009541415610dbe5760405162461bcd60e51b815260040161070090612682565b6002600955600e54662386f26fc10000908290610dd9610802565b1115610e075734610dea828461283a565b14610e075760405162461bcd60e51b8152600401610700906125fd565b600f5460ff16610e295760405162461bcd60e51b815260040161070090612708565b82600d5481610e36610802565b610e40919061280e565b1115610e5e5760405162461bcd60e51b81526004016107009061225b565b610e683385611585565b505060016009555050565b610e7b6111f2565b6001600160a01b0316826001600160a01b03161415610eac5760405162461bcd60e51b815260040161070090612430565b8060066000610eb96111f2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610efd6111f2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f359190612128565b60405180910390a35050565b610f4c848484611252565b610f5884848484611704565b610f745760405162461bcd60e51b8152600401610700906124fb565b50505050565b600a81565b6060610f8a826111eb565b610fa65760405162461bcd60e51b8152600401610700906122e2565b600b610fbb610fb684600161280e565b61181f565b604051602001610fcc929190612008565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610ff66111f2565b6001600160a01b0316611007610d77565b6001600160a01b03161461102d5760405162461bcd60e51b8152600401610700906123fb565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff1680156110fe5750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b81526004016110a391906120be565b60206040518083038186803b1580156110bb57600080fd5b505afa1580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190611eef565b6001600160a01b0316145b1561110d5760019150506109ad565b611117848461193a565b949350505050565b6111276111f2565b6001600160a01b0316611138610d77565b6001600160a01b03161461115e5760405162461bcd60e51b8152600401610700906123fb565b6001600160a01b0381166111845760405162461bcd60e51b815260040161070090612188565b61118d816116b2565b50565b60006001600160e01b031982166380ac58cd60e01b14806111c157506001600160e01b03198216635b5e139f60e01b145b806111dc57506001600160e01b0319821663780e9d6360e01b145b80610634575061063482611968565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061125d8261159f565b9050600081600001516001600160a01b03166112776111f2565b6001600160a01b031614806112ac575061128f6111f2565b6001600160a01b03166112a1846106d9565b6001600160a01b0316145b806112c0575081516112c0906105ea6111f2565b9050806112df5760405162461bcd60e51b815260040161070090612467565b846001600160a01b031682600001516001600160a01b0316146113145760405162461bcd60e51b8152600401610700906123b5565b6001600160a01b03841661133a5760405162461bcd60e51b81526004016107009061229d565b6113478585856001610f74565b61135760008484600001516111f6565b6001600160a01b03851660009081526004602052604081208054600192906113899084906001600160801b0316612859565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926113d5918591166127e3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561146b84600161280e565b6000818152600360205260409020549091506001600160a01b031661151057611493816111eb565b156115105760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461155e8686866001610f74565b505050505050565b6000611572828461283a565b9392505050565b60006115728284612826565b610a21828260405180602001604052806000815250611981565b6115a7611c7a565b6115b0826111eb565b6115cc5760405162461bcd60e51b8152600401610700906121ce565b60007f0000000000000000000000000000000000000000000000000000000000000064831061162d5761161f7f000000000000000000000000000000000000000000000000000000000000006484612881565b61162a90600161280e565b90505b825b818110611699576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611686579250610637915050565b5080611691816128c4565b91505061162f565b5060405162461bcd60e51b8152600401610700906126b9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611718846001600160a01b0316611bf4565b1561181457836001600160a01b031663150b7a026117346111f2565b8786866040518563ffffffff1660e01b815260040161175694939291906120d2565b602060405180830381600087803b15801561177057600080fd5b505af19250505080156117a0575060408051601f3d908101601f1916820190925261179d91810190611ed3565b60015b6117fa573d8080156117ce576040519150601f19603f3d011682016040523d82523d6000602084013e6117d3565b606091505b5080516117f25760405162461bcd60e51b8152600401610700906124fb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611117565b506001949350505050565b60608161184457506040805180820190915260018152600360fc1b6020820152610637565b8160005b811561186e578061185881612916565b91506118679050600a83612826565b9150611848565b60008167ffffffffffffffff81111561189757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118c1576020820181803683370190505b5090505b8415611117576118d6600183612881565b91506118e3600a86612931565b6118ee90603061280e565b60f81b81838151811061191157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611933600a86612826565b94506118c5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000546001600160a01b0384166119aa5760405162461bcd60e51b815260040161070090612585565b6119b3816111eb565b156119d05760405162461bcd60e51b81526004016107009061254e565b7f0000000000000000000000000000000000000000000000000000000000000064831115611a105760405162461bcd60e51b81526004016107009061278c565b611a1d6000858386610f74565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a799087906127e3565b6001600160801b03168152602001858360200151611a9791906127e3565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611be25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ba66000888488611704565b611bc25760405162461bcd60e51b8152600401610700906124fb565b81611bcc81612916565b9250508080611bda90612916565b915050611b59565b50600081815561155e90878588610f74565b3b151590565b828054611c06906128db565b90600052602060002090601f016020900481019282611c285760008555611c6e565b82601f10611c4157805160ff1916838001178555611c6e565b82800160010185558215611c6e579182015b82811115611c6e578251825591602001919060010190611c53565b50610ba9929150611c91565b604080518082019091526000808252602082015290565b5b80821115610ba95760008155600101611c92565b600067ffffffffffffffff80841115611cc157611cc1612971565b604051601f8501601f191681016020018281118282101715611ce557611ce5612971565b604052848152915081838501861015611cfd57600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611d27578081fd5b813561157281612987565b60008060408385031215611d44578081fd5b8235611d4f81612987565b91506020830135611d5f81612987565b809150509250929050565b600080600060608486031215611d7e578081fd5b8335611d8981612987565b92506020840135611d9981612987565b929592945050506040919091013590565b60008060008060808587031215611dbf578081fd5b8435611dca81612987565b93506020850135611dda81612987565b925060408501359150606085013567ffffffffffffffff811115611dfc578182fd5b8501601f81018713611e0c578182fd5b611e1b87823560208401611ca6565b91505092959194509250565b60008060408385031215611e39578182fd5b8235611e4481612987565b91506020830135611d5f8161299c565b60008060408385031215611e66578182fd5b8235611e7181612987565b946020939093013593505050565b600060208284031215611e90578081fd5b81356115728161299c565b600060208284031215611eac578081fd5b81516115728161299c565b600060208284031215611ec8578081fd5b8135611572816129aa565b600060208284031215611ee4578081fd5b8151611572816129aa565b600060208284031215611f00578081fd5b815161157281612987565b600060208284031215611f1c578081fd5b813567ffffffffffffffff811115611f32578182fd5b8201601f81018413611f42578182fd5b61111784823560208401611ca6565b600060208284031215611f62578081fd5b5035919050565b600060208284031215611f7a578081fd5b5051919050565b60008060408385031215611f93578182fd5b50508035926020909101359150565b60008151808452611fba816020860160208601612898565b601f01601f19169290920160200192915050565b60008151611fe0818560208601612898565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b825460009081906002810460018083168061202457607f831692505b602080841082141561204457634e487b7160e01b87526022600452602487fd5b818015612058576001811461206957612095565b60ff19861689528489019650612095565b6120728b6127d7565b885b8681101561208d5781548b820152908501908301612074565b505084890196505b5050505050506120b56120b06120aa83611ffb565b86611fce565b611fea565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210590830184611fa2565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526115726020830184611fa2565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601c908201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000604082015260600190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b0380831681851680830382111561280557612805612945565b01949350505050565b6000821982111561282157612821612945565b500190565b6000826128355761283561295b565b500490565b600081600019048311821515161561285457612854612945565b500290565b60006001600160801b038381169083168181101561287957612879612945565b039392505050565b60008282101561289357612893612945565b500390565b60005b838110156128b357818101518382015260200161289b565b83811115610f745750506000910152565b6000816128d3576128d3612945565b506000190190565b6002810460018216806128ef57607f821691505b6020821081141561291057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561292a5761292a612945565b5060010190565b6000826129405761294061295b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461118d57600080fd5b801515811461118d57600080fd5b6001600160e01b03198116811461118d57600080fdfea2646970667358221220316712c44964dca20e26fbee7eb3a5d68c3fb60968971700fc24af14ea4f171664736f6c63430008000033

Deployed Bytecode Sourcemap

55052:5820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59061:292;;;;;;;;;;-1:-1:-1;59061:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44239:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55568:54::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45764:204::-;;;;;;;;;;-1:-1:-1;45764:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45327:379::-;;;;;;;;;;-1:-1:-1;45327:379:0;;;;;:::i;:::-;;:::i;:::-;;58329:139;;;;;;;;;;-1:-1:-1;58329:139:0;;;;;:::i;:::-;;:::i;41074:94::-;;;;;;;;;;;;;:::i;55671:37::-;;;;;;;;;;;;;:::i;46614:142::-;;;;;;;;;;-1:-1:-1;46614:142:0;;;;;:::i;:::-;;:::i;58163:158::-;;;;;;;;;;-1:-1:-1;58163:158:0;;;;;:::i;:::-;;:::i;60551:318::-;;;;;;;;;;-1:-1:-1;60551:318:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;41705:744::-;;;;;;;;;;-1:-1:-1;41705:744:0;;;;;:::i;:::-;;:::i;58478:143::-;;;;;;;;;;;;;:::i;46819:157::-;;;;;;;;;;-1:-1:-1;46819:157:0;;;;;:::i;:::-;;:::i;58629:168::-;;;;;;;;;;-1:-1:-1;58629:168:0;;;;;:::i;:::-;;:::i;41237:177::-;;;;;;;;;;-1:-1:-1;41237:177:0;;;;;:::i;:::-;;:::i;57765:100::-;;;;;;;;;;-1:-1:-1;57765:100:0;;;;;:::i;:::-;;:::i;57310:214::-;;;;;;;;;;;;;:::i;44062:118::-;;;;;;;;;;-1:-1:-1;44062:118:0;;;;;:::i;:::-;;:::i;42939:211::-;;;;;;;;;;-1:-1:-1;42939:211:0;;;;;:::i;:::-;;:::i;57601:93::-;;;;;;;;;;;;;:::i;19097:103::-;;;;;;;;;;;;;:::i;18446:87::-;;;;;;;;;;;;;:::i;44394:98::-;;;;;;;;;;;;;:::i;55629:35::-;;;;;;;;;;;;;:::i;56962:282::-;;;;;;:::i;:::-;;:::i;46032:274::-;;;;;;;;;;-1:-1:-1;46032:274:0;;;;;:::i;:::-;;:::i;47039:311::-;;;;;;;;;;-1:-1:-1;47039:311:0;;;;;:::i;:::-;;:::i;55476:45::-;;;;;;;;;;;;;:::i;60178:307::-;;;;;;;;;;-1:-1:-1;60178:307:0;;;;;:::i;:::-;;:::i;55528:31::-;;;;;;;;;;;;;:::i;51454:43::-;;;;;;;;;;;;;:::i;57989:166::-;;;;;;;;;;-1:-1:-1;57989:166:0;;;;;:::i;:::-;;:::i;59490:617::-;;;;;;;;;;-1:-1:-1;59490:617:0;;;;;:::i;:::-;;:::i;19355:201::-;;;;;;;;;;-1:-1:-1;19355:201:0;;;;;:::i;:::-;;:::i;59061:292::-;59209:4;-1:-1:-1;;;;;;59251:41:0;;-1:-1:-1;;;59251:41:0;;:94;;;59309:36;59333:11;59309:23;:36::i;:::-;59231:114;;59061:292;;;;:::o;44239:94::-;44293:13;44322:5;44315:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44239:94;:::o;55568:54::-;55612:10;55568:54;:::o;45764:204::-;45832:7;45856:16;45864:7;45856;:16::i;:::-;45848:74;;;;-1:-1:-1;;;45848:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;45938:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45938:24:0;;45764:204::o;45327:379::-;45396:13;45412:24;45428:7;45412:15;:24::i;:::-;45396:40;;45457:5;-1:-1:-1;;;;;45451:11:0;:2;-1:-1:-1;;;;;45451:11:0;;;45443:58;;;;-1:-1:-1;;;45443:58:0;;;;;;;:::i;:::-;45542:5;-1:-1:-1;;;;;45526:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;45526:21:0;;:62;;;;45551:37;45568:5;45575:12;:10;:12::i;45551:37::-;45510:153;;;;-1:-1:-1;;;45510:153:0;;;;;;;:::i;:::-;45672:28;45681:2;45685:7;45694:5;45672:8;:28::i;:::-;45327:379;;;:::o;58329:139::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;58430:14:::1;:30:::0;58329:139::o;41074:94::-;41127:7;41150:12;41074:94;:::o;55671:37::-;;;;;;:::o;46614:142::-;46722:28;46732:4;46738:2;46742:7;46722:9;:28::i;58163:158::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;58273:18:::1;:40:::0;;-1:-1:-1;;58273:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58163:158::o;60551:318::-;60676:16;60694:21;60741:16;60749:7;60741;:16::i;:::-;60733:46;;;;-1:-1:-1;;;60733:46:0;;;;;;;:::i;:::-;60808:4;60815:45;60828:26;60841:9;60852:1;60828:12;:26::i;:::-;60856:3;60815:12;:45::i;:::-;60792:69;;;;60551:318;;;;;:::o;41705:744::-;41814:7;41849:16;41859:5;41849:9;:16::i;:::-;41841:5;:24;41833:71;;;;-1:-1:-1;;;41833:71:0;;;;;;;:::i;:::-;41911:22;41936:13;:11;:13::i;:::-;41911:38;;41956:19;41986:25;42036:9;42031:350;42055:14;42051:1;:18;42031:350;;;42085:31;42119:14;;;:11;:14;;;;;;;;;42085:48;;;;;;;;;-1:-1:-1;;;;;42085:48:0;;;;;-1:-1:-1;;;42085:48:0;;;;;;;;;;;;42146:28;42142:89;;42207:14;;;-1:-1:-1;42142:89:0;42264:5;-1:-1:-1;;;;;42243:26:0;:17;-1:-1:-1;;;;;42243:26:0;;42239:135;;;42301:5;42286:11;:20;42282:59;;;-1:-1:-1;42328:1:0;-1:-1:-1;42321:8:0;;-1:-1:-1;;;42321:8:0;42282:59;42351:13;;;;:::i;:::-;;;;42239:135;-1:-1:-1;42071:3:0;;;;:::i;:::-;;;;42031:350;;;;42387:56;;-1:-1:-1;;;42387:56:0;;;;;;;:::i;41705:744::-;;;;;:::o;58478:143::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;58576:37:::1;::::0;58544:21:::1;::::0;58584:10:::1;::::0;58576:37;::::1;;;::::0;58544:21;;58526:15:::1;58576:37:::0;58526:15;58576:37;58544:21;58584:10;58576:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;18737:1;58478:143::o:0;46819:157::-;46931:39;46948:4;46954:2;46958:7;46931:39;;;;;;;;;;;;:16;:39::i;58629:168::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;58713:30:::1;::::0;-1:-1:-1;;;58713:30:0;;58695:15:::1;::::0;-1:-1:-1;;;;;58713:15:0;::::1;::::0;::::1;::::0;:30:::1;::::0;58737:4:::1;::::0;58713:30:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58754:35;::::0;-1:-1:-1;;;58754:35:0;;58695:48;;-1:-1:-1;;;;;;58754:14:0;::::1;::::0;::::1;::::0;:35:::1;::::0;58769:10:::1;::::0;58695:48;;58754:35:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41237:177::-:0;41304:7;41336:13;:11;:13::i;:::-;41328:5;:21;41320:69;;;;-1:-1:-1;;;41320:69:0;;;;;;;:::i;:::-;-1:-1:-1;41403:5:0;41237:177::o;57765:100::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;57839:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;57310:214::-:0;10375:1;10973:7;;:19;;10965:63;;;;-1:-1:-1;;;10965:63:0;;;;;;;:::i;:::-;10375:1;11106:7;:18;55838::::1;::::0;::::1;;55830:54;;;;-1:-1:-1::0;;;55830:54:0::1;;;;;;;:::i;:::-;57417:1:::2;56249:9;;56214:14;56198:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56176:144;;;;-1:-1:-1::0;;;56176:144:0::2;;;;;;;:::i;:::-;57443:1:::3;56445:14:::4;;56411:13;:11;:13::i;:::-;:48;;56389:126;;;;-1:-1:-1::0;;;56389:126:0::4;;;;;;;:::i;:::-;57492:24:::5;57502:10;57514:1;57492:9;:24::i;:::-;-1:-1:-1::0;;10331:1:0;11285:7;:22;57310:214::o;44062:118::-;44126:7;44149:20;44161:7;44149:11;:20::i;:::-;:25;;44062:118;-1:-1:-1;;44062:118:0:o;42939:211::-;43003:7;-1:-1:-1;;;;;43027:19:0;;43019:75;;;;-1:-1:-1;;;43019:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;43116:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43116:27:0;;42939:211::o;57601:93::-;57646:13;57679:7;57672:14;;;;;:::i;19097:103::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;19162:30:::1;19189:1;19162:18;:30::i;:::-;19097:103::o:0;18446:87::-;18519:6;;-1:-1:-1;;;;;18519:6:0;18446:87;:::o;44394:98::-;44450:13;44479:7;44472:14;;;;;:::i;55629:35::-;;;;:::o;56962:282::-;10375:1;10973:7;;:19;;10965:63;;;;-1:-1:-1;;;10965:63:0;;;;;;;:::i;:::-;10375:1;11106:7;:18;56640:14:::1;::::0;55612:10:::1;::::0;57102:14;;56626:13:::1;:11;:13::i;:::-;:28;56623:166;;;56716:9;56689:22;56697:14:::0;56689:5;:22:::1;:::i;:::-;56688:37;56666:111;;;;-1:-1:-1::0;;;56666:111:0::1;;;;;;;:::i;:::-;55838:18:::2;::::0;::::2;;55830:54;;;;-1:-1:-1::0;;;55830:54:0::2;;;;;;;:::i;:::-;57165:14:::3;56249:9;;56214:14;56198:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56176:144;;;;-1:-1:-1::0;;;56176:144:0::3;;;;;;;:::i;:::-;57199:37:::4;57209:10;57221:14;57199:9;:37::i;:::-;-1:-1:-1::0;;10331:1:0;11285:7;:22;-1:-1:-1;;56962:282:0:o;46032:274::-;46135:12;:10;:12::i;:::-;-1:-1:-1;;;;;46123:24:0;:8;-1:-1:-1;;;;;46123:24:0;;;46115:63;;;;-1:-1:-1;;;46115:63:0;;;;;;;:::i;:::-;46232:8;46187:18;:32;46206:12;:10;:12::i;:::-;-1:-1:-1;;;;;46187:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;46187:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;46187:53:0;;;;;;;;;;;46267:12;:10;:12::i;:::-;-1:-1:-1;;;;;46252:48:0;;46291:8;46252:48;;;;;;:::i;:::-;;;;;;;;46032:274;;:::o;47039:311::-;47176:28;47186:4;47192:2;47196:7;47176:9;:28::i;:::-;47227:48;47250:4;47256:2;47260:7;47269:5;47227:22;:48::i;:::-;47211:133;;;;-1:-1:-1;;;47211:133:0;;;;;;;:::i;:::-;47039:311;;;;:::o;55476:45::-;55519:2;55476:45;:::o;60178:307::-;60296:13;60335:16;60343:7;60335;:16::i;:::-;60327:46;;;;-1:-1:-1;;;60327:46:0;;;;;;;:::i;:::-;60430:7;60444:22;60445:9;:7;60453:1;60445:9;:::i;:::-;60444:20;:22::i;:::-;60413:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60386:91;;60178:307;;;:::o;55528:31::-;;;;:::o;51454:43::-;;;;:::o;57989:166::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;58103:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;58103:44:0::1;-1:-1:-1::0;;;;58103:44:0;;::::1;::::0;;;::::1;::::0;;57989:166::o;59490:617::-;59838:27;;59615:4;;-1:-1:-1;;;;;59838:27:0;;;-1:-1:-1;;;59905:20:0;;;;:86;;;;;59983:8;-1:-1:-1;;;;;59942:49:0;59950:13;-1:-1:-1;;;;;59950:21:0;;59972:5;59950:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59942:49:0;;59905:86;59887:154;;;60025:4;60018:11;;;;;59887:154;60060:39;60083:5;60090:8;60060:22;:39::i;:::-;60053:46;59490:617;-1:-1:-1;;;;59490:617:0:o;19355:201::-;18677:12;:10;:12::i;:::-;-1:-1:-1;;;;;18666:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18666:23:0;;18658:68;;;;-1:-1:-1;;;18658:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19444:22:0;::::1;19436:73;;;;-1:-1:-1::0;;;19436:73:0::1;;;;;;;:::i;:::-;19520:28;19539:8;19520:18;:28::i;:::-;19355:201:::0;:::o;42513:370::-;42640:4;-1:-1:-1;;;;;;42670:40:0;;-1:-1:-1;;;42670:40:0;;:99;;-1:-1:-1;;;;;;;42721:48:0;;-1:-1:-1;;;42721:48:0;42670:99;:160;;;-1:-1:-1;;;;;;;42780:50:0;;-1:-1:-1;;;42780:50:0;42670:160;:207;;;;42841:36;42865:11;42841:23;:36::i;47589:105::-;47646:4;47676:12;-1:-1:-1;47666:22:0;47589:105::o;17170:98::-;17250:10;17170:98;:::o;51276:172::-;51373:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51373:29:0;-1:-1:-1;;;;;51373:29:0;;;;;;;;;51414:28;;51373:24;;51414:28;;;;;;;51276:172;;;:::o;49641:1529::-;49738:35;49776:20;49788:7;49776:11;:20::i;:::-;49738:58;;49805:22;49847:13;:18;;;-1:-1:-1;;;;;49831:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;49831:34:0;;:81;;;;49900:12;:10;:12::i;:::-;-1:-1:-1;;;;;49876:36:0;:20;49888:7;49876:11;:20::i;:::-;-1:-1:-1;;;;;49876:36:0;;49831:81;:142;;;-1:-1:-1;49940:18:0;;49923:50;;49960:12;:10;:12::i;49923:50::-;49805:169;;49999:17;49983:101;;;;-1:-1:-1;;;49983:101:0;;;;;;;:::i;:::-;50131:4;-1:-1:-1;;;;;50109:26:0;:13;:18;;;-1:-1:-1;;;;;50109:26:0;;50093:98;;;;-1:-1:-1;;;50093:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50206:16:0;;50198:66;;;;-1:-1:-1;;;50198:66:0;;;;;;;:::i;:::-;50273:43;50295:4;50301:2;50305:7;50314:1;50273:21;:43::i;:::-;50373:49;50390:1;50394:7;50403:13;:18;;;50373:8;:49::i;:::-;-1:-1:-1;;;;;50431:18:0;;;;;;:12;:18;;;;;:31;;50461:1;;50431:18;:31;;50461:1;;-1:-1:-1;;;;;50431:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;50431:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50469:16:0;;-1:-1:-1;50469:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;50469:16:0;;:29;;-1:-1:-1;;50469:29:0;;:::i;:::-;;;-1:-1:-1;;;;;50469:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50528:43:0;;;;;;;;-1:-1:-1;;;;;50528:43:0;;;;;;50554:15;50528:43;;;;;;;;;-1:-1:-1;50505:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;50505:66:0;-1:-1:-1;;;;50505:66:0;;;;-1:-1:-1;;;;;;50505:66:0;;;;;;;;50821:11;50517:7;-1:-1:-1;50821:11:0;:::i;:::-;50884:1;50843:24;;;:11;:24;;;;;:29;50799:33;;-1:-1:-1;;;;;;50843:29:0;50839:236;;50901:20;50909:11;50901:7;:20::i;:::-;50897:171;;;50961:97;;;;;;;;50988:18;;-1:-1:-1;;;;;50961:97:0;;;;;;51019:28;;;;50961:97;;;;;;;;;;-1:-1:-1;50934:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;50934:124:0;;;;;;;;;-1:-1:-1;;;;50934:124:0;-1:-1:-1;;;50934:124:0;;;;;;;;;;;;;;50897:171;51107:7;51103:2;-1:-1:-1;;;;;51088:27:0;51097:4;-1:-1:-1;;;;;51088:27:0;;;;;;;;;;;51122:42;51143:4;51149:2;51153:7;51162:1;51122:20;:42::i;:::-;49641:1529;;;;;;:::o;3671:98::-;3729:7;3756:5;3760:1;3756;:5;:::i;:::-;3749:12;3671:98;-1:-1:-1;;;3671:98:0:o;4070:::-;4128:7;4155:5;4159:1;4155;:5;:::i;47700:98::-;47765:27;47775:2;47779:8;47765:27;;;;;;;;;;;;:9;:27::i;43402:606::-;43478:21;;:::i;:::-;43519:16;43527:7;43519;:16::i;:::-;43511:71;;;;-1:-1:-1;;;43511:71:0;;;;;;;:::i;:::-;43591:26;43639:12;43628:7;:23;43624:93;;43683:22;43693:12;43683:7;:22;:::i;:::-;:26;;43708:1;43683:26;:::i;:::-;43662:47;;43624:93;43745:7;43725:212;43762:18;43754:4;:26;43725:212;;43799:31;43833:17;;;:11;:17;;;;;;;;;43799:51;;;;;;;;;-1:-1:-1;;;;;43799:51:0;;;;;-1:-1:-1;;;43799:51:0;;;;;;;;;;;;43863:28;43859:71;;43911:9;-1:-1:-1;43904:16:0;;-1:-1:-1;;43904:16:0;43859:71;-1:-1:-1;43782:6:0;;;;:::i;:::-;;;;43725:212;;;;43945:57;;-1:-1:-1;;;43945:57:0;;;;;;;:::i;19716:191::-;19809:6;;;-1:-1:-1;;;;;19826:17:0;;;-1:-1:-1;;;;;;19826:17:0;;;;;;;19859:40;;19809:6;;;19826:17;19809:6;;19859:40;;19790:16;;19859:40;19716:191;;:::o;52991:690::-;53128:4;53145:15;:2;-1:-1:-1;;;;;53145:13:0;;:15::i;:::-;53141:535;;;53200:2;-1:-1:-1;;;;;53184:36:0;;53221:12;:10;:12::i;:::-;53235:4;53241:7;53250:5;53184:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53184:72:0;;;;;;;;-1:-1:-1;;53184:72:0;;;;;;;;;;;;:::i;:::-;;;53171:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53415:13:0;;53411:215;;53448:61;;-1:-1:-1;;;53448:61:0;;;;;;;:::i;53411:215::-;53594:6;53588:13;53579:6;53575:2;53571:15;53564:38;53171:464;-1:-1:-1;;;;;;53306:55:0;-1:-1:-1;;;53306:55:0;;-1:-1:-1;53299:62:0;;53141:535;-1:-1:-1;53664:4:0;52991:690;;;;;;:::o;14732:723::-;14788:13;15009:10;15005:53;;-1:-1:-1;15036:10:0;;;;;;;;;;;;-1:-1:-1;;;15036:10:0;;;;;;15005:53;15083:5;15068:12;15124:78;15131:9;;15124:78;;15157:8;;;;:::i;:::-;;-1:-1:-1;15180:10:0;;-1:-1:-1;15188:2:0;15180:10;;:::i;:::-;;;15124:78;;;15212:19;15244:6;15234:17;;;;;;-1:-1:-1;;;15234:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15234:17:0;;15212:39;;15262:154;15269:10;;15262:154;;15296:11;15306:1;15296:11;;:::i;:::-;;-1:-1:-1;15365:10:0;15373:2;15365:5;:10;:::i;:::-;15352:24;;:2;:24;:::i;:::-;15339:39;;15322:6;15329;15322:14;;;;;;-1:-1:-1;;;15322:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;15322:56:0;;;;;;;;-1:-1:-1;15393:11:0;15402:2;15393:11;;:::i;:::-;;;15262:154;;46369:186;-1:-1:-1;;;;;46514:25:0;;;46491:4;46514:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46369:186::o;31846:157::-;-1:-1:-1;;;;;;31955:40:0;;-1:-1:-1;;;31955:40:0;31846:157;;;:::o;48137:1272::-;48242:20;48265:12;-1:-1:-1;;;;;48292:16:0;;48284:62;;;;-1:-1:-1;;;48284:62:0;;;;;;;:::i;:::-;48483:21;48491:12;48483:7;:21::i;:::-;48482:22;48474:64;;;;-1:-1:-1;;;48474:64:0;;;;;;;:::i;:::-;48565:12;48553:8;:24;;48545:71;;;;-1:-1:-1;;;48545:71:0;;;;;;;:::i;:::-;48625:61;48655:1;48659:2;48663:12;48677:8;48625:21;:61::i;:::-;-1:-1:-1;;;;;48728:16:0;;48695:30;48728:16;;;:12;:16;;;;;;;;;48695:49;;;;;;;;;-1:-1:-1;;;;;48695:49:0;;;;;-1:-1:-1;;;48695:49:0;;;;;;;;;;;48770:119;;;;;;;;48790:19;;48695:49;;48770:119;;;48790:39;;48820:8;;48790:39;:::i;:::-;-1:-1:-1;;;;;48770:119:0;;;;;48873:8;48838:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;48770:119:0;;;;;;-1:-1:-1;;;;;48751:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;48751:138:0;;;;-1:-1:-1;;48751:138:0;;;;;;;;;;;;;;;;;48924:43;;;;;;;;;;;48950:15;48924:43;;;;;;;;48896:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;48896:71:0;-1:-1:-1;;;;48896:71:0;;;;-1:-1:-1;;;;;;48896:71:0;;;;;;;;;;;;;;;48908:12;;49020:281;49044:8;49040:1;:12;49020:281;;;49073:38;;49098:12;;-1:-1:-1;;;;;49073:38:0;;;49090:1;;49073:38;;49090:1;;49073:38;49138:59;49169:1;49173:2;49177:12;49191:5;49138:22;:59::i;:::-;49120:150;;;;-1:-1:-1;;;49120:150:0;;;;;;;:::i;:::-;49279:14;;;;:::i;:::-;;;;49054:3;;;;;:::i;:::-;;;;49020:281;;;-1:-1:-1;49309:12:0;:27;;;49343:60;;49376:2;49380:12;49394:8;49343:20;:60::i;20734:387::-;21057:20;21105:8;;;20734:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:396::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2939;2898;2939;:::i;3008:327::-;;;3137:2;3125:9;3116:7;3112:23;3108:32;3105:2;;;3158:6;3150;3143:22;3105:2;3202:9;3189:23;3221:33;3248:5;3221:33;:::i;:::-;3273:5;3325:2;3310:18;;;;3297:32;;-1:-1:-1;;;3095:240:1:o;3340:253::-;;3449:2;3437:9;3428:7;3424:23;3420:32;3417:2;;;3470:6;3462;3455:22;3417:2;3514:9;3501:23;3533:30;3557:5;3533:30;:::i;3598:257::-;;3718:2;3706:9;3697:7;3693:23;3689:32;3686:2;;;3739:6;3731;3724:22;3686:2;3776:9;3770:16;3795:30;3819:5;3795:30;:::i;3860:257::-;;3971:2;3959:9;3950:7;3946:23;3942:32;3939:2;;;3992:6;3984;3977:22;3939:2;4036:9;4023:23;4055:32;4081:5;4055:32;:::i;4122:261::-;;4244:2;4232:9;4223:7;4219:23;4215:32;4212:2;;;4265:6;4257;4250:22;4212:2;4302:9;4296:16;4321:32;4347:5;4321:32;:::i;4666:292::-;;4818:2;4806:9;4797:7;4793:23;4789:32;4786:2;;;4839:6;4831;4824:22;4786:2;4876:9;4870:16;4895:33;4922:5;4895:33;:::i;4963:482::-;;5085:2;5073:9;5064:7;5060:23;5056:32;5053:2;;;5106:6;5098;5091:22;5053:2;5151:9;5138:23;5184:18;5176:6;5173:30;5170:2;;;5221:6;5213;5206:22;5170:2;5249:22;;5302:4;5294:13;;5290:27;-1:-1:-1;5280:2:1;;5336:6;5328;5321:22;5280:2;5364:75;5431:7;5426:2;5413:16;5408:2;5404;5400:11;5364:75;:::i;5450:190::-;;5562:2;5550:9;5541:7;5537:23;5533:32;5530:2;;;5583:6;5575;5568:22;5530:2;-1:-1:-1;5611:23:1;;5520:120;-1:-1:-1;5520:120:1:o;5645:194::-;;5768:2;5756:9;5747:7;5743:23;5739:32;5736:2;;;5789:6;5781;5774:22;5736:2;-1:-1:-1;5817:16:1;;5726:113;-1:-1:-1;5726:113:1:o;5844:258::-;;;5973:2;5961:9;5952:7;5948:23;5944:32;5941:2;;;5994:6;5986;5979:22;5941:2;-1:-1:-1;;6022:23:1;;;6092:2;6077:18;;;6064:32;;-1:-1:-1;5931:171:1:o;6107:259::-;;6188:5;6182:12;6215:6;6210:3;6203:19;6231:63;6287:6;6280:4;6275:3;6271:14;6264:4;6257:5;6253:16;6231:63;:::i;:::-;6348:2;6327:15;-1:-1:-1;;6323:29:1;6314:39;;;;6355:4;6310:50;;6158:208;-1:-1:-1;;6158:208:1:o;6371:187::-;;6453:5;6447:12;6468:52;6513:6;6508:3;6501:4;6494:5;6490:16;6468:52;:::i;:::-;6536:16;;;;;6423:135;-1:-1:-1;;6423:135:1:o;6563:120::-;-1:-1:-1;;;6630:20:1;;6675:1;6666:11;;6620:63::o;6688:116::-;-1:-1:-1;;;6755:16:1;;6796:1;6787:11;;6745:59::o;6809:1449::-;7245:13;;6809:1449;;;;7318:1;7303:17;;7339:1;7375:18;;;;7402:2;;7456:4;7448:6;7444:17;7434:27;;7402:2;7482;7530;7522:6;7519:14;7499:18;7496:38;7493:2;;;-1:-1:-1;;;7557:33:1;;7613:4;7610:1;7603:15;7643:4;7564:3;7631:17;7493:2;7674:18;7701:104;;;;7819:1;7814:324;;;;7667:471;;7701:104;-1:-1:-1;;7734:24:1;;7722:37;;7779:16;;;;-1:-1:-1;7701:104:1;;7814:324;7850:39;7882:6;7850:39;:::i;:::-;7911:3;7927:165;7941:6;7938:1;7935:13;7927:165;;;8019:14;;8006:11;;;7999:35;8062:16;;;;7956:10;;7927:165;;;7931:3;;8121:6;8116:3;8112:16;8105:23;;7667:471;;;;;;;8154:98;8186:65;8214:36;8246:3;8214:36;:::i;:::-;8206:6;8186:65;:::i;:::-;8154:98;:::i;:::-;8147:105;7195:1063;-1:-1:-1;;;;;7195:1063:1:o;8263:203::-;-1:-1:-1;;;;;8427:32:1;;;;8409:51;;8397:2;8382:18;;8364:102::o;8471:490::-;-1:-1:-1;;;;;8740:15:1;;;8722:34;;8792:15;;8787:2;8772:18;;8765:43;8839:2;8824:18;;8817:34;;;8887:3;8882:2;8867:18;;8860:31;;;8471:490;;8908:47;;8935:19;;8927:6;8908:47;:::i;:::-;8900:55;8674:287;-1:-1:-1;;;;;;8674:287:1:o;8966:274::-;-1:-1:-1;;;;;9158:32:1;;;;9140:51;;9222:2;9207:18;;9200:34;9128:2;9113:18;;9095:145::o;9245:187::-;9410:14;;9403:22;9385:41;;9373:2;9358:18;;9340:92::o;9437:221::-;;9586:2;9575:9;9568:21;9606:46;9648:2;9637:9;9633:18;9625:6;9606:46;:::i;9663:398::-;9865:2;9847:21;;;9904:2;9884:18;;;9877:30;9943:34;9938:2;9923:18;;9916:62;-1:-1:-1;;;10009:2:1;9994:18;;9987:32;10051:3;10036:19;;9837:224::o;10066:402::-;10268:2;10250:21;;;10307:2;10287:18;;;10280:30;10346:34;10341:2;10326:18;;10319:62;-1:-1:-1;;;10412:2:1;10397:18;;10390:36;10458:3;10443:19;;10240:228::o;10473:406::-;10675:2;10657:21;;;10714:2;10694:18;;;10687:30;10753:34;10748:2;10733:18;;10726:62;-1:-1:-1;;;10819:2:1;10804:18;;10797:40;10869:3;10854:19;;10647:232::o;10884:399::-;11086:2;11068:21;;;11125:2;11105:18;;;11098:30;11164:34;11159:2;11144:18;;11137:62;-1:-1:-1;;;11230:2:1;11215:18;;11208:33;11273:3;11258:19;;11058:225::o;11288:398::-;11490:2;11472:21;;;11529:2;11509:18;;;11502:30;11568:34;11563:2;11548:18;;11541:62;-1:-1:-1;;;11634:2:1;11619:18;;11612:32;11676:3;11661:19;;11462:224::o;11691:401::-;11893:2;11875:21;;;11932:2;11912:18;;;11905:30;11971:34;11966:2;11951:18;;11944:62;-1:-1:-1;;;12037:2:1;12022:18;;12015:35;12082:3;12067:19;;11865:227::o;12500:341::-;12702:2;12684:21;;;12741:2;12721:18;;;12714:30;-1:-1:-1;;;12775:2:1;12760:18;;12753:47;12832:2;12817:18;;12674:167::o;12846:421::-;13048:2;13030:21;;;13087:2;13067:18;;;13060:30;13126:34;13121:2;13106:18;;13099:62;13197:27;13192:2;13177:18;;13170:55;13257:3;13242:19;;13020:247::o;13272:407::-;13474:2;13456:21;;;13513:2;13493:18;;;13486:30;13552:34;13547:2;13532:18;;13525:62;-1:-1:-1;;;13618:2:1;13603:18;;13596:41;13669:3;13654:19;;13446:233::o;13684:402::-;13886:2;13868:21;;;13925:2;13905:18;;;13898:30;13964:34;13959:2;13944:18;;13937:62;-1:-1:-1;;;14030:2:1;14015:18;;14008:36;14076:3;14061:19;;13858:228::o;14091:356::-;14293:2;14275:21;;;14312:18;;;14305:30;14371:34;14366:2;14351:18;;14344:62;14438:2;14423:18;;14265:182::o;14452:350::-;14654:2;14636:21;;;14693:2;14673:18;;;14666:30;14732:28;14727:2;14712:18;;14705:56;14793:2;14778:18;;14626:176::o;14807:414::-;15009:2;14991:21;;;15048:2;15028:18;;;15021:30;15087:34;15082:2;15067:18;;15060:62;-1:-1:-1;;;15153:2:1;15138:18;;15131:48;15211:3;15196:19;;14981:240::o;15226:398::-;15428:2;15410:21;;;15467:2;15447:18;;;15440:30;15506:34;15501:2;15486:18;;15479:62;-1:-1:-1;;;15572:2:1;15557:18;;15550:32;15614:3;15599:19;;15400:224::o;15629:415::-;15831:2;15813:21;;;15870:2;15850:18;;;15843:30;15909:34;15904:2;15889:18;;15882:62;-1:-1:-1;;;15975:2:1;15960:18;;15953:49;16034:3;16019:19;;15803:241::o;16049:353::-;16251:2;16233:21;;;16290:2;16270:18;;;16263:30;16329:31;16324:2;16309:18;;16302:59;16393:2;16378:18;;16223:179::o;16407:397::-;16609:2;16591:21;;;16648:2;16628:18;;;16621:30;16687:34;16682:2;16667:18;;16660:62;-1:-1:-1;;;16753:2:1;16738:18;;16731:31;16794:3;16779:19;;16581:223::o;16809:352::-;17011:2;16993:21;;;17050:2;17030:18;;;17023:30;17089;17084:2;17069:18;;17062:58;17152:2;17137:18;;16983:178::o;17166:348::-;17368:2;17350:21;;;17407:2;17387:18;;;17380:30;17446:26;17441:2;17426:18;;17419:54;17505:2;17490:18;;17340:174::o;17519:410::-;17721:2;17703:21;;;17760:2;17740:18;;;17733:30;17799:34;17794:2;17779:18;;17772:62;-1:-1:-1;;;17865:2:1;17850:18;;17843:44;17919:3;17904:19;;17693:236::o;17934:355::-;18136:2;18118:21;;;18175:2;18155:18;;;18148:30;18214:33;18209:2;18194:18;;18187:61;18280:2;18265:18;;18108:181::o;18294:411::-;18496:2;18478:21;;;18535:2;18515:18;;;18508:30;18574:34;18569:2;18554:18;;18547:62;-1:-1:-1;;;18640:2:1;18625:18;;18618:45;18695:3;18680:19;;18468:237::o;18710:347::-;18912:2;18894:21;;;18951:2;18931:18;;;18924:30;18990:25;18985:2;18970:18;;18963:53;19048:2;19033:18;;18884:173::o;19062:409::-;19264:2;19246:21;;;19303:2;19283:18;;;19276:30;19342:34;19337:2;19322:18;;19315:62;-1:-1:-1;;;19408:2:1;19393:18;;19386:43;19461:3;19446:19;;19236:235::o;19476:398::-;19678:2;19660:21;;;19717:2;19697:18;;;19690:30;19756:34;19751:2;19736:18;;19729:62;-1:-1:-1;;;19822:2:1;19807:18;;19800:32;19864:3;19849:19;;19650:224::o;19879:177::-;20025:25;;;20013:2;19998:18;;19980:76::o;20061:129::-;;20129:17;;;20179:4;20163:21;;;20119:71::o;20195:253::-;;-1:-1:-1;;;;;20324:2:1;20321:1;20317:10;20354:2;20351:1;20347:10;20385:3;20381:2;20377:12;20372:3;20369:21;20366:2;;;20393:18;;:::i;:::-;20429:13;;20243:205;-1:-1:-1;;;;20243:205:1:o;20453:128::-;;20524:1;20520:6;20517:1;20514:13;20511:2;;;20530:18;;:::i;:::-;-1:-1:-1;20566:9:1;;20501:80::o;20586:120::-;;20652:1;20642:2;;20657:18;;:::i;:::-;-1:-1:-1;20691:9:1;;20632:74::o;20711:168::-;;20817:1;20813;20809:6;20805:14;20802:1;20799:21;20794:1;20787:9;20780:17;20776:45;20773:2;;;20824:18;;:::i;:::-;-1:-1:-1;20864:9:1;;20763:116::o;20884:246::-;;-1:-1:-1;;;;;21037:10:1;;;;21007;;21059:12;;;21056:2;;;21074:18;;:::i;:::-;21111:13;;20933:197;-1:-1:-1;;;20933:197:1:o;21135:125::-;;21203:1;21200;21197:8;21194:2;;;21208:18;;:::i;:::-;-1:-1:-1;21245:9:1;;21184:76::o;21265:258::-;21337:1;21347:113;21361:6;21358:1;21355:13;21347:113;;;21437:11;;;21431:18;21418:11;;;21411:39;21383:2;21376:10;21347:113;;;21478:6;21475:1;21472:13;21469:2;;;-1:-1:-1;;21513:1:1;21495:16;;21488:27;21318:205::o;21528:136::-;;21595:5;21585:2;;21604:18;;:::i;:::-;-1:-1:-1;;;21640:18:1;;21575:89::o;21669:380::-;21754:1;21744:12;;21801:1;21791:12;;;21812:2;;21866:4;21858:6;21854:17;21844:27;;21812:2;21919;21911:6;21908:14;21888:18;21885:38;21882:2;;;21965:10;21960:3;21956:20;21953:1;21946:31;22000:4;21997:1;21990:15;22028:4;22025:1;22018:15;21882:2;;21724:325;;;:::o;22054:135::-;;-1:-1:-1;;22114:17:1;;22111:2;;;22134:18;;:::i;:::-;-1:-1:-1;22181:1:1;22170:13;;22101:88::o;22194:112::-;;22252:1;22242:2;;22257:18;;:::i;:::-;-1:-1:-1;22291:9:1;;22232:74::o;22311:127::-;22372:10;22367:3;22363:20;22360:1;22353:31;22403:4;22400:1;22393:15;22427:4;22424:1;22417:15;22443:127;22504:10;22499:3;22495:20;22492:1;22485:31;22535:4;22532:1;22525:15;22559:4;22556:1;22549:15;22575:127;22636:10;22631:3;22627:20;22624:1;22617:31;22667:4;22664:1;22657:15;22691:4;22688:1;22681:15;22707:133;-1:-1:-1;;;;;22784:31:1;;22774:42;;22764:2;;22830:1;22827;22820:12;22845:120;22933:5;22926:13;22919:21;22912:5;22909:32;22899:2;;22955:1;22952;22945:12;22970:133;-1:-1:-1;;;;;;23046:32:1;;23036:43;;23026:2;;23093:1;23090;23083:12

Swarm Source

ipfs://316712c44964dca20e26fbee7eb3a5d68c3fb60968971700fc24af14ea4f1716
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.