ETH Price: $3,419.93 (-0.72%)
Gas: 2 Gwei

Token

The Canine Experiment (CANINE)
 

Overview

Max Total Supply

4,000 CANINE

Holders

1,182

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CANINE
0xcb31c8b2ce9d229b1968ceb2516b2eb650151227
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:
TheCanineExperiment

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-01
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}






/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// 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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/TheCanineExperiment.sol



pragma solidity ^0.8.15;








contract TheCanineExperiment is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping (address => bool) public minterAddress;
    bool public flipMint;
    string public baseURI;  
    uint256 public price = 1000000000;
    uint256 public boxSupply = 4000;
    uint256 public mintMax = 100;
    mapping (address => uint256) public walletPublic;


    constructor () ERC721A("The Canine Experiment", "CANINE") {
        flipMint = false;
    }

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

    // Mint
    function publicMint(uint256 qty) external payable
    {
        require(flipMint , "Mint has not begun.");
        require(qty <= mintMax, "Reached Max!");
        require(totalSupply() + qty <= boxSupply,"Boxes Sold Out!");
        require(msg.value >= qty * price,"Missing ETH!");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

       function airdropToken(uint256[] calldata amount, address[] calldata owners) public onlyOwner {
        for(uint256 i = 0; i < owners.length; ++i) {            
            _safeMint(owners[i], amount[i]); // Minting of the token
        }
    }


    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

    function toggleMint() public onlyOwner {
        flipMint = !flipMint;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}
        function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
        
    }

        function setMaxMints(uint256 newMax) public onlyOwner {
        mintMax = newMax;

    }


    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"address[]","name":"owners","type":"address[]"}],"name":"airdropToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"boxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"mintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleMint","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":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052633b9aca00600c55610fa0600d556064600e553480156200002457600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601581526020017f5468652043616e696e65204578706572696d656e7400000000000000000000008152506040518060400160405280600681526020017f43414e494e4500000000000000000000000000000000000000000000000000008152508160029081620000b991906200066d565b508060039081620000cb91906200066d565b50620000dc6200031c60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d95780156200019f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200016592919062000799565b600060405180830381600087803b1580156200018057600080fd5b505af115801562000195573d6000803e3d6000fd5b50505050620002d8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000259576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021f92919062000799565b600060405180830381600087803b1580156200023a57600080fd5b505af11580156200024f573d6000803e3d6000fd5b50505050620002d7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002a29190620007c6565b600060405180830381600087803b158015620002bd57600080fd5b505af1158015620002d2573d6000803e3d6000fd5b505050505b5b5b5050620002fb620002ef6200032560201b60201c565b6200032d60201b60201c565b6000600a60006101000a81548160ff021916908315150217905550620007e3565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047557607f821691505b6020821081036200048b576200048a6200042d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004f57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004b6565b620005018683620004b6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200054e62000548620005428462000519565b62000523565b62000519565b9050919050565b6000819050919050565b6200056a836200052d565b62000582620005798262000555565b848454620004c3565b825550505050565b600090565b620005996200058a565b620005a68184846200055f565b505050565b5b81811015620005ce57620005c26000826200058f565b600181019050620005ac565b5050565b601f8211156200061d57620005e78162000491565b620005f284620004a6565b8101602085101562000602578190505b6200061a6200061185620004a6565b830182620005ab565b50505b505050565b600082821c905092915050565b6000620006426000198460080262000622565b1980831691505092915050565b60006200065d83836200062f565b9150826002028217905092915050565b6200067882620003f3565b67ffffffffffffffff811115620006945762000693620003fe565b5b620006a082546200045c565b620006ad828285620005d2565b600060209050601f831160018114620006e55760008415620006d0578287015190505b620006dc85826200064f565b8655506200074c565b601f198416620006f58662000491565b60005b828110156200071f57848901518255600182019150602085019450602081019050620006f8565b868310156200073f57848901516200073b601f8916826200062f565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007818262000754565b9050919050565b620007938162000774565b82525050565b6000604082019050620007b0600083018562000788565b620007bf602083018462000788565b9392505050565b6000602082019050620007dd600083018462000788565b92915050565b61351a80620007f36000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a035b1fe11610095578063d2ed5c5911610064578063d2ed5c591461069d578063d3dd5fe0146106c8578063e985e9c5146106df578063f2fde38b1461071c576101e3565b8063a035b1fe146105f0578063a22cb4651461061b578063b88d4fde14610644578063c87b56dd14610660576101e3565b80638da5cb5b116100d15780638da5cb5b1461054657806391b7f5ed1461057157806395d89b411461059a5780639cd59aea146105c5576101e3565b806370a08231146104a0578063715018a6146104dd57806379c9cb7b146104f457806379ff6fee1461051d576101e3565b80632be905ba1161017a5780634d155561116101495780634d155561146103e457806355f804b31461040f5780636352211e146104385780636c0360eb14610475576101e3565b80632be905ba146103445780632db115441461038157806341f434341461039d57806342842e0e146103c8576101e3565b806318160ddd116101b657806318160ddd146102a957806322ae7f7b146102d457806323b872dd1461031157806324600fc31461032d576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906124af565b610745565b60405161021c91906124f7565b60405180910390f35b34801561023157600080fd5b5061023a6107d7565b60405161024791906125a2565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906125fa565b610869565b6040516102849190612668565b60405180910390f35b6102a760048036038101906102a291906126af565b6108e8565b005b3480156102b557600080fd5b506102be6109f2565b6040516102cb91906126fe565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612719565b610a09565b60405161030891906124f7565b60405180910390f35b61032b60048036038101906103269190612746565b610a29565b005b34801561033957600080fd5b50610342610b79565b005b34801561035057600080fd5b5061036b60048036038101906103669190612719565b610bca565b60405161037891906126fe565b60405180910390f35b61039b600480360381019061039691906125fa565b610be2565b005b3480156103a957600080fd5b506103b2610d80565b6040516103bf91906127f8565b60405180910390f35b6103e260048036038101906103dd9190612746565b610d92565b005b3480156103f057600080fd5b506103f9610ee2565b60405161040691906126fe565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612948565b610ee8565b005b34801561044457600080fd5b5061045f600480360381019061045a91906125fa565b610f03565b60405161046c9190612668565b60405180910390f35b34801561048157600080fd5b5061048a610f15565b60405161049791906125a2565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190612719565b610fa3565b6040516104d491906126fe565b60405180910390f35b3480156104e957600080fd5b506104f261105b565b005b34801561050057600080fd5b5061051b600480360381019061051691906125fa565b61106f565b005b34801561052957600080fd5b50610544600480360381019061053f9190612a47565b611081565b005b34801561055257600080fd5b5061055b6110f9565b6040516105689190612668565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906125fa565b611123565b005b3480156105a657600080fd5b506105af611135565b6040516105bc91906125a2565b60405180910390f35b3480156105d157600080fd5b506105da6111c7565b6040516105e791906126fe565b60405180910390f35b3480156105fc57600080fd5b506106056111cd565b60405161061291906126fe565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612af4565b6111d3565b005b61065e60048036038101906106599190612bd5565b6112dd565b005b34801561066c57600080fd5b50610687600480360381019061068291906125fa565b611430565b60405161069491906125a2565b60405180910390f35b3480156106a957600080fd5b506106b26114ce565b6040516106bf91906124f7565b60405180910390f35b3480156106d457600080fd5b506106dd6114e1565b005b3480156106eb57600080fd5b5061070660048036038101906107019190612c58565b611515565b60405161071391906124f7565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612719565b6115a9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e690612cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461081290612cc7565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b60006108748261162c565b6108aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109e3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610960929190612cf8565b602060405180830381865afa15801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190612d36565b6109e257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109d99190612668565b60405180910390fd5b5b6109ed838361168b565b505050565b60006109fc6117cf565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b67573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9b57610a968484846117d8565b610b73565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ae4929190612cf8565b602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190612d36565b610b6657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b5d9190612668565b60405180910390fd5b5b610b728484846117d8565b5b50505050565b610b81611afa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc7573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612daf565b60405180910390fd5b600e54811115610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90612e1b565b60405180910390fd5b600d5481610c826109f2565b610c8c9190612e6a565b1115610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612eea565b60405180910390fd5b600c5481610cdb9190612f0a565b341015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490612f98565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d6c9190612e6a565b92505081905550610d7d3382611b78565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ed0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0457610dff848484611b96565b610edc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e4d929190612cf8565b602060405180830381865afa158015610e6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8e9190612d36565b610ecf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ec69190612668565b60405180910390fd5b5b610edb848484611b96565b5b50505050565b600e5481565b610ef0611afa565b80600b9081610eff919061315a565b5050565b6000610f0e82611bb6565b9050919050565b600b8054610f2290612cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90612cc7565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611063611afa565b61106d6000611c82565b565b611077611afa565b80600e8190555050565b611089611afa565b60005b828290508110156110f2576110e18383838181106110ad576110ac61322c565b5b90506020020160208101906110c29190612719565b8686848181106110d5576110d461322c565b5b90506020020135611b78565b806110eb9061325b565b905061108c565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61112b611afa565b80600c8190555050565b60606003805461114490612cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461117090612cc7565b80156111bd5780601f10611192576101008083540402835291602001916111bd565b820191906000526020600020905b8154815290600101906020018083116111a057829003601f168201915b5050505050905090565b600d5481565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161124b929190612cf8565b602060405180830381865afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612d36565b6112cd57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c49190612668565b60405180910390fd5b5b6112d88383611d48565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561141c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113505761134b85858585611e53565b611429565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611399929190612cf8565b602060405180830381865afa1580156113b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113da9190612d36565b61141b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114129190612668565b60405180910390fd5b5b61142885858585611e53565b5b5050505050565b606061143b8261162c565b611471576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061147b611ec6565b9050600081510361149b57604051806020016040528060008152506114c6565b806114a584611f58565b6040516020016114b69291906132df565b6040516020818303038152906040525b915050919050565b600a60009054906101000a900460ff1681565b6114e9611afa565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b1611afa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613375565b60405180910390fd5b61162981611c82565b50565b6000816116376117cf565b11158015611646575060005482105b8015611684575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061169682610f03565b90508073ffffffffffffffffffffffffffffffffffffffff166116b7611fa8565b73ffffffffffffffffffffffffffffffffffffffff161461171a576116e3816116de611fa8565b611515565b611719576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006117e382611bb6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461184a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185684611fb0565b9150915061186c8187611867611fa8565b611fd7565b6118b8576118818661187c611fa8565b611515565b6118b7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361191e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61192b868686600161201b565b801561193657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a04856119e0888887612021565b7c020000000000000000000000000000000000000000000000000000000017612049565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a8a5760006001850190506000600460008381526020019081526020016000205403611a88576000548114611a87578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af28686866001612074565b505050505050565b611b0261207a565b73ffffffffffffffffffffffffffffffffffffffff16611b206110f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906133e1565b60405180910390fd5b565b611b92828260405180602001604052806000815250612082565b5050565b611bb1838383604051806020016040528060008152506112dd565b505050565b60008082905080611bc56117cf565b11611c4b57600054811015611c4a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c48575b60008103611c3e576004600083600190039350838152602001908152602001600020549050611c14565b8092505050611c7d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611d55611fa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e02611fa8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4791906124f7565b60405180910390a35050565b611e5e848484610a29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ec057611e898484848461211f565b611ebf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611ed590612cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190612cc7565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9357600184039350600a81066030018453600a8104905080611f71575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861203886868461226f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61208c8383612278565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211a57600080549050600083820390505b6120cc600086838060010194508661211f565b612102576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b957816000541461211757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612145611fa8565b8786866040518563ffffffff1660e01b81526004016121679493929190613456565b6020604051808303816000875af19250505080156121a357506040513d601f19601f820116820180604052508101906121a091906134b7565b60015b61221c573d80600081146121d3576040519150601f19603f3d011682016040523d82523d6000602084013e6121d8565b606091505b506000815103612214576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122b8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122c5600084838561201b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233c8361232d6000866000612021565b61233685612433565b17612049565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123dd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123a2565b5060008203612418576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061242e6000848385612074565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61248c81612457565b811461249757600080fd5b50565b6000813590506124a981612483565b92915050565b6000602082840312156124c5576124c461244d565b5b60006124d38482850161249a565b91505092915050565b60008115159050919050565b6124f1816124dc565b82525050565b600060208201905061250c60008301846124e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561254c578082015181840152602081019050612531565b60008484015250505050565b6000601f19601f8301169050919050565b600061257482612512565b61257e818561251d565b935061258e81856020860161252e565b61259781612558565b840191505092915050565b600060208201905081810360008301526125bc8184612569565b905092915050565b6000819050919050565b6125d7816125c4565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b6000602082840312156126105761260f61244d565b5b600061261e848285016125e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265282612627565b9050919050565b61266281612647565b82525050565b600060208201905061267d6000830184612659565b92915050565b61268c81612647565b811461269757600080fd5b50565b6000813590506126a981612683565b92915050565b600080604083850312156126c6576126c561244d565b5b60006126d48582860161269a565b92505060206126e5858286016125e5565b9150509250929050565b6126f8816125c4565b82525050565b600060208201905061271360008301846126ef565b92915050565b60006020828403121561272f5761272e61244d565b5b600061273d8482850161269a565b91505092915050565b60008060006060848603121561275f5761275e61244d565b5b600061276d8682870161269a565b935050602061277e8682870161269a565b925050604061278f868287016125e5565b9150509250925092565b6000819050919050565b60006127be6127b96127b484612627565b612799565b612627565b9050919050565b60006127d0826127a3565b9050919050565b60006127e2826127c5565b9050919050565b6127f2816127d7565b82525050565b600060208201905061280d60008301846127e9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61285582612558565b810181811067ffffffffffffffff821117156128745761287361281d565b5b80604052505050565b6000612887612443565b9050612893828261284c565b919050565b600067ffffffffffffffff8211156128b3576128b261281d565b5b6128bc82612558565b9050602081019050919050565b82818337600083830152505050565b60006128eb6128e684612898565b61287d565b90508281526020810184848401111561290757612906612818565b5b6129128482856128c9565b509392505050565b600082601f83011261292f5761292e612813565b5b813561293f8482602086016128d8565b91505092915050565b60006020828403121561295e5761295d61244d565b5b600082013567ffffffffffffffff81111561297c5761297b612452565b5b6129888482850161291a565b91505092915050565b600080fd5b600080fd5b60008083601f8401126129b1576129b0612813565b5b8235905067ffffffffffffffff8111156129ce576129cd612991565b5b6020830191508360208202830111156129ea576129e9612996565b5b9250929050565b60008083601f840112612a0757612a06612813565b5b8235905067ffffffffffffffff811115612a2457612a23612991565b5b602083019150836020820283011115612a4057612a3f612996565b5b9250929050565b60008060008060408587031215612a6157612a6061244d565b5b600085013567ffffffffffffffff811115612a7f57612a7e612452565b5b612a8b8782880161299b565b9450945050602085013567ffffffffffffffff811115612aae57612aad612452565b5b612aba878288016129f1565b925092505092959194509250565b612ad1816124dc565b8114612adc57600080fd5b50565b600081359050612aee81612ac8565b92915050565b60008060408385031215612b0b57612b0a61244d565b5b6000612b198582860161269a565b9250506020612b2a85828601612adf565b9150509250929050565b600067ffffffffffffffff821115612b4f57612b4e61281d565b5b612b5882612558565b9050602081019050919050565b6000612b78612b7384612b34565b61287d565b905082815260208101848484011115612b9457612b93612818565b5b612b9f8482856128c9565b509392505050565b600082601f830112612bbc57612bbb612813565b5b8135612bcc848260208601612b65565b91505092915050565b60008060008060808587031215612bef57612bee61244d565b5b6000612bfd8782880161269a565b9450506020612c0e8782880161269a565b9350506040612c1f878288016125e5565b925050606085013567ffffffffffffffff811115612c4057612c3f612452565b5b612c4c87828801612ba7565b91505092959194509250565b60008060408385031215612c6f57612c6e61244d565b5b6000612c7d8582860161269a565b9250506020612c8e8582860161269a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cdf57607f821691505b602082108103612cf257612cf1612c98565b5b50919050565b6000604082019050612d0d6000830185612659565b612d1a6020830184612659565b9392505050565b600081519050612d3081612ac8565b92915050565b600060208284031215612d4c57612d4b61244d565b5b6000612d5a84828501612d21565b91505092915050565b7f4d696e7420686173206e6f7420626567756e2e00000000000000000000000000600082015250565b6000612d9960138361251d565b9150612da482612d63565b602082019050919050565b60006020820190508181036000830152612dc881612d8c565b9050919050565b7f52656163686564204d6178210000000000000000000000000000000000000000600082015250565b6000612e05600c8361251d565b9150612e1082612dcf565b602082019050919050565b60006020820190508181036000830152612e3481612df8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e75826125c4565b9150612e80836125c4565b9250828201905080821115612e9857612e97612e3b565b5b92915050565b7f426f78657320536f6c64204f7574210000000000000000000000000000000000600082015250565b6000612ed4600f8361251d565b9150612edf82612e9e565b602082019050919050565b60006020820190508181036000830152612f0381612ec7565b9050919050565b6000612f15826125c4565b9150612f20836125c4565b9250828202612f2e816125c4565b91508282048414831517612f4557612f44612e3b565b5b5092915050565b7f4d697373696e6720455448210000000000000000000000000000000000000000600082015250565b6000612f82600c8361251d565b9150612f8d82612f4c565b602082019050919050565b60006020820190508181036000830152612fb181612f75565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261301a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fdd565b6130248683612fdd565b95508019841693508086168417925050509392505050565b600061305761305261304d846125c4565b612799565b6125c4565b9050919050565b6000819050919050565b6130718361303c565b61308561307d8261305e565b848454612fea565b825550505050565b600090565b61309a61308d565b6130a5818484613068565b505050565b5b818110156130c9576130be600082613092565b6001810190506130ab565b5050565b601f82111561310e576130df81612fb8565b6130e884612fcd565b810160208510156130f7578190505b61310b61310385612fcd565b8301826130aa565b50505b505050565b600082821c905092915050565b600061313160001984600802613113565b1980831691505092915050565b600061314a8383613120565b9150826002028217905092915050565b61316382612512565b67ffffffffffffffff81111561317c5761317b61281d565b5b6131868254612cc7565b6131918282856130cd565b600060209050601f8311600181146131c457600084156131b2578287015190505b6131bc858261313e565b865550613224565b601f1984166131d286612fb8565b60005b828110156131fa578489015182556001820191506020850194506020810190506131d5565b868310156132175784890151613213601f891682613120565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613266826125c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361329857613297612e3b565b5b600182019050919050565b600081905092915050565b60006132b982612512565b6132c381856132a3565b93506132d381856020860161252e565b80840191505092915050565b60006132eb82856132ae565b91506132f782846132ae565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061335f60268361251d565b915061336a82613303565b604082019050919050565b6000602082019050818103600083015261338e81613352565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133cb60208361251d565b91506133d682613395565b602082019050919050565b600060208201905081810360008301526133fa816133be565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061342882613401565b613432818561340c565b935061344281856020860161252e565b61344b81612558565b840191505092915050565b600060808201905061346b6000830187612659565b6134786020830186612659565b61348560408301856126ef565b8181036060830152613497818461341d565b905095945050505050565b6000815190506134b181612483565b92915050565b6000602082840312156134cd576134cc61244d565b5b60006134db848285016134a2565b9150509291505056fea264697066735822122052c7b96b2cc14c7dfc59ca3331d8cc080970ae7ccc0ee47984e569a4d171318864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a035b1fe11610095578063d2ed5c5911610064578063d2ed5c591461069d578063d3dd5fe0146106c8578063e985e9c5146106df578063f2fde38b1461071c576101e3565b8063a035b1fe146105f0578063a22cb4651461061b578063b88d4fde14610644578063c87b56dd14610660576101e3565b80638da5cb5b116100d15780638da5cb5b1461054657806391b7f5ed1461057157806395d89b411461059a5780639cd59aea146105c5576101e3565b806370a08231146104a0578063715018a6146104dd57806379c9cb7b146104f457806379ff6fee1461051d576101e3565b80632be905ba1161017a5780634d155561116101495780634d155561146103e457806355f804b31461040f5780636352211e146104385780636c0360eb14610475576101e3565b80632be905ba146103445780632db115441461038157806341f434341461039d57806342842e0e146103c8576101e3565b806318160ddd116101b657806318160ddd146102a957806322ae7f7b146102d457806323b872dd1461031157806324600fc31461032d576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906124af565b610745565b60405161021c91906124f7565b60405180910390f35b34801561023157600080fd5b5061023a6107d7565b60405161024791906125a2565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906125fa565b610869565b6040516102849190612668565b60405180910390f35b6102a760048036038101906102a291906126af565b6108e8565b005b3480156102b557600080fd5b506102be6109f2565b6040516102cb91906126fe565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612719565b610a09565b60405161030891906124f7565b60405180910390f35b61032b60048036038101906103269190612746565b610a29565b005b34801561033957600080fd5b50610342610b79565b005b34801561035057600080fd5b5061036b60048036038101906103669190612719565b610bca565b60405161037891906126fe565b60405180910390f35b61039b600480360381019061039691906125fa565b610be2565b005b3480156103a957600080fd5b506103b2610d80565b6040516103bf91906127f8565b60405180910390f35b6103e260048036038101906103dd9190612746565b610d92565b005b3480156103f057600080fd5b506103f9610ee2565b60405161040691906126fe565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612948565b610ee8565b005b34801561044457600080fd5b5061045f600480360381019061045a91906125fa565b610f03565b60405161046c9190612668565b60405180910390f35b34801561048157600080fd5b5061048a610f15565b60405161049791906125a2565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c29190612719565b610fa3565b6040516104d491906126fe565b60405180910390f35b3480156104e957600080fd5b506104f261105b565b005b34801561050057600080fd5b5061051b600480360381019061051691906125fa565b61106f565b005b34801561052957600080fd5b50610544600480360381019061053f9190612a47565b611081565b005b34801561055257600080fd5b5061055b6110f9565b6040516105689190612668565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906125fa565b611123565b005b3480156105a657600080fd5b506105af611135565b6040516105bc91906125a2565b60405180910390f35b3480156105d157600080fd5b506105da6111c7565b6040516105e791906126fe565b60405180910390f35b3480156105fc57600080fd5b506106056111cd565b60405161061291906126fe565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612af4565b6111d3565b005b61065e60048036038101906106599190612bd5565b6112dd565b005b34801561066c57600080fd5b50610687600480360381019061068291906125fa565b611430565b60405161069491906125a2565b60405180910390f35b3480156106a957600080fd5b506106b26114ce565b6040516106bf91906124f7565b60405180910390f35b3480156106d457600080fd5b506106dd6114e1565b005b3480156106eb57600080fd5b5061070660048036038101906107019190612c58565b611515565b60405161071391906124f7565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612719565b6115a9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e690612cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461081290612cc7565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b60006108748261162c565b6108aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109e3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610960929190612cf8565b602060405180830381865afa15801561097d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a19190612d36565b6109e257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109d99190612668565b60405180910390fd5b5b6109ed838361168b565b505050565b60006109fc6117cf565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b67573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9b57610a968484846117d8565b610b73565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ae4929190612cf8565b602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190612d36565b610b6657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b5d9190612668565b60405180910390fd5b5b610b728484846117d8565b5b50505050565b610b81611afa565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bc7573d6000803e3d6000fd5b50565b600f6020528060005260406000206000915090505481565b600a60009054906101000a900460ff16610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612daf565b60405180910390fd5b600e54811115610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90612e1b565b60405180910390fd5b600d5481610c826109f2565b610c8c9190612e6a565b1115610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612eea565b60405180910390fd5b600c5481610cdb9190612f0a565b341015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490612f98565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d6c9190612e6a565b92505081905550610d7d3382611b78565b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ed0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0457610dff848484611b96565b610edc565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e4d929190612cf8565b602060405180830381865afa158015610e6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8e9190612d36565b610ecf57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ec69190612668565b60405180910390fd5b5b610edb848484611b96565b5b50505050565b600e5481565b610ef0611afa565b80600b9081610eff919061315a565b5050565b6000610f0e82611bb6565b9050919050565b600b8054610f2290612cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90612cc7565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611063611afa565b61106d6000611c82565b565b611077611afa565b80600e8190555050565b611089611afa565b60005b828290508110156110f2576110e18383838181106110ad576110ac61322c565b5b90506020020160208101906110c29190612719565b8686848181106110d5576110d461322c565b5b90506020020135611b78565b806110eb9061325b565b905061108c565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61112b611afa565b80600c8190555050565b60606003805461114490612cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461117090612cc7565b80156111bd5780601f10611192576101008083540402835291602001916111bd565b820191906000526020600020905b8154815290600101906020018083116111a057829003601f168201915b5050505050905090565b600d5481565b600c5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161124b929190612cf8565b602060405180830381865afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612d36565b6112cd57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c49190612668565b60405180910390fd5b5b6112d88383611d48565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561141c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113505761134b85858585611e53565b611429565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611399929190612cf8565b602060405180830381865afa1580156113b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113da9190612d36565b61141b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114129190612668565b60405180910390fd5b5b61142885858585611e53565b5b5050505050565b606061143b8261162c565b611471576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061147b611ec6565b9050600081510361149b57604051806020016040528060008152506114c6565b806114a584611f58565b6040516020016114b69291906132df565b6040516020818303038152906040525b915050919050565b600a60009054906101000a900460ff1681565b6114e9611afa565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b1611afa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613375565b60405180910390fd5b61162981611c82565b50565b6000816116376117cf565b11158015611646575060005482105b8015611684575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061169682610f03565b90508073ffffffffffffffffffffffffffffffffffffffff166116b7611fa8565b73ffffffffffffffffffffffffffffffffffffffff161461171a576116e3816116de611fa8565b611515565b611719576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006117e382611bb6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461184a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185684611fb0565b9150915061186c8187611867611fa8565b611fd7565b6118b8576118818661187c611fa8565b611515565b6118b7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361191e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61192b868686600161201b565b801561193657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a04856119e0888887612021565b7c020000000000000000000000000000000000000000000000000000000017612049565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a8a5760006001850190506000600460008381526020019081526020016000205403611a88576000548114611a87578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af28686866001612074565b505050505050565b611b0261207a565b73ffffffffffffffffffffffffffffffffffffffff16611b206110f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906133e1565b60405180910390fd5b565b611b92828260405180602001604052806000815250612082565b5050565b611bb1838383604051806020016040528060008152506112dd565b505050565b60008082905080611bc56117cf565b11611c4b57600054811015611c4a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c48575b60008103611c3e576004600083600190039350838152602001908152602001600020549050611c14565b8092505050611c7d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611d55611fa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e02611fa8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4791906124f7565b60405180910390a35050565b611e5e848484610a29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ec057611e898484848461211f565b611ebf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b8054611ed590612cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190612cc7565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9357600184039350600a81066030018453600a8104905080611f71575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861203886868461226f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61208c8383612278565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211a57600080549050600083820390505b6120cc600086838060010194508661211f565b612102576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120b957816000541461211757600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612145611fa8565b8786866040518563ffffffff1660e01b81526004016121679493929190613456565b6020604051808303816000875af19250505080156121a357506040513d601f19601f820116820180604052508101906121a091906134b7565b60015b61221c573d80600081146121d3576040519150601f19603f3d011682016040523d82523d6000602084013e6121d8565b606091505b506000815103612214576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036122b8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122c5600084838561201b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061233c8361232d6000866000612021565b61233685612433565b17612049565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123dd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123a2565b5060008203612418576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061242e6000848385612074565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61248c81612457565b811461249757600080fd5b50565b6000813590506124a981612483565b92915050565b6000602082840312156124c5576124c461244d565b5b60006124d38482850161249a565b91505092915050565b60008115159050919050565b6124f1816124dc565b82525050565b600060208201905061250c60008301846124e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561254c578082015181840152602081019050612531565b60008484015250505050565b6000601f19601f8301169050919050565b600061257482612512565b61257e818561251d565b935061258e81856020860161252e565b61259781612558565b840191505092915050565b600060208201905081810360008301526125bc8184612569565b905092915050565b6000819050919050565b6125d7816125c4565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b6000602082840312156126105761260f61244d565b5b600061261e848285016125e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265282612627565b9050919050565b61266281612647565b82525050565b600060208201905061267d6000830184612659565b92915050565b61268c81612647565b811461269757600080fd5b50565b6000813590506126a981612683565b92915050565b600080604083850312156126c6576126c561244d565b5b60006126d48582860161269a565b92505060206126e5858286016125e5565b9150509250929050565b6126f8816125c4565b82525050565b600060208201905061271360008301846126ef565b92915050565b60006020828403121561272f5761272e61244d565b5b600061273d8482850161269a565b91505092915050565b60008060006060848603121561275f5761275e61244d565b5b600061276d8682870161269a565b935050602061277e8682870161269a565b925050604061278f868287016125e5565b9150509250925092565b6000819050919050565b60006127be6127b96127b484612627565b612799565b612627565b9050919050565b60006127d0826127a3565b9050919050565b60006127e2826127c5565b9050919050565b6127f2816127d7565b82525050565b600060208201905061280d60008301846127e9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61285582612558565b810181811067ffffffffffffffff821117156128745761287361281d565b5b80604052505050565b6000612887612443565b9050612893828261284c565b919050565b600067ffffffffffffffff8211156128b3576128b261281d565b5b6128bc82612558565b9050602081019050919050565b82818337600083830152505050565b60006128eb6128e684612898565b61287d565b90508281526020810184848401111561290757612906612818565b5b6129128482856128c9565b509392505050565b600082601f83011261292f5761292e612813565b5b813561293f8482602086016128d8565b91505092915050565b60006020828403121561295e5761295d61244d565b5b600082013567ffffffffffffffff81111561297c5761297b612452565b5b6129888482850161291a565b91505092915050565b600080fd5b600080fd5b60008083601f8401126129b1576129b0612813565b5b8235905067ffffffffffffffff8111156129ce576129cd612991565b5b6020830191508360208202830111156129ea576129e9612996565b5b9250929050565b60008083601f840112612a0757612a06612813565b5b8235905067ffffffffffffffff811115612a2457612a23612991565b5b602083019150836020820283011115612a4057612a3f612996565b5b9250929050565b60008060008060408587031215612a6157612a6061244d565b5b600085013567ffffffffffffffff811115612a7f57612a7e612452565b5b612a8b8782880161299b565b9450945050602085013567ffffffffffffffff811115612aae57612aad612452565b5b612aba878288016129f1565b925092505092959194509250565b612ad1816124dc565b8114612adc57600080fd5b50565b600081359050612aee81612ac8565b92915050565b60008060408385031215612b0b57612b0a61244d565b5b6000612b198582860161269a565b9250506020612b2a85828601612adf565b9150509250929050565b600067ffffffffffffffff821115612b4f57612b4e61281d565b5b612b5882612558565b9050602081019050919050565b6000612b78612b7384612b34565b61287d565b905082815260208101848484011115612b9457612b93612818565b5b612b9f8482856128c9565b509392505050565b600082601f830112612bbc57612bbb612813565b5b8135612bcc848260208601612b65565b91505092915050565b60008060008060808587031215612bef57612bee61244d565b5b6000612bfd8782880161269a565b9450506020612c0e8782880161269a565b9350506040612c1f878288016125e5565b925050606085013567ffffffffffffffff811115612c4057612c3f612452565b5b612c4c87828801612ba7565b91505092959194509250565b60008060408385031215612c6f57612c6e61244d565b5b6000612c7d8582860161269a565b9250506020612c8e8582860161269a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cdf57607f821691505b602082108103612cf257612cf1612c98565b5b50919050565b6000604082019050612d0d6000830185612659565b612d1a6020830184612659565b9392505050565b600081519050612d3081612ac8565b92915050565b600060208284031215612d4c57612d4b61244d565b5b6000612d5a84828501612d21565b91505092915050565b7f4d696e7420686173206e6f7420626567756e2e00000000000000000000000000600082015250565b6000612d9960138361251d565b9150612da482612d63565b602082019050919050565b60006020820190508181036000830152612dc881612d8c565b9050919050565b7f52656163686564204d6178210000000000000000000000000000000000000000600082015250565b6000612e05600c8361251d565b9150612e1082612dcf565b602082019050919050565b60006020820190508181036000830152612e3481612df8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e75826125c4565b9150612e80836125c4565b9250828201905080821115612e9857612e97612e3b565b5b92915050565b7f426f78657320536f6c64204f7574210000000000000000000000000000000000600082015250565b6000612ed4600f8361251d565b9150612edf82612e9e565b602082019050919050565b60006020820190508181036000830152612f0381612ec7565b9050919050565b6000612f15826125c4565b9150612f20836125c4565b9250828202612f2e816125c4565b91508282048414831517612f4557612f44612e3b565b5b5092915050565b7f4d697373696e6720455448210000000000000000000000000000000000000000600082015250565b6000612f82600c8361251d565b9150612f8d82612f4c565b602082019050919050565b60006020820190508181036000830152612fb181612f75565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261301a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fdd565b6130248683612fdd565b95508019841693508086168417925050509392505050565b600061305761305261304d846125c4565b612799565b6125c4565b9050919050565b6000819050919050565b6130718361303c565b61308561307d8261305e565b848454612fea565b825550505050565b600090565b61309a61308d565b6130a5818484613068565b505050565b5b818110156130c9576130be600082613092565b6001810190506130ab565b5050565b601f82111561310e576130df81612fb8565b6130e884612fcd565b810160208510156130f7578190505b61310b61310385612fcd565b8301826130aa565b50505b505050565b600082821c905092915050565b600061313160001984600802613113565b1980831691505092915050565b600061314a8383613120565b9150826002028217905092915050565b61316382612512565b67ffffffffffffffff81111561317c5761317b61281d565b5b6131868254612cc7565b6131918282856130cd565b600060209050601f8311600181146131c457600084156131b2578287015190505b6131bc858261313e565b865550613224565b601f1984166131d286612fb8565b60005b828110156131fa578489015182556001820191506020850194506020810190506131d5565b868310156132175784890151613213601f891682613120565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613266826125c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361329857613297612e3b565b5b600182019050919050565b600081905092915050565b60006132b982612512565b6132c381856132a3565b93506132d381856020860161252e565b80840191505092915050565b60006132eb82856132ae565b91506132f782846132ae565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061335f60268361251d565b915061336a82613303565b604082019050919050565b6000602082019050818103600083015261338e81613352565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133cb60208361251d565b91506133d682613395565b602082019050919050565b600060208201905081810360008301526133fa816133be565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061342882613401565b613432818561340c565b935061344281856020860161252e565b61344b81612558565b840191505092915050565b600060808201905061346b6000830187612659565b6134786020830186612659565b61348560408301856126ef565b8181036060830152613497818461341d565b905095945050505050565b6000815190506134b181612483565b92915050565b6000602082840312156134cd576134cc61244d565b5b60006134db848285016134a2565b9150509291505056fea264697066735822122052c7b96b2cc14c7dfc59ca3331d8cc080970ae7ccc0ee47984e569a4d171318864736f6c63430008110033

