ETH Price: $3,072.52 (+2.72%)
Gas: 4 Gwei

Token

bieberDAO (BIEBERDAO)
 

Overview

Max Total Supply

622 BIEBERDAO

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
leobros.eth
Balance
20 BIEBERDAO
0xBE80892B967a1EF38708B23e41A9423c797Cf5b1
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:
bieberDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;







contract bieberDAO is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "ipfs://QmVxBQxxngPC6VTtZ4ms2cWwAmgbBqWsSXKYbDNNUczXD5";
    address private openSeaProxyRegistryAddress = 0x4CE545596f5d583bA3193aFb35AE45112E11ACf2;
    bool private isOpenSeaProxyActive = true;

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

    uint256 public constant PUBLIC_SALE_PRICE = 0.02 ether;
    uint256 public NUM_FREE_MINTS = 577;
    bool public isPublicSaleActive = false;

    mapping(address => bool) public whitelisted;
    address[] public whitelistedAddresses;




    // ============ 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("bieberDAO", "BIEBERDAO", 100, maxSupply) {
    }

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

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

        _safeMint(msg.sender, numberOfTokens);
    }



    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too
    function freeMint(uint256 numberOfTokens)
        external
        nonReentrant
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
        freeMintsAvailable()
    {
        _safeMint(msg.sender, numberOfTokens);
    }

    //Free minting for whitelisted early OGs
    function freeWhitelistMint(uint256 numberOfTokens)
        external
        nonReentrant
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
        freeMintsAvailable()
    {
        require(whitelisted[msg.sender] == true, "Address not whitelisted");
        if(whitelisted[msg.sender] == true) {
          _safeMint(msg.sender, numberOfTokens);
          whitelisted[msg.sender] = false;
        }
    }




    // ============ 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);
    }

    function whitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }
 
    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function whitelistUsers(address[] calldata _users) public onlyOwner {
        delete whitelistedAddresses;
        whitelistedAddresses = _users;
        for(uint256 i = 0; i < whitelistedAddresses.length; i++){
          whitelisted[whitelistedAddresses[i]] = true;
        }
    }



    // ============ 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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeWhitelistMint","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}]

