ETH Price: $2,364.82 (-3.97%)

Token

RetroRaccoonsNFT (RR80)
 

Overview

Max Total Supply

655 RR80

Holders

190

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 RR80
0x67ef74ccbc59d6eb303e1d87245ce4a7219500f1
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:
RetroRaccoons

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-20
*/

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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 v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: RetroR.sol



/* ######   #######   ######  ######    #####            ######    #####    #####    #####    #####    #####   ##  ###   #####   
### ###  ### ###   # ## #  ### ###  ### ###           ### ###  ### ###  ### ###  ### ###  ### ###  ### ###  ### ###  ###  ##  
### ###  ###         ##    ### ###  ### ###           ### ###  ### ###  ###      ###      ### ###  ### ###  #######  ###      
######   #####       ##    ######   ### ###           ######   #######  ###      ###      ### ###  ### ###  #######   #####   
### ##   ###         ##    ### ##   ### ###           ### ##   ### ###  ###      ###      ### ###  ### ###  ### ###       ##  
### ###  ### ###     ##    ### ###  ### ###           ### ###  ### ###  ### ###  ### ###  ### ###  ### ###  ### ###  ###  ##  
### ###  #######     ##    ### ###   #####            ### ###  ### ###   #####    #####    #####    #####   ### ###   #####   

Developer: Crankydev.eth                                                                                                                            
*/
pragma solidity >=0.7.0 <0.9.0;



contract RetroRaccoons is ERC721A, Ownable {
    string public constant SYMBOL = "RR80's"; 
    uint256 public COST = 0.008 ether;
    uint256 public MAX_SUPPLY = 8080;
    uint256 public MAX_PER_TX = 50;
    uint256 public MAX_FREE_MINTS_PER_WALLET = 2;
    uint256 public FREE_MINT_COST = 0.001 ether; 
    uint256 public MAX_FREE_MINT_SUPPLY = 2080;

    bool public SALE = false;
    bool public FREE_MINT_SALE = false;
    bool public isRevealed = false;
    string public baseURI;
    string public previewURI;

    error SaleNotActive();
    error FreeMintSaleNotActive();
    error MaxSupplyReached();
    error MaxPerTxReached();
    error MaxFreeMintsReached();
    error NotEnoughETH();
    error NoContractMint();

    mapping(address => uint256) public freeMints;  
    mapping(uint256 => uint256) public freeMintOperations;  
    uint256 public freeMintOperationCount = 0;

    address[] public owners; 

    modifier onlyOwners() {
        require(isOwner(msg.sender), "Caller is not an owner");
        _;
    }

    function isOwner(address addr) public view returns (bool) {
        for (uint i = 0; i < owners.length; i++) {
            if (owners[i] == addr) {
                return true;
            }
        }
        return false;
    }

    function setOwners(address[] calldata _owners) external onlyOwners {
        owners = _owners;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        address initialOwner
    ) ERC721A(_name, _symbol) Ownable(initialOwner) {
        owners.push(0xED5C41b2537f4e22060617696F9EC63204f046eC);
    }

    function setCost(uint256 _cost) external onlyOwners {
        COST = _cost;
    }
  
    function setFreeMintCost(uint256 _cost) external onlyOwners {
        FREE_MINT_COST = _cost;
    }


    function setSupply(uint256 _newSupply) external onlyOwners {
        MAX_SUPPLY = _newSupply;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function mintRR(uint256 _amount) external payable {
        if (!SALE) revert SaleNotActive();
        if (_totalMinted() + _amount > MAX_SUPPLY) revert MaxSupplyReached();
        if (_amount > MAX_PER_TX) revert MaxPerTxReached();  
        if (msg.value < COST * _amount) revert NotEnoughETH();

        _mint(msg.sender, _amount);
    }
    
    function FreeMintRR(uint256 _amount) external payable {  
        if (!FREE_MINT_SALE) revert FreeMintSaleNotActive();  
        require(msg.value >= FREE_MINT_COST * _amount, "NotEnoughETHForFreeMint");    
        
        freeMintOperationCount += 1;
        freeMintOperations[freeMintOperationCount] = _amount;
        
        uint256 totalFreeMints = 0;
        for (uint256 i = 1; i <= freeMintOperationCount; i++) {
            totalFreeMints += freeMintOperations[i];
        }

        require(totalFreeMints <= MAX_FREE_MINT_SUPPLY, "MaxFreeMintSupplyReached");
        require(_totalMinted() + _amount <= MAX_SUPPLY, "MaxSupplyReached");
        require(freeMints[msg.sender] + _amount <= MAX_FREE_MINTS_PER_WALLET, "MaxFreeMintsReached");
        if (tx.origin != msg.sender) revert NoContractMint(); 

        freeMints[msg.sender] += _amount;
        _mint(msg.sender, _amount);
    }


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

    function setBaseURI(string calldata _newURI) external onlyOwners {
        baseURI = _newURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
    if (isRevealed) {
        return baseURI;
    } else {
        return previewURI;  
    }

    }

     function setPreviewURI(string calldata _previewURI) external onlyOwners {
        require(!isRevealed, "Collection has already been revealed");
        previewURI = _previewURI;
    }

    function setIsRevealed(bool _reveal) external onlyOwners {
        isRevealed = _reveal;
    }

    function toggleSale(bool _toggle) external onlyOwners {
        SALE = _toggle;
    }

    function toggleFreeMintSale(bool _toggle) external onlyOwners {
        FREE_MINT_SALE = _toggle;
    }  

    function setMaxPerTx(uint256 _newMaxPerTx) external onlyOwners {
        MAX_PER_TX = _newMaxPerTx;
    }

    function Airdrop(uint256 _amount, address _to) external onlyOwners {
        if (_totalMinted() + _amount > MAX_SUPPLY) revert MaxSupplyReached();
        _mint(_to, _amount);
    }

    function burnFromOwner(uint256 _tokenId) external onlyOwners {
        require(_exists(_tokenId), "Token does not exist");
        _burn(_tokenId);
    }

    function withdraw() external onlyOwners {
        uint256 balance = address(this).balance;
        uint256 share = balance / owners.length;

        for (uint i = 0; i < owners.length; i++) {
            (bool success, ) = owners[i].call{value: share}("");
            require(success, "Transfer failed.");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FreeMintSaleNotActive","type":"error"},{"inputs":[],"name":"MaxFreeMintsReached","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoContractMint","type":"error"},{"inputs":[],"name":"NotEnoughETH","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","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"},{"internalType":"address","name":"_to","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_SALE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"FreeMintRR","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_FREE_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE","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":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnFromOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintOperationCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freeMintOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"addr","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintRR","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previewURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setFreeMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"}],"name":"setOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_previewURI","type":"string"}],"name":"setPreviewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"toggleFreeMintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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"}]

