ETH Price: $2,272.91 (+2.47%)

Token

GangPunk (GP)
 

Overview

Max Total Supply

638 GP

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tienkhongmanglaihanhphucnhungkhongcotienchacchanbansekho.eth
Balance
1 GP
0x5882E5beC3b34F46ec516b7e4F7ED5C604e8F42b
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:
GangPunk

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-31
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

    /**
     * @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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * `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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: GangPunk.sol



pragma solidity ^0.8.7;




contract GangPunk is ERC721A, Ownable {
    uint public constant maxFree = 1;
    uint public supply = 10000;
    uint public maxPerWallet = 21;
    uint public price = 0.005 ether;
    string public baseURI = "https://ipfs.io/ipfs/bafybeihz3muuvxl4wwgqwfgsyk7dktqx6dhoqroh2vtqed6gac4oqn4z7m/";
    string public constant baseExtension = ".json";
    bool public _live = false;

    constructor() ERC721A("GangPunk", "GP") {}

    function Mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(_live, "Not live!");
        require(supply >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(_numberMinted(_caller) + _amount <= maxPerWallet, "Exceeds max per wallet");

        if(_numberMinted(msg.sender) >= maxFree) {
            require(msg.value >= _amount * price, "Invalid funds provided");
        } else{
            uint count = _numberMinted(msg.sender) + _amount;
            if(count > maxFree){
                require(msg.value >= (count - maxFree) * price , "Insufficient funds");
            }
        }
        _safeMint(_caller, _amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function TeamMint() external onlyOwner {
        _safeMint(_msgSender(), 100);
    }

    function reduceSupply(uint newSupply) external onlyOwner {
        supply = newSupply;
    }

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

    function live(bool _state) external onlyOwner {
        _live = _state;
    }

    function setCost(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
            //   _tokenId.toString(),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"live","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"payable","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":"payable","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":"uint256","name":"newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526127106009556015600a556611c37937e08000600b55604051806080016040528060518152602001620034e060519139600c90805190602001906200004b92919062000228565b506000600d60006101000a81548160ff0219169083151502179055503480156200007457600080fd5b506040518060400160405280600881526020017f47616e6750756e6b0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f47500000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f992919062000228565b5080600390805190602001906200011292919062000228565b50620001236200015160201b60201c565b60008190555050506200014b6200013f6200015a60201b60201c565b6200016260201b60201c565b6200033d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023690620002d8565b90600052602060002090601f0160209004810192826200025a5760008555620002a6565b82601f106200027557805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a557825182559160200191906001019062000288565b5b509050620002b59190620002b9565b5090565b5b80821115620002d4576000816000905550600101620002ba565b5090565b60006002820490506001821680620002f157607f821691505b602082108114156200030857620003076200030e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613193806200034d6000396000f3fe6080604052600436106101e35760003560e01c80636242a8a311610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd14610653578063dc33e68114610690578063e985e9c5146106cd578063f2fde38b1461070a576101e3565b8063a035b1fe146105b8578063a22cb465146105e3578063b88d4fde1461060c578063c668286214610628576101e3565b8063715018a6116100d1578063715018a61461052257806380623444146105395780638da5cb5b1461056257806395d89b411461058d576101e3565b80636242a8a3146104665780636352211e1461047d5780636c0360eb146104ba57806370a08231146104e5576101e3565b80633ccfd60b1161017a578063485a68a311610149578063485a68a3146103be57806355f804b3146103e957806356e0ec72146104125780635c6e7f601461043d576101e3565b80633ccfd60b1461033757806342842e0e1461034e57806344a0d68a1461036a578063453c231014610393576101e3565b8063081812fc116101b6578063081812fc14610297578063095ea7b3146102d457806318160ddd146102f057806323b872dd1461031b576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063078837031461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612525565b610733565b60405161021c9190612995565b60405180910390f35b34801561023157600080fd5b5061023a6107c5565b6040516102479190612b32565b60405180910390f35b34801561025c57600080fd5b506102656107cb565b60405161027291906129b0565b60405180910390f35b610295600480360381019061029091906125c8565b61085d565b005b3480156102a357600080fd5b506102be60048036038101906102b991906125c8565b610b0b565b6040516102cb919061292e565b60405180910390f35b6102ee60048036038101906102e991906124b8565b610b8a565b005b3480156102fc57600080fd5b50610305610cce565b6040516103129190612b32565b60405180910390f35b610335600480360381019061033091906123a2565b610ce5565b005b34801561034357600080fd5b5061034c61100a565b005b610368600480360381019061036391906123a2565b6110ce565b005b34801561037657600080fd5b50610391600480360381019061038c91906125c8565b6110ee565b005b34801561039f57600080fd5b506103a8611100565b6040516103b59190612b32565b60405180910390f35b3480156103ca57600080fd5b506103d3611106565b6040516103e09190612b32565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b919061257f565b61110b565b005b34801561041e57600080fd5b5061042761112d565b6040516104349190612995565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906124f8565b611140565b005b34801561047257600080fd5b5061047b611165565b005b34801561048957600080fd5b506104a4600480360381019061049f91906125c8565b611181565b6040516104b1919061292e565b60405180910390f35b3480156104c657600080fd5b506104cf611193565b6040516104dc91906129b0565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190612335565b611221565b6040516105199190612b32565b60405180910390f35b34801561052e57600080fd5b506105376112da565b005b34801561054557600080fd5b50610560600480360381019061055b91906125c8565b6112ee565b005b34801561056e57600080fd5b50610577611300565b604051610584919061292e565b60405180910390f35b34801561059957600080fd5b506105a261132a565b6040516105af91906129b0565b60405180910390f35b3480156105c457600080fd5b506105cd6113bc565b6040516105da9190612b32565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612478565b6113c2565b005b610626600480360381019061062191906123f5565b6114cd565b005b34801561063457600080fd5b5061063d611540565b60405161064a91906129b0565b60405180910390f35b34801561065f57600080fd5b5061067a600480360381019061067591906125c8565b611579565b60405161068791906129b0565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612335565b611658565b6040516106c49190612b32565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612362565b61166a565b6040516107019190612995565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190612335565b6116fe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b6060600280546107da90612dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461080690612dd1565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b6000610867611782565b9050600d60009054906101000a900460ff166108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90612b12565b60405180910390fd5b816108c1610cce565b6108cb9190612c37565b600954101561090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612a32565b60405180910390fd5b60008211610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906129f2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790612af2565b60405180910390fd5b600a54826109cd8361178a565b6109d79190612c37565b1115610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90612ad2565b60405180910390fd5b6001610a233361178a565b10610a7d57600b5482610a369190612c8d565b341015610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90612a92565b60405180910390fd5b610afd565b600082610a893361178a565b610a939190612c37565b90506001811115610afb57600b54600182610aae9190612ce7565b610ab89190612c8d565b341015610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190612a12565b60405180910390fd5b5b505b610b0781836117e1565b5050565b6000610b16826117ff565b610b4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9582611181565b90508073ffffffffffffffffffffffffffffffffffffffff16610bb661185e565b73ffffffffffffffffffffffffffffffffffffffff1614610c1957610be281610bdd61185e565b61166a565b610c18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610cd8611866565b6001546000540303905090565b6000610cf08261186f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d638461193d565b91509150610d798187610d7461185e565b611964565b610dc557610d8e86610d8961185e565b61166a565b610dc4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e3986868660016119a8565b8015610e4457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1285610eee8888876119ae565b7c0200000000000000000000000000000000000000000000000000000000176119d6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f9a576000600185019050600060046000838152602001908152602001600020541415610f98576000548114610f97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110028686866001611a01565b505050505050565b611012611a07565b60004790506000611021611782565b73ffffffffffffffffffffffffffffffffffffffff168260405161104490612919565b60006040518083038185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b50509050806110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190612ab2565b60405180910390fd5b5050565b6110e9838383604051806020016040528060008152506114cd565b505050565b6110f6611a07565b80600b8190555050565b600a5481565b600181565b611113611a07565b80600c9080519060200190611129929190612149565b5050565b600d60009054906101000a900460ff1681565b611148611a07565b80600d60006101000a81548160ff02191690831515021790555050565b61116d611a07565b61117f611178611782565b60646117e1565b565b600061118c8261186f565b9050919050565b600c80546111a090612dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546111cc90612dd1565b80156112195780601f106111ee57610100808354040283529160200191611219565b820191906000526020600020905b8154815290600101906020018083116111fc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611289576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112e2611a07565b6112ec6000611a85565b565b6112f6611a07565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133990612dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461136590612dd1565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b5050505050905090565b600b5481565b80600760006113cf61185e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661147c61185e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c19190612995565b60405180910390a35050565b6114d8848484610ce5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461153a5761150384848484611b4b565b611539576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611584826117ff565b6115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90612a52565b60405180910390fd5b6000600c80546115d290612dd1565b9050116115ee5760405180602001604052806000815250611651565b600c6115f983611cab565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611641939291906128e8565b6040516020818303038152906040525b9050919050565b60006116638261178a565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611706611a07565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906129d2565b60405180910390fd5b61177f81611a85565b50565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6117fb828260405180602001604052806000815250611d83565b5050565b60008161180a611866565b11158015611819575060005482105b8015611857575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061187e611866565b11611906576000548110156119055760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611903575b60008114156118f95760046000836001900393508381526020019081526020016000205490506118ce565b8092505050611938565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119c5868684611e20565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a0f611782565b73ffffffffffffffffffffffffffffffffffffffff16611a2d611300565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90612a72565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7161185e565b8786866040518563ffffffff1660e01b8152600401611b939493929190612949565b602060405180830381600087803b158015611bad57600080fd5b505af1925050508015611bde57506040513d601f19601f82011682018060405250810190611bdb9190612552565b60015b611c58573d8060008114611c0e576040519150601f19603f3d011682016040523d82523d6000602084013e611c13565b606091505b50600081511415611c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611cba84611e29565b01905060008167ffffffffffffffff811115611cd957611cd8612ec1565b5b6040519080825280601f01601f191660200182016040528015611d0b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d78578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d6257611d61612e63565b5b0494506000851415611d7357611d78565b611d19565b819350505050919050565b611d8d8383611f7c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1b57600080549050600083820390505b611dcd6000868380600101945086611b4b565b611e03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dba578160005414611e1857600080fd5b50505b505050565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e87577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e7d57611e7c612e63565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ec4576d04ee2d6d415b85acef81000000008381611eba57611eb9612e63565b5b0492506020810190505b662386f26fc100008310611ef357662386f26fc100008381611ee957611ee8612e63565b5b0492506010810190505b6305f5e1008310611f1c576305f5e1008381611f1257611f11612e63565b5b0492506008810190505b6127108310611f41576127108381611f3757611f36612e63565b5b0492506004810190505b60648310611f645760648381611f5a57611f59612e63565b5b0492506002810190505b600a8310611f73576001810190505b80915050919050565b6000805490506000821415611fbd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fca60008483856119a8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120418361203260008660006119ae565b61203b85612139565b176119d6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120e257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120a7565b50600082141561211e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121346000848385611a01565b505050565b60006001821460e11b9050919050565b82805461215590612dd1565b90600052602060002090601f01602090048101928261217757600085556121be565b82601f1061219057805160ff19168380011785556121be565b828001600101855582156121be579182015b828111156121bd5782518255916020019190600101906121a2565b5b5090506121cb91906121cf565b5090565b5b808211156121e85760008160009055506001016121d0565b5090565b60006121ff6121fa84612b72565b612b4d565b90508281526020810184848401111561221b5761221a612ef5565b5b612226848285612d8f565b509392505050565b600061224161223c84612ba3565b612b4d565b90508281526020810184848401111561225d5761225c612ef5565b5b612268848285612d8f565b509392505050565b60008135905061227f81613101565b92915050565b60008135905061229481613118565b92915050565b6000813590506122a98161312f565b92915050565b6000815190506122be8161312f565b92915050565b600082601f8301126122d9576122d8612ef0565b5b81356122e98482602086016121ec565b91505092915050565b600082601f83011261230757612306612ef0565b5b813561231784826020860161222e565b91505092915050565b60008135905061232f81613146565b92915050565b60006020828403121561234b5761234a612eff565b5b600061235984828501612270565b91505092915050565b6000806040838503121561237957612378612eff565b5b600061238785828601612270565b925050602061239885828601612270565b9150509250929050565b6000806000606084860312156123bb576123ba612eff565b5b60006123c986828701612270565b93505060206123da86828701612270565b92505060406123eb86828701612320565b9150509250925092565b6000806000806080858703121561240f5761240e612eff565b5b600061241d87828801612270565b945050602061242e87828801612270565b935050604061243f87828801612320565b925050606085013567ffffffffffffffff8111156124605761245f612efa565b5b61246c878288016122c4565b91505092959194509250565b6000806040838503121561248f5761248e612eff565b5b600061249d85828601612270565b92505060206124ae85828601612285565b9150509250929050565b600080604083850312156124cf576124ce612eff565b5b60006124dd85828601612270565b92505060206124ee85828601612320565b9150509250929050565b60006020828403121561250e5761250d612eff565b5b600061251c84828501612285565b91505092915050565b60006020828403121561253b5761253a612eff565b5b60006125498482850161229a565b91505092915050565b60006020828403121561256857612567612eff565b5b6000612576848285016122af565b91505092915050565b60006020828403121561259557612594612eff565b5b600082013567ffffffffffffffff8111156125b3576125b2612efa565b5b6125bf848285016122f2565b91505092915050565b6000602082840312156125de576125dd612eff565b5b60006125ec84828501612320565b91505092915050565b6125fe81612d1b565b82525050565b61260d81612d2d565b82525050565b600061261e82612be9565b6126288185612bff565b9350612638818560208601612d9e565b61264181612f04565b840191505092915050565b600061265782612bf4565b6126618185612c1b565b9350612671818560208601612d9e565b61267a81612f04565b840191505092915050565b600061269082612bf4565b61269a8185612c2c565b93506126aa818560208601612d9e565b80840191505092915050565b600081546126c381612dd1565b6126cd8186612c2c565b945060018216600081146126e857600181146126f95761272c565b60ff1983168652818601935061272c565b61270285612bd4565b60005b8381101561272457815481890152600182019150602081019050612705565b838801955050505b50505092915050565b6000612742602683612c1b565b915061274d82612f15565b604082019050919050565b6000612765600a83612c1b565b915061277082612f64565b602082019050919050565b6000612788601283612c1b565b915061279382612f8d565b602082019050919050565b60006127ab601283612c1b565b91506127b682612fb6565b602082019050919050565b60006127ce601583612c1b565b91506127d982612fdf565b602082019050919050565b60006127f1602083612c1b565b91506127fc82613008565b602082019050919050565b6000612814601683612c1b565b915061281f82613031565b602082019050919050565b6000612837600083612c10565b91506128428261305a565b600082019050919050565b600061285a600e83612c1b565b91506128658261305d565b602082019050919050565b600061287d601683612c1b565b915061288882613086565b602082019050919050565b60006128a0600c83612c1b565b91506128ab826130af565b602082019050919050565b60006128c3600983612c1b565b91506128ce826130d8565b602082019050919050565b6128e281612d85565b82525050565b60006128f482866126b6565b91506129008285612685565b915061290c8284612685565b9150819050949350505050565b60006129248261282a565b9150819050919050565b600060208201905061294360008301846125f5565b92915050565b600060808201905061295e60008301876125f5565b61296b60208301866125f5565b61297860408301856128d9565b818103606083015261298a8184612613565b905095945050505050565b60006020820190506129aa6000830184612604565b92915050565b600060208201905081810360008301526129ca818461264c565b905092915050565b600060208201905081810360008301526129eb81612735565b9050919050565b60006020820190508181036000830152612a0b81612758565b9050919050565b60006020820190508181036000830152612a2b8161277b565b9050919050565b60006020820190508181036000830152612a4b8161279e565b9050919050565b60006020820190508181036000830152612a6b816127c1565b9050919050565b60006020820190508181036000830152612a8b816127e4565b9050919050565b60006020820190508181036000830152612aab81612807565b9050919050565b60006020820190508181036000830152612acb8161284d565b9050919050565b60006020820190508181036000830152612aeb81612870565b9050919050565b60006020820190508181036000830152612b0b81612893565b9050919050565b60006020820190508181036000830152612b2b816128b6565b9050919050565b6000602082019050612b4760008301846128d9565b92915050565b6000612b57612b68565b9050612b638282612e03565b919050565b6000604051905090565b600067ffffffffffffffff821115612b8d57612b8c612ec1565b5b612b9682612f04565b9050602081019050919050565b600067ffffffffffffffff821115612bbe57612bbd612ec1565b5b612bc782612f04565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4282612d85565b9150612c4d83612d85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8257612c81612e34565b5b828201905092915050565b6000612c9882612d85565b9150612ca383612d85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cdc57612cdb612e34565b5b828202905092915050565b6000612cf282612d85565b9150612cfd83612d85565b925082821015612d1057612d0f612e34565b5b828203905092915050565b6000612d2682612d65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dbc578082015181840152602081019050612da1565b83811115612dcb576000848401525b50505050565b60006002820490506001821680612de957607f821691505b60208210811415612dfd57612dfc612e92565b5b50919050565b612e0c82612f04565b810181811067ffffffffffffffff82111715612e2b57612e2a612ec1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b61310a81612d1b565b811461311557600080fd5b50565b61312181612d2d565b811461312c57600080fd5b50565b61313881612d39565b811461314357600080fd5b50565b61314f81612d85565b811461315a57600080fd5b5056fea264697066735822122069944a77e42dc936cb38b70a5cda6d5569d4a201aeb094ae95820b3b0db7b77364736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f62616679626569687a336d757576786c347777677177666773796b37646b7471783664686f71726f6832767471656436676163346f716e347a376d2f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636242a8a311610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd14610653578063dc33e68114610690578063e985e9c5146106cd578063f2fde38b1461070a576101e3565b8063a035b1fe146105b8578063a22cb465146105e3578063b88d4fde1461060c578063c668286214610628576101e3565b8063715018a6116100d1578063715018a61461052257806380623444146105395780638da5cb5b1461056257806395d89b411461058d576101e3565b80636242a8a3146104665780636352211e1461047d5780636c0360eb146104ba57806370a08231146104e5576101e3565b80633ccfd60b1161017a578063485a68a311610149578063485a68a3146103be57806355f804b3146103e957806356e0ec72146104125780635c6e7f601461043d576101e3565b80633ccfd60b1461033757806342842e0e1461034e57806344a0d68a1461036a578063453c231014610393576101e3565b8063081812fc116101b6578063081812fc14610297578063095ea7b3146102d457806318160ddd146102f057806323b872dd1461031b576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063078837031461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612525565b610733565b60405161021c9190612995565b60405180910390f35b34801561023157600080fd5b5061023a6107c5565b6040516102479190612b32565b60405180910390f35b34801561025c57600080fd5b506102656107cb565b60405161027291906129b0565b60405180910390f35b610295600480360381019061029091906125c8565b61085d565b005b3480156102a357600080fd5b506102be60048036038101906102b991906125c8565b610b0b565b6040516102cb919061292e565b60405180910390f35b6102ee60048036038101906102e991906124b8565b610b8a565b005b3480156102fc57600080fd5b50610305610cce565b6040516103129190612b32565b60405180910390f35b610335600480360381019061033091906123a2565b610ce5565b005b34801561034357600080fd5b5061034c61100a565b005b610368600480360381019061036391906123a2565b6110ce565b005b34801561037657600080fd5b50610391600480360381019061038c91906125c8565b6110ee565b005b34801561039f57600080fd5b506103a8611100565b6040516103b59190612b32565b60405180910390f35b3480156103ca57600080fd5b506103d3611106565b6040516103e09190612b32565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b919061257f565b61110b565b005b34801561041e57600080fd5b5061042761112d565b6040516104349190612995565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906124f8565b611140565b005b34801561047257600080fd5b5061047b611165565b005b34801561048957600080fd5b506104a4600480360381019061049f91906125c8565b611181565b6040516104b1919061292e565b60405180910390f35b3480156104c657600080fd5b506104cf611193565b6040516104dc91906129b0565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190612335565b611221565b6040516105199190612b32565b60405180910390f35b34801561052e57600080fd5b506105376112da565b005b34801561054557600080fd5b50610560600480360381019061055b91906125c8565b6112ee565b005b34801561056e57600080fd5b50610577611300565b604051610584919061292e565b60405180910390f35b34801561059957600080fd5b506105a261132a565b6040516105af91906129b0565b60405180910390f35b3480156105c457600080fd5b506105cd6113bc565b6040516105da9190612b32565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612478565b6113c2565b005b610626600480360381019061062191906123f5565b6114cd565b005b34801561063457600080fd5b5061063d611540565b60405161064a91906129b0565b60405180910390f35b34801561065f57600080fd5b5061067a600480360381019061067591906125c8565b611579565b60405161068791906129b0565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612335565b611658565b6040516106c49190612b32565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612362565b61166a565b6040516107019190612995565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190612335565b6116fe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b6060600280546107da90612dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461080690612dd1565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b6000610867611782565b9050600d60009054906101000a900460ff166108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90612b12565b60405180910390fd5b816108c1610cce565b6108cb9190612c37565b600954101561090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612a32565b60405180910390fd5b60008211610952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610949906129f2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790612af2565b60405180910390fd5b600a54826109cd8361178a565b6109d79190612c37565b1115610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90612ad2565b60405180910390fd5b6001610a233361178a565b10610a7d57600b5482610a369190612c8d565b341015610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f90612a92565b60405180910390fd5b610afd565b600082610a893361178a565b610a939190612c37565b90506001811115610afb57600b54600182610aae9190612ce7565b610ab89190612c8d565b341015610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190612a12565b60405180910390fd5b5b505b610b0781836117e1565b5050565b6000610b16826117ff565b610b4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b9582611181565b90508073ffffffffffffffffffffffffffffffffffffffff16610bb661185e565b73ffffffffffffffffffffffffffffffffffffffff1614610c1957610be281610bdd61185e565b61166a565b610c18576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610cd8611866565b6001546000540303905090565b6000610cf08261186f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d638461193d565b91509150610d798187610d7461185e565b611964565b610dc557610d8e86610d8961185e565b61166a565b610dc4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e3986868660016119a8565b8015610e4457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1285610eee8888876119ae565b7c0200000000000000000000000000000000000000000000000000000000176119d6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f9a576000600185019050600060046000838152602001908152602001600020541415610f98576000548114610f97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110028686866001611a01565b505050505050565b611012611a07565b60004790506000611021611782565b73ffffffffffffffffffffffffffffffffffffffff168260405161104490612919565b60006040518083038185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b50509050806110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190612ab2565b60405180910390fd5b5050565b6110e9838383604051806020016040528060008152506114cd565b505050565b6110f6611a07565b80600b8190555050565b600a5481565b600181565b611113611a07565b80600c9080519060200190611129929190612149565b5050565b600d60009054906101000a900460ff1681565b611148611a07565b80600d60006101000a81548160ff02191690831515021790555050565b61116d611a07565b61117f611178611782565b60646117e1565b565b600061118c8261186f565b9050919050565b600c80546111a090612dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546111cc90612dd1565b80156112195780601f106111ee57610100808354040283529160200191611219565b820191906000526020600020905b8154815290600101906020018083116111fc57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611289576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112e2611a07565b6112ec6000611a85565b565b6112f6611a07565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133990612dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461136590612dd1565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b5050505050905090565b600b5481565b80600760006113cf61185e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661147c61185e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c19190612995565b60405180910390a35050565b6114d8848484610ce5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461153a5761150384848484611b4b565b611539576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611584826117ff565b6115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90612a52565b60405180910390fd5b6000600c80546115d290612dd1565b9050116115ee5760405180602001604052806000815250611651565b600c6115f983611cab565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611641939291906128e8565b6040516020818303038152906040525b9050919050565b60006116638261178a565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611706611a07565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906129d2565b60405180910390fd5b61177f81611a85565b50565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6117fb828260405180602001604052806000815250611d83565b5050565b60008161180a611866565b11158015611819575060005482105b8015611857575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061187e611866565b11611906576000548110156119055760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611903575b60008114156118f95760046000836001900393508381526020019081526020016000205490506118ce565b8092505050611938565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119c5868684611e20565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a0f611782565b73ffffffffffffffffffffffffffffffffffffffff16611a2d611300565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90612a72565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7161185e565b8786866040518563ffffffff1660e01b8152600401611b939493929190612949565b602060405180830381600087803b158015611bad57600080fd5b505af1925050508015611bde57506040513d601f19601f82011682018060405250810190611bdb9190612552565b60015b611c58573d8060008114611c0e576040519150601f19603f3d011682016040523d82523d6000602084013e611c13565b606091505b50600081511415611c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611cba84611e29565b01905060008167ffffffffffffffff811115611cd957611cd8612ec1565b5b6040519080825280601f01601f191660200182016040528015611d0b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d78578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d6257611d61612e63565b5b0494506000851415611d7357611d78565b611d19565b819350505050919050565b611d8d8383611f7c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1b57600080549050600083820390505b611dcd6000868380600101945086611b4b565b611e03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dba578160005414611e1857600080fd5b50505b505050565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e87577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e7d57611e7c612e63565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ec4576d04ee2d6d415b85acef81000000008381611eba57611eb9612e63565b5b0492506020810190505b662386f26fc100008310611ef357662386f26fc100008381611ee957611ee8612e63565b5b0492506010810190505b6305f5e1008310611f1c576305f5e1008381611f1257611f11612e63565b5b0492506008810190505b6127108310611f41576127108381611f3757611f36612e63565b5b0492506004810190505b60648310611f645760648381611f5a57611f59612e63565b5b0492506002810190505b600a8310611f73576001810190505b80915050919050565b6000805490506000821415611fbd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fca60008483856119a8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120418361203260008660006119ae565b61203b85612139565b176119d6565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120e257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120a7565b50600082141561211e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121346000848385611a01565b505050565b60006001821460e11b9050919050565b82805461215590612dd1565b90600052602060002090601f01602090048101928261217757600085556121be565b82601f1061219057805160ff19168380011785556121be565b828001600101855582156121be579182015b828111156121bd5782518255916020019190600101906121a2565b5b5090506121cb91906121cf565b5090565b5b808211156121e85760008160009055506001016121d0565b5090565b60006121ff6121fa84612b72565b612b4d565b90508281526020810184848401111561221b5761221a612ef5565b5b612226848285612d8f565b509392505050565b600061224161223c84612ba3565b612b4d565b90508281526020810184848401111561225d5761225c612ef5565b5b612268848285612d8f565b509392505050565b60008135905061227f81613101565b92915050565b60008135905061229481613118565b92915050565b6000813590506122a98161312f565b92915050565b6000815190506122be8161312f565b92915050565b600082601f8301126122d9576122d8612ef0565b5b81356122e98482602086016121ec565b91505092915050565b600082601f83011261230757612306612ef0565b5b813561231784826020860161222e565b91505092915050565b60008135905061232f81613146565b92915050565b60006020828403121561234b5761234a612eff565b5b600061235984828501612270565b91505092915050565b6000806040838503121561237957612378612eff565b5b600061238785828601612270565b925050602061239885828601612270565b9150509250929050565b6000806000606084860312156123bb576123ba612eff565b5b60006123c986828701612270565b93505060206123da86828701612270565b92505060406123eb86828701612320565b9150509250925092565b6000806000806080858703121561240f5761240e612eff565b5b600061241d87828801612270565b945050602061242e87828801612270565b935050604061243f87828801612320565b925050606085013567ffffffffffffffff8111156124605761245f612efa565b5b61246c878288016122c4565b91505092959194509250565b6000806040838503121561248f5761248e612eff565b5b600061249d85828601612270565b92505060206124ae85828601612285565b9150509250929050565b600080604083850312156124cf576124ce612eff565b5b60006124dd85828601612270565b92505060206124ee85828601612320565b9150509250929050565b60006020828403121561250e5761250d612eff565b5b600061251c84828501612285565b91505092915050565b60006020828403121561253b5761253a612eff565b5b60006125498482850161229a565b91505092915050565b60006020828403121561256857612567612eff565b5b6000612576848285016122af565b91505092915050565b60006020828403121561259557612594612eff565b5b600082013567ffffffffffffffff8111156125b3576125b2612efa565b5b6125bf848285016122f2565b91505092915050565b6000602082840312156125de576125dd612eff565b5b60006125ec84828501612320565b91505092915050565b6125fe81612d1b565b82525050565b61260d81612d2d565b82525050565b600061261e82612be9565b6126288185612bff565b9350612638818560208601612d9e565b61264181612f04565b840191505092915050565b600061265782612bf4565b6126618185612c1b565b9350612671818560208601612d9e565b61267a81612f04565b840191505092915050565b600061269082612bf4565b61269a8185612c2c565b93506126aa818560208601612d9e565b80840191505092915050565b600081546126c381612dd1565b6126cd8186612c2c565b945060018216600081146126e857600181146126f95761272c565b60ff1983168652818601935061272c565b61270285612bd4565b60005b8381101561272457815481890152600182019150602081019050612705565b838801955050505b50505092915050565b6000612742602683612c1b565b915061274d82612f15565b604082019050919050565b6000612765600a83612c1b565b915061277082612f64565b602082019050919050565b6000612788601283612c1b565b915061279382612f8d565b602082019050919050565b60006127ab601283612c1b565b91506127b682612fb6565b602082019050919050565b60006127ce601583612c1b565b91506127d982612fdf565b602082019050919050565b60006127f1602083612c1b565b91506127fc82613008565b602082019050919050565b6000612814601683612c1b565b915061281f82613031565b602082019050919050565b6000612837600083612c10565b91506128428261305a565b600082019050919050565b600061285a600e83612c1b565b91506128658261305d565b602082019050919050565b600061287d601683612c1b565b915061288882613086565b602082019050919050565b60006128a0600c83612c1b565b91506128ab826130af565b602082019050919050565b60006128c3600983612c1b565b91506128ce826130d8565b602082019050919050565b6128e281612d85565b82525050565b60006128f482866126b6565b91506129008285612685565b915061290c8284612685565b9150819050949350505050565b60006129248261282a565b9150819050919050565b600060208201905061294360008301846125f5565b92915050565b600060808201905061295e60008301876125f5565b61296b60208301866125f5565b61297860408301856128d9565b818103606083015261298a8184612613565b905095945050505050565b60006020820190506129aa6000830184612604565b92915050565b600060208201905081810360008301526129ca818461264c565b905092915050565b600060208201905081810360008301526129eb81612735565b9050919050565b60006020820190508181036000830152612a0b81612758565b9050919050565b60006020820190508181036000830152612a2b8161277b565b9050919050565b60006020820190508181036000830152612a4b8161279e565b9050919050565b60006020820190508181036000830152612a6b816127c1565b9050919050565b60006020820190508181036000830152612a8b816127e4565b9050919050565b60006020820190508181036000830152612aab81612807565b9050919050565b60006020820190508181036000830152612acb8161284d565b9050919050565b60006020820190508181036000830152612aeb81612870565b9050919050565b60006020820190508181036000830152612b0b81612893565b9050919050565b60006020820190508181036000830152612b2b816128b6565b9050919050565b6000602082019050612b4760008301846128d9565b92915050565b6000612b57612b68565b9050612b638282612e03565b919050565b6000604051905090565b600067ffffffffffffffff821115612b8d57612b8c612ec1565b5b612b9682612f04565b9050602081019050919050565b600067ffffffffffffffff821115612bbe57612bbd612ec1565b5b612bc782612f04565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4282612d85565b9150612c4d83612d85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8257612c81612e34565b5b828201905092915050565b6000612c9882612d85565b9150612ca383612d85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cdc57612cdb612e34565b5b828202905092915050565b6000612cf282612d85565b9150612cfd83612d85565b925082821015612d1057612d0f612e34565b5b828203905092915050565b6000612d2682612d65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dbc578082015181840152602081019050612da1565b83811115612dcb576000848401525b50505050565b60006002820490506001821680612de957607f821691505b60208210811415612dfd57612dfc612e92565b5b50919050565b612e0c82612f04565b810181811067ffffffffffffffff82111715612e2b57612e2a612ec1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b61310a81612d1b565b811461311557600080fd5b50565b61312181612d2d565b811461312c57600080fd5b50565b61313881612d39565b811461314357600080fd5b50565b61314f81612d85565b811461315a57600080fd5b5056fea264697066735822122069944a77e42dc936cb38b70a5cda6d5569d4a201aeb094ae95820b3b0db7b77364736f6c63430008070033

Deployed Bytecode Sourcemap

70289:2591:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37196:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70373:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70731:804;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44589:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44022:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33849:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48228:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71543:209;;;;;;;;;;;;;:::i;:::-;;51149:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72260:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70406:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70334:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72065:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70647:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72173:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71869:86;;;;;;;;;;;;;:::i;:::-;;39491:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70480:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35033:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;;;;;;;;;;;:::i;:::-;;71963:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38274:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70442:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45147:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51940:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70594:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72476:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72355:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45538:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37196:639;37281:4;37620:10;37605:25;;:11;:25;;;;:102;;;;37697:10;37682:25;;:11;:25;;;;37605:102;:179;;;;37774:10;37759:25;;:11;:25;;;;37605:179;37585:199;;37196:639;;;:::o;70373:26::-;;;;:::o;38098:100::-;38152:13;38185:5;38178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38098:100;:::o;70731:804::-;70790:15;70808:12;:10;:12::i;:::-;70790:30;;70839:5;;;;;;;;;;;70831:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;70903:7;70887:13;:11;:13::i;:::-;:23;;;;:::i;:::-;70877:6;;:33;;70869:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70962:1;70952:7;:11;70944:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;71010:7;70997:20;;:9;:20;;;70989:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;71089:12;;71078:7;71053:22;71067:7;71053:13;:22::i;:::-;:32;;;;:::i;:::-;:48;;71045:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;70365:1;71144:25;71158:10;71144:13;:25::i;:::-;:36;71141:349;;71228:5;;71218:7;:15;;;;:::i;:::-;71205:9;:28;;71197:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71141:349;;;71292:10;71333:7;71305:25;71319:10;71305:13;:25::i;:::-;:35;;;;:::i;:::-;71292:48;;70365:1;71358:5;:15;71355:124;;;71434:5;;70365:1;71415:5;:15;;;;:::i;:::-;71414:25;;;;:::i;:::-;71401:9;:38;;71393:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;71355:124;71277:213;71141:349;71500:27;71510:7;71519;71500:9;:27::i;:::-;70779:756;70731:804;:::o;44589:218::-;44665:7;44690:16;44698:7;44690;:16::i;:::-;44685:64;;44715:34;;;;;;;;;;;;;;44685:64;44769:15;:24;44785:7;44769:24;;;;;;;;;;;:30;;;;;;;;;;;;44762:37;;44589:218;;;:::o;44022:408::-;44111:13;44127:16;44135:7;44127;:16::i;:::-;44111:32;;44183:5;44160:28;;:19;:17;:19::i;:::-;:28;;;44156:175;;44208:44;44225:5;44232:19;:17;:19::i;:::-;44208:16;:44::i;:::-;44203:128;;44280:35;;;;;;;;;;;;;;44203:128;44156:175;44376:2;44343:15;:24;44359:7;44343:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44414:7;44410:2;44394:28;;44403:5;44394:28;;;;;;;;;;;;44100:330;44022:408;;:::o;33849:323::-;33910:7;34138:15;:13;:15::i;:::-;34123:12;;34107:13;;:28;:46;34100:53;;33849:323;:::o;48228:2825::-;48370:27;48400;48419:7;48400:18;:27::i;:::-;48370:57;;48485:4;48444:45;;48460:19;48444:45;;;48440:86;;48498:28;;;;;;;;;;;;;;48440:86;48540:27;48569:23;48596:35;48623:7;48596:26;:35::i;:::-;48539:92;;;;48731:68;48756:15;48773:4;48779:19;:17;:19::i;:::-;48731:24;:68::i;:::-;48726:180;;48819:43;48836:4;48842:19;:17;:19::i;:::-;48819:16;:43::i;:::-;48814:92;;48871:35;;;;;;;;;;;;;;48814:92;48726:180;48937:1;48923:16;;:2;:16;;;48919:52;;;48948:23;;;;;;;;;;;;;;48919:52;48984:43;49006:4;49012:2;49016:7;49025:1;48984:21;:43::i;:::-;49120:15;49117:160;;;49260:1;49239:19;49232:30;49117:160;49657:18;:24;49676:4;49657:24;;;;;;;;;;;;;;;;49655:26;;;;;;;;;;;;49726:18;:22;49745:2;49726:22;;;;;;;;;;;;;;;;49724:24;;;;;;;;;;;50048:146;50085:2;50134:45;50149:4;50155:2;50159:19;50134:14;:45::i;:::-;30248:8;50106:73;50048:18;:146::i;:::-;50019:17;:26;50037:7;50019:26;;;;;;;;;;;:175;;;;50365:1;30248:8;50314:19;:47;:52;50310:627;;;50387:19;50419:1;50409:7;:11;50387:33;;50576:1;50542:17;:30;50560:11;50542:30;;;;;;;;;;;;:35;50538:384;;;50680:13;;50665:11;:28;50661:242;;50860:19;50827:17;:30;50845:11;50827:30;;;;;;;;;;;:52;;;;50661:242;50538:384;50368:569;50310:627;50984:7;50980:2;50965:27;;50974:4;50965:27;;;;;;;;;;;;51003:42;51024:4;51030:2;51034:7;51043:1;51003:20;:42::i;:::-;48359:2694;;;48228:2825;;;:::o;71543:209::-;17213:13;:11;:13::i;:::-;71593:15:::1;71611:21;71593:39;;71644:12;71662;:10;:12::i;:::-;:17;;71687:7;71662:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71643:56;;;71718:7;71710:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;71582:170;;71543:209::o:0;51149:193::-;51295:39;51312:4;51318:2;51322:7;51295:39;;;;;;;;;;;;:16;:39::i;:::-;51149:193;;;:::o;72260:89::-;17213:13;:11;:13::i;:::-;72333:8:::1;72325:5;:16;;;;72260:89:::0;:::o;70406:29::-;;;;:::o;70334:32::-;70365:1;70334:32;:::o;72065:100::-;17213:13;:11;:13::i;:::-;72149:8:::1;72139:7;:18;;;;;;;;;;;;:::i;:::-;;72065:100:::0;:::o;70647:25::-;;;;;;;;;;;;;:::o;72173:79::-;17213:13;:11;:13::i;:::-;72238:6:::1;72230:5;;:14;;;;;;;;;;;;;;;;;;72173:79:::0;:::o;71869:86::-;17213:13;:11;:13::i;:::-;71919:28:::1;71929:12;:10;:12::i;:::-;71943:3;71919:9;:28::i;:::-;71869:86::o:0;39491:152::-;39563:7;39606:27;39625:7;39606:18;:27::i;:::-;39583:52;;39491:152;;;:::o;70480:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35033:233::-;35105:7;35146:1;35129:19;;:5;:19;;;35125:60;;;35157:28;;;;;;;;;;;;;;35125:60;29192:13;35203:18;:25;35222:5;35203:25;;;;;;;;;;;;;;;;:55;35196:62;;35033:233;;;:::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;71963:94::-;17213:13;:11;:13::i;:::-;72040:9:::1;72031:6;:18;;;;71963:94:::0;:::o;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;38274:104::-;38330:13;38363:7;38356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38274:104;:::o;70442:31::-;;;;:::o;45147:234::-;45294:8;45242:18;:39;45261:19;:17;:19::i;:::-;45242:39;;;;;;;;;;;;;;;:49;45282:8;45242:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45354:8;45318:55;;45333:19;:17;:19::i;:::-;45318:55;;;45364:8;45318:55;;;;;;:::i;:::-;;;;;;;;45147:234;;:::o;51940:407::-;52115:31;52128:4;52134:2;52138:7;52115:12;:31::i;:::-;52179:1;52161:2;:14;;;:19;52157:183;;52200:56;52231:4;52237:2;52241:7;52250:5;52200:30;:56::i;:::-;52195:145;;52284:40;;;;;;;;;;;;;;52195:145;52157:183;51940:407;;;;:::o;70594:46::-;;;;;;;;;;;;;;;;;;;:::o;72476:401::-;72542:13;72576:17;72584:8;72576:7;:17::i;:::-;72568:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;72661:1;72643:7;72637:21;;;;;:::i;:::-;;;:25;:232;;;;;;;;;;;;;;;;;72719:7;72743:26;72760:8;72743:16;:26::i;:::-;72825:13;;;;;;;;;;;;;;;;;72686:167;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72637:232;72630:239;;72476:401;;;:::o;72355:113::-;72413:7;72440:20;72454:5;72440:13;:20::i;:::-;72433:27;;72355:113;;;:::o;45538:164::-;45635:4;45659:18;:25;45678:5;45659:25;;;;;;;;;;;;;;;:35;45685:8;45659:35;;;;;;;;;;;;;;;;;;;;;;;;;45652:42;;45538:164;;;;:::o;18233:201::-;17213:13;:11;:13::i;:::-;18342:1:::1;18322:22;;:8;:22;;;;18314:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;35348:178::-;35409:7;29192:13;29330:2;35437:18;:25;35456:5;35437:25;;;;;;;;;;;;;;;;:50;;35436:82;35429:89;;35348:178;;;:::o;62100:112::-;62177:27;62187:2;62191:8;62177:27;;;;;;;;;;;;:9;:27::i;:::-;62100:112;;:::o;45960:282::-;46025:4;46081:7;46062:15;:13;:15::i;:::-;:26;;:66;;;;;46115:13;;46105:7;:23;46062:66;:153;;;;;46214:1;29968:8;46166:17;:26;46184:7;46166:26;;;;;;;;;;;;:44;:49;46062:153;46042:173;;45960:282;;;:::o;68268:105::-;68328:7;68355:10;68348:17;;68268:105;:::o;71760:101::-;71825:7;71852:1;71845:8;;71760:101;:::o;40646:1275::-;40713:7;40733:12;40748:7;40733:22;;40816:4;40797:15;:13;:15::i;:::-;:23;40793:1061;;40850:13;;40843:4;:20;40839:1015;;;40888:14;40905:17;:23;40923:4;40905:23;;;;;;;;;;;;40888:40;;41022:1;29968:8;40994:6;:24;:29;40990:845;;;41659:113;41676:1;41666:6;:11;41659:113;;;41719:17;:25;41737:6;;;;;;;41719:25;;;;;;;;;;;;41710:34;;41659:113;;;41805:6;41798:13;;;;;;40990:845;40865:989;40839:1015;40793:1061;41882:31;;;;;;;;;;;;;;40646:1275;;;;:::o;47123:485::-;47225:27;47254:23;47295:38;47336:15;:24;47352:7;47336:24;;;;;;;;;;;47295:65;;47513:18;47490:41;;47570:19;47564:26;47545:45;;47475:126;47123:485;;;:::o;46351:659::-;46500:11;46665:16;46658:5;46654:28;46645:37;;46825:16;46814:9;46810:32;46797:45;;46975:15;46964:9;46961:30;46953:5;46942:9;46939:20;46936:56;46926:66;;46351:659;;;;;:::o;53009:159::-;;;;;:::o;67577:311::-;67712:7;67732:16;30372:3;67758:19;:41;;67732:68;;30372:3;67826:31;67837:4;67843:2;67847:9;67826:10;:31::i;:::-;67818:40;;:62;;67811:69;;;67577:311;;;;;:::o;42469:450::-;42549:14;42717:16;42710:5;42706:28;42697:37;;42894:5;42880:11;42855:23;42851:41;42848:52;42841:5;42838:63;42828:73;;42469:450;;;;:::o;53833:158::-;;;;;:::o;17492:132::-;17567:12;:10;:12::i;:::-;17556:23;;:7;:5;:7::i;:::-;:23;;;17548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17492:132::o;18594:191::-;18668:16;18687:6;;;;;;;;;;;18668:25;;18713:8;18704:6;;:17;;;;;;;;;;;;;;;;;;18768:8;18737:40;;18758:8;18737:40;;;;;;;;;;;;18657:128;18594:191;:::o;54431:716::-;54594:4;54640:2;54615:45;;;54661:19;:17;:19::i;:::-;54682:4;54688:7;54697:5;54615:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54611:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54915:1;54898:6;:13;:18;54894:235;;;54944:40;;;;;;;;;;;;;;54894:235;55087:6;55081:13;55072:6;55068:2;55064:15;55057:38;54611:529;54784:54;;;54774:64;;;:6;:64;;;;54767:71;;;54431:716;;;;;;:::o;13305:::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;61327:689::-;61458:19;61464:2;61468:8;61458:5;:19::i;:::-;61537:1;61519:2;:14;;;:19;61515:483;;61559:11;61573:13;;61559:27;;61605:13;61627:8;61621:3;:14;61605:30;;61654:233;61685:62;61724:1;61728:2;61732:7;;;;;;61741:5;61685:30;:62::i;:::-;61680:167;;61783:40;;;;;;;;;;;;;;61680:167;61882:3;61874:5;:11;61654:233;;61969:3;61952:13;;:20;61948:34;;61974:8;;;61948:34;61540:458;;61515:483;61327:689;;;:::o;67278:147::-;67415:6;67278:147;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;55609:2966::-;55682:20;55705:13;;55682:36;;55745:1;55733:8;:13;55729:44;;;55755:18;;;;;;;;;;;;;;55729:44;55786:61;55816:1;55820:2;55824:12;55838:8;55786:21;:61::i;:::-;56330:1;29330:2;56300:1;:26;;56299:32;56287:8;:45;56261:18;:22;56280:2;56261:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56609:139;56646:2;56700:33;56723:1;56727:2;56731:1;56700:14;:33::i;:::-;56667:30;56688:8;56667:20;:30::i;:::-;:66;56609:18;:139::i;:::-;56575:17;:31;56593:12;56575:31;;;;;;;;;;;:173;;;;56765:16;56796:11;56825:8;56810:12;:23;56796:37;;57346:16;57342:2;57338:25;57326:37;;57718:12;57678:8;57637:1;57575:25;57516:1;57455;57428:335;58089:1;58075:12;58071:20;58029:346;58130:3;58121:7;58118:16;58029:346;;58348:7;58338:8;58335:1;58308:25;58305:1;58302;58297:59;58183:1;58174:7;58170:15;58159:26;;58029:346;;;58033:77;58420:1;58408:8;:13;58404:45;;;58430:19;;;;;;;;;;;;;;58404:45;58482:3;58466:13;:19;;;;56035:2462;;58507:60;58536:1;58540:2;58544:12;58558:8;58507:20;:60::i;:::-;55671:2904;55609:2966;;:::o;43021:324::-;43091:14;43324:1;43314:8;43311:15;43285:24;43281:46;43271:56;;43021:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:398::-;12483:3;12504:83;12585:1;12580:3;12504:83;:::i;:::-;12497:90;;12596:93;12685:3;12596:93;:::i;:::-;12714:1;12709:3;12705:11;12698:18;;12324:398;;;:::o;12728:366::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12728:366;;;:::o;13100:::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:365::-;13986:3;14007:66;14071:1;14066:3;14007:66;:::i;:::-;14000:73;;14082:93;14171:3;14082:93;:::i;:::-;14200:2;14195:3;14191:12;14184:19;;13844:365;;;:::o;14215:118::-;14302:24;14320:5;14302:24;:::i;:::-;14297:3;14290:37;14215:118;;:::o;14339:589::-;14564:3;14586:92;14674:3;14665:6;14586:92;:::i;:::-;14579:99;;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:3;14912:10;;14339:589;;;;;;:::o;14934:379::-;15118:3;15140:147;15283:3;15140:147;:::i;:::-;15133:154;;15304:3;15297:10;;14934:379;;;:::o;15319:222::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15463:71;15531:1;15520:9;15516:17;15507:6;15463:71;:::i;:::-;15319:222;;;;:::o;15547:640::-;15742:4;15780:3;15769:9;15765:19;15757:27;;15794:71;15862:1;15851:9;15847:17;15838:6;15794:71;:::i;:::-;15875:72;15943:2;15932:9;15928:18;15919:6;15875:72;:::i;:::-;15957;16025:2;16014:9;16010:18;16001:6;15957:72;:::i;:::-;16076:9;16070:4;16066:20;16061:2;16050:9;16046:18;16039:48;16104:76;16175:4;16166:6;16104:76;:::i;:::-;16096:84;;15547:640;;;;;;;:::o;16193:210::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16331:65;16393:1;16382:9;16378:17;16369:6;16331:65;:::i;:::-;16193:210;;;;:::o;16409:313::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:78;16710:4;16701:6;16637:78;:::i;:::-;16629:86;;16409:313;;;;:::o;16728:419::-;16894:4;16932:2;16921:9;16917:18;16909:26;;16981:9;16975:4;16971:20;16967:1;16956:9;16952:17;16945:47;17009:131;17135:4;17009:131;:::i;:::-;17001:139;;16728:419;;;:::o;17153:::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17831:9;17825:4;17821:20;17817:1;17806:9;17802:17;17795:47;17859:131;17985:4;17859:131;:::i;:::-;17851:139;;17578:419;;;:::o;18003:::-;18169:4;18207:2;18196:9;18192:18;18184:26;;18256:9;18250:4;18246:20;18242:1;18231:9;18227:17;18220:47;18284:131;18410:4;18284:131;:::i;:::-;18276:139;;18003:419;;;:::o;18428:::-;18594:4;18632:2;18621:9;18617:18;18609:26;;18681:9;18675:4;18671:20;18667:1;18656:9;18652:17;18645:47;18709:131;18835:4;18709:131;:::i;:::-;18701:139;;18428:419;;;:::o;18853:::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;18853:419;;;:::o;19278:::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19531:9;19525:4;19521:20;19517:1;19506:9;19502:17;19495:47;19559:131;19685:4;19559:131;:::i;:::-;19551:139;;19278:419;;;:::o;19703:::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:131;20110:4;19984:131;:::i;:::-;19976:139;;19703:419;;;:::o;20128:::-;20294:4;20332:2;20321:9;20317:18;20309:26;;20381:9;20375:4;20371:20;20367:1;20356:9;20352:17;20345:47;20409:131;20535:4;20409:131;:::i;:::-;20401:139;;20128:419;;;:::o;20553:::-;20719:4;20757:2;20746:9;20742:18;20734:26;;20806:9;20800:4;20796:20;20792:1;20781:9;20777:17;20770:47;20834:131;20960:4;20834:131;:::i;:::-;20826:139;;20553:419;;;:::o;20978:::-;21144:4;21182:2;21171:9;21167:18;21159:26;;21231:9;21225:4;21221:20;21217:1;21206:9;21202:17;21195:47;21259:131;21385:4;21259:131;:::i;:::-;21251:139;;20978:419;;;:::o;21403:222::-;21496:4;21534:2;21523:9;21519:18;21511:26;;21547:71;21615:1;21604:9;21600:17;21591:6;21547:71;:::i;:::-;21403:222;;;;:::o;21631:129::-;21665:6;21692:20;;:::i;:::-;21682:30;;21721:33;21749:4;21741:6;21721:33;:::i;:::-;21631:129;;;:::o;21766:75::-;21799:6;21832:2;21826:9;21816:19;;21766:75;:::o;21847:307::-;21908:4;21998:18;21990:6;21987:30;21984:56;;;22020:18;;:::i;:::-;21984:56;22058:29;22080:6;22058:29;:::i;:::-;22050:37;;22142:4;22136;22132:15;22124:23;;21847:307;;;:::o;22160:308::-;22222:4;22312:18;22304:6;22301:30;22298:56;;;22334:18;;:::i;:::-;22298:56;22372:29;22394:6;22372:29;:::i;:::-;22364:37;;22456:4;22450;22446:15;22438:23;;22160:308;;;:::o;22474:141::-;22523:4;22546:3;22538:11;;22569:3;22566:1;22559:14;22603:4;22600:1;22590:18;22582:26;;22474:141;;;:::o;22621:98::-;22672:6;22706:5;22700:12;22690:22;;22621:98;;;:::o;22725:99::-;22777:6;22811:5;22805:12;22795:22;;22725:99;;;:::o;22830:168::-;22913:11;22947:6;22942:3;22935:19;22987:4;22982:3;22978:14;22963:29;;22830:168;;;;:::o;23004:147::-;23105:11;23142:3;23127:18;;23004:147;;;;:::o;23157:169::-;23241:11;23275:6;23270:3;23263:19;23315:4;23310:3;23306:14;23291:29;;23157:169;;;;:::o;23332:148::-;23434:11;23471:3;23456:18;;23332:148;;;;:::o;23486:305::-;23526:3;23545:20;23563:1;23545:20;:::i;:::-;23540:25;;23579:20;23597:1;23579:20;:::i;:::-;23574:25;;23733:1;23665:66;23661:74;23658:1;23655:81;23652:107;;;23739:18;;:::i;:::-;23652:107;23783:1;23780;23776:9;23769:16;;23486:305;;;;:::o;23797:348::-;23837:7;23860:20;23878:1;23860:20;:::i;:::-;23855:25;;23894:20;23912:1;23894:20;:::i;:::-;23889:25;;24082:1;24014:66;24010:74;24007:1;24004:81;23999:1;23992:9;23985:17;23981:105;23978:131;;;24089:18;;:::i;:::-;23978:131;24137:1;24134;24130:9;24119:20;;23797:348;;;;:::o;24151:191::-;24191:4;24211:20;24229:1;24211:20;:::i;:::-;24206:25;;24245:20;24263:1;24245:20;:::i;:::-;24240:25;;24284:1;24281;24278:8;24275:34;;;24289:18;;:::i;:::-;24275:34;24334:1;24331;24327:9;24319:17;;24151:191;;;;:::o;24348:96::-;24385:7;24414:24;24432:5;24414:24;:::i;:::-;24403:35;;24348:96;;;:::o;24450:90::-;24484:7;24527:5;24520:13;24513:21;24502:32;;24450:90;;;:::o;24546:149::-;24582:7;24622:66;24615:5;24611:78;24600:89;;24546:149;;;:::o;24701:126::-;24738:7;24778:42;24771:5;24767:54;24756:65;;24701:126;;;:::o;24833:77::-;24870:7;24899:5;24888:16;;24833:77;;;:::o;24916:154::-;25000:6;24995:3;24990;24977:30;25062:1;25053:6;25048:3;25044:16;25037:27;24916:154;;;:::o;25076:307::-;25144:1;25154:113;25168:6;25165:1;25162:13;25154:113;;;25253:1;25248:3;25244:11;25238:18;25234:1;25229:3;25225:11;25218:39;25190:2;25187:1;25183:10;25178:15;;25154:113;;;25285:6;25282:1;25279:13;25276:101;;;25365:1;25356:6;25351:3;25347:16;25340:27;25276:101;25125:258;25076:307;;;:::o;25389:320::-;25433:6;25470:1;25464:4;25460:12;25450:22;;25517:1;25511:4;25507:12;25538:18;25528:81;;25594:4;25586:6;25582:17;25572:27;;25528:81;25656:2;25648:6;25645:14;25625:18;25622:38;25619:84;;;25675:18;;:::i;:::-;25619:84;25440:269;25389:320;;;:::o;25715:281::-;25798:27;25820:4;25798:27;:::i;:::-;25790:6;25786:40;25928:6;25916:10;25913:22;25892:18;25880:10;25877:34;25874:62;25871:88;;;25939:18;;:::i;:::-;25871:88;25979:10;25975:2;25968:22;25758:238;25715:281;;:::o;26002:180::-;26050:77;26047:1;26040:88;26147:4;26144:1;26137:15;26171:4;26168:1;26161:15;26188:180;26236:77;26233:1;26226:88;26333:4;26330:1;26323:15;26357:4;26354:1;26347:15;26374:180;26422:77;26419:1;26412:88;26519:4;26516:1;26509:15;26543:4;26540:1;26533:15;26560:180;26608:77;26605:1;26598:88;26705:4;26702:1;26695:15;26729:4;26726:1;26719:15;26746:117;26855:1;26852;26845:12;26869:117;26978:1;26975;26968:12;26992:117;27101:1;27098;27091:12;27115:117;27224:1;27221;27214:12;27238:102;27279:6;27330:2;27326:7;27321:2;27314:5;27310:14;27306:28;27296:38;;27238:102;;;:::o;27346:225::-;27486:34;27482:1;27474:6;27470:14;27463:58;27555:8;27550:2;27542:6;27538:15;27531:33;27346:225;:::o;27577:160::-;27717:12;27713:1;27705:6;27701:14;27694:36;27577:160;:::o;27743:168::-;27883:20;27879:1;27871:6;27867:14;27860:44;27743:168;:::o;27917:::-;28057:20;28053:1;28045:6;28041:14;28034:44;27917:168;:::o;28091:171::-;28231:23;28227:1;28219:6;28215:14;28208:47;28091:171;:::o;28268:182::-;28408:34;28404:1;28396:6;28392:14;28385:58;28268:182;:::o;28456:172::-;28596:24;28592:1;28584:6;28580:14;28573:48;28456:172;:::o;28634:114::-;;:::o;28754:164::-;28894:16;28890:1;28882:6;28878:14;28871:40;28754:164;:::o;28924:172::-;29064:24;29060:1;29052:6;29048:14;29041:48;28924:172;:::o;29102:162::-;29242:14;29238:1;29230:6;29226:14;29219:38;29102:162;:::o;29270:159::-;29410:11;29406:1;29398:6;29394:14;29387:35;29270:159;:::o;29435:122::-;29508:24;29526:5;29508:24;:::i;:::-;29501:5;29498:35;29488:63;;29547:1;29544;29537:12;29488:63;29435:122;:::o;29563:116::-;29633:21;29648:5;29633:21;:::i;:::-;29626:5;29623:32;29613:60;;29669:1;29666;29659:12;29613:60;29563:116;:::o;29685:120::-;29757:23;29774:5;29757:23;:::i;:::-;29750:5;29747:34;29737:62;;29795:1;29792;29785:12;29737:62;29685:120;:::o;29811:122::-;29884:24;29902:5;29884:24;:::i;:::-;29877:5;29874:35;29864:63;;29923:1;29920;29913:12;29864:63;29811:122;:::o

Swarm Source

ipfs://69944a77e42dc936cb38b70a5cda6d5569d4a201aeb094ae95820b3b0db7b773
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.