6000808055600755610120604052603560c0818152906200302e60e03980516200003291600b9160209091019062000236565b50600c80546001600160a81b03191674014ce545596f5d583ba3193afb35ae45112e11acf2179055610435600d55610241600e55600f805460ff191690553480156200007d57600080fd5b506040518060400160405280600981526020016862696562657244414f60b81b8152506040518060400160405280600981526020016842494542455244414f60b81b8152506064600d5460008111620001345760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001965760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200012b565b8351620001ab90600190602087019062000236565b508251620001c190600290602086019062000236565b5060a09190915260805250620001d9905033620001e4565b600160095562000319565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200024490620002dc565b90600052602060002090601f016020900481019282620002685760008555620002b3565b82601f106200028357805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b357825182559160200191906001019062000296565b50620002c1929150620002c5565b5090565b5b80821115620002c15760008155600101620002c6565b600181811c90821680620002f157607f821691505b602082108114156200031357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612ce46200034a60003960008181611d0b01528181611d350152612167015260005050612ce46000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610699578063d936547e146106af578063e43082f7146106df578063e985e9c5146106ff578063edec5f271461071f578063f2fde38b1461073f57600080fd5b8063b88d4fde1461060e578063ba4e5c491461062e578063c6a91b421461064e578063c87b56dd14610663578063d5abeb011461068357600080fd5b806395d89b41116100fd57806395d89b411461059057806397c38b4e146105a5578063982d669e146105c5578063a0712d68146105db578063a22cb465146105ee57600080fd5b806370a0823114610508578063714c539814610528578063715018a61461053d5780637c928fe9146105525780638da5cb5b1461057257600080fd5b80632a55205a116101c757806349df728c1161018b57806349df728c146104685780634a4c560d146104885780634f6ccce7146104a857806355f804b3146104c85780636352211e146104e857600080fd5b80632a55205a146103b45780632f745c59146103f357806330cc7ae0146104135780633ccfd60b1461043357806342842e0e1461044857600080fd5b80630a00ae831161020e5780630a00ae831461032557806318160ddd146103455780631e84c4131461035a57806323b872dd1461037457806328cad13d1461039457600080fd5b806301ffc9a71461024b57806306fdde031461028057806307e89ec0146102a2578063081812fc146102cb578063095ea7b314610303575b600080fd5b34801561025757600080fd5b5061026b610266366004612721565b61075f565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561078a565b6040516102779190612965565b3480156102ae57600080fd5b506102bd66470de4df82000081565b604051908152602001610277565b3480156102d757600080fd5b506102eb6102e63660046127c1565b61081c565b6040516001600160a01b039091168152602001610277565b34801561030f57600080fd5b5061032361031e366004612646565b6108ac565b005b34801561033157600080fd5b506103236103403660046127c1565b6109c4565b34801561035157600080fd5b506000546102bd565b34801561036657600080fd5b50600f5461026b9060ff1681565b34801561038057600080fd5b5061032361038f366004612557565b6109f3565b3480156103a057600080fd5b506103236103af3660046126e7565b6109fe565b3480156103c057600080fd5b506103d46103cf3660046127f3565b610a3b565b604080516001600160a01b039093168352602083019190915201610277565b3480156103ff57600080fd5b506102bd61040e366004612646565b610aaa565b34801561041f57600080fd5b5061032361042e366004612501565b610c18565b34801561043f57600080fd5b50610323610c63565b34801561045457600080fd5b50610323610463366004612557565b610cc0565b34801561047457600080fd5b50610323610483366004612501565b610cdb565b34801561049457600080fd5b506103236104a3366004612501565b610e02565b3480156104b457600080fd5b506102bd6104c33660046127c1565b610e50565b3480156104d457600080fd5b506103236104e3366004612778565b610eb2565b3480156104f457600080fd5b506102eb6105033660046127c1565b610eef565b34801561051457600080fd5b506102bd610523366004612501565b610f01565b34801561053457600080fd5b50610295610f92565b34801561054957600080fd5b50610323610fa1565b34801561055e57600080fd5b5061032361056d3660046127c1565b610fd7565b34801561057e57600080fd5b506008546001600160a01b03166102eb565b34801561059c57600080fd5b5061029561110b565b3480156105b157600080fd5b506103236105c03660046127c1565b61111a565b3480156105d157600080fd5b506102bd600e5481565b6103236105e93660046127c1565b61129b565b3480156105fa57600080fd5b50610323610609366004612618565b6113ec565b34801561061a57600080fd5b50610323610629366004612598565b6114b1565b34801561063a57600080fd5b506102eb6106493660046127c1565b6114ea565b34801561065a57600080fd5b506102bd601481565b34801561066f57600080fd5b5061029561067e3660046127c1565b611514565b34801561068f57600080fd5b506102bd600d5481565b3480156106a557600080fd5b506102bd60075481565b3480156106bb57600080fd5b5061026b6106ca366004612501565b60106020526000908152604090205460ff1681565b3480156106eb57600080fd5b506103236106fa3660046126e7565b61159d565b34801561070b57600080fd5b5061026b61071a36600461251e565b6115e5565b34801561072b57600080fd5b5061032361073a366004612672565b6116d1565b34801561074b57600080fd5b5061032361075a366004612501565b611780565b60006001600160e01b0319821663152a902d60e11b148061078457506107848261181b565b92915050565b60606001805461079990612bb3565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612bb3565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b6000610829826000541190565b6108905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b782610eef565b9050806001600160a01b0316836001600160a01b031614156109265760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610887565b336001600160a01b0382161480610942575061094281336115e5565b6109b45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610887565b6109bf838383611886565b505050565b6008546001600160a01b031633146109ee5760405162461bcd60e51b8152600401610887906129fc565b600e55565b6109bf8383836118e2565b6008546001600160a01b03163314610a285760405162461bcd60e51b8152600401610887906129fc565b600f805460ff1916911515919091179055565b600080610a49846000541190565b610a895760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610887565b30610a9f610a98856005611c6a565b6064611c7d565b915091509250929050565b6000610ab583610f01565b8210610b0e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610887565b600080549080805b83811015610bb8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6957805192505b876001600160a01b0316836001600160a01b03161415610ba55786841415610b975750935061078492505050565b83610ba181612bee565b9450505b5080610bb081612bee565b915050610b16565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610887565b6008546001600160a01b03163314610c425760405162461bcd60e51b8152600401610887906129fc565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b8152600401610887906129fc565b6040514790339082156108fc029083906000818181858888f19350505050158015610cbc573d6000803e3d6000fd5b5050565b6109bf838383604051806020016040528060008152506114b1565b6008546001600160a01b03163314610d055760405162461bcd60e51b8152600401610887906129fc565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610d4757600080fd5b505afa158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f91906127da565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610dca57600080fd5b505af1158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf9190612704565b6008546001600160a01b03163314610e2c5760405162461bcd60e51b8152600401610887906129fc565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b600080548210610eae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610887565b5090565b6008546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610887906129fc565b8051610cbc90600b906020840190612385565b6000610efa82611c89565b5192915050565b60006001600160a01b038216610f6d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610887565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461079990612bb3565b6008546001600160a01b03163314610fcb5760405162461bcd60e51b8152600401610887906129fc565b610fd56000611e33565b565b60026009541415610ffa5760405162461bcd60e51b815260040161088790612a84565b6002600955600f5460ff1661104b5760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610887565b80600d548161105960005490565b6110639190612ae6565b11156110815760405162461bcd60e51b815260040161088790612978565b8160148111156110a35760405162461bcd60e51b8152600401610887906129ba565b600e5460005411156110f75760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610887565b6111013384611e85565b5050600160095550565b60606002805461079990612bb3565b6002600954141561113d5760405162461bcd60e51b815260040161088790612a84565b6002600955600d5481908161115160005490565b61115b9190612ae6565b11156111795760405162461bcd60e51b815260040161088790612978565b81601481111561119b5760405162461bcd60e51b8152600401610887906129ba565b600e5460005411156111ef5760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610887565b3360009081526010602052604090205460ff1615156001146112535760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610887565b3360009081526010602052604090205460ff161515600114156111015761127a3384611e85565b336000908152601060205260409020805460ff191690555050600160095550565b600260095414156112be5760405162461bcd60e51b815260040161088790612a84565b6002600955600e5460005466470de4df820000918391111561133257346112e58284612b12565b146113325760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610887565b600f5460ff1661137e5760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610887565b82600d548161138c60005490565b6113969190612ae6565b11156113b45760405162461bcd60e51b815260040161088790612978565b8360148111156113d65760405162461bcd60e51b8152600401610887906129ba565b6113e03386611e85565b50506001600955505050565b6001600160a01b0382163314156114455760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610887565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114bc8484846118e2565b6114c884848484611e9f565b6114e45760405162461bcd60e51b815260040161088790612a31565b50505050565b601181815481106114fa57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060611521826000541190565b6115615760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610887565b600b611576611571846001612ae6565b611fac565b60405160200161158792919061285d565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146115c75760405162461bcd60e51b8152600401610887906129fc565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff168015611690575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561164d57600080fd5b505afa158015611661573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611685919061275b565b6001600160a01b0316145b1561169f576001915050610784565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146116fb5760405162461bcd60e51b8152600401610887906129fc565b61170760116000612405565b61171360118383612423565b5060005b6011548110156109bf576001601060006011848154811061173a5761173a612c49565b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff19169115159190911790558061177881612bee565b915050611717565b6008546001600160a01b031633146117aa5760405162461bcd60e51b8152600401610887906129fc565b6001600160a01b03811661180f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610887565b61181881611e33565b50565b60006001600160e01b031982166380ac58cd60e01b148061184c57506001600160e01b03198216635b5e139f60e01b145b8061186757506001600160e01b0319821663780e9d6360e01b145b8061078457506301ffc9a760e01b6001600160e01b0319831614610784565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118ed82611c89565b80519091506000906001600160a01b0316336001600160a01b031614806119245750336119198461081c565b6001600160a01b0316145b806119365750815161193690336115e5565b9050806119a05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610887565b846001600160a01b031682600001516001600160a01b031614611a145760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610887565b6001600160a01b038416611a785760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610887565b611a886000848460000151611886565b6001600160a01b0385166000908152600460205260408120805460019290611aba9084906001600160801b0316612b31565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b0691859116612abb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611b8e846001612ae6565b6000818152600360205260409020549091506001600160a01b0316611c2057611bb8816000541190565b15611c205760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611c768284612b12565b9392505050565b6000611c768284612afe565b6040805180820190915260008082526020820152611ca8826000541190565b611d075760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610887565b60007f00000000000000000000000000000000000000000000000000000000000000008310611d6857611d5a7f000000000000000000000000000000000000000000000000000000000000000084612b59565b611d65906001612ae6565b90505b825b818110611dd2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611dbf57949350505050565b5080611dca81612b9c565b915050611d6a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610887565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cbc8282604051806020016040528060008152506120aa565b60006001600160a01b0384163b15611fa157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee3903390899088908890600401612928565b602060405180830381600087803b158015611efd57600080fd5b505af1925050508015611f2d575060408051601f3d908101601f19168201909252611f2a9181019061273e565b60015b611f87573d808015611f5b576040519150601f19603f3d011682016040523d82523d6000602084013e611f60565b606091505b508051611f7f5760405162461bcd60e51b815260040161088790612a31565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116c9565b506001949350505050565b606081611fd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ffa5780611fe481612bee565b9150611ff39050600a83612afe565b9150611fd4565b60008167ffffffffffffffff81111561201557612015612c5f565b6040519080825280601f01601f19166020018201604052801561203f576020820181803683370190505b5090505b84156116c957612054600183612b59565b9150612061600a86612c09565b61206c906030612ae6565b60f81b81838151811061208157612081612c49565b60200101906001600160f81b031916908160001a9053506120a3600a86612afe565b9450612043565b6000546001600160a01b03841661210d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610887565b612118816000541190565b156121655760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610887565b7f00000000000000000000000000000000000000000000000000000000000000008311156121e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610887565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061223c908790612abb565b6001600160801b0316815260200185836020015161225a9190612abb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561237a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461233e6000888488611e9f565b61235a5760405162461bcd60e51b815260040161088790612a31565b8161236481612bee565b925050808061237290612bee565b9150506122f1565b506000819055611c62565b82805461239190612bb3565b90600052602060002090601f0160209004810192826123b357600085556123f9565b82601f106123cc57805160ff19168380011785556123f9565b828001600101855582156123f9579182015b828111156123f95782518255916020019190600101906123de565b50610eae929150612476565b50805460008255906000526020600020908101906118189190612476565b8280548282559060005260206000209081019282156123f9579160200282015b828111156123f95781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612443565b5b80821115610eae5760008155600101612477565b600067ffffffffffffffff808411156124a6576124a6612c5f565b604051601f8501601f19908116603f011681019082821181831017156124ce576124ce612c5f565b816040528093508581528686860111156124e757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251357600080fd5b8135611c7681612c75565b6000806040838503121561253157600080fd5b823561253c81612c75565b9150602083013561254c81612c75565b809150509250929050565b60008060006060848603121561256c57600080fd5b833561257781612c75565b9250602084013561258781612c75565b929592945050506040919091013590565b600080600080608085870312156125ae57600080fd5b84356125b981612c75565b935060208501356125c981612c75565b925060408501359150606085013567ffffffffffffffff8111156125ec57600080fd5b8501601f810187136125fd57600080fd5b61260c8782356020840161248b565b91505092959194509250565b6000806040838503121561262b57600080fd5b823561263681612c75565b9150602083013561254c81612c8a565b6000806040838503121561265957600080fd5b823561266481612c75565b946020939093013593505050565b6000806020838503121561268557600080fd5b823567ffffffffffffffff8082111561269d57600080fd5b818501915085601f8301126126b157600080fd5b8135818111156126c057600080fd5b8660208260051b85010111156126d557600080fd5b60209290920196919550909350505050565b6000602082840312156126f957600080fd5b8135611c7681612c8a565b60006020828403121561271657600080fd5b8151611c7681612c8a565b60006020828403121561273357600080fd5b8135611c7681612c98565b60006020828403121561275057600080fd5b8151611c7681612c98565b60006020828403121561276d57600080fd5b8151611c7681612c75565b60006020828403121561278a57600080fd5b813567ffffffffffffffff8111156127a157600080fd5b8201601f810184136127b257600080fd5b6116c98482356020840161248b565b6000602082840312156127d357600080fd5b5035919050565b6000602082840312156127ec57600080fd5b5051919050565b6000806040838503121561280657600080fd5b50508035926020909101359150565b6000815180845261282d816020860160208601612b70565b601f01601f19169290920160200192915050565b60008151612853818560208601612b70565b9290920192915050565b600080845481600182811c91508083168061287957607f831692505b602080841082141561289957634e487b7160e01b86526022600452602486fd5b8180156128ad57600181146128be576128eb565b60ff198616895284890196506128eb565b60008b81526020902060005b868110156128e35781548b8201529085019083016128ca565b505084890196505b50505050505061291f61290e61290883602f60f81b815260010190565b86612841565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295b90830184612815565b9695505050505050565b602081526000611c766020830184612815565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b03808316818516808303821115612add57612add612c1d565b01949350505050565b60008219821115612af957612af9612c1d565b500190565b600082612b0d57612b0d612c33565b500490565b6000816000190483118215151615612b2c57612b2c612c1d565b500290565b60006001600160801b0383811690831681811015612b5157612b51612c1d565b039392505050565b600082821015612b6b57612b6b612c1d565b500390565b60005b83811015612b8b578181015183820152602001612b73565b838111156114e45750506000910152565b600081612bab57612bab612c1d565b506000190190565b600181811c90821680612bc757607f821691505b60208210811415612be857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0257612c02612c1d565b5060010190565b600082612c1857612c18612c33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461181857600080fd5b801515811461181857600080fd5b6001600160e01b03198116811461181857600080fdfea2646970667358221220500df8090f40e3ef6024d9926adb2da0aa0db11f896a302a23ed1d27e8fb4f5d64736f6c63430008070033697066733a2f2f516d5678425178786e675043365654745a346d7332635777416d67624271577353584b5962444e4e55637a584435

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610699578063d936547e146106af578063e43082f7146106df578063e985e9c5146106ff578063edec5f271461071f578063f2fde38b1461073f57600080fd5b8063b88d4fde1461060e578063ba4e5c491461062e578063c6a91b421461064e578063c87b56dd14610663578063d5abeb011461068357600080fd5b806395d89b41116100fd57806395d89b411461059057806397c38b4e146105a5578063982d669e146105c5578063a0712d68146105db578063a22cb465146105ee57600080fd5b806370a0823114610508578063714c539814610528578063715018a61461053d5780637c928fe9146105525780638da5cb5b1461057257600080fd5b80632a55205a116101c757806349df728c1161018b57806349df728c146104685780634a4c560d146104885780634f6ccce7146104a857806355f804b3146104c85780636352211e146104e857600080fd5b80632a55205a146103b45780632f745c59146103f357806330cc7ae0146104135780633ccfd60b1461043357806342842e0e1461044857600080fd5b80630a00ae831161020e5780630a00ae831461032557806318160ddd146103455780631e84c4131461035a57806323b872dd1461037457806328cad13d1461039457600080fd5b806301ffc9a71461024b57806306fdde031461028057806307e89ec0146102a2578063081812fc146102cb578063095ea7b314610303575b600080fd5b34801561025757600080fd5b5061026b610266366004612721565b61075f565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561078a565b6040516102779190612965565b3480156102ae57600080fd5b506102bd66470de4df82000081565b604051908152602001610277565b3480156102d757600080fd5b506102eb6102e63660046127c1565b61081c565b6040516001600160a01b039091168152602001610277565b34801561030f57600080fd5b5061032361031e366004612646565b6108ac565b005b34801561033157600080fd5b506103236103403660046127c1565b6109c4565b34801561035157600080fd5b506000546102bd565b34801561036657600080fd5b50600f5461026b9060ff1681565b34801561038057600080fd5b5061032361038f366004612557565b6109f3565b3480156103a057600080fd5b506103236103af3660046126e7565b6109fe565b3480156103c057600080fd5b506103d46103cf3660046127f3565b610a3b565b604080516001600160a01b039093168352602083019190915201610277565b3480156103ff57600080fd5b506102bd61040e366004612646565b610aaa565b34801561041f57600080fd5b5061032361042e366004612501565b610c18565b34801561043f57600080fd5b50610323610c63565b34801561045457600080fd5b50610323610463366004612557565b610cc0565b34801561047457600080fd5b50610323610483366004612501565b610cdb565b34801561049457600080fd5b506103236104a3366004612501565b610e02565b3480156104b457600080fd5b506102bd6104c33660046127c1565b610e50565b3480156104d457600080fd5b506103236104e3366004612778565b610eb2565b3480156104f457600080fd5b506102eb6105033660046127c1565b610eef565b34801561051457600080fd5b506102bd610523366004612501565b610f01565b34801561053457600080fd5b50610295610f92565b34801561054957600080fd5b50610323610fa1565b34801561055e57600080fd5b5061032361056d3660046127c1565b610fd7565b34801561057e57600080fd5b506008546001600160a01b03166102eb565b34801561059c57600080fd5b5061029561110b565b3480156105b157600080fd5b506103236105c03660046127c1565b61111a565b3480156105d157600080fd5b506102bd600e5481565b6103236105e93660046127c1565b61129b565b3480156105fa57600080fd5b50610323610609366004612618565b6113ec565b34801561061a57600080fd5b50610323610629366004612598565b6114b1565b34801561063a57600080fd5b506102eb6106493660046127c1565b6114ea565b34801561065a57600080fd5b506102bd601481565b34801561066f57600080fd5b5061029561067e3660046127c1565b611514565b34801561068f57600080fd5b506102bd600d5481565b3480156106a557600080fd5b506102bd60075481565b3480156106bb57600080fd5b5061026b6106ca366004612501565b60106020526000908152604090205460ff1681565b3480156106eb57600080fd5b506103236106fa3660046126e7565b61159d565b34801561070b57600080fd5b5061026b61071a36600461251e565b6115e5565b34801561072b57600080fd5b5061032361073a366004612672565b6116d1565b34801561074b57600080fd5b5061032361075a366004612501565b611780565b60006001600160e01b0319821663152a902d60e11b148061078457506107848261181b565b92915050565b60606001805461079990612bb3565b80601f01602080910402602001604051908101604052809291908181526020018280546107c590612bb3565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b6000610829826000541190565b6108905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b782610eef565b9050806001600160a01b0316836001600160a01b031614156109265760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610887565b336001600160a01b0382161480610942575061094281336115e5565b6109b45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610887565b6109bf838383611886565b505050565b6008546001600160a01b031633146109ee5760405162461bcd60e51b8152600401610887906129fc565b600e55565b6109bf8383836118e2565b6008546001600160a01b03163314610a285760405162461bcd60e51b8152600401610887906129fc565b600f805460ff1916911515919091179055565b600080610a49846000541190565b610a895760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610887565b30610a9f610a98856005611c6a565b6064611c7d565b915091509250929050565b6000610ab583610f01565b8210610b0e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610887565b600080549080805b83811015610bb8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6957805192505b876001600160a01b0316836001600160a01b03161415610ba55786841415610b975750935061078492505050565b83610ba181612bee565b9450505b5080610bb081612bee565b915050610b16565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610887565b6008546001600160a01b03163314610c425760405162461bcd60e51b8152600401610887906129fc565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b8152600401610887906129fc565b6040514790339082156108fc029083906000818181858888f19350505050158015610cbc573d6000803e3d6000fd5b5050565b6109bf838383604051806020016040528060008152506114b1565b6008546001600160a01b03163314610d055760405162461bcd60e51b8152600401610887906129fc565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610d4757600080fd5b505afa158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f91906127da565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610dca57600080fd5b505af1158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bf9190612704565b6008546001600160a01b03163314610e2c5760405162461bcd60e51b8152600401610887906129fc565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b600080548210610eae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610887565b5090565b6008546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610887906129fc565b8051610cbc90600b906020840190612385565b6000610efa82611c89565b5192915050565b60006001600160a01b038216610f6d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610887565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461079990612bb3565b6008546001600160a01b03163314610fcb5760405162461bcd60e51b8152600401610887906129fc565b610fd56000611e33565b565b60026009541415610ffa5760405162461bcd60e51b815260040161088790612a84565b6002600955600f5460ff1661104b5760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610887565b80600d548161105960005490565b6110639190612ae6565b11156110815760405162461bcd60e51b815260040161088790612978565b8160148111156110a35760405162461bcd60e51b8152600401610887906129ba565b600e5460005411156110f75760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610887565b6111013384611e85565b5050600160095550565b60606002805461079990612bb3565b6002600954141561113d5760405162461bcd60e51b815260040161088790612a84565b6002600955600d5481908161115160005490565b61115b9190612ae6565b11156111795760405162461bcd60e51b815260040161088790612978565b81601481111561119b5760405162461bcd60e51b8152600401610887906129ba565b600e5460005411156111ef5760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610887565b3360009081526010602052604090205460ff1615156001146112535760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610887565b3360009081526010602052604090205460ff161515600114156111015761127a3384611e85565b336000908152601060205260409020805460ff191690555050600160095550565b600260095414156112be5760405162461bcd60e51b815260040161088790612a84565b6002600955600e5460005466470de4df820000918391111561133257346112e58284612b12565b146113325760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e7400000000000000006044820152606401610887565b600f5460ff1661137e5760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610887565b82600d548161138c60005490565b6113969190612ae6565b11156113b45760405162461bcd60e51b815260040161088790612978565b8360148111156113d65760405162461bcd60e51b8152600401610887906129ba565b6113e03386611e85565b50506001600955505050565b6001600160a01b0382163314156114455760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610887565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114bc8484846118e2565b6114c884848484611e9f565b6114e45760405162461bcd60e51b815260040161088790612a31565b50505050565b601181815481106114fa57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060611521826000541190565b6115615760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610887565b600b611576611571846001612ae6565b611fac565b60405160200161158792919061285d565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146115c75760405162461bcd60e51b8152600401610887906129fc565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff168015611690575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561164d57600080fd5b505afa158015611661573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611685919061275b565b6001600160a01b0316145b1561169f576001915050610784565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146116fb5760405162461bcd60e51b8152600401610887906129fc565b61170760116000612405565b61171360118383612423565b5060005b6011548110156109bf576001601060006011848154811061173a5761173a612c49565b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff19169115159190911790558061177881612bee565b915050611717565b6008546001600160a01b031633146117aa5760405162461bcd60e51b8152600401610887906129fc565b6001600160a01b03811661180f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610887565b61181881611e33565b50565b60006001600160e01b031982166380ac58cd60e01b148061184c57506001600160e01b03198216635b5e139f60e01b145b8061186757506001600160e01b0319821663780e9d6360e01b145b8061078457506301ffc9a760e01b6001600160e01b0319831614610784565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118ed82611c89565b80519091506000906001600160a01b0316336001600160a01b031614806119245750336119198461081c565b6001600160a01b0316145b806119365750815161193690336115e5565b9050806119a05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610887565b846001600160a01b031682600001516001600160a01b031614611a145760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610887565b6001600160a01b038416611a785760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610887565b611a886000848460000151611886565b6001600160a01b0385166000908152600460205260408120805460019290611aba9084906001600160801b0316612b31565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b0691859116612abb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611b8e846001612ae6565b6000818152600360205260409020549091506001600160a01b0316611c2057611bb8816000541190565b15611c205760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000611c768284612b12565b9392505050565b6000611c768284612afe565b6040805180820190915260008082526020820152611ca8826000541190565b611d075760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610887565b60007f00000000000000000000000000000000000000000000000000000000000000648310611d6857611d5a7f000000000000000000000000000000000000000000000000000000000000006484612b59565b611d65906001612ae6565b90505b825b818110611dd2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611dbf57949350505050565b5080611dca81612b9c565b915050611d6a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610887565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cbc8282604051806020016040528060008152506120aa565b60006001600160a01b0384163b15611fa157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee3903390899088908890600401612928565b602060405180830381600087803b158015611efd57600080fd5b505af1925050508015611f2d575060408051601f3d908101601f19168201909252611f2a9181019061273e565b60015b611f87573d808015611f5b576040519150601f19603f3d011682016040523d82523d6000602084013e611f60565b606091505b508051611f7f5760405162461bcd60e51b815260040161088790612a31565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116c9565b506001949350505050565b606081611fd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ffa5780611fe481612bee565b9150611ff39050600a83612afe565b9150611fd4565b60008167ffffffffffffffff81111561201557612015612c5f565b6040519080825280601f01601f19166020018201604052801561203f576020820181803683370190505b5090505b84156116c957612054600183612b59565b9150612061600a86612c09565b61206c906030612ae6565b60f81b81838151811061208157612081612c49565b60200101906001600160f81b031916908160001a9053506120a3600a86612afe565b9450612043565b6000546001600160a01b03841661210d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610887565b612118816000541190565b156121655760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610887565b7f00000000000000000000000000000000000000000000000000000000000000648311156121e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610887565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061223c908790612abb565b6001600160801b0316815260200185836020015161225a9190612abb565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561237a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461233e6000888488611e9f565b61235a5760405162461bcd60e51b815260040161088790612a31565b8161236481612bee565b925050808061237290612bee565b9150506122f1565b506000819055611c62565b82805461239190612bb3565b90600052602060002090601f0160209004810192826123b357600085556123f9565b82601f106123cc57805160ff19168380011785556123f9565b828001600101855582156123f9579182015b828111156123f95782518255916020019190600101906123de565b50610eae929150612476565b50805460008255906000526020600020908101906118189190612476565b8280548282559060005260206000209081019282156123f9579160200282015b828111156123f95781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612443565b5b80821115610eae5760008155600101612477565b600067ffffffffffffffff808411156124a6576124a6612c5f565b604051601f8501601f19908116603f011681019082821181831017156124ce576124ce612c5f565b816040528093508581528686860111156124e757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251357600080fd5b8135611c7681612c75565b6000806040838503121561253157600080fd5b823561253c81612c75565b9150602083013561254c81612c75565b809150509250929050565b60008060006060848603121561256c57600080fd5b833561257781612c75565b9250602084013561258781612c75565b929592945050506040919091013590565b600080600080608085870312156125ae57600080fd5b84356125b981612c75565b935060208501356125c981612c75565b925060408501359150606085013567ffffffffffffffff8111156125ec57600080fd5b8501601f810187136125fd57600080fd5b61260c8782356020840161248b565b91505092959194509250565b6000806040838503121561262b57600080fd5b823561263681612c75565b9150602083013561254c81612c8a565b6000806040838503121561265957600080fd5b823561266481612c75565b946020939093013593505050565b6000806020838503121561268557600080fd5b823567ffffffffffffffff8082111561269d57600080fd5b818501915085601f8301126126b157600080fd5b8135818111156126c057600080fd5b8660208260051b85010111156126d557600080fd5b60209290920196919550909350505050565b6000602082840312156126f957600080fd5b8135611c7681612c8a565b60006020828403121561271657600080fd5b8151611c7681612c8a565b60006020828403121561273357600080fd5b8135611c7681612c98565b60006020828403121561275057600080fd5b8151611c7681612c98565b60006020828403121561276d57600080fd5b8151611c7681612c75565b60006020828403121561278a57600080fd5b813567ffffffffffffffff8111156127a157600080fd5b8201601f810184136127b257600080fd5b6116c98482356020840161248b565b6000602082840312156127d357600080fd5b5035919050565b6000602082840312156127ec57600080fd5b5051919050565b6000806040838503121561280657600080fd5b50508035926020909101359150565b6000815180845261282d816020860160208601612b70565b601f01601f19169290920160200192915050565b60008151612853818560208601612b70565b9290920192915050565b600080845481600182811c91508083168061287957607f831692505b602080841082141561289957634e487b7160e01b86526022600452602486fd5b8180156128ad57600181146128be576128eb565b60ff198616895284890196506128eb565b60008b81526020902060005b868110156128e35781548b8201529085019083016128ca565b505084890196505b50505050505061291f61290e61290883602f60f81b815260010190565b86612841565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295b90830184612815565b9695505050505050565b602081526000611c766020830184612815565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b03808316818516808303821115612add57612add612c1d565b01949350505050565b60008219821115612af957612af9612c1d565b500190565b600082612b0d57612b0d612c33565b500490565b6000816000190483118215151615612b2c57612b2c612c1d565b500290565b60006001600160801b0383811690831681811015612b5157612b51612c1d565b039392505050565b600082821015612b6b57612b6b612c1d565b500390565b60005b83811015612b8b578181015183820152602001612b73565b838111156114e45750506000910152565b600081612bab57612bab612c1d565b506000190190565b600181811c90821680612bc757607f821691505b60208210811415612be857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0257612c02612c1d565b5060010190565b600082612c1857612c18612c33565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461181857600080fd5b801515811461181857600080fd5b6001600160e01b03198116811461181857600080fdfea2646970667358221220500df8090f40e3ef6024d9926adb2da0aa0db11f896a302a23ed1d27e8fb4f5d64736f6c63430008070033