Deployed Bytecode Sourcemap

63687:3051:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31418:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65951:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20678:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63770:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66124:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65316:113;;;;;;;;;;;;;:::i;:::-;;63993:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64275:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2807:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66303:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63958:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65439:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26320:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63850:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21862:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62778:103;;;;;;;;;;;;;:::i;:::-;;65561:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64659:248;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62130:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65104:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25103:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63920:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63880:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65767:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66490:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25313:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63823:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65018:78;;;;;;;;;;;;;:::i;:::-;;32367:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63036:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24025:639;24110:4;24449:10;24434:25;;:11;:25;;;;:102;;;;24526:10;24511:25;;:11;:25;;;;24434:102;:179;;;;24603:10;24588:25;;:11;:25;;;;24434:179;24414:199;;24025:639;;;:::o;24927:100::-;24981:13;25014:5;25007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24927:100;:::o;31418:218::-;31494:7;31519:16;31527:7;31519;:16::i;:::-;31514:64;;31544:34;;;;;;;;;;;;;;31514:64;31598:15;:24;31614:7;31598:24;;;;;;;;;;;:30;;;;;;;;;;;;31591:37;;31418:218;;;:::o;65951:165::-;66055:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;66076:32:::1;66090:8;66100:7;66076:13;:32::i;:::-;65951:165:::0;;;:::o;20678:323::-;20739:7;20967:15;:13;:15::i;:::-;20952:12;;20936:13;;:28;:46;20929:53;;20678:323;:::o;63770:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;66124:171::-;66233:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66250:37:::1;66269:4;66275:2;66279:7;66250:18;:37::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66250:37:::1;66269:4;66275:2;66279:7;66250:18;:37::i;:::-;66124:171:::0;;;;;:::o;65316:113::-;62016:13;:11;:13::i;:::-;65371:10:::1;65363:28;;:51;65392:21;65363:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65316:113::o:0;63993:48::-;;;;;;;;;;;;;;;;;:::o;64275:373::-;64349:8;;;;;;;;;;;64341:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;64408:7;;64401:3;:14;;64393:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;64474:9;;64467:3;64451:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;64443:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64540:5;;64534:3;:11;;;;:::i;:::-;64521:9;:24;;64513:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;64600:3;64572:12;:24;64585:10;64572:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;64614:26;64624:10;64636:3;64614:9;:26::i;:::-;64275:373;:::o;2807:143::-;2907:42;2807:143;:::o;66303:179::-;66416:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66433:41:::1;66456:4;66462:2;66466:7;66433:22;:41::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66433:41:::1;66456:4;66462:2;66466:7;66433:22;:41::i;:::-;66303:179:::0;;;;;:::o;63958:28::-;;;;:::o;65439:110::-;62016:13;:11;:13::i;:::-;65523:8:::1;65513:7;:18;;;;;;:::i;:::-;;65439:110:::0;:::o;26320:152::-;26392:7;26435:27;26454:7;26435:18;:27::i;:::-;26412:52;;26320:152;;;:::o;63850:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21862:233::-;21934:7;21975:1;21958:19;;:5;:19;;;21954:60;;21986:28;;;;;;;;;;;;;;21954:60;16021:13;22032:18;:25;22051:5;22032:25;;;;;;;;;;;;;;;;:55;22025:62;;21862:233;;;:::o;62778:103::-;62016:13;:11;:13::i;:::-;62843:30:::1;62870:1;62843:18;:30::i;:::-;62778:103::o:0;65561:91::-;62016:13;:11;:13::i;:::-;65636:6:::1;65626:7;:16;;;;65561:91:::0;:::o;64659:248::-;62016:13;:11;:13::i;:::-;64767:9:::1;64763:137;64786:6;;:13;;64782:1;:17;64763:137;;;64833:31;64843:6;;64850:1;64843:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;64854:6;;64861:1;64854:9;;;;;;;:::i;:::-;;;;;;;;64833;:31::i;:::-;64801:3;;;;:::i;:::-;;;64763:137;;;;64659:248:::0;;;;:::o;62130:87::-;62176:7;62203:6;;;;;;;;;;;62196:13;;62130:87;:::o;65104:88::-;62016:13;:11;:13::i;:::-;65176:8:::1;65168:5;:16;;;;65104:88:::0;:::o;25103:104::-;25159:13;25192:7;25185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25103:104;:::o;63920:31::-;;;;:::o;63880:33::-;;;;:::o;65767:176::-;65871:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;65892:43:::1;65916:8;65926;65892:23;:43::i;:::-;65767:176:::0;;;:::o;66490:245::-;66658:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66680:47:::1;66703:4;66709:2;66713:7;66722:4;66680:22;:47::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66680:47:::1;66703:4;66709:2;66713:7;66722:4;66680:22;:47::i;:::-;66490:245:::0;;;;;;:::o;25313:318::-;25386:13;25417:16;25425:7;25417;:16::i;:::-;25412:59;;25442:29;;;;;;;;;;;;;;25412:59;25484:21;25508:10;:8;:10::i;:::-;25484:34;;25561:1;25542:7;25536:21;:26;:87;;;;;;;;;;;;;;;;;25589:7;25598:18;25608:7;25598:9;:18::i;:::-;25572:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25536:87;25529:94;;;25313:318;;;:::o;63823:20::-;;;;;;;;;;;;;:::o;65018:78::-;62016:13;:11;:13::i;:::-;65080:8:::1;;;;;;;;;;;65079:9;65068:8;;:20;;;;;;;;;;;;;;;;;;65018:78::o:0;32367:164::-;32464:4;32488:18;:25;32507:5;32488:25;;;;;;;;;;;;;;;:35;32514:8;32488:35;;;;;;;;;;;;;;;;;;;;;;;;;32481:42;;32367:164;;;;:::o;63036:201::-;62016:13;:11;:13::i;:::-;63145:1:::1;63125:22;;:8;:22;;::::0;63117:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63201:28;63220:8;63201:18;:28::i;:::-;63036:201:::0;:::o;32789:282::-;32854:4;32910:7;32891:15;:13;:15::i;:::-;:26;;:66;;;;;32944:13;;32934:7;:23;32891:66;:153;;;;;33043:1;16797:8;32995:17;:26;33013:7;32995:26;;;;;;;;;;;;:44;:49;32891:153;32871:173;;32789:282;;;:::o;30851:408::-;30940:13;30956:16;30964:7;30956;:16::i;:::-;30940:32;;31012:5;30989:28;;:19;:17;:19::i;:::-;:28;;;30985:175;;31037:44;31054:5;31061:19;:17;:19::i;:::-;31037:16;:44::i;:::-;31032:128;;31109:35;;;;;;;;;;;;;;31032:128;30985:175;31205:2;31172:15;:24;31188:7;31172:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31243:7;31239:2;31223:28;;31232:5;31223:28;;;;;;;;;;;;30929:330;30851:408;;:::o;64153:101::-;64218:7;64245:1;64238:8;;64153:101;:::o;35057:2825::-;35199:27;35229;35248:7;35229:18;:27::i;:::-;35199:57;;35314:4;35273:45;;35289:19;35273:45;;;35269:86;;35327:28;;;;;;;;;;;;;;35269:86;35369:27;35398:23;35425:35;35452:7;35425:26;:35::i;:::-;35368:92;;;;35560:68;35585:15;35602:4;35608:19;:17;:19::i;:::-;35560:24;:68::i;:::-;35555:180;;35648:43;35665:4;35671:19;:17;:19::i;:::-;35648:16;:43::i;:::-;35643:92;;35700:35;;;;;;;;;;;;;;35643:92;35555:180;35766:1;35752:16;;:2;:16;;;35748:52;;35777:23;;;;;;;;;;;;;;35748:52;35813:43;35835:4;35841:2;35845:7;35854:1;35813:21;:43::i;:::-;35949:15;35946:160;;;36089:1;36068:19;36061:30;35946:160;36486:18;:24;36505:4;36486:24;;;;;;;;;;;;;;;;36484:26;;;;;;;;;;;;36555:18;:22;36574:2;36555:22;;;;;;;;;;;;;;;;36553:24;;;;;;;;;;;36877:146;36914:2;36963:45;36978:4;36984:2;36988:19;36963:14;:45::i;:::-;17077:8;36935:73;36877:18;:146::i;:::-;36848:17;:26;36866:7;36848:26;;;;;;;;;;;:175;;;;37194:1;17077:8;37143:19;:47;:52;37139:627;;37216:19;37248:1;37238:7;:11;37216:33;;37405:1;37371:17;:30;37389:11;37371:30;;;;;;;;;;;;:35;37367:384;;37509:13;;37494:11;:28;37490:242;;37689:19;37656:17;:30;37674:11;37656:30;;;;;;;;;;;:52;;;;37490:242;37367:384;37197:569;37139:627;37813:7;37809:2;37794:27;;37803:4;37794:27;;;;;;;;;;;;37832:42;37853:4;37859:2;37863:7;37872:1;37832:20;:42::i;:::-;35188:2694;;;35057:2825;;;:::o;62295:132::-;62370:12;:10;:12::i;:::-;62359:23;;:7;:5;:7::i;:::-;:23;;;62351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62295:132::o;48929:112::-;49006:27;49016:2;49020:8;49006:27;;;;;;;;;;;;:9;:27::i;:::-;48929:112;;:::o;37978:193::-;38124:39;38141:4;38147:2;38151:7;38124:39;;;;;;;;;;;;:16;:39::i;:::-;37978:193;;;:::o;27475:1275::-;27542:7;27562:12;27577:7;27562:22;;27645:4;27626:15;:13;:15::i;:::-;:23;27622:1061;;27679:13;;27672:4;:20;27668:1015;;;27717:14;27734:17;:23;27752:4;27734:23;;;;;;;;;;;;27717:40;;27851:1;16797:8;27823:6;:24;:29;27819:845;;28488:113;28505:1;28495:6;:11;28488:113;;28548:17;:25;28566:6;;;;;;;28548:25;;;;;;;;;;;;28539:34;;28488:113;;;28634:6;28627:13;;;;;;27819:845;27694:989;27668:1015;27622:1061;28711:31;;;;;;;;;;;;;;27475:1275;;;;:::o;63397:191::-;63471:16;63490:6;;;;;;;;;;;63471:25;;63516:8;63507:6;;:17;;;;;;;;;;;;;;;;;;63571:8;63540:40;;63561:8;63540:40;;;;;;;;;;;;63460:128;63397:191;:::o;31976:234::-;32123:8;32071:18;:39;32090:19;:17;:19::i;:::-;32071:39;;;;;;;;;;;;;;;:49;32111:8;32071:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32183:8;32147:55;;32162:19;:17;:19::i;:::-;32147:55;;;32193:8;32147:55;;;;;;:::i;:::-;;;;;;;;31976:234;;:::o;38769:407::-;38944:31;38957:4;38963:2;38967:7;38944:12;:31::i;:::-;39008:1;38990:2;:14;;;:19;38986:183;;39029:56;39060:4;39066:2;39070:7;39079:5;39029:30;:56::i;:::-;39024:145;;39113:40;;;;;;;;;;;;;;39024:145;38986:183;38769:407;;;;:::o;65200:108::-;65260:13;65293:7;65286:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65200:108;:::o;55304:1745::-;55369:17;55803:4;55796;55790:11;55786:22;55895:1;55889:4;55882:15;55970:4;55967:1;55963:12;55956:19;;56052:1;56047:3;56040:14;56156:3;56395:5;56377:428;56403:1;56377:428;;;56443:1;56438:3;56434:11;56427:18;;56614:2;56608:4;56604:13;56600:2;56596:22;56591:3;56583:36;56708:2;56702:4;56698:13;56690:21;;56775:4;56377:428;56765:25;56377:428;56381:21;56844:3;56839;56835:13;56959:4;56954:3;56950:14;56943:21;;57024:6;57019:3;57012:19;55408:1634;;;55304:1745;;;:::o;55097:105::-;55157:7;55184:10;55177:17;;55097:105;:::o;33952:485::-;34054:27;34083:23;34124:38;34165:15;:24;34181:7;34165:24;;;;;;;;;;;34124:65;;34342:18;34319:41;;34399:19;34393:26;34374:45;;34304:126;33952:485;;;:::o;33180:659::-;33329:11;33494:16;33487:5;33483:28;33474:37;;33654:16;33643:9;33639:32;33626:45;;33804:15;33793:9;33790:30;33782:5;33771:9;33768:20;33765:56;33755:66;;33180:659;;;;;:::o;39838:159::-;;;;;:::o;54406:311::-;54541:7;54561:16;17201:3;54587:19;:41;;54561:68;;17201:3;54655:31;54666:4;54672:2;54676:9;54655:10;:31::i;:::-;54647:40;;:62;;54640:69;;;54406:311;;;;;:::o;29298:450::-;29378:14;29546:16;29539:5;29535:28;29526:37;;29723:5;29709:11;29684:23;29680:41;29677:52;29670:5;29667:63;29657:73;;29298:450;;;;:::o;40662:158::-;;;;;:::o;60681:98::-;60734:7;60761:10;60754:17;;60681:98;:::o;48156:689::-;48287:19;48293:2;48297:8;48287:5;:19::i;:::-;48366:1;48348:2;:14;;;:19;48344:483;;48388:11;48402:13;;48388:27;;48434:13;48456:8;48450:3;:14;48434:30;;48483:233;48514:62;48553:1;48557:2;48561:7;;;;;;48570:5;48514:30;:62::i;:::-;48509:167;;48612:40;;;;;;;;;;;;;;48509:167;48711:3;48703:5;:11;48483:233;;48798:3;48781:13;;:20;48777:34;;48803:8;;;48777:34;48369:458;;48344:483;48156:689;;;:::o;41260:716::-;41423:4;41469:2;41444:45;;;41490:19;:17;:19::i;:::-;41511:4;41517:7;41526:5;41444:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41744:1;41727:6;:13;:18;41723:235;;41773:40;;;;;;;;;;;;;;41723:235;41916:6;41910:13;41901:6;41897:2;41893:15;41886:38;41440:529;41613:54;;;41603:64;;;:6;:64;;;;41596:71;;;41260:716;;;;;;:::o;54107:147::-;54244:6;54107:147;;;;;:::o;42438:2966::-;42511:20;42534:13;;42511:36;;42574:1;42562:8;:13;42558:44;;42584:18;;;;;;;;;;;;;;42558:44;42615:61;42645:1;42649:2;42653:12;42667:8;42615:21;:61::i;:::-;43159:1;16159:2;43129:1;:26;;43128:32;43116:8;:45;43090:18;:22;43109:2;43090:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43438:139;43475:2;43529:33;43552:1;43556:2;43560:1;43529:14;:33::i;:::-;43496:30;43517:8;43496:20;:30::i;:::-;:66;43438:18;:139::i;:::-;43404:17;:31;43422:12;43404:31;;;;;;;;;;;:173;;;;43594:16;43625:11;43654:8;43639:12;:23;43625:37;;44175:16;44171:2;44167:25;44155:37;;44547:12;44507:8;44466:1;44404:25;44345:1;44284;44257:335;44918:1;44904:12;44900:20;44858:346;44959:3;44950:7;44947:16;44858:346;;45177:7;45167:8;45164:1;45137:25;45134:1;45131;45126:59;45012:1;45003:7;44999:15;44988:26;;44858:346;;;44862:77;45249:1;45237:8;:13;45233:45;;45259:19;;;;;;;;;;;;;;45233:45;45311:3;45295:13;:19;;;;42864:2462;;45336:60;45365:1;45369:2;45373:12;45387:8;45336:20;:60::i;:::-;42500:2904;42438:2966;;:::o;29850:324::-;29920:14;30153:1;30143:8;30140:15;30114:24;30110:46;30100:56;;29850:324;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::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:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::o;9826:117::-;9935:1;9932;9925:12;9949:117;10058:1;10055;10048:12;10089:568;10162:8;10172:6;10222:3;10215:4;10207:6;10203:17;10199:27;10189:122;;10230:79;;:::i;:::-;10189:122;10343:6;10330:20;10320:30;;10373:18;10365:6;10362:30;10359:117;;;10395:79;;:::i;:::-;10359:117;10509:4;10501:6;10497:17;10485:29;;10563:3;10555:4;10547:6;10543:17;10533:8;10529:32;10526:41;10523:128;;;10570:79;;:::i;:::-;10523:128;10089:568;;;;;:::o;10680:::-;10753:8;10763:6;10813:3;10806:4;10798:6;10794:17;10790:27;10780:122;;10821:79;;:::i;:::-;10780:122;10934:6;10921:20;10911:30;;10964:18;10956:6;10953:30;10950:117;;;10986:79;;:::i;:::-;10950:117;11100:4;11092:6;11088:17;11076:29;;11154:3;11146:4;11138:6;11134:17;11124:8;11120:32;11117:41;11114:128;;;11161:79;;:::i;:::-;11114:128;10680:568;;;;;:::o;11254:934::-;11376:6;11384;11392;11400;11449:2;11437:9;11428:7;11424:23;11420:32;11417:119;;;11455:79;;:::i;:::-;11417:119;11603:1;11592:9;11588:17;11575:31;11633:18;11625:6;11622:30;11619:117;;;11655:79;;:::i;:::-;11619:117;11768:80;11840:7;11831:6;11820:9;11816:22;11768:80;:::i;:::-;11750:98;;;;11546:312;11925:2;11914:9;11910:18;11897:32;11956:18;11948:6;11945:30;11942:117;;;11978:79;;:::i;:::-;11942:117;12091:80;12163:7;12154:6;12143:9;12139:22;12091:80;:::i;:::-;12073:98;;;;11868:313;11254:934;;;;;;;:::o;12194:116::-;12264:21;12279:5;12264:21;:::i;:::-;12257:5;12254:32;12244:60;;12300:1;12297;12290:12;12244:60;12194:116;:::o;12316:133::-;12359:5;12397:6;12384:20;12375:29;;12413:30;12437:5;12413:30;:::i;:::-;12316:133;;;;:::o;12455:468::-;12520:6;12528;12577:2;12565:9;12556:7;12552:23;12548:32;12545:119;;;12583:79;;:::i;:::-;12545:119;12703:1;12728:53;12773:7;12764:6;12753:9;12749:22;12728:53;:::i;:::-;12718:63;;12674:117;12830:2;12856:50;12898:7;12889:6;12878:9;12874:22;12856:50;:::i;:::-;12846:60;;12801:115;12455:468;;;;;:::o;12929:307::-;12990:4;13080:18;13072:6;13069:30;13066:56;;;13102:18;;:::i;:::-;13066:56;13140:29;13162:6;13140:29;:::i;:::-;13132:37;;13224:4;13218;13214:15;13206:23;;12929:307;;;:::o;13242:423::-;13319:5;13344:65;13360:48;13401:6;13360:48;:::i;:::-;13344:65;:::i;:::-;13335:74;;13432:6;13425:5;13418:21;13470:4;13463:5;13459:16;13508:3;13499:6;13494:3;13490:16;13487:25;13484:112;;;13515:79;;:::i;:::-;13484:112;13605:54;13652:6;13647:3;13642;13605:54;:::i;:::-;13325:340;13242:423;;;;;:::o;13684:338::-;13739:5;13788:3;13781:4;13773:6;13769:17;13765:27;13755:122;;13796:79;;:::i;:::-;13755:122;13913:6;13900:20;13938:78;14012:3;14004:6;13997:4;13989:6;13985:17;13938:78;:::i;:::-;13929:87;;13745:277;13684:338;;;;:::o;14028:943::-;14123:6;14131;14139;14147;14196:3;14184:9;14175:7;14171:23;14167:33;14164:120;;;14203:79;;:::i;:::-;14164:120;14323:1;14348:53;14393:7;14384:6;14373:9;14369:22;14348:53;:::i;:::-;14338:63;;14294:117;14450:2;14476:53;14521:7;14512:6;14501:9;14497:22;14476:53;:::i;:::-;14466:63;;14421:118;14578:2;14604:53;14649:7;14640:6;14629:9;14625:22;14604:53;:::i;:::-;14594:63;;14549:118;14734:2;14723:9;14719:18;14706:32;14765:18;14757:6;14754:30;14751:117;;;14787:79;;:::i;:::-;14751:117;14892:62;14946:7;14937:6;14926:9;14922:22;14892:62;:::i;:::-;14882:72;;14677:287;14028:943;;;;;;;:::o;14977:474::-;15045:6;15053;15102:2;15090:9;15081:7;15077:23;15073:32;15070:119;;;15108:79;;:::i;:::-;15070:119;15228:1;15253:53;15298:7;15289:6;15278:9;15274:22;15253:53;:::i;:::-;15243:63;;15199:117;15355:2;15381:53;15426:7;15417:6;15406:9;15402:22;15381:53;:::i;:::-;15371:63;;15326:118;14977:474;;;;;:::o;15457:180::-;15505:77;15502:1;15495:88;15602:4;15599:1;15592:15;15626:4;15623:1;15616:15;15643:320;15687:6;15724:1;15718:4;15714:12;15704:22;;15771:1;15765:4;15761:12;15792:18;15782:81;;15848:4;15840:6;15836:17;15826:27;;15782:81;15910:2;15902:6;15899:14;15879:18;15876:38;15873:84;;15929:18;;:::i;:::-;15873:84;15694:269;15643:320;;;:::o;15969:332::-;16090:4;16128:2;16117:9;16113:18;16105:26;;16141:71;16209:1;16198:9;16194:17;16185:6;16141:71;:::i;:::-;16222:72;16290:2;16279:9;16275:18;16266:6;16222:72;:::i;:::-;15969:332;;;;;:::o;16307:137::-;16361:5;16392:6;16386:13;16377:22;;16408:30;16432:5;16408:30;:::i;:::-;16307:137;;;;:::o;16450:345::-;16517:6;16566:2;16554:9;16545:7;16541:23;16537:32;16534:119;;;16572:79;;:::i;:::-;16534:119;16692:1;16717:61;16770:7;16761:6;16750:9;16746:22;16717:61;:::i;:::-;16707:71;;16663:125;16450:345;;;;:::o;16801:169::-;16941:21;16937:1;16929:6;16925:14;16918:45;16801:169;:::o;16976:366::-;17118:3;17139:67;17203:2;17198:3;17139:67;:::i;:::-;17132:74;;17215:93;17304:3;17215:93;:::i;:::-;17333:2;17328:3;17324:12;17317:19;;16976:366;;;:::o;17348:419::-;17514:4;17552:2;17541:9;17537:18;17529:26;;17601:9;17595:4;17591:20;17587:1;17576:9;17572:17;17565:47;17629:131;17755:4;17629:131;:::i;:::-;17621:139;;17348:419;;;:::o;17773:162::-;17913:14;17909:1;17901:6;17897:14;17890:38;17773:162;:::o;17941:366::-;18083:3;18104:67;18168:2;18163:3;18104:67;:::i;:::-;18097:74;;18180:93;18269:3;18180:93;:::i;:::-;18298:2;18293:3;18289:12;18282:19;;17941:366;;;:::o;18313:419::-;18479:4;18517:2;18506:9;18502:18;18494:26;;18566:9;18560:4;18556:20;18552:1;18541:9;18537:17;18530:47;18594:131;18720:4;18594:131;:::i;:::-;18586:139;;18313:419;;;:::o;18738:180::-;18786:77;18783:1;18776:88;18883:4;18880:1;18873:15;18907:4;18904:1;18897:15;18924:191;18964:3;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19017:20;19035:1;19017:20;:::i;:::-;19012:25;;19060:1;19057;19053:9;19046:16;;19081:3;19078:1;19075:10;19072:36;;;19088:18;;:::i;:::-;19072:36;18924:191;;;;:::o;19121:165::-;19261:17;19257:1;19249:6;19245:14;19238:41;19121:165;:::o;19292:366::-;19434:3;19455:67;19519:2;19514:3;19455:67;:::i;:::-;19448:74;;19531:93;19620:3;19531:93;:::i;:::-;19649:2;19644:3;19640:12;19633:19;;19292:366;;;:::o;19664:419::-;19830:4;19868:2;19857:9;19853:18;19845:26;;19917:9;19911:4;19907:20;19903:1;19892:9;19888:17;19881:47;19945:131;20071:4;19945:131;:::i;:::-;19937:139;;19664:419;;;:::o;20089:410::-;20129:7;20152:20;20170:1;20152:20;:::i;:::-;20147:25;;20186:20;20204:1;20186:20;:::i;:::-;20181:25;;20241:1;20238;20234:9;20263:30;20281:11;20263:30;:::i;:::-;20252:41;;20442:1;20433:7;20429:15;20426:1;20423:22;20403:1;20396:9;20376:83;20353:139;;20472:18;;:::i;:::-;20353:139;20137:362;20089:410;;;;:::o;20505:162::-;20645:14;20641:1;20633:6;20629:14;20622:38;20505:162;:::o;20673:366::-;20815:3;20836:67;20900:2;20895:3;20836:67;:::i;:::-;20829:74;;20912:93;21001:3;20912:93;:::i;:::-;21030:2;21025:3;21021:12;21014:19;;20673:366;;;:::o;21045:419::-;21211:4;21249:2;21238:9;21234:18;21226:26;;21298:9;21292:4;21288:20;21284:1;21273:9;21269:17;21262:47;21326:131;21452:4;21326:131;:::i;:::-;21318:139;;21045:419;;;:::o;21470:141::-;21519:4;21542:3;21534:11;;21565:3;21562:1;21555:14;21599:4;21596:1;21586:18;21578:26;;21470:141;;;:::o;21617:93::-;21654:6;21701:2;21696;21689:5;21685:14;21681:23;21671:33;;21617:93;;;:::o;21716:107::-;21760:8;21810:5;21804:4;21800:16;21779:37;;21716:107;;;;:::o;21829:393::-;21898:6;21948:1;21936:10;21932:18;21971:97;22001:66;21990:9;21971:97;:::i;:::-;22089:39;22119:8;22108:9;22089:39;:::i;:::-;22077:51;;22161:4;22157:9;22150:5;22146:21;22137:30;;22210:4;22200:8;22196:19;22189:5;22186:30;22176:40;;21905:317;;21829:393;;;;;:::o;22228:142::-;22278:9;22311:53;22329:34;22338:24;22356:5;22338:24;:::i;:::-;22329:34;:::i;:::-;22311:53;:::i;:::-;22298:66;;22228:142;;;:::o;22376:75::-;22419:3;22440:5;22433:12;;22376:75;;;:::o;22457:269::-;22567:39;22598:7;22567:39;:::i;:::-;22628:91;22677:41;22701:16;22677:41;:::i;:::-;22669:6;22662:4;22656:11;22628:91;:::i;:::-;22622:4;22615:105;22533:193;22457:269;;;:::o;22732:73::-;22777:3;22732:73;:::o;22811:189::-;22888:32;;:::i;:::-;22929:65;22987:6;22979;22973:4;22929:65;:::i;:::-;22864:136;22811:189;;:::o;23006:186::-;23066:120;23083:3;23076:5;23073:14;23066:120;;;23137:39;23174:1;23167:5;23137:39;:::i;:::-;23110:1;23103:5;23099:13;23090:22;;23066:120;;;23006:186;;:::o;23198:543::-;23299:2;23294:3;23291:11;23288:446;;;23333:38;23365:5;23333:38;:::i;:::-;23417:29;23435:10;23417:29;:::i;:::-;23407:8;23403:44;23600:2;23588:10;23585:18;23582:49;;;23621:8;23606:23;;23582:49;23644:80;23700:22;23718:3;23700:22;:::i;:::-;23690:8;23686:37;23673:11;23644:80;:::i;:::-;23303:431;;23288:446;23198:543;;;:::o;23747:117::-;23801:8;23851:5;23845:4;23841:16;23820:37;;23747:117;;;;:::o;23870:169::-;23914:6;23947:51;23995:1;23991:6;23983:5;23980:1;23976:13;23947:51;:::i;:::-;23943:56;24028:4;24022;24018:15;24008:25;;23921:118;23870:169;;;;:::o;24044:295::-;24120:4;24266:29;24291:3;24285:4;24266:29;:::i;:::-;24258:37;;24328:3;24325:1;24321:11;24315:4;24312:21;24304:29;;24044:295;;;;:::o;24344:1395::-;24461:37;24494:3;24461:37;:::i;:::-;24563:18;24555:6;24552:30;24549:56;;;24585:18;;:::i;:::-;24549:56;24629:38;24661:4;24655:11;24629:38;:::i;:::-;24714:67;24774:6;24766;24760:4;24714:67;:::i;:::-;24808:1;24832:4;24819:17;;24864:2;24856:6;24853:14;24881:1;24876:618;;;;25538:1;25555:6;25552:77;;;25604:9;25599:3;25595:19;25589:26;25580:35;;25552:77;25655:67;25715:6;25708:5;25655:67;:::i;:::-;25649:4;25642:81;25511:222;24846:887;;24876:618;24928:4;24924:9;24916:6;24912:22;24962:37;24994:4;24962:37;:::i;:::-;25021:1;25035:208;25049:7;25046:1;25043:14;25035:208;;;25128:9;25123:3;25119:19;25113:26;25105:6;25098:42;25179:1;25171:6;25167:14;25157:24;;25226:2;25215:9;25211:18;25198:31;;25072:4;25069:1;25065:12;25060:17;;25035:208;;;25271:6;25262:7;25259:19;25256:179;;;25329:9;25324:3;25320:19;25314:26;25372:48;25414:4;25406:6;25402:17;25391:9;25372:48;:::i;:::-;25364:6;25357:64;25279:156;25256:179;25481:1;25477;25469:6;25465:14;25461:22;25455:4;25448:36;24883:611;;;24846:887;;24436:1303;;;24344:1395;;:::o;25745:180::-;25793:77;25790:1;25783:88;25890:4;25887:1;25880:15;25914:4;25911:1;25904:15;25931:233;25970:3;25993:24;26011:5;25993:24;:::i;:::-;25984:33;;26039:66;26032:5;26029:77;26026:103;;26109:18;;:::i;:::-;26026:103;26156:1;26149:5;26145:13;26138:20;;25931:233;;;:::o;26170:148::-;26272:11;26309:3;26294:18;;26170:148;;;;:::o;26324:390::-;26430:3;26458:39;26491:5;26458:39;:::i;:::-;26513:89;26595:6;26590:3;26513:89;:::i;:::-;26506:96;;26611:65;26669:6;26664:3;26657:4;26650:5;26646:16;26611:65;:::i;:::-;26701:6;26696:3;26692:16;26685:23;;26434:280;26324:390;;;;:::o;26720:435::-;26900:3;26922:95;27013:3;27004:6;26922:95;:::i;:::-;26915:102;;27034:95;27125:3;27116:6;27034:95;:::i;:::-;27027:102;;27146:3;27139:10;;26720:435;;;;;:::o;27161:225::-;27301:34;27297:1;27289:6;27285:14;27278:58;27370:8;27365:2;27357:6;27353:15;27346:33;27161:225;:::o;27392:366::-;27534:3;27555:67;27619:2;27614:3;27555:67;:::i;:::-;27548:74;;27631:93;27720:3;27631:93;:::i;:::-;27749:2;27744:3;27740:12;27733:19;;27392:366;;;:::o;27764:419::-;27930:4;27968:2;27957:9;27953:18;27945:26;;28017:9;28011:4;28007:20;28003:1;27992:9;27988:17;27981:47;28045:131;28171:4;28045:131;:::i;:::-;28037:139;;27764:419;;;:::o;28189:182::-;28329:34;28325:1;28317:6;28313:14;28306:58;28189:182;:::o;28377:366::-;28519:3;28540:67;28604:2;28599:3;28540:67;:::i;:::-;28533:74;;28616:93;28705:3;28616:93;:::i;:::-;28734:2;28729:3;28725:12;28718:19;;28377:366;;;:::o;28749:419::-;28915:4;28953:2;28942:9;28938:18;28930:26;;29002:9;28996:4;28992:20;28988:1;28977:9;28973:17;28966:47;29030:131;29156:4;29030:131;:::i;:::-;29022:139;;28749:419;;;:::o;29174:98::-;29225:6;29259:5;29253:12;29243:22;;29174:98;;;:::o;29278:168::-;29361:11;29395:6;29390:3;29383:19;29435:4;29430:3;29426:14;29411:29;;29278:168;;;;:::o;29452:373::-;29538:3;29566:38;29598:5;29566:38;:::i;:::-;29620:70;29683:6;29678:3;29620:70;:::i;:::-;29613:77;;29699:65;29757:6;29752:3;29745:4;29738:5;29734:16;29699:65;:::i;:::-;29789:29;29811:6;29789:29;:::i;:::-;29784:3;29780:39;29773:46;;29542:283;29452:373;;;;:::o;29831:640::-;30026:4;30064:3;30053:9;30049:19;30041:27;;30078:71;30146:1;30135:9;30131:17;30122:6;30078:71;:::i;:::-;30159:72;30227:2;30216:9;30212:18;30203:6;30159:72;:::i;:::-;30241;30309:2;30298:9;30294:18;30285:6;30241:72;:::i;:::-;30360:9;30354:4;30350:20;30345:2;30334:9;30330:18;30323:48;30388:76;30459:4;30450:6;30388:76;:::i;:::-;30380:84;;29831:640;;;;;;;:::o;30477:141::-;30533:5;30564:6;30558:13;30549:22;;30580:32;30606:5;30580:32;:::i;:::-;30477:141;;;;:::o;30624:349::-;30693:6;30742:2;30730:9;30721:7;30717:23;30713:32;30710:119;;;30748:79;;:::i;:::-;30710:119;30868:1;30893:63;30948:7;30939:6;30928:9;30924:22;30893:63;:::i;:::-;30883:73;;30839:127;30624:349;;;;:::o

Swarm Source

ipfs://52c7b96b2cc14c7dfc59ca3331d8cc080970ae7ccc0ee47984e569a4d1713188
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.