6080604052661c6bf526340000600955611f90600a556032600b556002600c5566038d7ea4c68000600d55610820600e555f600f5f6101000a81548160ff0219169083151502179055505f600f60016101000a81548160ff0219169083151502179055505f600f60026101000a81548160ff0219169083151502179055505f6014553480156200008d575f80fd5b50604051620047c8380380620047c88339818101604052810190620000b39190620004a4565b8083838160029081620000c7919062000772565b508060039081620000d9919062000772565b50620000ea620001f360201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000164575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200015b919062000867565b60405180910390fd5b6200017581620001fb60201b60201c565b50601573ed5c41b2537f4e22060617696f9ec63204f046ec908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000882565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200031f82620002d7565b810181811067ffffffffffffffff82111715620003415762000340620002e7565b5b80604052505050565b5f62000355620002be565b905062000363828262000314565b919050565b5f67ffffffffffffffff821115620003855762000384620002e7565b5b6200039082620002d7565b9050602081019050919050565b5f5b83811015620003bc5780820151818401526020810190506200039f565b5f8484015250505050565b5f620003dd620003d78462000368565b6200034a565b905082815260208101848484011115620003fc57620003fb620002d3565b5b620004098482856200039d565b509392505050565b5f82601f830112620004285762000427620002cf565b5b81516200043a848260208601620003c7565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200046e8262000443565b9050919050565b620004808162000462565b81146200048b575f80fd5b50565b5f815190506200049e8162000475565b92915050565b5f805f60608486031215620004be57620004bd620002c7565b5b5f84015167ffffffffffffffff811115620004de57620004dd620002cb565b5b620004ec8682870162000411565b935050602084015167ffffffffffffffff81111562000510576200050f620002cb565b5b6200051e8682870162000411565b925050604062000531868287016200048e565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200058a57607f821691505b602082108103620005a0576200059f62000545565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005c7565b620006108683620005c7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200065a620006546200064e8462000628565b62000631565b62000628565b9050919050565b5f819050919050565b62000675836200063a565b6200068d620006848262000661565b848454620005d3565b825550505050565b5f90565b620006a362000695565b620006b08184846200066a565b505050565b5b81811015620006d757620006cb5f8262000699565b600181019050620006b6565b5050565b601f8211156200072657620006f081620005a6565b620006fb84620005b8565b810160208510156200070b578190505b620007236200071a85620005b8565b830182620006b5565b50505b505050565b5f82821c905092915050565b5f620007485f19846008026200072b565b1980831691505092915050565b5f62000762838362000737565b9150826002028217905092915050565b6200077d826200053b565b67ffffffffffffffff811115620007995762000798620002e7565b5b620007a5825462000572565b620007b2828285620006db565b5f60209050601f831160018114620007e8575f8415620007d3578287015190505b620007df858262000755565b8655506200084e565b601f198416620007f886620005a6565b5f5b828110156200082157848901518255600182019150602085019450602081019050620007fa565b868310156200084157848901516200083d601f89168262000737565b8355505b6001600288020188555050505b505050505050565b620008618162000462565b82525050565b5f6020820190506200087c5f83018462000856565b92915050565b613f3880620008905f395ff3fe6080604052600436106102c8575f3560e01c80636c0360eb11610174578063b88d4fde116100db578063e985e9c511610094578063f2fde38b1161006e578063f2fde38b14610a8a578063f43a22dc14610ab2578063f76f8d7814610adc578063fa4d369814610b06576102c8565b8063e985e9c5146109fa578063efa99bd414610a36578063efc0172914610a60576102c8565b8063b88d4fde146108ea578063bf8fbbd214610906578063c6f6f21614610930578063c87b56dd14610958578063d3ff166c14610994578063dc33e681146109be576102c8565b80638da5cb5b1161012d5780638da5cb5b146107f657806390498f931461082057806395d89b4114610848578063a22cb46514610872578063aab402e51461089a578063b5f07ea1146108c2576102c8565b80636c0360eb146106fa5780636d41d4fb1461072457806370a0823114610760578063715018a61461079c5780637871e154146107b257806382b16219146107da576102c8565b80633ccfd60b116102335780634bad5954116101ec57806354214f69116101c657806354214f691461064457806355f804b31461066e5780636352211e1461069657806366ce78eb146106d2576102c8565b80634bad5954146105d65780634db08aea146105f257806352d4b1d31461061c576102c8565b80633ccfd60b146104ee5780633f2a9b4e1461050457806342842e0e1461054057806344a0d68a1461055c57806349a5980a146105845780634a42bc2d146105ac576102c8565b80632025691b116102855780632025691b146103f057806323b872dd1461041a578063293ae5cf146104365780632f54bf6e1461046057806332cb6b0c1461049c5780633b4c4b25146104c6576102c8565b806301ffc9a7146102cc578063025e7c271461030857806306fdde0314610344578063081812fc1461036e578063095ea7b3146103aa57806318160ddd146103c6575b5f80fd5b3480156102d7575f80fd5b506102f260048036038101906102ed9190612f14565b610b2e565b6040516102ff9190612f59565b60405180910390f35b348015610313575f80fd5b5061032e60048036038101906103299190612fa5565b610bbf565b60405161033b919061300f565b60405180910390f35b34801561034f575f80fd5b50610358610bfa565b60405161036591906130b2565b60405180910390f35b348015610379575f80fd5b50610394600480360381019061038f9190612fa5565b610c8a565b6040516103a1919061300f565b60405180910390f35b6103c460048036038101906103bf91906130fc565b610d04565b005b3480156103d1575f80fd5b506103da610e43565b6040516103e79190613149565b60405180910390f35b3480156103fb575f80fd5b50610404610e58565b6040516104119190612f59565b60405180910390f35b610434600480360381019061042f9190613162565b610e6b565b005b348015610441575f80fd5b5061044a611179565b6040516104579190613149565b60405180910390f35b34801561046b575f80fd5b50610486600480360381019061048191906131b2565b61117f565b6040516104939190612f59565b60405180910390f35b3480156104a7575f80fd5b506104b0611227565b6040516104bd9190613149565b60405180910390f35b3480156104d1575f80fd5b506104ec60048036038101906104e79190612fa5565b61122d565b005b3480156104f9575f80fd5b5061050261127f565b005b34801561050f575f80fd5b5061052a60048036038101906105259190612fa5565b6113ea565b6040516105379190613149565b60405180910390f35b61055a60048036038101906105559190613162565b6113ff565b005b348015610567575f80fd5b50610582600480360381019061057d9190612fa5565b61141e565b005b34801561058f575f80fd5b506105aa60048036038101906105a59190613207565b611470565b005b3480156105b7575f80fd5b506105c06114d5565b6040516105cd9190613149565b60405180910390f35b6105f060048036038101906105eb9190612fa5565b6114db565b005b3480156105fd575f80fd5b506106066115fe565b6040516106139190612f59565b60405180910390f35b348015610627575f80fd5b50610642600480360381019061063d9190612fa5565b611610565b005b34801561064f575f80fd5b50610658611662565b6040516106659190612f59565b60405180910390f35b348015610679575f80fd5b50610694600480360381019061068f9190613293565b611675565b005b3480156106a1575f80fd5b506106bc60048036038101906106b79190612fa5565b6116d3565b6040516106c9919061300f565b60405180910390f35b3480156106dd575f80fd5b506106f860048036038101906106f39190613207565b6116e4565b005b348015610705575f80fd5b5061070e611749565b60405161071b91906130b2565b60405180910390f35b34801561072f575f80fd5b5061074a600480360381019061074591906131b2565b6117d5565b6040516107579190613149565b60405180910390f35b34801561076b575f80fd5b50610786600480360381019061078191906131b2565b6117ea565b6040516107939190613149565b60405180910390f35b3480156107a7575f80fd5b506107b061189f565b005b3480156107bd575f80fd5b506107d860048036038101906107d391906132de565b6118b2565b005b6107f460048036038101906107ef9190612fa5565b611956565b005b348015610801575f80fd5b5061080a611c4f565b604051610817919061300f565b60405180910390f35b34801561082b575f80fd5b5061084660048036038101906108419190613293565b611c77565b005b348015610853575f80fd5b5061085c611d25565b60405161086991906130b2565b60405180910390f35b34801561087d575f80fd5b506108986004803603810190610893919061331c565b611db5565b005b3480156108a5575f80fd5b506108c060048036038101906108bb9190613207565b611ebb565b005b3480156108cd575f80fd5b506108e860048036038101906108e39190612fa5565b611f1f565b005b61090460048036038101906108ff9190613482565b611fbb565b005b348015610911575f80fd5b5061091a61202d565b6040516109279190613149565b60405180910390f35b34801561093b575f80fd5b5061095660048036038101906109519190612fa5565b612033565b005b348015610963575f80fd5b5061097e60048036038101906109799190612fa5565b612085565b60405161098b91906130b2565b60405180910390f35b34801561099f575f80fd5b506109a8612120565b6040516109b591906130b2565b60405180910390f35b3480156109c9575f80fd5b506109e460048036038101906109df91906131b2565b6121ac565b6040516109f19190613149565b60405180910390f35b348015610a05575f80fd5b50610a206004803603810190610a1b9190613502565b6121bd565b604051610a2d9190612f59565b60405180910390f35b348015610a41575f80fd5b50610a4a61224b565b604051610a579190613149565b60405180910390f35b348015610a6b575f80fd5b50610a74612251565b604051610a819190613149565b60405180910390f35b348015610a95575f80fd5b50610ab06004803603810190610aab91906131b2565b612257565b005b348015610abd575f80fd5b50610ac66122db565b604051610ad39190613149565b60405180910390f35b348015610ae7575f80fd5b50610af06122e1565b604051610afd91906130b2565b60405180910390f35b348015610b11575f80fd5b50610b2c6004803603810190610b279190613595565b61231a565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60158181548110610bce575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610c099061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c359061360d565b8015610c805780601f10610c5757610100808354040283529160200191610c80565b820191905f5260205f20905b815481529060010190602001808311610c6357829003601f168201915b5050505050905090565b5f610c9482612378565b610cca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610d0e826116d3565b90508073ffffffffffffffffffffffffffffffffffffffff16610d2f6123d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d9257610d5b81610d566123d2565b6121bd565b610d91576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610e4c6123d9565b6001545f540303905090565b600f60019054906101000a900460ff1681565b5f610e75826123e1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610edc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ee7846124a4565b91509150610efd8187610ef86123d2565b6124c7565b610f4957610f1286610f0d6123d2565b6121bd565b610f48576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fbb868686600161250a565b8015610fc5575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061108d85611069888887612510565b7c020000000000000000000000000000000000000000000000000000000017612537565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611109575f6001850190505f60045f8381526020019081526020015f205403611107575f548114611106578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111718686866001612561565b505050505050565b600c5481565b5f805f90505b60158054905081101561121d578273ffffffffffffffffffffffffffffffffffffffff16601582815481106111bd576111bc61363d565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361120a576001915050611222565b808061121590613697565b915050611185565b505f90505b919050565b600a5481565b6112363361117f565b611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c90613728565b60405180910390fd5b80600a8190555050565b6112883361117f565b6112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613728565b60405180910390fd5b5f4790505f601580549050826112dd9190613773565b90505f5b6015805490508110156113e5575f601582815481106113035761130261363d565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161134e906137d0565b5f6040518083038185875af1925050503d805f8114611388576040519150601f19603f3d011682016040523d82523d5f602084013e61138d565b606091505b50509050806113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c89061382e565b60405180910390fd5b5080806113dd90613697565b9150506112e1565b505050565b6013602052805f5260405f205f915090505481565b61141983838360405180602001604052805f815250611fbb565b505050565b6114273361117f565b611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613728565b60405180910390fd5b8060098190555050565b6114793361117f565b6114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613728565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b600d5481565b600f5f9054906101000a900460ff16611520576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161152c612567565b611536919061384c565b111561156e576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548111156115aa576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009546115b8919061387f565b3410156115f1576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115fb3382612578565b50565b600f5f9054906101000a900460ff1681565b6116193361117f565b611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90613728565b60405180910390fd5b80600d8190555050565b600f60029054906101000a900460ff1681565b61167e3361117f565b6116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613728565b60405180910390fd5b8181601091826116ce929190613a67565b505050565b5f6116dd826123e1565b9050919050565b6116ed3361117f565b61172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613728565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b601080546117569061360d565b80601f01602080910402602001604051908101604052809291908181526020018280546117829061360d565b80156117cd5780601f106117a4576101008083540402835291602001916117cd565b820191905f5260205f20905b8154815290600101906020018083116117b057829003601f168201915b505050505081565b6012602052805f5260405f205f915090505481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611850576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6118a7612721565b6118b05f6127a8565b565b6118bb3361117f565b6118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613728565b60405180910390fd5b600a5482611906612567565b611910919061384c565b1115611948576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119528183612578565b5050565b600f60019054906101000a900460ff1661199c576040517f2fd8650a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d546119aa919061387f565b3410156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390613b7e565b60405180910390fd5b600160145f8282546119fe919061384c565b925050819055508060135f60145481526020019081526020015f20819055505f80600190505b6014548111611a5f5760135f8281526020019081526020015f205482611a4a919061384c565b91508080611a5790613697565b915050611a24565b50600e54811115611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613be6565b60405180910390fd5b600a5482611ab1612567565b611abb919061384c565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390613c4e565b60405180910390fd5b600c548260125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b48919061384c565b1115611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8090613cb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bee576040517fc8a2f6cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c3a919061384c565b92505081905550611c4b3383612578565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c803361117f565b611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613728565b60405180910390fd5b600f60029054906101000a900460ff1615611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690613d44565b60405180910390fd5b818160119182611d20929190613a67565b505050565b606060038054611d349061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d609061360d565b8015611dab5780601f10611d8257610100808354040283529160200191611dab565b820191905f5260205f20905b815481529060010190602001808311611d8e57829003601f168201915b5050505050905090565b8060075f611dc16123d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6a6123d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eaf9190612f59565b60405180910390a35050565b611ec43361117f565b611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90613728565b60405180910390fd5b80600f5f6101000a81548160ff02191690831515021790555050565b611f283361117f565b611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613728565b60405180910390fd5b611f7081612378565b611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613dac565b60405180910390fd5b611fb88161286b565b50565b611fc6848484610e6b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461202757611ff084848484612878565b612026576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b61203c3361117f565b61207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613728565b60405180910390fd5b80600b8190555050565b606061209082612378565b6120c6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6120cf6129c3565b90505f8151036120ed5760405180602001604052805f815250612118565b806120f784612af9565b604051602001612108929190613e04565b6040516020818303038152906040525b915050919050565b6011805461212d9061360d565b80601f01602080910402602001604051908101604052809291908181526020018280546121599061360d565b80156121a45780601f1061217b576101008083540402835291602001916121a4565b820191905f5260205f20905b81548152906001019060200180831161218757829003601f168201915b505050505081565b5f6121b682612b48565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60145481565b600e5481565b61225f612721565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122cf575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016122c6919061300f565b60405180910390fd5b6122d8816127a8565b50565b600b5481565b6040518060400160405280600681526020017f525238302773000000000000000000000000000000000000000000000000000081525081565b6123233361117f565b612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990613728565b60405180910390fd5b818160159190612373929190612df6565b505050565b5f816123826123d9565b1115801561239057505f5482105b80156123cb57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806123ef6123d9565b1161246d575f5481101561246c575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361246a575b5f81036124605760045f836001900393508381526020019081526020015f20549050612439565b809250505061249f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612526868684612b9c565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6125706123d9565b5f5403905090565b5f805490505f82036125b6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125c25f84838561250a565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612634836126255f865f612510565b61262e85612ba4565b17612537565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146126ce5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612695565b505f8203612708576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061271c5f848385612561565b505050565b612729612bb3565b73ffffffffffffffffffffffffffffffffffffffff16612747611c4f565b73ffffffffffffffffffffffffffffffffffffffff16146127a65761276a612bb3565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161279d919061300f565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612875815f612bba565b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261289d6123d2565b8786866040518563ffffffff1660e01b81526004016128bf9493929190613e79565b6020604051808303815f875af19250505080156128fa57506040513d601f19601f820116820180604052508101906128f79190613ed7565b60015b612970573d805f8114612928576040519150601f19603f3d011682016040523d82523d5f602084013e61292d565b606091505b505f815103612968576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f60029054906101000a900460ff1615612a6a57601080546129e79061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a139061360d565b8015612a5e5780601f10612a3557610100808354040283529160200191612a5e565b820191905f5260205f20905b815481529060010190602001808311612a4157829003601f168201915b50505050509050612af6565b60118054612a779061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa39061360d565b8015612aee5780601f10612ac557610100808354040283529160200191612aee565b820191905f5260205f20905b815481529060010190602001808311612ad157829003601f168201915b505050505090505b90565b606060a060405101806040526020810391505f825281835b600115612b3357600184039350600a81066030018453600a8104905080612b11575b50828103602084039350808452505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b5f612bc4836123e1565b90505f8190505f80612bd5866124a4565b915091508415612c3e57612bf18184612bec6123d2565b6124c7565b612c3d57612c0683612c016123d2565b6121bd565b612c3c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612c4b835f88600161250a565b8015612c55575f82555b600160806001901b0360055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612cf983612cb6855f88612510565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612537565b60045f8881526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000851603612d75575f6001870190505f60045f8381526020019081526020015f205403612d73575f548114612d72578460045f8381526020019081526020015f20819055505b5b505b855f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ddd835f886001612561565b60015f8154809291906001019190505550505050505050565b828054828255905f5260205f20908101928215612e82579160200282015b82811115612e8157823573ffffffffffffffffffffffffffffffffffffffff16825f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e14565b5b509050612e8f9190612e93565b5090565b5b80821115612eaa575f815f905550600101612e94565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ef381612ebf565b8114612efd575f80fd5b50565b5f81359050612f0e81612eea565b92915050565b5f60208284031215612f2957612f28612eb7565b5b5f612f3684828501612f00565b91505092915050565b5f8115159050919050565b612f5381612f3f565b82525050565b5f602082019050612f6c5f830184612f4a565b92915050565b5f819050919050565b612f8481612f72565b8114612f8e575f80fd5b50565b5f81359050612f9f81612f7b565b92915050565b5f60208284031215612fba57612fb9612eb7565b5b5f612fc784828501612f91565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612ff982612fd0565b9050919050565b61300981612fef565b82525050565b5f6020820190506130225f830184613000565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561305f578082015181840152602081019050613044565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61308482613028565b61308e8185613032565b935061309e818560208601613042565b6130a78161306a565b840191505092915050565b5f6020820190508181035f8301526130ca818461307a565b905092915050565b6130db81612fef565b81146130e5575f80fd5b50565b5f813590506130f6816130d2565b92915050565b5f806040838503121561311257613111612eb7565b5b5f61311f858286016130e8565b925050602061313085828601612f91565b9150509250929050565b61314381612f72565b82525050565b5f60208201905061315c5f83018461313a565b92915050565b5f805f6060848603121561317957613178612eb7565b5b5f613186868287016130e8565b9350506020613197868287016130e8565b92505060406131a886828701612f91565b9150509250925092565b5f602082840312156131c7576131c6612eb7565b5b5f6131d4848285016130e8565b91505092915050565b6131e681612f3f565b81146131f0575f80fd5b50565b5f81359050613201816131dd565b92915050565b5f6020828403121561321c5761321b612eb7565b5b5f613229848285016131f3565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261325357613252613232565b5b8235905067ffffffffffffffff8111156132705761326f613236565b5b60208301915083600182028301111561328c5761328b61323a565b5b9250929050565b5f80602083850312156132a9576132a8612eb7565b5b5f83013567ffffffffffffffff8111156132c6576132c5612ebb565b5b6132d28582860161323e565b92509250509250929050565b5f80604083850312156132f4576132f3612eb7565b5b5f61330185828601612f91565b9250506020613312858286016130e8565b9150509250929050565b5f806040838503121561333257613331612eb7565b5b5f61333f858286016130e8565b9250506020613350858286016131f3565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6133948261306a565b810181811067ffffffffffffffff821117156133b3576133b261335e565b5b80604052505050565b5f6133c5612eae565b90506133d1828261338b565b919050565b5f67ffffffffffffffff8211156133f0576133ef61335e565b5b6133f98261306a565b9050602081019050919050565b828183375f83830152505050565b5f613426613421846133d6565b6133bc565b9050828152602081018484840111156134425761344161335a565b5b61344d848285613406565b509392505050565b5f82601f83011261346957613468613232565b5b8135613479848260208601613414565b91505092915050565b5f805f806080858703121561349a57613499612eb7565b5b5f6134a7878288016130e8565b94505060206134b8878288016130e8565b93505060406134c987828801612f91565b925050606085013567ffffffffffffffff8111156134ea576134e9612ebb565b5b6134f687828801613455565b91505092959194509250565b5f806040838503121561351857613517612eb7565b5b5f613525858286016130e8565b9250506020613536858286016130e8565b9150509250929050565b5f8083601f84011261355557613554613232565b5b8235905067ffffffffffffffff81111561357257613571613236565b5b60208301915083602082028301111561358e5761358d61323a565b5b9250929050565b5f80602083850312156135ab576135aa612eb7565b5b5f83013567ffffffffffffffff8111156135c8576135c7612ebb565b5b6135d485828601613540565b92509250509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061362457607f821691505b602082108103613637576136366135e0565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6136a182612f72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136d3576136d261366a565b5b600182019050919050565b7f43616c6c6572206973206e6f7420616e206f776e6572000000000000000000005f82015250565b5f613712601683613032565b915061371d826136de565b602082019050919050565b5f6020820190508181035f83015261373f81613706565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61377d82612f72565b915061378883612f72565b92508261379857613797613746565b5b828204905092915050565b5f81905092915050565b50565b5f6137bb5f836137a3565b91506137c6826137ad565b5f82019050919050565b5f6137da826137b0565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f613818601083613032565b9150613823826137e4565b602082019050919050565b5f6020820190508181035f8301526138458161380c565b9050919050565b5f61385682612f72565b915061386183612f72565b92508282019050808211156138795761387861366a565b5b92915050565b5f61388982612f72565b915061389483612f72565b92508282026138a281612f72565b915082820484148315176138b9576138b861366a565b5b5092915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138eb565b61393086836138eb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61396b61396661396184612f72565b613948565b612f72565b9050919050565b5f819050919050565b61398483613951565b61399861399082613972565b8484546138f7565b825550505050565b5f90565b6139ac6139a0565b6139b781848461397b565b505050565b5b818110156139da576139cf5f826139a4565b6001810190506139bd565b5050565b601f821115613a1f576139f0816138ca565b6139f9846138dc565b81016020851015613a08578190505b613a1c613a14856138dc565b8301826139bc565b50505b505050565b5f82821c905092915050565b5f613a3f5f1984600802613a24565b1980831691505092915050565b5f613a578383613a30565b9150826002028217905092915050565b613a7183836138c0565b67ffffffffffffffff811115613a8a57613a8961335e565b5b613a94825461360d565b613a9f8282856139de565b5f601f831160018114613acc575f8415613aba578287013590505b613ac48582613a4c565b865550613b2b565b601f198416613ada866138ca565b5f5b82811015613b0157848901358255600182019150602085019450602081019050613adc565b86831015613b1e5784890135613b1a601f891682613a30565b8355505b6001600288020188555050505b50505050505050565b7f4e6f74456e6f756768455448466f72467265654d696e740000000000000000005f82015250565b5f613b68601783613032565b9150613b7382613b34565b602082019050919050565b5f6020820190508181035f830152613b9581613b5c565b9050919050565b7f4d6178467265654d696e74537570706c795265616368656400000000000000005f82015250565b5f613bd0601883613032565b9150613bdb82613b9c565b602082019050919050565b5f6020820190508181035f830152613bfd81613bc4565b9050919050565b7f4d6178537570706c7952656163686564000000000000000000000000000000005f82015250565b5f613c38601083613032565b9150613c4382613c04565b602082019050919050565b5f6020820190508181035f830152613c6581613c2c565b9050919050565b7f4d6178467265654d696e747352656163686564000000000000000000000000005f82015250565b5f613ca0601383613032565b9150613cab82613c6c565b602082019050919050565b5f6020820190508181035f830152613ccd81613c94565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e20726576655f8201527f616c656400000000000000000000000000000000000000000000000000000000602082015250565b5f613d2e602483613032565b9150613d3982613cd4565b604082019050919050565b5f6020820190508181035f830152613d5b81613d22565b9050919050565b7f546f6b656e20646f6573206e6f742065786973740000000000000000000000005f82015250565b5f613d96601483613032565b9150613da182613d62565b602082019050919050565b5f6020820190508181035f830152613dc381613d8a565b9050919050565b5f81905092915050565b5f613dde82613028565b613de88185613dca565b9350613df8818560208601613042565b80840191505092915050565b5f613e0f8285613dd4565b9150613e1b8284613dd4565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f613e4b82613e27565b613e558185613e31565b9350613e65818560208601613042565b613e6e8161306a565b840191505092915050565b5f608082019050613e8c5f830187613000565b613e996020830186613000565b613ea6604083018561313a565b8181036060830152613eb88184613e41565b905095945050505050565b5f81519050613ed181612eea565b92915050565b5f60208284031215613eec57613eeb612eb7565b5b5f613ef984828501613ec3565b9150509291505056fea26469706673582212209e65aa62c0e48e3ce1e44ad5189e775a3eb36ed151b9180ec7099baebc1d752b64736f6c63430008150033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dcde9f2faabb9034db7c5603198f7a3deedb85b50000000000000000000000000000000000000000000000000000000000000010526574726f526163636f6f6e734e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045252383000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c8575f3560e01c80636c0360eb11610174578063b88d4fde116100db578063e985e9c511610094578063f2fde38b1161006e578063f2fde38b14610a8a578063f43a22dc14610ab2578063f76f8d7814610adc578063fa4d369814610b06576102c8565b8063e985e9c5146109fa578063efa99bd414610a36578063efc0172914610a60576102c8565b8063b88d4fde146108ea578063bf8fbbd214610906578063c6f6f21614610930578063c87b56dd14610958578063d3ff166c14610994578063dc33e681146109be576102c8565b80638da5cb5b1161012d5780638da5cb5b146107f657806390498f931461082057806395d89b4114610848578063a22cb46514610872578063aab402e51461089a578063b5f07ea1146108c2576102c8565b80636c0360eb146106fa5780636d41d4fb1461072457806370a0823114610760578063715018a61461079c5780637871e154146107b257806382b16219146107da576102c8565b80633ccfd60b116102335780634bad5954116101ec57806354214f69116101c657806354214f691461064457806355f804b31461066e5780636352211e1461069657806366ce78eb146106d2576102c8565b80634bad5954146105d65780634db08aea146105f257806352d4b1d31461061c576102c8565b80633ccfd60b146104ee5780633f2a9b4e1461050457806342842e0e1461054057806344a0d68a1461055c57806349a5980a146105845780634a42bc2d146105ac576102c8565b80632025691b116102855780632025691b146103f057806323b872dd1461041a578063293ae5cf146104365780632f54bf6e1461046057806332cb6b0c1461049c5780633b4c4b25146104c6576102c8565b806301ffc9a7146102cc578063025e7c271461030857806306fdde0314610344578063081812fc1461036e578063095ea7b3146103aa57806318160ddd146103c6575b5f80fd5b3480156102d7575f80fd5b506102f260048036038101906102ed9190612f14565b610b2e565b6040516102ff9190612f59565b60405180910390f35b348015610313575f80fd5b5061032e60048036038101906103299190612fa5565b610bbf565b60405161033b919061300f565b60405180910390f35b34801561034f575f80fd5b50610358610bfa565b60405161036591906130b2565b60405180910390f35b348015610379575f80fd5b50610394600480360381019061038f9190612fa5565b610c8a565b6040516103a1919061300f565b60405180910390f35b6103c460048036038101906103bf91906130fc565b610d04565b005b3480156103d1575f80fd5b506103da610e43565b6040516103e79190613149565b60405180910390f35b3480156103fb575f80fd5b50610404610e58565b6040516104119190612f59565b60405180910390f35b610434600480360381019061042f9190613162565b610e6b565b005b348015610441575f80fd5b5061044a611179565b6040516104579190613149565b60405180910390f35b34801561046b575f80fd5b50610486600480360381019061048191906131b2565b61117f565b6040516104939190612f59565b60405180910390f35b3480156104a7575f80fd5b506104b0611227565b6040516104bd9190613149565b60405180910390f35b3480156104d1575f80fd5b506104ec60048036038101906104e79190612fa5565b61122d565b005b3480156104f9575f80fd5b5061050261127f565b005b34801561050f575f80fd5b5061052a60048036038101906105259190612fa5565b6113ea565b6040516105379190613149565b60405180910390f35b61055a60048036038101906105559190613162565b6113ff565b005b348015610567575f80fd5b50610582600480360381019061057d9190612fa5565b61141e565b005b34801561058f575f80fd5b506105aa60048036038101906105a59190613207565b611470565b005b3480156105b7575f80fd5b506105c06114d5565b6040516105cd9190613149565b60405180910390f35b6105f060048036038101906105eb9190612fa5565b6114db565b005b3480156105fd575f80fd5b506106066115fe565b6040516106139190612f59565b60405180910390f35b348015610627575f80fd5b50610642600480360381019061063d9190612fa5565b611610565b005b34801561064f575f80fd5b50610658611662565b6040516106659190612f59565b60405180910390f35b348015610679575f80fd5b50610694600480360381019061068f9190613293565b611675565b005b3480156106a1575f80fd5b506106bc60048036038101906106b79190612fa5565b6116d3565b6040516106c9919061300f565b60405180910390f35b3480156106dd575f80fd5b506106f860048036038101906106f39190613207565b6116e4565b005b348015610705575f80fd5b5061070e611749565b60405161071b91906130b2565b60405180910390f35b34801561072f575f80fd5b5061074a600480360381019061074591906131b2565b6117d5565b6040516107579190613149565b60405180910390f35b34801561076b575f80fd5b50610786600480360381019061078191906131b2565b6117ea565b6040516107939190613149565b60405180910390f35b3480156107a7575f80fd5b506107b061189f565b005b3480156107bd575f80fd5b506107d860048036038101906107d391906132de565b6118b2565b005b6107f460048036038101906107ef9190612fa5565b611956565b005b348015610801575f80fd5b5061080a611c4f565b604051610817919061300f565b60405180910390f35b34801561082b575f80fd5b5061084660048036038101906108419190613293565b611c77565b005b348015610853575f80fd5b5061085c611d25565b60405161086991906130b2565b60405180910390f35b34801561087d575f80fd5b506108986004803603810190610893919061331c565b611db5565b005b3480156108a5575f80fd5b506108c060048036038101906108bb9190613207565b611ebb565b005b3480156108cd575f80fd5b506108e860048036038101906108e39190612fa5565b611f1f565b005b61090460048036038101906108ff9190613482565b611fbb565b005b348015610911575f80fd5b5061091a61202d565b6040516109279190613149565b60405180910390f35b34801561093b575f80fd5b5061095660048036038101906109519190612fa5565b612033565b005b348015610963575f80fd5b5061097e60048036038101906109799190612fa5565b612085565b60405161098b91906130b2565b60405180910390f35b34801561099f575f80fd5b506109a8612120565b6040516109b591906130b2565b60405180910390f35b3480156109c9575f80fd5b506109e460048036038101906109df91906131b2565b6121ac565b6040516109f19190613149565b60405180910390f35b348015610a05575f80fd5b50610a206004803603810190610a1b9190613502565b6121bd565b604051610a2d9190612f59565b60405180910390f35b348015610a41575f80fd5b50610a4a61224b565b604051610a579190613149565b60405180910390f35b348015610a6b575f80fd5b50610a74612251565b604051610a819190613149565b60405180910390f35b348015610a95575f80fd5b50610ab06004803603810190610aab91906131b2565b612257565b005b348015610abd575f80fd5b50610ac66122db565b604051610ad39190613149565b60405180910390f35b348015610ae7575f80fd5b50610af06122e1565b604051610afd91906130b2565b60405180910390f35b348015610b11575f80fd5b50610b2c6004803603810190610b279190613595565b61231a565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60158181548110610bce575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610c099061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c359061360d565b8015610c805780601f10610c5757610100808354040283529160200191610c80565b820191905f5260205f20905b815481529060010190602001808311610c6357829003601f168201915b5050505050905090565b5f610c9482612378565b610cca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610d0e826116d3565b90508073ffffffffffffffffffffffffffffffffffffffff16610d2f6123d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d9257610d5b81610d566123d2565b6121bd565b610d91576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610e4c6123d9565b6001545f540303905090565b600f60019054906101000a900460ff1681565b5f610e75826123e1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610edc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ee7846124a4565b91509150610efd8187610ef86123d2565b6124c7565b610f4957610f1286610f0d6123d2565b6121bd565b610f48576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610fae576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fbb868686600161250a565b8015610fc5575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061108d85611069888887612510565b7c020000000000000000000000000000000000000000000000000000000017612537565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611109575f6001850190505f60045f8381526020019081526020015f205403611107575f548114611106578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111718686866001612561565b505050505050565b600c5481565b5f805f90505b60158054905081101561121d578273ffffffffffffffffffffffffffffffffffffffff16601582815481106111bd576111bc61363d565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361120a576001915050611222565b808061121590613697565b915050611185565b505f90505b919050565b600a5481565b6112363361117f565b611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c90613728565b60405180910390fd5b80600a8190555050565b6112883361117f565b6112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613728565b60405180910390fd5b5f4790505f601580549050826112dd9190613773565b90505f5b6015805490508110156113e5575f601582815481106113035761130261363d565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161134e906137d0565b5f6040518083038185875af1925050503d805f8114611388576040519150601f19603f3d011682016040523d82523d5f602084013e61138d565b606091505b50509050806113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c89061382e565b60405180910390fd5b5080806113dd90613697565b9150506112e1565b505050565b6013602052805f5260405f205f915090505481565b61141983838360405180602001604052805f815250611fbb565b505050565b6114273361117f565b611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613728565b60405180910390fd5b8060098190555050565b6114793361117f565b6114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613728565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b600d5481565b600f5f9054906101000a900460ff16611520576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161152c612567565b611536919061384c565b111561156e576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548111156115aa576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806009546115b8919061387f565b3410156115f1576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115fb3382612578565b50565b600f5f9054906101000a900460ff1681565b6116193361117f565b611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90613728565b60405180910390fd5b80600d8190555050565b600f60029054906101000a900460ff1681565b61167e3361117f565b6116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613728565b60405180910390fd5b8181601091826116ce929190613a67565b505050565b5f6116dd826123e1565b9050919050565b6116ed3361117f565b61172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613728565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b601080546117569061360d565b80601f01602080910402602001604051908101604052809291908181526020018280546117829061360d565b80156117cd5780601f106117a4576101008083540402835291602001916117cd565b820191905f5260205f20905b8154815290600101906020018083116117b057829003601f168201915b505050505081565b6012602052805f5260405f205f915090505481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611850576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6118a7612721565b6118b05f6127a8565b565b6118bb3361117f565b6118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613728565b60405180910390fd5b600a5482611906612567565b611910919061384c565b1115611948576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119528183612578565b5050565b600f60019054906101000a900460ff1661199c576040517f2fd8650a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d546119aa919061387f565b3410156119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390613b7e565b60405180910390fd5b600160145f8282546119fe919061384c565b925050819055508060135f60145481526020019081526020015f20819055505f80600190505b6014548111611a5f5760135f8281526020019081526020015f205482611a4a919061384c565b91508080611a5790613697565b915050611a24565b50600e54811115611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613be6565b60405180910390fd5b600a5482611ab1612567565b611abb919061384c565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390613c4e565b60405180910390fd5b600c548260125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b48919061384c565b1115611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8090613cb6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bee576040517fc8a2f6cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c3a919061384c565b92505081905550611c4b3383612578565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c803361117f565b611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613728565b60405180910390fd5b600f60029054906101000a900460ff1615611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690613d44565b60405180910390fd5b818160119182611d20929190613a67565b505050565b606060038054611d349061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d609061360d565b8015611dab5780601f10611d8257610100808354040283529160200191611dab565b820191905f5260205f20905b815481529060010190602001808311611d8e57829003601f168201915b5050505050905090565b8060075f611dc16123d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e6a6123d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eaf9190612f59565b60405180910390a35050565b611ec43361117f565b611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90613728565b60405180910390fd5b80600f5f6101000a81548160ff02191690831515021790555050565b611f283361117f565b611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613728565b60405180910390fd5b611f7081612378565b611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613dac565b60405180910390fd5b611fb88161286b565b50565b611fc6848484610e6b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461202757611ff084848484612878565b612026576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b61203c3361117f565b61207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613728565b60405180910390fd5b80600b8190555050565b606061209082612378565b6120c6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6120cf6129c3565b90505f8151036120ed5760405180602001604052805f815250612118565b806120f784612af9565b604051602001612108929190613e04565b6040516020818303038152906040525b915050919050565b6011805461212d9061360d565b80601f01602080910402602001604051908101604052809291908181526020018280546121599061360d565b80156121a45780601f1061217b576101008083540402835291602001916121a4565b820191905f5260205f20905b81548152906001019060200180831161218757829003601f168201915b505050505081565b5f6121b682612b48565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60145481565b600e5481565b61225f612721565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122cf575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016122c6919061300f565b60405180910390fd5b6122d8816127a8565b50565b600b5481565b6040518060400160405280600681526020017f525238302773000000000000000000000000000000000000000000000000000081525081565b6123233361117f565b612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235990613728565b60405180910390fd5b818160159190612373929190612df6565b505050565b5f816123826123d9565b1115801561239057505f5482105b80156123cb57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806123ef6123d9565b1161246d575f5481101561246c575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361246a575b5f81036124605760045f836001900393508381526020019081526020015f20549050612439565b809250505061249f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8612526868684612b9c565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6125706123d9565b5f5403905090565b5f805490505f82036125b6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125c25f84838561250a565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612634836126255f865f612510565b61262e85612ba4565b17612537565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146126ce5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612695565b505f8203612708576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061271c5f848385612561565b505050565b612729612bb3565b73ffffffffffffffffffffffffffffffffffffffff16612747611c4f565b73ffffffffffffffffffffffffffffffffffffffff16146127a65761276a612bb3565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161279d919061300f565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612875815f612bba565b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261289d6123d2565b8786866040518563ffffffff1660e01b81526004016128bf9493929190613e79565b6020604051808303815f875af19250505080156128fa57506040513d601f19601f820116820180604052508101906128f79190613ed7565b60015b612970573d805f8114612928576040519150601f19603f3d011682016040523d82523d5f602084013e61292d565b606091505b505f815103612968576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f60029054906101000a900460ff1615612a6a57601080546129e79061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a139061360d565b8015612a5e5780601f10612a3557610100808354040283529160200191612a5e565b820191905f5260205f20905b815481529060010190602001808311612a4157829003601f168201915b50505050509050612af6565b60118054612a779061360d565b80601f0160208091040260200160405190810160405280929190818152602001828054612aa39061360d565b8015612aee5780601f10612ac557610100808354040283529160200191612aee565b820191905f5260205f20905b815481529060010190602001808311612ad157829003601f168201915b505050505090505b90565b606060a060405101806040526020810391505f825281835b600115612b3357600184039350600a81066030018453600a8104905080612b11575b50828103602084039350808452505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f9392505050565b5f6001821460e11b9050919050565b5f33905090565b5f612bc4836123e1565b90505f8190505f80612bd5866124a4565b915091508415612c3e57612bf18184612bec6123d2565b6124c7565b612c3d57612c0683612c016123d2565b6121bd565b612c3c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612c4b835f88600161250a565b8015612c55575f82555b600160806001901b0360055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612cf983612cb6855f88612510565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612537565b60045f8881526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000851603612d75575f6001870190505f60045f8381526020019081526020015f205403612d73575f548114612d72578460045f8381526020019081526020015f20819055505b5b505b855f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ddd835f886001612561565b60015f8154809291906001019190505550505050505050565b828054828255905f5260205f20908101928215612e82579160200282015b82811115612e8157823573ffffffffffffffffffffffffffffffffffffffff16825f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e14565b5b509050612e8f9190612e93565b5090565b5b80821115612eaa575f815f905550600101612e94565b5090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ef381612ebf565b8114612efd575f80fd5b50565b5f81359050612f0e81612eea565b92915050565b5f60208284031215612f2957612f28612eb7565b5b5f612f3684828501612f00565b91505092915050565b5f8115159050919050565b612f5381612f3f565b82525050565b5f602082019050612f6c5f830184612f4a565b92915050565b5f819050919050565b612f8481612f72565b8114612f8e575f80fd5b50565b5f81359050612f9f81612f7b565b92915050565b5f60208284031215612fba57612fb9612eb7565b5b5f612fc784828501612f91565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612ff982612fd0565b9050919050565b61300981612fef565b82525050565b5f6020820190506130225f830184613000565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561305f578082015181840152602081019050613044565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61308482613028565b61308e8185613032565b935061309e818560208601613042565b6130a78161306a565b840191505092915050565b5f6020820190508181035f8301526130ca818461307a565b905092915050565b6130db81612fef565b81146130e5575f80fd5b50565b5f813590506130f6816130d2565b92915050565b5f806040838503121561311257613111612eb7565b5b5f61311f858286016130e8565b925050602061313085828601612f91565b9150509250929050565b61314381612f72565b82525050565b5f60208201905061315c5f83018461313a565b92915050565b5f805f6060848603121561317957613178612eb7565b5b5f613186868287016130e8565b9350506020613197868287016130e8565b92505060406131a886828701612f91565b9150509250925092565b5f602082840312156131c7576131c6612eb7565b5b5f6131d4848285016130e8565b91505092915050565b6131e681612f3f565b81146131f0575f80fd5b50565b5f81359050613201816131dd565b92915050565b5f6020828403121561321c5761321b612eb7565b5b5f613229848285016131f3565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261325357613252613232565b5b8235905067ffffffffffffffff8111156132705761326f613236565b5b60208301915083600182028301111561328c5761328b61323a565b5b9250929050565b5f80602083850312156132a9576132a8612eb7565b5b5f83013567ffffffffffffffff8111156132c6576132c5612ebb565b5b6132d28582860161323e565b92509250509250929050565b5f80604083850312156132f4576132f3612eb7565b5b5f61330185828601612f91565b9250506020613312858286016130e8565b9150509250929050565b5f806040838503121561333257613331612eb7565b5b5f61333f858286016130e8565b9250506020613350858286016131f3565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6133948261306a565b810181811067ffffffffffffffff821117156133b3576133b261335e565b5b80604052505050565b5f6133c5612eae565b90506133d1828261338b565b919050565b5f67ffffffffffffffff8211156133f0576133ef61335e565b5b6133f98261306a565b9050602081019050919050565b828183375f83830152505050565b5f613426613421846133d6565b6133bc565b9050828152602081018484840111156134425761344161335a565b5b61344d848285613406565b509392505050565b5f82601f83011261346957613468613232565b5b8135613479848260208601613414565b91505092915050565b5f805f806080858703121561349a57613499612eb7565b5b5f6134a7878288016130e8565b94505060206134b8878288016130e8565b93505060406134c987828801612f91565b925050606085013567ffffffffffffffff8111156134ea576134e9612ebb565b5b6134f687828801613455565b91505092959194509250565b5f806040838503121561351857613517612eb7565b5b5f613525858286016130e8565b9250506020613536858286016130e8565b9150509250929050565b5f8083601f84011261355557613554613232565b5b8235905067ffffffffffffffff81111561357257613571613236565b5b60208301915083602082028301111561358e5761358d61323a565b5b9250929050565b5f80602083850312156135ab576135aa612eb7565b5b5f83013567ffffffffffffffff8111156135c8576135c7612ebb565b5b6135d485828601613540565b92509250509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061362457607f821691505b602082108103613637576136366135e0565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6136a182612f72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136d3576136d261366a565b5b600182019050919050565b7f43616c6c6572206973206e6f7420616e206f776e6572000000000000000000005f82015250565b5f613712601683613032565b915061371d826136de565b602082019050919050565b5f6020820190508181035f83015261373f81613706565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61377d82612f72565b915061378883612f72565b92508261379857613797613746565b5b828204905092915050565b5f81905092915050565b50565b5f6137bb5f836137a3565b91506137c6826137ad565b5f82019050919050565b5f6137da826137b0565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f613818601083613032565b9150613823826137e4565b602082019050919050565b5f6020820190508181035f8301526138458161380c565b9050919050565b5f61385682612f72565b915061386183612f72565b92508282019050808211156138795761387861366a565b5b92915050565b5f61388982612f72565b915061389483612f72565b92508282026138a281612f72565b915082820484148315176138b9576138b861366a565b5b5092915050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138eb565b61393086836138eb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61396b61396661396184612f72565b613948565b612f72565b9050919050565b5f819050919050565b61398483613951565b61399861399082613972565b8484546138f7565b825550505050565b5f90565b6139ac6139a0565b6139b781848461397b565b505050565b5b818110156139da576139cf5f826139a4565b6001810190506139bd565b5050565b601f821115613a1f576139f0816138ca565b6139f9846138dc565b81016020851015613a08578190505b613a1c613a14856138dc565b8301826139bc565b50505b505050565b5f82821c905092915050565b5f613a3f5f1984600802613a24565b1980831691505092915050565b5f613a578383613a30565b9150826002028217905092915050565b613a7183836138c0565b67ffffffffffffffff811115613a8a57613a8961335e565b5b613a94825461360d565b613a9f8282856139de565b5f601f831160018114613acc575f8415613aba578287013590505b613ac48582613a4c565b865550613b2b565b601f198416613ada866138ca565b5f5b82811015613b0157848901358255600182019150602085019450602081019050613adc565b86831015613b1e5784890135613b1a601f891682613a30565b8355505b6001600288020188555050505b50505050505050565b7f4e6f74456e6f756768455448466f72467265654d696e740000000000000000005f82015250565b5f613b68601783613032565b9150613b7382613b34565b602082019050919050565b5f6020820190508181035f830152613b9581613b5c565b9050919050565b7f4d6178467265654d696e74537570706c795265616368656400000000000000005f82015250565b5f613bd0601883613032565b9150613bdb82613b9c565b602082019050919050565b5f6020820190508181035f830152613bfd81613bc4565b9050919050565b7f4d6178537570706c7952656163686564000000000000000000000000000000005f82015250565b5f613c38601083613032565b9150613c4382613c04565b602082019050919050565b5f6020820190508181035f830152613c6581613c2c565b9050919050565b7f4d6178467265654d696e747352656163686564000000000000000000000000005f82015250565b5f613ca0601383613032565b9150613cab82613c6c565b602082019050919050565b5f6020820190508181035f830152613ccd81613c94565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e20726576655f8201527f616c656400000000000000000000000000000000000000000000000000000000602082015250565b5f613d2e602483613032565b9150613d3982613cd4565b604082019050919050565b5f6020820190508181035f830152613d5b81613d22565b9050919050565b7f546f6b656e20646f6573206e6f742065786973740000000000000000000000005f82015250565b5f613d96601483613032565b9150613da182613d62565b602082019050919050565b5f6020820190508181035f830152613dc381613d8a565b9050919050565b5f81905092915050565b5f613dde82613028565b613de88185613dca565b9350613df8818560208601613042565b80840191505092915050565b5f613e0f8285613dd4565b9150613e1b8284613dd4565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f613e4b82613e27565b613e558185613e31565b9350613e65818560208601613042565b613e6e8161306a565b840191505092915050565b5f608082019050613e8c5f830187613000565b613e996020830186613000565b613ea6604083018561313a565b8181036060830152613eb88184613e41565b905095945050505050565b5f81519050613ed181612eea565b92915050565b5f60208284031215613eec57613eeb612eb7565b5b5f613ef984828501613ec3565b9150509291505056fea26469706673582212209e65aa62c0e48e3ce1e44ad5189e775a3eb36ed151b9180ec7099baebc1d752b64736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dcde9f2faabb9034db7c5603198f7a3deedb85b50000000000000000000000000000000000000000000000000000000000000010526574726f526163636f6f6e734e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045252383000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RetroRaccoonsNFT
Arg [1] : _symbol (string): RR80
Arg [2] : initialOwner (address): 0xdCDe9f2faaBB9034DB7C5603198f7A3deeDb85B5

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000dcde9f2faabb9034db7c5603198f7a3deedb85b5
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 526574726f526163636f6f6e734e465400000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5252383000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56646:5097:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22494:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57565:23;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23396:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29887:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29320:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19147:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57044:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33526:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56860:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57713:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56784:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58510:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61410:330;;;;;;;;;;;;;:::i;:::-;;57453:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36447:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58306:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60625:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56911:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58740:347;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57013:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58399:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57085:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60129:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24789:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60824:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57122:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57400:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20331:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3254:103;;;;;;;;;;;;;:::i;:::-;;61054:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59099:919;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2579:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60431:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23572:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30445:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60729:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61246:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37238:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56744:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60939:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23782:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57150:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58619:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30836:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57515:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56962:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3512:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56823:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56696:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57956:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22494:639;22579:4;22918:10;22903:25;;:11;:25;;;;:102;;;;22995:10;22980:25;;:11;:25;;;;22903:102;:179;;;;23072:10;23057:25;;:11;:25;;;;22903:179;22883:199;;22494:639;;;:::o;57565:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23396:100::-;23450:13;23483:5;23476:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23396:100;:::o;29887:218::-;29963:7;29988:16;29996:7;29988;:16::i;:::-;29983:64;;30013:34;;;;;;;;;;;;;;29983:64;30067:15;:24;30083:7;30067:24;;;;;;;;;;;:30;;;;;;;;;;;;30060:37;;29887:218;;;:::o;29320:408::-;29409:13;29425:16;29433:7;29425;:16::i;:::-;29409:32;;29481:5;29458:28;;:19;:17;:19::i;:::-;:28;;;29454:175;;29506:44;29523:5;29530:19;:17;:19::i;:::-;29506:16;:44::i;:::-;29501:128;;29578:35;;;;;;;;;;;;;;29501:128;29454:175;29674:2;29641:15;:24;29657:7;29641:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29712:7;29708:2;29692:28;;29701:5;29692:28;;;;;;;;;;;;29398:330;29320:408;;:::o;19147:323::-;19208:7;19436:15;:13;:15::i;:::-;19421:12;;19405:13;;:28;:46;19398:53;;19147:323;:::o;57044:34::-;;;;;;;;;;;;;:::o;33526:2825::-;33668:27;33698;33717:7;33698:18;:27::i;:::-;33668:57;;33783:4;33742:45;;33758:19;33742:45;;;33738:86;;33796:28;;;;;;;;;;;;;;33738:86;33838:27;33867:23;33894:35;33921:7;33894:26;:35::i;:::-;33837:92;;;;34029:68;34054:15;34071:4;34077:19;:17;:19::i;:::-;34029:24;:68::i;:::-;34024:180;;34117:43;34134:4;34140:19;:17;:19::i;:::-;34117:16;:43::i;:::-;34112:92;;34169:35;;;;;;;;;;;;;;34112:92;34024:180;34235:1;34221:16;;:2;:16;;;34217:52;;34246:23;;;;;;;;;;;;;;34217:52;34282:43;34304:4;34310:2;34314:7;34323:1;34282:21;:43::i;:::-;34418:15;34415:160;;;34558:1;34537:19;34530:30;34415:160;34955:18;:24;34974:4;34955:24;;;;;;;;;;;;;;;;34953:26;;;;;;;;;;;;35024:18;:22;35043:2;35024:22;;;;;;;;;;;;;;;;35022:24;;;;;;;;;;;35346:146;35383:2;35432:45;35447:4;35453:2;35457:19;35432:14;:45::i;:::-;15546:8;35404:73;35346:18;:146::i;:::-;35317:17;:26;35335:7;35317:26;;;;;;;;;;;:175;;;;35663:1;15546:8;35612:19;:47;:52;35608:627;;35685:19;35717:1;35707:7;:11;35685:33;;35874:1;35840:17;:30;35858:11;35840:30;;;;;;;;;;;;:35;35836:384;;35978:13;;35963:11;:28;35959:242;;36158:19;36125:17;:30;36143:11;36125:30;;;;;;;;;;;:52;;;;35959:242;35836:384;35666:569;35608:627;36282:7;36278:2;36263:27;;36272:4;36263:27;;;;;;;;;;;;36301:42;36322:4;36328:2;36332:7;36341:1;36301:20;:42::i;:::-;33657:2694;;;33526:2825;;;:::o;56860:44::-;;;;:::o;57713:235::-;57765:4;57787:6;57796:1;57787:10;;57782:136;57803:6;:13;;;;57799:1;:17;57782:136;;;57855:4;57842:17;;:6;57849:1;57842:9;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:17;;;57838:69;;57887:4;57880:11;;;;;57838:69;57818:3;;;;;:::i;:::-;;;;57782:136;;;;57935:5;57928:12;;57713:235;;;;:::o;56784:32::-;;;;:::o;58510:101::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58593:10:::1;58580;:23;;;;58510:101:::0;:::o;61410:330::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;61461:15:::1;61479:21;61461:39;;61511:13;61537:6;:13;;;;61527:7;:23;;;;:::i;:::-;61511:39;;61568:6;61563:170;61584:6;:13;;;;61580:1;:17;61563:170;;;61620:12;61638:6;61645:1;61638:9;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:14;;61660:5;61638:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61619:51;;;61693:7;61685:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61604:129;61599:3;;;;;:::i;:::-;;;;61563:170;;;;61450:290;;61410:330::o:0;57453:53::-;;;;;;;;;;;;;;;;;:::o;36447:193::-;36593:39;36610:4;36616:2;36620:7;36593:39;;;;;;;;;;;;:16;:39::i;:::-;36447:193;;;:::o;58306:83::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58376:5:::1;58369:4;:12;;;;58306:83:::0;:::o;60625:96::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60706:7:::1;60693:10;;:20;;;;;;;;;;;;;;;;;;60625:96:::0;:::o;56911:43::-;;;;:::o;58740:347::-;58806:4;;;;;;;;;;;58801:33;;58819:15;;;;;;;;;;;;;;58801:33;58876:10;;58866:7;58849:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;58845:68;;;58895:18;;;;;;;;;;;;;;58845:68;58938:10;;58928:7;:20;58924:50;;;58957:17;;;;;;;;;;;;;;58924:50;59010:7;59003:4;;:14;;;;:::i;:::-;58991:9;:26;58987:53;;;59026:14;;;;;;;;;;;;;;58987:53;59053:26;59059:10;59071:7;59053:5;:26::i;:::-;58740:347;:::o;57013:24::-;;;;;;;;;;;;;:::o;58399:101::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58487:5:::1;58470:14;:22;;;;58399:101:::0;:::o;57085:30::-;;;;;;;;;;;;;:::o;60129:101::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60215:7:::1;;60205;:17;;;;;;;:::i;:::-;;60129:101:::0;;:::o;24789:152::-;24861:7;24904:27;24923:7;24904:18;:27::i;:::-;24881:52;;24789:152;;;:::o;60824:105::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60914:7:::1;60897:14;;:24;;;;;;;;;;;;;;;;;;60824:105:::0;:::o;57122:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57400:44::-;;;;;;;;;;;;;;;;;:::o;20331:233::-;20403:7;20444:1;20427:19;;:5;:19;;;20423:60;;20455:28;;;;;;;;;;;;;;20423:60;14490:13;20501:18;:25;20520:5;20501:25;;;;;;;;;;;;;;;;:55;20494:62;;20331:233;;;:::o;3254:103::-;2465:13;:11;:13::i;:::-;3319:30:::1;3346:1;3319:18;:30::i;:::-;3254:103::o:0;61054:184::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;61163:10:::1;;61153:7;61136:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:37;61132:68;;;61182:18;;;;;;;;;;;;;;61132:68;61211:19;61217:3;61222:7;61211:5;:19::i;:::-;61054:184:::0;;:::o;59099:919::-;59171:14;;;;;;;;;;;59166:51;;59194:23;;;;;;;;;;;;;;59166:51;59268:7;59251:14;;:24;;;;:::i;:::-;59238:9;:37;;59230:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59354:1;59328:22;;:27;;;;;;;:::i;:::-;;;;;;;;59411:7;59366:18;:42;59385:22;;59366:42;;;;;;;;;;;:52;;;;59439:22;59481:9;59493:1;59481:13;;59476:120;59501:22;;59496:1;:27;59476:120;;59563:18;:21;59582:1;59563:21;;;;;;;;;;;;59545:39;;;;;:::i;:::-;;;59525:3;;;;;:::i;:::-;;;;59476:120;;;;59634:20;;59616:14;:38;;59608:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;59730:10;;59719:7;59702:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:38;;59694:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;59815:25;;59804:7;59780:9;:21;59790:10;59780:21;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:60;;59772:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;59892:10;59879:23;;:9;:23;;;59875:52;;59911:16;;;;;;;;;;;;;;59875:52;59966:7;59941:9;:21;59951:10;59941:21;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;59984:26;59990:10;60002:7;59984:5;:26::i;:::-;59153:865;59099:919;:::o;2579:87::-;2625:7;2652:6;;;;;;;;;;;2645:13;;2579:87;:::o;60431:186::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60523:10:::1;;;;;;;;;;;60522:11;60514:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;60598:11;;60585:10;:24;;;;;;;:::i;:::-;;60431:186:::0;;:::o;23572:104::-;23628:13;23661:7;23654:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23572:104;:::o;30445:234::-;30592:8;30540:18;:39;30559:19;:17;:19::i;:::-;30540:39;;;;;;;;;;;;;;;:49;30580:8;30540:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30652:8;30616:55;;30631:19;:17;:19::i;:::-;30616:55;;;30662:8;30616:55;;;;;;:::i;:::-;;;;;;;;30445:234;;:::o;60729:87::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;60801:7:::1;60794:4;;:14;;;;;;;;;;;;;;;;;;60729:87:::0;:::o;61246:156::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;61326:17:::1;61334:8;61326:7;:17::i;:::-;61318:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;61379:15;61385:8;61379:5;:15::i;:::-;61246:156:::0;:::o;37238:407::-;37413:31;37426:4;37432:2;37436:7;37413:12;:31::i;:::-;37477:1;37459:2;:14;;;:19;37455:183;;37498:56;37529:4;37535:2;37539:7;37548:5;37498:30;:56::i;:::-;37493:145;;37582:40;;;;;;;;;;;;;;37493:145;37455:183;37238:407;;;;:::o;56744:33::-;;;;:::o;60939:107::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;61026:12:::1;61013:10;:25;;;;60939:107:::0;:::o;23782:318::-;23855:13;23886:16;23894:7;23886;:16::i;:::-;23881:59;;23911:29;;;;;;;;;;;;;;23881:59;23953:21;23977:10;:8;:10::i;:::-;23953:34;;24030:1;24011:7;24005:21;:26;:87;;;;;;;;;;;;;;;;;24058:7;24067:18;24077:7;24067:9;:18::i;:::-;24041:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24005:87;23998:94;;;23782:318;;;:::o;57150:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58619:113::-;58677:7;58704:20;58718:5;58704:13;:20::i;:::-;58697:27;;58619:113;;;:::o;30836:164::-;30933:4;30957:18;:25;30976:5;30957:25;;;;;;;;;;;;;;;:35;30983:8;30957:35;;;;;;;;;;;;;;;;;;;;;;;;;30950:42;;30836:164;;;;:::o;57515:41::-;;;;:::o;56962:42::-;;;;:::o;3512:220::-;2465:13;:11;:13::i;:::-;3617:1:::1;3597:22;;:8;:22;;::::0;3593:93:::1;;3671:1;3643:31;;;;;;;;;;;:::i;:::-;;;;;;;;3593:93;3696:28;3715:8;3696:18;:28::i;:::-;3512:220:::0;:::o;56823:30::-;;;;:::o;56696:40::-;;;;;;;;;;;;;;;;;;;:::o;57956:102::-;57639:19;57647:10;57639:7;:19::i;:::-;57631:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58043:7:::1;;58034:6;:16;;;;;;;:::i;:::-;;57956:102:::0;;:::o;31258:282::-;31323:4;31379:7;31360:15;:13;:15::i;:::-;:26;;:66;;;;;31413:13;;31403:7;:23;31360:66;:153;;;;;31512:1;15266:8;31464:17;:26;31482:7;31464:26;;;;;;;;;;;;:44;:49;31360:153;31340:173;;31258:282;;;:::o;53566:105::-;53626:7;53653:10;53646:17;;53566:105;:::o;60028:93::-;60085:7;60112:1;60105:8;;60028:93;:::o;25944:1275::-;26011:7;26031:12;26046:7;26031:22;;26114:4;26095:15;:13;:15::i;:::-;:23;26091:1061;;26148:13;;26141:4;:20;26137:1015;;;26186:14;26203:17;:23;26221:4;26203:23;;;;;;;;;;;;26186:40;;26320:1;15266:8;26292:6;:24;:29;26288:845;;26957:113;26974:1;26964:6;:11;26957:113;;27017:17;:25;27035:6;;;;;;;27017:25;;;;;;;;;;;;27008:34;;26957:113;;;27103:6;27096:13;;;;;;26288:845;26163:989;26137:1015;26091:1061;27180:31;;;;;;;;;;;;;;25944:1275;;;;:::o;32421:485::-;32523:27;32552:23;32593:38;32634:15;:24;32650:7;32634:24;;;;;;;;;;;32593:65;;32811:18;32788:41;;32868:19;32862:26;32843:45;;32773:126;32421:485;;;:::o;31649:659::-;31798:11;31963:16;31956:5;31952:28;31943:37;;32123:16;32112:9;32108:32;32095:45;;32273:15;32262:9;32259:30;32251:5;32240:9;32237:20;32234:56;32224:66;;31649:659;;;;;:::o;38307:159::-;;;;;:::o;52875:311::-;53010:7;53030:16;15670:3;53056:19;:41;;53030:68;;15670:3;53124:31;53135:4;53141:2;53145:9;53124:10;:31::i;:::-;53116:40;;:62;;53109:69;;;52875:311;;;;;:::o;27767:450::-;27847:14;28015:16;28008:5;28004:28;27995:37;;28192:5;28178:11;28153:23;28149:41;28146:52;28139:5;28136:63;28126:73;;27767:450;;;;:::o;39131:158::-;;;;;:::o;19568:296::-;19623:7;19830:15;:13;:15::i;:::-;19814:13;;:31;19807:38;;19568:296;:::o;40907:2966::-;40980:20;41003:13;;40980:36;;41043:1;41031:8;:13;41027:44;;41053:18;;;;;;;;;;;;;;41027:44;41084:61;41114:1;41118:2;41122:12;41136:8;41084:21;:61::i;:::-;41628:1;14628:2;41598:1;:26;;41597:32;41585:8;:45;41559:18;:22;41578:2;41559:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41907:139;41944:2;41998:33;42021:1;42025:2;42029:1;41998:14;:33::i;:::-;41965:30;41986:8;41965:20;:30::i;:::-;:66;41907:18;:139::i;:::-;41873:17;:31;41891:12;41873:31;;;;;;;;;;;:173;;;;42063:16;42094:11;42123:8;42108:12;:23;42094:37;;42644:16;42640:2;42636:25;42624:37;;43016:12;42976:8;42935:1;42873:25;42814:1;42753;42726:335;43387:1;43373:12;43369:20;43327:346;43428:3;43419:7;43416:16;43327:346;;43646:7;43636:8;43633:1;43606:25;43603:1;43600;43595:59;43481:1;43472:7;43468:15;43457:26;;43327:346;;;43331:77;43718:1;43706:8;:13;43702:45;;43728:19;;;;;;;;;;;;;;43702:45;43780:3;43764:13;:19;;;;41333:2462;;43805:60;43834:1;43838:2;43842:12;43856:8;43805:20;:60::i;:::-;40969:2904;40907:2966;;:::o;2744:166::-;2815:12;:10;:12::i;:::-;2804:23;;:7;:5;:7::i;:::-;:23;;;2800:103;;2878:12;:10;:12::i;:::-;2851:40;;;;;;;;;;;:::i;:::-;;;;;;;;2800:103;2744:166::o;3892:191::-;3966:16;3985:6;;;;;;;;;;;3966:25;;4011:8;4002:6;;:17;;;;;;;;;;;;;;;;;;4066:8;4035:40;;4056:8;4035:40;;;;;;;;;;;;3955:128;3892:191;:::o;47777:89::-;47837:21;47843:7;47852:5;47837;:21::i;:::-;47777:89;:::o;39729:716::-;39892:4;39938:2;39913:45;;;39959:19;:17;:19::i;:::-;39980:4;39986:7;39995:5;39913:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40213:1;40196:6;:13;:18;40192:235;;40242:40;;;;;;;;;;;;;;40192:235;40385:6;40379:13;40370:6;40366:2;40362:15;40355:38;39909:529;40082:54;;;40072:64;;;:6;:64;;;;40065:71;;;39729:716;;;;;;:::o;60238:184::-;60298:13;60324:10;;;;;;;;;;;60320:93;;;60354:7;60347:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60320:93;60393:10;60386:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60238:184;;:::o;53773:1745::-;53838:17;54272:4;54265;54259:11;54255:22;54364:1;54358:4;54351:15;54439:4;54436:1;54432:12;54425:19;;54521:1;54516:3;54509:14;54625:3;54864:5;54846:428;54872:1;54846:428;;;54912:1;54907:3;54903:11;54896:18;;55083:2;55077:4;55073:13;55069:2;55065:22;55060:3;55052:36;55177:2;55171:4;55167:13;55159:21;;55244:4;54846:428;55234:25;54846:428;54850:21;55313:3;55308;55304:13;55428:4;55423:3;55419:14;55412:21;;55493:6;55488:3;55481:19;53877:1634;;;53773:1745;;;:::o;20646:178::-;20707:7;14490:13;14628:2;20735:18;:25;20754:5;20735:25;;;;;;;;;;;;;;;;:50;;20734:82;20727:89;;20646:178;;;:::o;52576:147::-;52713:6;52576:147;;;;;:::o;28319:324::-;28389:14;28622:1;28612:8;28609:15;28583:24;28579:46;28569:56;;28319:324;;;:::o;695:98::-;748:7;775:10;768:17;;695:98;:::o;48095:3081::-;48175:27;48205;48224:7;48205:18;:27::i;:::-;48175:57;;48245:12;48276:19;48245:52;;48311:27;48340:23;48367:35;48394:7;48367:26;:35::i;:::-;48310:92;;;;48419:13;48415:316;;;48540:68;48565:15;48582:4;48588:19;:17;:19::i;:::-;48540:24;:68::i;:::-;48535:184;;48632:43;48649:4;48655:19;:17;:19::i;:::-;48632:16;:43::i;:::-;48627:92;;48684:35;;;;;;;;;;;;;;48627:92;48535:184;48415:316;48743:51;48765:4;48779:1;48783:7;48792:1;48743:21;:51::i;:::-;48887:15;48884:160;;;49027:1;49006:19;48999:30;48884:160;49705:1;14755:3;49675:1;:26;;49674:32;49646:18;:24;49665:4;49646:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;49973:176;50010:4;50081:53;50096:4;50110:1;50114:19;50081:14;:53::i;:::-;15546:8;15266;50034:43;50033:101;49973:18;:176::i;:::-;49944:17;:26;49962:7;49944:26;;;;;;;;;;;:205;;;;50320:1;15546:8;50269:19;:47;:52;50265:627;;50342:19;50374:1;50364:7;:11;50342:33;;50531:1;50497:17;:30;50515:11;50497:30;;;;;;;;;;;;:35;50493:384;;50635:13;;50620:11;:28;50616:242;;50815:19;50782:17;:30;50800:11;50782:30;;;;;;;;;;;:52;;;;50616:242;50493:384;50323:569;50265:627;50947:7;50943:1;50920:35;;50929:4;50920:35;;;;;;;;;;;;50966:50;50987:4;51001:1;51005:7;51014:1;50966:20;:50::i;:::-;51143:12;;:14;;;;;;;;;;;;;48164:3012;;;;48095:3081;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:126::-;2246:7;2286:42;2279:5;2275:54;2264:65;;2209:126;;;:::o;2341:96::-;2378:7;2407:24;2425:5;2407:24;:::i;:::-;2396:35;;2341:96;;;:::o;2443:118::-;2530:24;2548:5;2530:24;:::i;:::-;2525:3;2518:37;2443:118;;:::o;2567:222::-;2660:4;2698:2;2687:9;2683:18;2675:26;;2711:71;2779:1;2768:9;2764:17;2755:6;2711:71;:::i;:::-;2567:222;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:246::-;3156:1;3166:113;3180:6;3177:1;3174:13;3166:113;;;3265:1;3260:3;3256:11;3250:18;3246:1;3241:3;3237:11;3230:39;3202:2;3199:1;3195:10;3190:15;;3166:113;;;3313:1;3304:6;3299:3;3295:16;3288:27;3137:184;3075:246;;;:::o;3327:102::-;3368:6;3419:2;3415:7;3410:2;3403:5;3399:14;3395:28;3385:38;;3327:102;;;:::o;3435:377::-;3523:3;3551:39;3584:5;3551:39;:::i;:::-;3606:71;3670:6;3665:3;3606:71;:::i;:::-;3599:78;;3686:65;3744:6;3739:3;3732:4;3725:5;3721:16;3686:65;:::i;:::-;3776:29;3798:6;3776:29;:::i;:::-;3771:3;3767:39;3760:46;;3527:285;3435:377;;;;:::o;3818:313::-;3931:4;3969:2;3958:9;3954:18;3946:26;;4018:9;4012:4;4008:20;4004:1;3993:9;3989:17;3982:47;4046:78;4119:4;4110:6;4046:78;:::i;:::-;4038:86;;3818:313;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:323::-;6519:6;6568:2;6556:9;6547:7;6543:23;6539:32;6536:119;;;6574:79;;:::i;:::-;6536:119;6694:1;6719:50;6761:7;6752:6;6741:9;6737:22;6719:50;:::i;:::-;6709:60;;6665:114;6463:323;;;;:::o;6792:117::-;6901:1;6898;6891:12;6915:117;7024:1;7021;7014:12;7038:117;7147:1;7144;7137:12;7175:553;7233:8;7243:6;7293:3;7286:4;7278:6;7274:17;7270:27;7260:122;;7301:79;;:::i;:::-;7260:122;7414:6;7401:20;7391:30;;7444:18;7436:6;7433:30;7430:117;;;7466:79;;:::i;:::-;7430:117;7580:4;7572:6;7568:17;7556:29;;7634:3;7626:4;7618:6;7614:17;7604:8;7600:32;7597:41;7594:128;;;7641:79;;:::i;:::-;7594:128;7175:553;;;;;:::o;7734:529::-;7805:6;7813;7862:2;7850:9;7841:7;7837:23;7833:32;7830:119;;;7868:79;;:::i;:::-;7830:119;8016:1;8005:9;8001:17;7988:31;8046:18;8038:6;8035:30;8032:117;;;8068:79;;:::i;:::-;8032:117;8181:65;8238:7;8229:6;8218:9;8214:22;8181:65;:::i;:::-;8163:83;;;;7959:297;7734:529;;;;;:::o;8269:474::-;8337:6;8345;8394:2;8382:9;8373:7;8369:23;8365:32;8362:119;;;8400:79;;:::i;:::-;8362:119;8520:1;8545:53;8590:7;8581:6;8570:9;8566:22;8545:53;:::i;:::-;8535:63;;8491:117;8647:2;8673:53;8718:7;8709:6;8698:9;8694:22;8673:53;:::i;:::-;8663:63;;8618:118;8269:474;;;;;:::o;8749:468::-;8814:6;8822;8871:2;8859:9;8850:7;8846:23;8842:32;8839:119;;;8877:79;;:::i;:::-;8839:119;8997:1;9022:53;9067:7;9058:6;9047:9;9043:22;9022:53;:::i;:::-;9012:63;;8968:117;9124:2;9150:50;9192:7;9183:6;9172:9;9168:22;9150:50;:::i;:::-;9140:60;;9095:115;8749:468;;;;;:::o;9223:117::-;9332:1;9329;9322:12;9346:180;9394:77;9391:1;9384:88;9491:4;9488:1;9481:15;9515:4;9512:1;9505:15;9532:281;9615:27;9637:4;9615:27;:::i;:::-;9607:6;9603:40;9745:6;9733:10;9730:22;9709:18;9697:10;9694:34;9691:62;9688:88;;;9756:18;;:::i;:::-;9688:88;9796:10;9792:2;9785:22;9575:238;9532:281;;:::o;9819:129::-;9853:6;9880:20;;:::i;:::-;9870:30;;9909:33;9937:4;9929:6;9909:33;:::i;:::-;9819:129;;;:::o;9954:307::-;10015:4;10105:18;10097:6;10094:30;10091:56;;;10127:18;;:::i;:::-;10091:56;10165:29;10187:6;10165:29;:::i;:::-;10157:37;;10249:4;10243;10239:15;10231:23;;9954:307;;;:::o;10267:146::-;10364:6;10359:3;10354;10341:30;10405:1;10396:6;10391:3;10387:16;10380:27;10267:146;;;:::o;10419:423::-;10496:5;10521:65;10537:48;10578:6;10537:48;:::i;:::-;10521:65;:::i;:::-;10512:74;;10609:6;10602:5;10595:21;10647:4;10640:5;10636:16;10685:3;10676:6;10671:3;10667:16;10664:25;10661:112;;;10692:79;;:::i;:::-;10661:112;10782:54;10829:6;10824:3;10819;10782:54;:::i;:::-;10502:340;10419:423;;;;;:::o;10861:338::-;10916:5;10965:3;10958:4;10950:6;10946:17;10942:27;10932:122;;10973:79;;:::i;:::-;10932:122;11090:6;11077:20;11115:78;11189:3;11181:6;11174:4;11166:6;11162:17;11115:78;:::i;:::-;11106:87;;10922:277;10861:338;;;;:::o;11205:943::-;11300:6;11308;11316;11324;11373:3;11361:9;11352:7;11348:23;11344:33;11341:120;;;11380:79;;:::i;:::-;11341:120;11500:1;11525:53;11570:7;11561:6;11550:9;11546:22;11525:53;:::i;:::-;11515:63;;11471:117;11627:2;11653:53;11698:7;11689:6;11678:9;11674:22;11653:53;:::i;:::-;11643:63;;11598:118;11755:2;11781:53;11826:7;11817:6;11806:9;11802:22;11781:53;:::i;:::-;11771:63;;11726:118;11911:2;11900:9;11896:18;11883:32;11942:18;11934:6;11931:30;11928:117;;;11964:79;;:::i;:::-;11928:117;12069:62;12123:7;12114:6;12103:9;12099:22;12069:62;:::i;:::-;12059:72;;11854:287;11205:943;;;;;;;:::o;12154:474::-;12222:6;12230;12279:2;12267:9;12258:7;12254:23;12250:32;12247:119;;;12285:79;;:::i;:::-;12247:119;12405:1;12430:53;12475:7;12466:6;12455:9;12451:22;12430:53;:::i;:::-;12420:63;;12376:117;12532:2;12558:53;12603:7;12594:6;12583:9;12579:22;12558:53;:::i;:::-;12548:63;;12503:118;12154:474;;;;;:::o;12651:568::-;12724:8;12734:6;12784:3;12777:4;12769:6;12765:17;12761:27;12751:122;;12792:79;;:::i;:::-;12751:122;12905:6;12892:20;12882:30;;12935:18;12927:6;12924:30;12921:117;;;12957:79;;:::i;:::-;12921:117;13071:4;13063:6;13059:17;13047:29;;13125:3;13117:4;13109:6;13105:17;13095:8;13091:32;13088:41;13085:128;;;13132:79;;:::i;:::-;13085:128;12651:568;;;;;:::o;13225:559::-;13311:6;13319;13368:2;13356:9;13347:7;13343:23;13339:32;13336:119;;;13374:79;;:::i;:::-;13336:119;13522:1;13511:9;13507:17;13494:31;13552:18;13544:6;13541:30;13538:117;;;13574:79;;:::i;:::-;13538:117;13687:80;13759:7;13750:6;13739:9;13735:22;13687:80;:::i;:::-;13669:98;;;;13465:312;13225:559;;;;;:::o;13790:180::-;13838:77;13835:1;13828:88;13935:4;13932:1;13925:15;13959:4;13956:1;13949:15;13976:320;14020:6;14057:1;14051:4;14047:12;14037:22;;14104:1;14098:4;14094:12;14125:18;14115:81;;14181:4;14173:6;14169:17;14159:27;;14115:81;14243:2;14235:6;14232:14;14212:18;14209:38;14206:84;;14262:18;;:::i;:::-;14206:84;14027:269;13976:320;;;:::o;14302:180::-;14350:77;14347:1;14340:88;14447:4;14444:1;14437:15;14471:4;14468:1;14461:15;14488:180;14536:77;14533:1;14526:88;14633:4;14630:1;14623:15;14657:4;14654:1;14647:15;14674:233;14713:3;14736:24;14754:5;14736:24;:::i;:::-;14727:33;;14782:66;14775:5;14772:77;14769:103;;14852:18;;:::i;:::-;14769:103;14899:1;14892:5;14888:13;14881:20;;14674:233;;;:::o;14913:172::-;15053:24;15049:1;15041:6;15037:14;15030:48;14913:172;:::o;15091:366::-;15233:3;15254:67;15318:2;15313:3;15254:67;:::i;:::-;15247:74;;15330:93;15419:3;15330:93;:::i;:::-;15448:2;15443:3;15439:12;15432:19;;15091:366;;;:::o;15463:419::-;15629:4;15667:2;15656:9;15652:18;15644:26;;15716:9;15710:4;15706:20;15702:1;15691:9;15687:17;15680:47;15744:131;15870:4;15744:131;:::i;:::-;15736:139;;15463:419;;;:::o;15888:180::-;15936:77;15933:1;15926:88;16033:4;16030:1;16023:15;16057:4;16054:1;16047:15;16074:185;16114:1;16131:20;16149:1;16131:20;:::i;:::-;16126:25;;16165:20;16183:1;16165:20;:::i;:::-;16160:25;;16204:1;16194:35;;16209:18;;:::i;:::-;16194:35;16251:1;16248;16244:9;16239:14;;16074:185;;;;:::o;16265:147::-;16366:11;16403:3;16388:18;;16265:147;;;;:::o;16418:114::-;;:::o;16538:398::-;16697:3;16718:83;16799:1;16794:3;16718:83;:::i;:::-;16711:90;;16810:93;16899:3;16810:93;:::i;:::-;16928:1;16923:3;16919:11;16912:18;;16538:398;;;:::o;16942:379::-;17126:3;17148:147;17291:3;17148:147;:::i;:::-;17141:154;;17312:3;17305:10;;16942:379;;;:::o;17327:166::-;17467:18;17463:1;17455:6;17451:14;17444:42;17327:166;:::o;17499:366::-;17641:3;17662:67;17726:2;17721:3;17662:67;:::i;:::-;17655:74;;17738:93;17827:3;17738:93;:::i;:::-;17856:2;17851:3;17847:12;17840:19;;17499:366;;;:::o;17871:419::-;18037:4;18075:2;18064:9;18060:18;18052:26;;18124:9;18118:4;18114:20;18110:1;18099:9;18095:17;18088:47;18152:131;18278:4;18152:131;:::i;:::-;18144:139;;17871:419;;;:::o;18296:191::-;18336:3;18355:20;18373:1;18355:20;:::i;:::-;18350:25;;18389:20;18407:1;18389:20;:::i;:::-;18384:25;;18432:1;18429;18425:9;18418:16;;18453:3;18450:1;18447:10;18444:36;;;18460:18;;:::i;:::-;18444:36;18296:191;;;;:::o;18493:410::-;18533:7;18556:20;18574:1;18556:20;:::i;:::-;18551:25;;18590:20;18608:1;18590:20;:::i;:::-;18585:25;;18645:1;18642;18638:9;18667:30;18685:11;18667:30;:::i;:::-;18656:41;;18846:1;18837:7;18833:15;18830:1;18827:22;18807:1;18800:9;18780:83;18757:139;;18876:18;;:::i;:::-;18757:139;18541:362;18493:410;;;;:::o;18909:97::-;18968:6;18996:3;18986:13;;18909:97;;;;:::o;19012:141::-;19061:4;19084:3;19076:11;;19107:3;19104:1;19097:14;19141:4;19138:1;19128:18;19120:26;;19012:141;;;:::o;19159:93::-;19196:6;19243:2;19238;19231:5;19227:14;19223:23;19213:33;;19159:93;;;:::o;19258:107::-;19302:8;19352:5;19346:4;19342:16;19321:37;;19258:107;;;;:::o;19371:393::-;19440:6;19490:1;19478:10;19474:18;19513:97;19543:66;19532:9;19513:97;:::i;:::-;19631:39;19661:8;19650:9;19631:39;:::i;:::-;19619:51;;19703:4;19699:9;19692:5;19688:21;19679:30;;19752:4;19742:8;19738:19;19731:5;19728:30;19718:40;;19447:317;;19371:393;;;;;:::o;19770:60::-;19798:3;19819:5;19812:12;;19770:60;;;:::o;19836:142::-;19886:9;19919:53;19937:34;19946:24;19964:5;19946:24;:::i;:::-;19937:34;:::i;:::-;19919:53;:::i;:::-;19906:66;;19836:142;;;:::o;19984:75::-;20027:3;20048:5;20041:12;;19984:75;;;:::o;20065:269::-;20175:39;20206:7;20175:39;:::i;:::-;20236:91;20285:41;20309:16;20285:41;:::i;:::-;20277:6;20270:4;20264:11;20236:91;:::i;:::-;20230:4;20223:105;20141:193;20065:269;;;:::o;20340:73::-;20385:3;20340:73;:::o;20419:189::-;20496:32;;:::i;:::-;20537:65;20595:6;20587;20581:4;20537:65;:::i;:::-;20472:136;20419:189;;:::o;20614:186::-;20674:120;20691:3;20684:5;20681:14;20674:120;;;20745:39;20782:1;20775:5;20745:39;:::i;:::-;20718:1;20711:5;20707:13;20698:22;;20674:120;;;20614:186;;:::o;20806:543::-;20907:2;20902:3;20899:11;20896:446;;;20941:38;20973:5;20941:38;:::i;:::-;21025:29;21043:10;21025:29;:::i;:::-;21015:8;21011:44;21208:2;21196:10;21193:18;21190:49;;;21229:8;21214:23;;21190:49;21252:80;21308:22;21326:3;21308:22;:::i;:::-;21298:8;21294:37;21281:11;21252:80;:::i;:::-;20911:431;;20896:446;20806:543;;;:::o;21355:117::-;21409:8;21459:5;21453:4;21449:16;21428:37;;21355:117;;;;:::o;21478:169::-;21522:6;21555:51;21603:1;21599:6;21591:5;21588:1;21584:13;21555:51;:::i;:::-;21551:56;21636:4;21630;21626:15;21616:25;;21529:118;21478:169;;;;:::o;21652:295::-;21728:4;21874:29;21899:3;21893:4;21874:29;:::i;:::-;21866:37;;21936:3;21933:1;21929:11;21923:4;21920:21;21912:29;;21652:295;;;;:::o;21952:1403::-;22076:44;22116:3;22111;22076:44;:::i;:::-;22185:18;22177:6;22174:30;22171:56;;;22207:18;;:::i;:::-;22171:56;22251:38;22283:4;22277:11;22251:38;:::i;:::-;22336:67;22396:6;22388;22382:4;22336:67;:::i;:::-;22430:1;22459:2;22451:6;22448:14;22476:1;22471:632;;;;23147:1;23164:6;23161:84;;;23220:9;23215:3;23211:19;23198:33;23189:42;;23161:84;23271:67;23331:6;23324:5;23271:67;:::i;:::-;23265:4;23258:81;23120:229;22441:908;;22471:632;22523:4;22519:9;22511:6;22507:22;22557:37;22589:4;22557:37;:::i;:::-;22616:1;22630:215;22644:7;22641:1;22638:14;22630:215;;;22730:9;22725:3;22721:19;22708:33;22700:6;22693:49;22781:1;22773:6;22769:14;22759:24;;22828:2;22817:9;22813:18;22800:31;;22667:4;22664:1;22660:12;22655:17;;22630:215;;;22873:6;22864:7;22861:19;22858:186;;;22938:9;22933:3;22929:19;22916:33;22981:48;23023:4;23015:6;23011:17;23000:9;22981:48;:::i;:::-;22973:6;22966:64;22881:163;22858:186;23090:1;23086;23078:6;23074:14;23070:22;23064:4;23057:36;22478:625;;;22441:908;;22051:1304;;;21952:1403;;;:::o;23361:173::-;23501:25;23497:1;23489:6;23485:14;23478:49;23361:173;:::o;23540:366::-;23682:3;23703:67;23767:2;23762:3;23703:67;:::i;:::-;23696:74;;23779:93;23868:3;23779:93;:::i;:::-;23897:2;23892:3;23888:12;23881:19;;23540:366;;;:::o;23912:419::-;24078:4;24116:2;24105:9;24101:18;24093:26;;24165:9;24159:4;24155:20;24151:1;24140:9;24136:17;24129:47;24193:131;24319:4;24193:131;:::i;:::-;24185:139;;23912:419;;;:::o;24337:174::-;24477:26;24473:1;24465:6;24461:14;24454:50;24337:174;:::o;24517:366::-;24659:3;24680:67;24744:2;24739:3;24680:67;:::i;:::-;24673:74;;24756:93;24845:3;24756:93;:::i;:::-;24874:2;24869:3;24865:12;24858:19;;24517:366;;;:::o;24889:419::-;25055:4;25093:2;25082:9;25078:18;25070:26;;25142:9;25136:4;25132:20;25128:1;25117:9;25113:17;25106:47;25170:131;25296:4;25170:131;:::i;:::-;25162:139;;24889:419;;;:::o;25314:166::-;25454:18;25450:1;25442:6;25438:14;25431:42;25314:166;:::o;25486:366::-;25628:3;25649:67;25713:2;25708:3;25649:67;:::i;:::-;25642:74;;25725:93;25814:3;25725:93;:::i;:::-;25843:2;25838:3;25834:12;25827:19;;25486:366;;;:::o;25858:419::-;26024:4;26062:2;26051:9;26047:18;26039:26;;26111:9;26105:4;26101:20;26097:1;26086:9;26082:17;26075:47;26139:131;26265:4;26139:131;:::i;:::-;26131:139;;25858:419;;;:::o;26283:169::-;26423:21;26419:1;26411:6;26407:14;26400:45;26283:169;:::o;26458:366::-;26600:3;26621:67;26685:2;26680:3;26621:67;:::i;:::-;26614:74;;26697:93;26786:3;26697:93;:::i;:::-;26815:2;26810:3;26806:12;26799:19;;26458:366;;;:::o;26830:419::-;26996:4;27034:2;27023:9;27019:18;27011:26;;27083:9;27077:4;27073:20;27069:1;27058:9;27054:17;27047:47;27111:131;27237:4;27111:131;:::i;:::-;27103:139;;26830:419;;;:::o;27255:223::-;27395:34;27391:1;27383:6;27379:14;27372:58;27464:6;27459:2;27451:6;27447:15;27440:31;27255:223;:::o;27484:366::-;27626:3;27647:67;27711:2;27706:3;27647:67;:::i;:::-;27640:74;;27723:93;27812:3;27723:93;:::i;:::-;27841:2;27836:3;27832:12;27825:19;;27484:366;;;:::o;27856:419::-;28022:4;28060:2;28049:9;28045:18;28037:26;;28109:9;28103:4;28099:20;28095:1;28084:9;28080:17;28073:47;28137:131;28263:4;28137:131;:::i;:::-;28129:139;;27856:419;;;:::o;28281:170::-;28421:22;28417:1;28409:6;28405:14;28398:46;28281:170;:::o;28457:366::-;28599:3;28620:67;28684:2;28679:3;28620:67;:::i;:::-;28613:74;;28696:93;28785:3;28696:93;:::i;:::-;28814:2;28809:3;28805:12;28798:19;;28457:366;;;:::o;28829:419::-;28995:4;29033:2;29022:9;29018:18;29010:26;;29082:9;29076:4;29072:20;29068:1;29057:9;29053:17;29046:47;29110:131;29236:4;29110:131;:::i;:::-;29102:139;;28829:419;;;:::o;29254:148::-;29356:11;29393:3;29378:18;;29254:148;;;;:::o;29408:390::-;29514:3;29542:39;29575:5;29542:39;:::i;:::-;29597:89;29679:6;29674:3;29597:89;:::i;:::-;29590:96;;29695:65;29753:6;29748:3;29741:4;29734:5;29730:16;29695:65;:::i;:::-;29785:6;29780:3;29776:16;29769:23;;29518:280;29408:390;;;;:::o;29804:435::-;29984:3;30006:95;30097:3;30088:6;30006:95;:::i;:::-;29999:102;;30118:95;30209:3;30200:6;30118:95;:::i;:::-;30111:102;;30230:3;30223:10;;29804:435;;;;;:::o;30245:98::-;30296:6;30330:5;30324:12;30314:22;;30245:98;;;:::o;30349:168::-;30432:11;30466:6;30461:3;30454:19;30506:4;30501:3;30497:14;30482:29;;30349:168;;;;:::o;30523:373::-;30609:3;30637:38;30669:5;30637:38;:::i;:::-;30691:70;30754:6;30749:3;30691:70;:::i;:::-;30684:77;;30770:65;30828:6;30823:3;30816:4;30809:5;30805:16;30770:65;:::i;:::-;30860:29;30882:6;30860:29;:::i;:::-;30855:3;30851:39;30844:46;;30613:283;30523:373;;;;:::o;30902:640::-;31097:4;31135:3;31124:9;31120:19;31112:27;;31149:71;31217:1;31206:9;31202:17;31193:6;31149:71;:::i;:::-;31230:72;31298:2;31287:9;31283:18;31274:6;31230:72;:::i;:::-;31312;31380:2;31369:9;31365:18;31356:6;31312:72;:::i;:::-;31431:9;31425:4;31421:20;31416:2;31405:9;31401:18;31394:48;31459:76;31530:4;31521:6;31459:76;:::i;:::-;31451:84;;30902:640;;;;;;;:::o;31548:141::-;31604:5;31635:6;31629:13;31620:22;;31651:32;31677:5;31651:32;:::i;:::-;31548:141;;;;:::o;31695:349::-;31764:6;31813:2;31801:9;31792:7;31788:23;31784:32;31781:119;;;31819:79;;:::i;:::-;31781:119;31939:1;31964:63;32019:7;32010:6;31999:9;31995:22;31964:63;:::i;:::-;31954:73;;31910:127;31695:349;;;;:::o

Swarm Source

ipfs://9e65aa62c0e48e3ce1e44ad5189e775a3eb36ed151b9180ec7099baebc1d752b
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.