Deployed Bytecode Sourcemap

54947:7102:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60238:292;;;;;;;;;;-1:-1:-1;60238:292:0;;;;;:::i;:::-;;:::i;:::-;;;9787:14:1;;9780:22;9762:41;;9750:2;9735:18;60238:292:0;;;;;;;;44170:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55465:54::-;;;;;;;;;;;;55509:10;55465:54;;;;;20752:25:1;;;20740:2;20725:18;55465:54:0;20606:177:1;45695:204:0;;;;;;;;;;-1:-1:-1;45695:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8806:32:1;;;8788:51;;8776:2;8761:18;45695:204:0;8642:203:1;45258:379:0;;;;;;;;;;-1:-1:-1;45258:379:0;;;;;:::i;:::-;;:::i;:::-;;58988:139;;;;;;;;;;-1:-1:-1;58988:139:0;;;;;:::i;:::-;;:::i;41005:94::-;;;;;;;;;;-1:-1:-1;41058:7:0;41081:12;41005:94;;55568:38;;;;;;;;;;-1:-1:-1;55568:38:0;;;;;;;;46545:142;;;;;;;;;;-1:-1:-1;46545:142:0;;;;;:::i;:::-;;:::i;58822:158::-;;;;;;;;;;-1:-1:-1;58822:158:0;;;;;:::i;:::-;;:::i;61728:318::-;;;;;;;;;;-1:-1:-1;61728:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;9535:32:1;;;9517:51;;9599:2;9584:18;;9577:34;;;;9490:18;61728:318:0;9343:274:1;41636:744:0;;;;;;;;;;-1:-1:-1;41636:744:0;;;;;:::i;:::-;;:::i;59572:106::-;;;;;;;;;;-1:-1:-1;59572:106:0;;;;;:::i;:::-;;:::i;59137:143::-;;;;;;;;;;;;;:::i;46750:157::-;;;;;;;;;;-1:-1:-1;46750:157:0;;;;;:::i;:::-;;:::i;59288:168::-;;;;;;;;;;-1:-1:-1;59288:168:0;;;;;:::i;:::-;;:::i;59464:99::-;;;;;;;;;;-1:-1:-1;59464:99:0;;;;;:::i;:::-;;:::i;41168:177::-;;;;;;;;;;-1:-1:-1;41168:177:0;;;;;:::i;:::-;;:::i;58424:100::-;;;;;;;;;;-1:-1:-1;58424:100:0;;;;;:::i;:::-;;:::i;43993:118::-;;;;;;;;;;-1:-1:-1;43993:118:0;;;;;:::i;:::-;;:::i;42870:211::-;;;;;;;;;;-1:-1:-1;42870:211:0;;;;;:::i;:::-;;:::i;58260:93::-;;;;;;;;;;;;;:::i;19028:103::-;;;;;;;;;;;;;:::i;57414:275::-;;;;;;;;;;-1:-1:-1;57414:275:0;;;;;:::i;:::-;;:::i;18377:87::-;;;;;;;;;;-1:-1:-1;18450:6:0;;-1:-1:-1;;;;;18450:6:0;18377:87;;44325:98;;;;;;;;;;;;;:::i;57743:440::-;;;;;;;;;;-1:-1:-1;57743:440:0;;;;;:::i;:::-;;:::i;55526:35::-;;;;;;;;;;;;;;;;56963:321;;;;;;:::i;:::-;;:::i;45963:274::-;;;;;;;;;;-1:-1:-1;45963:274:0;;;;;:::i;:::-;;:::i;46970:311::-;;;;;;;;;;-1:-1:-1;46970:311:0;;;;;:::i;:::-;;:::i;55665:37::-;;;;;;;;;;-1:-1:-1;55665:37:0;;;;;:::i;:::-;;:::i;55373:45::-;;;;;;;;;;;;55416:2;55373:45;;61355:307;;;;;;;;;;-1:-1:-1;61355:307:0;;;;;:::i;:::-;;:::i;55425:31::-;;;;;;;;;;;;;;;;51385:43;;;;;;;;;;;;;;;;55615;;;;;;;;;;-1:-1:-1;55615:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;58648:166;;;;;;;;;;-1:-1:-1;58648:166:0;;;;;:::i;:::-;;:::i;60667:617::-;;;;;;;;;;-1:-1:-1;60667:617:0;;;;;:::i;:::-;;:::i;59686:288::-;;;;;;;;;;-1:-1:-1;59686:288:0;;;;;:::i;:::-;;:::i;19286:201::-;;;;;;;;;;-1:-1:-1;19286:201:0;;;;;:::i;:::-;;:::i;60238:292::-;60386:4;-1:-1:-1;;;;;;60428:41:0;;-1:-1:-1;;;60428:41:0;;:94;;;60486:36;60510:11;60486:23;:36::i;:::-;60408:114;60238:292;-1:-1:-1;;60238:292:0:o;44170:94::-;44224:13;44253:5;44246:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44170:94;:::o;45695:204::-;45763:7;45787:16;45795:7;47577:4;47607:12;-1:-1:-1;47597:22:0;47520:105;45787:16;45779:74;;;;-1:-1:-1;;;45779:74:0;;19991:2:1;45779:74:0;;;19973:21:1;20030:2;20010:18;;;20003:30;20069:34;20049:18;;;20042:62;-1:-1:-1;;;20120:18:1;;;20113:43;20173:19;;45779:74:0;;;;;;;;;-1:-1:-1;45869:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45869:24:0;;45695:204::o;45258:379::-;45327:13;45343:24;45359:7;45343:15;:24::i;:::-;45327:40;;45388:5;-1:-1:-1;;;;;45382:11:0;:2;-1:-1:-1;;;;;45382:11:0;;;45374:58;;;;-1:-1:-1;;;45374:58:0;;16155:2:1;45374:58:0;;;16137:21:1;16194:2;16174:18;;;16167:30;16233:34;16213:18;;;16206:62;-1:-1:-1;;;16284:18:1;;;16277:32;16326:19;;45374:58:0;15953:398:1;45374:58:0;17181:10;-1:-1:-1;;;;;45457:21:0;;;;:62;;-1:-1:-1;45482:37:0;45499:5;17181:10;60667:617;:::i;45482:37::-;45441:153;;;;-1:-1:-1;;;45441:153:0;;13423:2:1;45441:153:0;;;13405:21:1;13462:2;13442:18;;;13435:30;13501:34;13481:18;;;13474:62;13572:27;13552:18;;;13545:55;13617:19;;45441:153:0;13221:421:1;45441:153:0;45603:28;45612:2;45616:7;45625:5;45603:8;:28::i;:::-;45320:317;45258:379;;:::o;58988:139::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;59089:14:::1;:30:::0;58988:139::o;46545:142::-;46653:28;46663:4;46669:2;46673:7;46653:9;:28::i;58822:158::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;58932:18:::1;:40:::0;;-1:-1:-1;;58932:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58822:158::o;61728:318::-;61853:16;61871:21;61918:16;61926:7;47577:4;47607:12;-1:-1:-1;47597:22:0;47520:105;61918:16;61910:46;;;;-1:-1:-1;;;61910:46:0;;13077:2:1;61910:46:0;;;13059:21:1;13116:2;13096:18;;;13089:30;-1:-1:-1;;;13135:18:1;;;13128:47;13192:18;;61910:46:0;12875:341:1;61910:46:0;61985:4;61992:45;62005:26;62018:9;62029:1;62005:12;:26::i;:::-;62033:3;61992:12;:45::i;:::-;61969:69;;;;61728:318;;;;;:::o;41636:744::-;41745:7;41780:16;41790:5;41780:9;:16::i;:::-;41772:5;:24;41764:71;;;;-1:-1:-1;;;41764:71:0;;10240:2:1;41764:71:0;;;10222:21:1;10279:2;10259:18;;;10252:30;10318:34;10298:18;;;10291:62;-1:-1:-1;;;10369:18:1;;;10362:32;10411:19;;41764:71:0;10038:398:1;41764:71:0;41842:22;41081:12;;;41842:22;;41962:350;41986:14;41982:1;:18;41962:350;;;42016:31;42050:14;;;:11;:14;;;;;;;;;42016:48;;;;;;;;;-1:-1:-1;;;;;42016:48:0;;;;;-1:-1:-1;;;42016:48:0;;;;;;;;;;;;42077:28;42073:89;;42138:14;;;-1:-1:-1;42073:89:0;42195:5;-1:-1:-1;;;;;42174:26:0;:17;-1:-1:-1;;;;;42174:26:0;;42170:135;;;42232:5;42217:11;:20;42213:59;;;-1:-1:-1;42259:1:0;-1:-1:-1;42252:8:0;;-1:-1:-1;;;42252:8:0;42213:59;42282:13;;;;:::i;:::-;;;;42170:135;-1:-1:-1;42002:3:0;;;;:::i;:::-;;;;41962:350;;;-1:-1:-1;42318:56:0;;-1:-1:-1;;;42318:56:0;;18448:2:1;42318:56:0;;;18430:21:1;18487:2;18467:18;;;18460:30;18526:34;18506:18;;;18499:62;-1:-1:-1;;;18577:18:1;;;18570:44;18631:19;;42318:56:0;18246:410:1;59572:106:0;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59644:18:0::1;59665:5;59644:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;59644:26:0::1;::::0;;59572:106::o;59137:143::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;59235:37:::1;::::0;59203:21:::1;::::0;59243:10:::1;::::0;59235:37;::::1;;;::::0;59203:21;;59185:15:::1;59235:37:::0;59185:15;59235:37;59203:21;59243:10;59235:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;59174:106;59137:143::o:0;46750:157::-;46862:39;46879:4;46885:2;46889:7;46862:39;;;;;;;;;;;;:16;:39::i;59288:168::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;59372:30:::1;::::0;-1:-1:-1;;;59372:30:0;;59396:4:::1;59372:30;::::0;::::1;8788:51:1::0;59354:15:0::1;::::0;-1:-1:-1;;;;;59372:15:0;::::1;::::0;::::1;::::0;8761:18:1;;59372:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59413:35;::::0;-1:-1:-1;;;59413:35:0;;59428:10:::1;59413:35;::::0;::::1;9517:51:1::0;9584:18;;;9577:34;;;59354:48:0;;-1:-1:-1;;;;;;59413:14:0;::::1;::::0;::::1;::::0;9490:18:1;;59413:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;59464:99::-:0;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59530:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;59530:25:0::1;59551:4;59530:25;::::0;;59464:99::o;41168:177::-;41235:7;41081:12;;41259:5;:21;41251:69;;;;-1:-1:-1;;;41251:69:0;;11461:2:1;41251:69:0;;;11443:21:1;11500:2;11480:18;;;11473:30;11539:34;11519:18;;;11512:62;-1:-1:-1;;;11590:18:1;;;11583:33;11633:19;;41251:69:0;11259:399:1;41251:69:0;-1:-1:-1;41334:5:0;41168:177::o;58424:100::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;58498:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;43993:118::-:0;44057:7;44080:20;44092:7;44080:11;:20::i;:::-;:25;;43993:118;-1:-1:-1;;43993:118:0:o;42870:211::-;42934:7;-1:-1:-1;;;;;42958:19:0;;42950:75;;;;-1:-1:-1;;;42950:75:0;;13849:2:1;42950:75:0;;;13831:21:1;13888:2;13868:18;;;13861:30;13927:34;13907:18;;;13900:62;-1:-1:-1;;;13978:18:1;;;13971:41;14029:19;;42950:75:0;13647:407:1;42950:75:0;-1:-1:-1;;;;;;43047:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43047:27:0;;42870:211::o;58260:93::-;58305:13;58338:7;58331:14;;;;;:::i;19028:103::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;19093:30:::1;19120:1;19093:18;:30::i;:::-;19028:103::o:0;57414:275::-;10306:1;10904:7;;:19;;10896:63;;;;-1:-1:-1;;;10896:63:0;;;;;;;:::i;:::-;10306:1;11037:7;:18;55832::::1;::::0;::::1;;55824:54;;;::::0;-1:-1:-1;;;55824:54:0;;19639:2:1;55824:54:0::1;::::0;::::1;19621:21:1::0;19678:2;19658:18;;;19651:30;-1:-1:-1;;;19697:18:1;;;19690:53;19760:18;;55824:54:0::1;19437:347:1::0;55824:54:0::1;57543:14:::2;56243:9;;56208:14;56192:13;41058:7:::0;41081:12;;41005:94;56192:13:::2;:30;;;;:::i;:::-;:60;;56170:144;;;;-1:-1:-1::0;;;56170:144:0::2;;;;;;;:::i;:::-;57582:14:::3;55416:2;55990:14;:34;;55968:118;;;;-1:-1:-1::0;;;55968:118:0::3;;;;;;;:::i;:::-;56439:14:::4;::::0;41058:7;41081:12;56405:48:::4;;56383:126;;;::::0;-1:-1:-1;;;56383:126:0;;17738:2:1;56383:126:0::4;::::0;::::4;17720:21:1::0;17777:2;17757:18;;;17750:30;17816;17796:18;;;17789:58;17864:18;;56383:126:0::4;17536:352:1::0;56383:126:0::4;57644:37:::5;57654:10;57666:14;57644:9;:37::i;:::-;-1:-1:-1::0;;10262:1:0;11216:7;:22;-1:-1:-1;57414:275:0:o;44325:98::-;44381:13;44410:7;44403:14;;;;;:::i;57743:440::-;10306:1;10904:7;;:19;;10896:63;;;;-1:-1:-1;;;10896:63:0;;;;;;;:::i;:::-;10306:1;11037:7;:18;56243:9:::1;::::0;57855:14;;;56192:13:::1;41058:7:::0;41081:12;;41005:94;56192:13:::1;:30;;;;:::i;:::-;:60;;56170:144;;;;-1:-1:-1::0;;;56170:144:0::1;;;;;;;:::i;:::-;57894:14:::2;55416:2;55990:14;:34;;55968:118;;;;-1:-1:-1::0;;;55968:118:0::2;;;;;;;:::i;:::-;56439:14:::3;::::0;41058:7;41081:12;56405:48:::3;;56383:126;;;::::0;-1:-1:-1;;;56383:126:0;;17738:2:1;56383:126:0::3;::::0;::::3;17720:21:1::0;17777:2;17757:18;;;17750:30;17816;17796:18;;;17789:58;17864:18;;56383:126:0::3;17536:352:1::0;56383:126:0::3;57976:10:::4;57964:23;::::0;;;:11:::4;:23;::::0;;;;;::::4;;:31;;:23:::0;:31:::4;57956:67;;;::::0;-1:-1:-1;;;57956:67:0;;15384:2:1;57956:67:0::4;::::0;::::4;15366:21:1::0;15423:2;15403:18;;;15396:30;15462:25;15442:18;;;15435:53;15505:18;;57956:67:0::4;15182:347:1::0;57956:67:0::4;58049:10;58037:23;::::0;;;:11:::4;:23;::::0;;;;;::::4;;:31;;:23:::0;:31:::4;58034:142;;;58083:37;58093:10;58105:14;58083:9;:37::i;:::-;58145:10;58159:5;58133:23:::0;;;:11:::4;:23;::::0;;;;:31;;-1:-1:-1;;58133:31:0::4;::::0;;-1:-1:-1;;10262:1:0;11216:7;:22;-1:-1:-1;57743:440:0:o;56963:321::-;10306:1;10904:7;;:19;;10896:63;;;;-1:-1:-1;;;10896:63:0;;;;;;;:::i;:::-;10306:1;11037:7;:18;56634:14:::1;::::0;41058:7;41081:12;55509:10:::1;::::0;57103:14;;56620:28:::1;56617:166;;;56710:9;56683:22;56691:14:::0;56683:5;:22:::1;:::i;:::-;56682:37;56660:111;;;::::0;-1:-1:-1;;;56660:111:0;;18095:2:1;56660:111:0::1;::::0;::::1;18077:21:1::0;18134:2;18114:18;;;18107:30;18173:26;18153:18;;;18146:54;18217:18;;56660:111:0::1;17893:348:1::0;56660:111:0::1;55832:18:::2;::::0;::::2;;55824:54;;;::::0;-1:-1:-1;;;55824:54:0;;19639:2:1;55824:54:0::2;::::0;::::2;19621:21:1::0;19678:2;19658:18;;;19651:30;-1:-1:-1;;;19697:18:1;;;19690:53;19760:18;;55824:54:0::2;19437:347:1::0;55824:54:0::2;57166:14:::3;56243:9;;56208:14;56192:13;41058:7:::0;41081:12;;41005:94;56192:13:::3;:30;;;;:::i;:::-;:60;;56170:144;;;;-1:-1:-1::0;;;56170:144:0::3;;;;;;;:::i;:::-;57205:14:::4;55416:2;55990:14;:34;;55968:118;;;;-1:-1:-1::0;;;55968:118:0::4;;;;;;;:::i;:::-;57239:37:::5;57249:10;57261:14;57239:9;:37::i;:::-;-1:-1:-1::0;;10262:1:0;11216:7;:22;-1:-1:-1;;;56963:321:0:o;45963:274::-;-1:-1:-1;;;;;46054:24:0;;17181:10;46054:24;;46046:63;;;;-1:-1:-1;;;46046:63:0;;15029:2:1;46046:63:0;;;15011:21:1;15068:2;15048:18;;;15041:30;15107:28;15087:18;;;15080:56;15153:18;;46046:63:0;14827:350:1;46046:63:0;17181:10;46118:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46118:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46118:53:0;;;;;;;;;;46183:48;;9762:41:1;;;46118:42:0;;17181:10;46183:48;;9735:18:1;46183:48:0;;;;;;;45963:274;;:::o;46970:311::-;47107:28;47117:4;47123:2;47127:7;47107:9;:28::i;:::-;47158:48;47181:4;47187:2;47191:7;47200:5;47158:22;:48::i;:::-;47142:133;;;;-1:-1:-1;;;47142:133:0;;;;;;;:::i;:::-;46970:311;;;;:::o;55665:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55665:37:0;;-1:-1:-1;55665:37:0;:::o;61355:307::-;61473:13;61512:16;61520:7;47577:4;47607:12;-1:-1:-1;47597:22:0;47520:105;61512:16;61504:46;;;;-1:-1:-1;;;61504:46:0;;13077:2:1;61504:46:0;;;13059:21:1;13116:2;13096:18;;;13089:30;-1:-1:-1;;;13135:18:1;;;13128:47;13192:18;;61504:46:0;12875:341:1;61504:46:0;61607:7;61621:22;61622:9;:7;61630:1;61622:9;:::i;:::-;61621:20;:22::i;:::-;61590:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61563:91;;61355:307;;;:::o;58648:166::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;58762:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;58762:44:0::1;-1:-1:-1::0;;;;58762:44:0;;::::1;::::0;;;::::1;::::0;;58648:166::o;60667:617::-;61015:27;;60792:4;;-1:-1:-1;;;;;61015:27:0;;;-1:-1:-1;;;61082:20:0;;;;:86;;;;-1:-1:-1;61127:28:0;;-1:-1:-1;;;61127:28:0;;-1:-1:-1;;;;;8806:32:1;;;61127:28:0;;;8788:51:1;61119:49:0;;;;61127:21;;;;;;8761:18:1;;61127:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61119:49:0;;61082:86;61064:154;;;61202:4;61195:11;;;;;61064:154;-1:-1:-1;;;;;46445:25:0;;;46422:4;46445:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61237:39;61230:46;60667:617;-1:-1:-1;;;;60667:617:0:o;59686:288::-;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;59765:27:::1;59772:20;;59765:27;:::i;:::-;59803:29;:20;59826:6:::0;;59803:29:::1;:::i;:::-;;59847:9;59843:124;59866:20;:27:::0;59862:31;::::1;59843:124;;;59951:4;59912:11;:36;59924:20;59945:1;59924:23;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;-1:-1:-1;;;;;59924:23:0::1;59912:36:::0;;;::::1;::::0;;;;;;;;:43;;-1:-1:-1;;59912:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59895:3;::::1;::::0;::::1;:::i;:::-;;;;59843:124;;19286:201:::0;18450:6;;-1:-1:-1;;;;;18450:6:0;17181:10;18597:23;18589:68;;;;-1:-1:-1;;;18589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19375:22:0;::::1;19367:73;;;::::0;-1:-1:-1;;;19367:73:0;;10643:2:1;19367:73:0::1;::::0;::::1;10625:21:1::0;10682:2;10662:18;;;10655:30;10721:34;10701:18;;;10694:62;-1:-1:-1;;;10772:18:1;;;10765:36;10818:19;;19367:73:0::1;10441:402:1::0;19367:73:0::1;19451:28;19470:8;19451:18;:28::i;:::-;19286:201:::0;:::o;42444:370::-;42571:4;-1:-1:-1;;;;;;42601:40:0;;-1:-1:-1;;;42601:40:0;;:99;;-1:-1:-1;;;;;;;42652:48:0;;-1:-1:-1;;;42652:48:0;42601:99;:160;;;-1:-1:-1;;;;;;;42711:50:0;;-1:-1:-1;;;42711:50:0;42601:160;:207;;;-1:-1:-1;;;;;;;;;;31886:40:0;;;42772:36;31777:157;51207:172;51304:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51304:29:0;-1:-1:-1;;;;;51304:29:0;;;;;;;;;51345:28;;51304:24;;51345:28;;;;;;;51207:172;;;:::o;49572:1529::-;49669:35;49707:20;49719:7;49707:11;:20::i;:::-;49778:18;;49669:58;;-1:-1:-1;49736:22:0;;-1:-1:-1;;;;;49762:34:0;17181:10;-1:-1:-1;;;;;49762:34:0;;:81;;;-1:-1:-1;17181:10:0;49807:20;49819:7;49807:11;:20::i;:::-;-1:-1:-1;;;;;49807:36:0;;49762:81;:142;;;-1:-1:-1;49871:18:0;;49854:50;;17181:10;60667:617;:::i;49854:50::-;49736:169;;49930:17;49914:101;;;;-1:-1:-1;;;49914:101:0;;15736:2:1;49914:101:0;;;15718:21:1;15775:2;15755:18;;;15748:30;15814:34;15794:18;;;15787:62;-1:-1:-1;;;15865:18:1;;;15858:48;15923:19;;49914:101:0;15534:414:1;49914:101:0;50062:4;-1:-1:-1;;;;;50040:26:0;:13;:18;;;-1:-1:-1;;;;;50040:26:0;;50024:98;;;;-1:-1:-1;;;50024:98:0;;14261:2:1;50024:98:0;;;14243:21:1;14300:2;14280:18;;;14273:30;14339:34;14319:18;;;14312:62;-1:-1:-1;;;14390:18:1;;;14383:36;14436:19;;50024:98:0;14059:402:1;50024:98:0;-1:-1:-1;;;;;50137:16:0;;50129:66;;;;-1:-1:-1;;;50129:66:0;;12268:2:1;50129:66:0;;;12250:21:1;12307:2;12287:18;;;12280:30;12346:34;12326:18;;;12319:62;-1:-1:-1;;;12397:18:1;;;12390:35;12442:19;;50129:66:0;12066:401:1;50129:66:0;50304:49;50321:1;50325:7;50334:13;:18;;;50304:8;:49::i;:::-;-1:-1:-1;;;;;50362:18:0;;;;;;:12;:18;;;;;:31;;50392:1;;50362:18;:31;;50392:1;;-1:-1:-1;;;;;50362:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;50362:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50400:16:0;;-1:-1:-1;50400:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;50400:16:0;;:29;;-1:-1:-1;;50400:29:0;;:::i;:::-;;;-1:-1:-1;;;;;50400:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50459:43:0;;;;;;;;-1:-1:-1;;;;;50459:43:0;;;;;;50485:15;50459:43;;;;;;;;;-1:-1:-1;50436:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;50436:66:0;-1:-1:-1;;;;;;50436:66:0;;;;;;;;;;;50752:11;50448:7;-1:-1:-1;50752:11:0;:::i;:::-;50815:1;50774:24;;;:11;:24;;;;;:29;50730:33;;-1:-1:-1;;;;;;50774:29:0;50770:236;;50832:20;50840:11;47577:4;47607:12;-1:-1:-1;47597:22:0;47520:105;50832:20;50828:171;;;50892:97;;;;;;;;50919:18;;-1:-1:-1;;;;;50892:97:0;;;;;;50950:28;;;;50892:97;;;;;;;;;;-1:-1:-1;50865:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;50865:124:0;-1:-1:-1;;;;;;50865:124:0;;;;;;;;;;;;50828:171;51038:7;51034:2;-1:-1:-1;;;;;51019:27:0;51028:4;-1:-1:-1;;;;;51019:27:0;;;;;;;;;;;51053:42;49662:1439;;;49572:1529;;;:::o;3602:98::-;3660:7;3687:5;3691:1;3687;:5;:::i;:::-;3680:12;3602:98;-1:-1:-1;;;3602:98:0:o;4001:::-;4059:7;4086:5;4090:1;4086;:5;:::i;43333:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;43450:16:0;43458:7;47577:4;47607:12;-1:-1:-1;47597:22:0;47520:105;43450:16;43442:71;;;;-1:-1:-1;;;43442:71:0;;11050:2:1;43442:71:0;;;11032:21:1;11089:2;11069:18;;;11062:30;11128:34;11108:18;;;11101:62;-1:-1:-1;;;11179:18:1;;;11172:40;11229:19;;43442:71:0;10848:406:1;43442:71:0;43522:26;43570:12;43559:7;:23;43555:93;;43614:22;43624:12;43614:7;:22;:::i;:::-;:26;;43639:1;43614:26;:::i;:::-;43593:47;;43555:93;43676:7;43656:212;43693:18;43685:4;:26;43656:212;;43730:31;43764:17;;;:11;:17;;;;;;;;;43730:51;;;;;;;;;-1:-1:-1;;;;;43730:51:0;;;;;-1:-1:-1;;;43730:51:0;;;;;;;;;;;;43794:28;43790:71;;43842:9;43333:606;-1:-1:-1;;;;43333:606:0:o;43790:71::-;-1:-1:-1;43713:6:0;;;;:::i;:::-;;;;43656:212;;;-1:-1:-1;43876:57:0;;-1:-1:-1;;;43876:57:0;;19223:2:1;43876:57:0;;;19205:21:1;19262:2;19242:18;;;19235:30;19301:34;19281:18;;;19274:62;-1:-1:-1;;;19352:18:1;;;19345:45;19407:19;;43876:57:0;19021:411:1;19647:191:0;19740:6;;;-1:-1:-1;;;;;19757:17:0;;;-1:-1:-1;;;;;;19757:17:0;;;;;;;19790:40;;19740:6;;;19757:17;19740:6;;19790:40;;19721:16;;19790:40;19710:128;19647:191;:::o;47631:98::-;47696:27;47706:2;47710:8;47696:27;;;;;;;;;;;;:9;:27::i;52922:690::-;53059:4;-1:-1:-1;;;;;53076:13:0;;20988:20;21036:8;53072:535;;53115:72;;-1:-1:-1;;;53115:72:0;;-1:-1:-1;;;;;53115:36:0;;;;;:72;;17181:10;;53166:4;;53172:7;;53181:5;;53115:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53115:72:0;;;;;;;;-1:-1:-1;;53115:72:0;;;;;;;;;;;;:::i;:::-;;;53102:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53346:13:0;;53342:215;;53379:61;;-1:-1:-1;;;53379:61:0;;;;;;;:::i;53342:215::-;53525:6;53519:13;53510:6;53506:2;53502:15;53495:38;53102:464;-1:-1:-1;;;;;;53237:55:0;-1:-1:-1;;;53237:55:0;;-1:-1:-1;53230:62:0;;53072:535;-1:-1:-1;53595:4:0;52922:690;;;;;;:::o;14663:723::-;14719:13;14940:10;14936:53;;-1:-1:-1;;14967:10:0;;;;;;;;;;;;-1:-1:-1;;;14967:10:0;;;;;14663:723::o;14936:53::-;15014:5;14999:12;15055:78;15062:9;;15055:78;;15088:8;;;;:::i;:::-;;-1:-1:-1;15111:10:0;;-1:-1:-1;15119:2:0;15111:10;;:::i;:::-;;;15055:78;;;15143:19;15175:6;15165:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15165:17:0;;15143:39;;15193:154;15200:10;;15193:154;;15227:11;15237:1;15227:11;;:::i;:::-;;-1:-1:-1;15296:10:0;15304:2;15296:5;:10;:::i;:::-;15283:24;;:2;:24;:::i;:::-;15270:39;;15253:6;15260;15253:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15253:56:0;;;;;;;;-1:-1:-1;15324:11:0;15333:2;15324:11;;:::i;:::-;;;15193:154;;48068:1272;48173:20;48196:12;-1:-1:-1;;;;;48223:16:0;;48215:62;;;;-1:-1:-1;;;48215:62:0;;17336:2:1;48215:62:0;;;17318:21:1;17375:2;17355:18;;;17348:30;17414:34;17394:18;;;17387:62;-1:-1:-1;;;17465:18:1;;;17458:31;17506:19;;48215:62:0;17134:397:1;48215:62:0;48414:21;48422:12;47577:4;47607:12;-1:-1:-1;47597:22:0;47520:105;48414:21;48413:22;48405:64;;;;-1:-1:-1;;;48405:64:0;;16978:2:1;48405:64:0;;;16960:21:1;17017:2;16997:18;;;16990:30;17056:31;17036:18;;;17029:59;17105:18;;48405:64:0;16776:353:1;48405:64:0;48496:12;48484:8;:24;;48476:71;;;;-1:-1:-1;;;48476:71:0;;20405:2:1;48476:71:0;;;20387:21:1;20444:2;20424:18;;;20417:30;20483:34;20463:18;;;20456:62;-1:-1:-1;;;20534:18:1;;;20527:32;20576:19;;48476:71:0;20203:398:1;48476:71:0;-1:-1:-1;;;;;48659:16:0;;48626:30;48659:16;;;:12;:16;;;;;;;;;48626:49;;;;;;;;;-1:-1:-1;;;;;48626:49:0;;;;;-1:-1:-1;;;48626:49:0;;;;;;;;;;;48701:119;;;;;;;;48721:19;;48626:49;;48701:119;;;48721:39;;48751:8;;48721:39;:::i;:::-;-1:-1:-1;;;;;48701:119:0;;;;;48804:8;48769:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;48701:119:0;;;;;;-1:-1:-1;;;;;48682:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;48682:138:0;;;;;;;;;;;;48855:43;;;;;;;;;;;48881:15;48855:43;;;;;;;;48827:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;48827:71:0;-1:-1:-1;;;;;;48827:71:0;;;;;;;;;;;;;;;;;;48839:12;;48951:281;48975:8;48971:1;:12;48951:281;;;49004:38;;49029:12;;-1:-1:-1;;;;;49004:38:0;;;49021:1;;49004:38;;49021:1;;49004:38;49069:59;49100:1;49104:2;49108:12;49122:5;49069:22;:59::i;:::-;49051:150;;;;-1:-1:-1;;;49051:150:0;;;;;;;:::i;:::-;49210:14;;;;:::i;:::-;;;;48985:3;;;;;:::i;:::-;;;;48951:281;;;-1:-1:-1;49240:12:0;:27;;;49274:60;46970:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:382::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2875:30;2834:32;2875:30;:::i;2942:315::-;3010:6;3018;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;:::-;3195:5;3247:2;3232:18;;;;3219:32;;-1:-1:-1;;;2942:315:1:o;3262:615::-;3348:6;3356;3409:2;3397:9;3388:7;3384:23;3380:32;3377:52;;;3425:1;3422;3415:12;3377:52;3465:9;3452:23;3494:18;3535:2;3527:6;3524:14;3521:34;;;3551:1;3548;3541:12;3521:34;3589:6;3578:9;3574:22;3564:32;;3634:7;3627:4;3623:2;3619:13;3615:27;3605:55;;3656:1;3653;3646:12;3605:55;3696:2;3683:16;3722:2;3714:6;3711:14;3708:34;;;3738:1;3735;3728:12;3708:34;3791:7;3786:2;3776:6;3773:1;3769:14;3765:2;3761:23;3757:32;3754:45;3751:65;;;3812:1;3809;3802:12;3751:65;3843:2;3835:11;;;;;3865:6;;-1:-1:-1;3262:615:1;;-1:-1:-1;;;;3262:615:1:o;3882:241::-;3938:6;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4046:9;4033:23;4065:28;4087:5;4065:28;:::i;4128:245::-;4195:6;4248:2;4236:9;4227:7;4223:23;4219:32;4216:52;;;4264:1;4261;4254:12;4216:52;4296:9;4290:16;4315:28;4337:5;4315:28;:::i;4378:245::-;4436:6;4489:2;4477:9;4468:7;4464:23;4460:32;4457:52;;;4505:1;4502;4495:12;4457:52;4544:9;4531:23;4563:30;4587:5;4563:30;:::i;4628:249::-;4697:6;4750:2;4738:9;4729:7;4725:23;4721:32;4718:52;;;4766:1;4763;4756:12;4718:52;4798:9;4792:16;4817:30;4841:5;4817:30;:::i;5148:280::-;5247:6;5300:2;5288:9;5279:7;5275:23;5271:32;5268:52;;;5316:1;5313;5306:12;5268:52;5348:9;5342:16;5367:31;5392:5;5367:31;:::i;5433:450::-;5502:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:52;;;5571:1;5568;5561:12;5523:52;5611:9;5598:23;5644:18;5636:6;5633:30;5630:50;;;5676:1;5673;5666:12;5630:50;5699:22;;5752:4;5744:13;;5740:27;-1:-1:-1;5730:55:1;;5781:1;5778;5771:12;5730:55;5804:73;5869:7;5864:2;5851:16;5846:2;5842;5838:11;5804:73;:::i;5888:180::-;5947:6;6000:2;5988:9;5979:7;5975:23;5971:32;5968:52;;;6016:1;6013;6006:12;5968:52;-1:-1:-1;6039:23:1;;5888:180;-1:-1:-1;5888:180:1:o;6073:184::-;6143:6;6196:2;6184:9;6175:7;6171:23;6167:32;6164:52;;;6212:1;6209;6202:12;6164:52;-1:-1:-1;6235:16:1;;6073:184;-1:-1:-1;6073:184:1:o;6262:248::-;6330:6;6338;6391:2;6379:9;6370:7;6366:23;6362:32;6359:52;;;6407:1;6404;6397:12;6359:52;-1:-1:-1;;6430:23:1;;;6500:2;6485:18;;;6472:32;;-1:-1:-1;6262:248:1:o;6515:257::-;6556:3;6594:5;6588:12;6621:6;6616:3;6609:19;6637:63;6693:6;6686:4;6681:3;6677:14;6670:4;6663:5;6659:16;6637:63;:::i;:::-;6754:2;6733:15;-1:-1:-1;;6729:29:1;6720:39;;;;6761:4;6716:50;;6515:257;-1:-1:-1;;6515:257:1:o;6777:185::-;6819:3;6857:5;6851:12;6872:52;6917:6;6912:3;6905:4;6898:5;6894:16;6872:52;:::i;:::-;6940:16;;;;;6777:185;-1:-1:-1;;6777:185:1:o;7204:1433::-;7582:3;7611:1;7644:6;7638:13;7674:3;7696:1;7724:9;7720:2;7716:18;7706:28;;7784:2;7773:9;7769:18;7806;7796:61;;7850:4;7842:6;7838:17;7828:27;;7796:61;7876:2;7924;7916:6;7913:14;7893:18;7890:38;7887:165;;;-1:-1:-1;;;7951:33:1;;8007:4;8004:1;7997:15;8037:4;7958:3;8025:17;7887:165;8068:18;8095:104;;;;8213:1;8208:320;;;;8061:467;;8095:104;-1:-1:-1;;8128:24:1;;8116:37;;8173:16;;;;-1:-1:-1;8095:104:1;;8208:320;20861:1;20854:14;;;20898:4;20885:18;;8303:1;8317:165;8331:6;8328:1;8325:13;8317:165;;;8409:14;;8396:11;;;8389:35;8452:16;;;;8346:10;;8317:165;;;8321:3;;8511:6;8506:3;8502:16;8495:23;;8061:467;;;;;;;8544:87;8569:61;8595:34;8625:3;-1:-1:-1;;;7150:16:1;;7191:1;7182:11;;7085:114;8595:34;8587:6;8569:61;:::i;:::-;-1:-1:-1;;;7027:20:1;;7072:1;7063:11;;6967:113;8544:87;8537:94;7204:1433;-1:-1:-1;;;;;7204:1433:1:o;8850:488::-;-1:-1:-1;;;;;9119:15:1;;;9101:34;;9171:15;;9166:2;9151:18;;9144:43;9218:2;9203:18;;9196:34;;;9266:3;9261:2;9246:18;;9239:31;;;9044:4;;9287:45;;9312:19;;9304:6;9287:45;:::i;:::-;9279:53;8850:488;-1:-1:-1;;;;;;8850:488:1:o;9814:219::-;9963:2;9952:9;9945:21;9926:4;9983:44;10023:2;10012:9;10008:18;10000:6;9983:44;:::i;11663:398::-;11865:2;11847:21;;;11904:2;11884:18;;;11877:30;11943:34;11938:2;11923:18;;11916:62;-1:-1:-1;;;12009:2:1;11994:18;;11987:32;12051:3;12036:19;;11663:398::o;12472:::-;12674:2;12656:21;;;12713:2;12693:18;;;12686:30;12752:34;12747:2;12732:18;;12725:62;-1:-1:-1;;;12818:2:1;12803:18;;12796:32;12860:3;12845:19;;12472:398::o;14466:356::-;14668:2;14650:21;;;14687:18;;;14680:30;14746:34;14741:2;14726:18;;14719:62;14813:2;14798:18;;14466:356::o;16356:415::-;16558:2;16540:21;;;16597:2;16577:18;;;16570:30;16636:34;16631:2;16616:18;;16609:62;-1:-1:-1;;;16702:2:1;16687:18;;16680:49;16761:3;16746:19;;16356:415::o;18661:355::-;18863:2;18845:21;;;18902:2;18882:18;;;18875:30;18941:33;18936:2;18921:18;;18914:61;19007:2;18992:18;;18661:355::o;20914:253::-;20954:3;-1:-1:-1;;;;;21043:2:1;21040:1;21036:10;21073:2;21070:1;21066:10;21104:3;21100:2;21096:12;21091:3;21088:21;21085:47;;;21112:18;;:::i;:::-;21148:13;;20914:253;-1:-1:-1;;;;20914:253:1:o;21172:128::-;21212:3;21243:1;21239:6;21236:1;21233:13;21230:39;;;21249:18;;:::i;:::-;-1:-1:-1;21285:9:1;;21172:128::o;21305:120::-;21345:1;21371;21361:35;;21376:18;;:::i;:::-;-1:-1:-1;21410:9:1;;21305:120::o;21430:168::-;21470:7;21536:1;21532;21528:6;21524:14;21521:1;21518:21;21513:1;21506:9;21499:17;21495:45;21492:71;;;21543:18;;:::i;:::-;-1:-1:-1;21583:9:1;;21430:168::o;21603:246::-;21643:4;-1:-1:-1;;;;;21756:10:1;;;;21726;;21778:12;;;21775:38;;;21793:18;;:::i;:::-;21830:13;;21603:246;-1:-1:-1;;;21603:246:1:o;21854:125::-;21894:4;21922:1;21919;21916:8;21913:34;;;21927:18;;:::i;:::-;-1:-1:-1;21964:9:1;;21854:125::o;21984:258::-;22056:1;22066:113;22080:6;22077:1;22074:13;22066:113;;;22156:11;;;22150:18;22137:11;;;22130:39;22102:2;22095:10;22066:113;;;22197:6;22194:1;22191:13;22188:48;;;-1:-1:-1;;22232:1:1;22214:16;;22207:27;21984:258::o;22247:136::-;22286:3;22314:5;22304:39;;22323:18;;:::i;:::-;-1:-1:-1;;;22359:18:1;;22247:136::o;22388:380::-;22467:1;22463:12;;;;22510;;;22531:61;;22585:4;22577:6;22573:17;22563:27;;22531:61;22638:2;22630:6;22627:14;22607:18;22604:38;22601:161;;;22684:10;22679:3;22675:20;22672:1;22665:31;22719:4;22716:1;22709:15;22747:4;22744:1;22737:15;22601:161;;22388:380;;;:::o;22773:135::-;22812:3;-1:-1:-1;;22833:17:1;;22830:43;;;22853:18;;:::i;:::-;-1:-1:-1;22900:1:1;22889:13;;22773:135::o;22913:112::-;22945:1;22971;22961:35;;22976:18;;:::i;:::-;-1:-1:-1;23010:9:1;;22913:112::o;23030:127::-;23091:10;23086:3;23082:20;23079:1;23072:31;23122:4;23119:1;23112:15;23146:4;23143:1;23136:15;23162:127;23223:10;23218:3;23214:20;23211:1;23204:31;23254:4;23251:1;23244:15;23278:4;23275:1;23268:15;23294:127;23355:10;23350:3;23346:20;23343:1;23336:31;23386:4;23383:1;23376:15;23410:4;23407:1;23400:15;23426:127;23487:10;23482:3;23478:20;23475:1;23468:31;23518:4;23515:1;23508:15;23542:4;23539:1;23532:15;23558:131;-1:-1:-1;;;;;23633:31:1;;23623:42;;23613:70;;23679:1;23676;23669:12;23694:118;23780:5;23773:13;23766:21;23759:5;23756:32;23746:60;;23802:1;23799;23792:12;23817:131;-1:-1:-1;;;;;;23891:32:1;;23881:43;;23871:71;;23938:1;23935;23928:12

Swarm Source

ipfs://500df8090f40e3ef6024d9926adb2da0aa0db11f896a302a23ed1d27e8fb4f5d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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