ETH Price: $3,104.80 (+1.25%)
Gas: 3 Gwei

Token

Goblintown 3D (Goblin3D)
 

Overview

Max Total Supply

8,888 Goblin3D

Holders

578

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Goblin3D
0x517f87551abad9060d2b56732d7260fe74be7fed
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:
Goblintown3D

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contract-5f7f3e5c55.sol


pragma solidity ^0.8.4;



contract Goblintown3D is ERC721A, Ownable {
    uint256 MAX_MINTS = 20;
    uint256 MAX_SUPPLY = 8888;
    uint256 public mintRate = 0.00 ether;
    bool public mintIsActive = true;

    string public baseURI = "ipfs://QmYocB4EZpTqt6YLLedmZfLu779eWiyVX9eWJ8E3dGhCrT/";

    constructor() ERC721A("Goblintown 3D", "Goblin3D") {}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }
    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260146009556122b8600a556000600b556001600c60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162002b1f60369139600d9080519060200190620000609291906200021e565b503480156200006e57600080fd5b506040518060400160405280600d81526020017f476f626c696e746f776e203344000000000000000000000000000000000000008152506040518060400160405280600881526020017f476f626c696e33440000000000000000000000000000000000000000000000008152508160029080519060200190620000f39291906200021e565b5080600390805190602001906200010c9291906200021e565b506200011d6200014b60201b60201c565b600081905550505062000145620001396200015060201b60201c565b6200015860201b60201c565b62000332565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022c90620002fd565b90600052602060002090601f0160209004810192826200025057600085556200029c565b82601f106200026b57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029b5782518255916020019190600101906200027e565b5b509050620002ab9190620002af565b5090565b5b80821115620002ca576000816000905550600101620002b0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031657607f821691505b6020821081036200032c576200032b620002ce565b5b50919050565b6127dd80620003426000396000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461041c578063c87b56dd14610445578063ca0dcf1614610482578063dbe2193f146104ad578063e985e9c5146104d6578063f2fde38b1461051357610140565b806370a082311461032d578063715018a61461036a5780638da5cb5b1461038157806395d89b41146103ac578063a0712d68146103d7578063a22cb465146103f357610140565b806323b872dd1161010857806323b872dd1461023e5780633ccfd60b1461026757806342842e0e14610271578063471a42941461029a5780636352211e146102c55780636c0360eb1461030257610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611d8c565b61053c565b6040516101799190611dd4565b60405180910390f35b34801561018e57600080fd5b506101976105ce565b6040516101a49190611e88565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611ee0565b610660565b6040516101e19190611f4e565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190611f95565b6106dc565b005b34801561021f57600080fd5b50610228610882565b6040516102359190611fe4565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190611fff565b610899565b005b61026f6108a9565b005b34801561027d57600080fd5b5061029860048036038101906102939190611fff565b610975565b005b3480156102a657600080fd5b506102af610995565b6040516102bc9190611dd4565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190611ee0565b6109a8565b6040516102f99190611f4e565b60405180910390f35b34801561030e57600080fd5b506103176109ba565b6040516103249190611e88565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612052565b610a48565b6040516103619190611fe4565b60405180910390f35b34801561037657600080fd5b5061037f610b00565b005b34801561038d57600080fd5b50610396610b88565b6040516103a39190611f4e565b60405180910390f35b3480156103b857600080fd5b506103c1610bb2565b6040516103ce9190611e88565b60405180910390f35b6103f160048036038101906103ec9190611ee0565b610c44565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906120ab565b610d50565b005b34801561042857600080fd5b50610443600480360381019061043e9190612220565b610ec7565b005b34801561045157600080fd5b5061046c60048036038101906104679190611ee0565b610f3a565b6040516104799190611e88565b60405180910390f35b34801561048e57600080fd5b50610497610fd8565b6040516104a49190611fe4565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190611ee0565b610fde565b005b3480156104e257600080fd5b506104fd60048036038101906104f891906122a3565b611064565b60405161050a9190611dd4565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612052565b6110f8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105c75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105dd90612312565b80601f016020809104026020016040519081016040528092919081815260200182805461060990612312565b80156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b5050505050905090565b600061066b826111ef565b6106a1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e78261124e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361074e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076d61131a565b73ffffffffffffffffffffffffffffffffffffffff16146107d0576107998161079461131a565b611064565b6107cf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061088c611322565b6001546000540303905090565b6108a4838383611327565b505050565b6108b16116ce565b73ffffffffffffffffffffffffffffffffffffffff166108cf610b88565b73ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c9061238f565b60405180910390fd5b61092d610b88565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610972573d6000803e3d6000fd5b50565b61099083838360405180602001604052806000815250610ec7565b505050565b600c60009054906101000a900460ff1681565b60006109b38261124e565b9050919050565b600d80546109c790612312565b80601f01602080910402602001604051908101604052809291908181526020018280546109f390612312565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aaf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b086116ce565b73ffffffffffffffffffffffffffffffffffffffff16610b26610b88565b73ffffffffffffffffffffffffffffffffffffffff1614610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b739061238f565b60405180910390fd5b610b8660006116d6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bc190612312565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed90612312565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b600954610c503361179c565b82610c5b91906123de565b1115610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390612480565b60405180910390fd5b600a5481610ca8610882565b610cb291906123de565b1115610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea906124ec565b60405180910390fd5b80600b54610d01919061250c565b341015610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906125b2565b60405180910390fd5b610d4d33826117f3565b50565b610d5861131a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610dc961131a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e7661131a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ebb9190611dd4565b60405180910390a35050565b610ed2848484611327565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f3457610efd84848484611811565b610f33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f45826111ef565b610f7b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f85611961565b90506000815103610fa55760405180602001604052806000815250610fd0565b80610faf846119f3565b604051602001610fc092919061260e565b6040516020818303038152906040525b915050919050565b600b5481565b610fe66116ce565b73ffffffffffffffffffffffffffffffffffffffff16611004610b88565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061238f565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111006116ce565b73ffffffffffffffffffffffffffffffffffffffff1661111e610b88565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b9061238f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906126a4565b60405180910390fd5b6111ec816116d6565b50565b6000816111fa611322565b11158015611209575060005482105b8015611247575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061125d611322565b116112e3576000548110156112e25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036112e0575b600081036112d65760046000836001900393508381526020019081526020016000205490506112ac565b8092505050611315565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006113328261124e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611399576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113ba61131a565b73ffffffffffffffffffffffffffffffffffffffff1614806113e957506113e8856113e361131a565b611064565b5b8061142e57506113f761131a565b73ffffffffffffffffffffffffffffffffffffffff1661141684610660565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611467576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114da8585856001611a4d565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6115d786611a53565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361165f576000600184019050600060046000838152602001908152602001600020540361165d57600054811461165c578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116c78585856001611a5d565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61180d828260405180602001604052806000815250611a63565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261183761131a565b8786866040518563ffffffff1660e01b81526004016118599493929190612719565b6020604051808303816000875af192505050801561189557506040513d601f19601f82011682018060405250810190611892919061277a565b60015b61190e573d80600081146118c5576040519150601f19603f3d011682016040523d82523d6000602084013e6118ca565b606091505b506000815103611906576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461197090612312565b80601f016020809104026020016040519081016040528092919081815260200182805461199c90612312565b80156119e95780601f106119be576101008083540402835291602001916119e9565b820191906000526020600020905b8154815290600101906020018083116119cc57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a3957600183039250600a81066030018353600a81049050611a19565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611acf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611b09576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b166000858386611a4d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611b7b60018514611d16565b901b60a042901b611b8b86611a53565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611c8f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3f6000878480600101955087611811565b611c75576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611bd0578260005414611c8a57600080fd5b611cfa565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611c90575b816000819055505050611d106000858386611a5d565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d6981611d34565b8114611d7457600080fd5b50565b600081359050611d8681611d60565b92915050565b600060208284031215611da257611da1611d2a565b5b6000611db084828501611d77565b91505092915050565b60008115159050919050565b611dce81611db9565b82525050565b6000602082019050611de96000830184611dc5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e29578082015181840152602081019050611e0e565b83811115611e38576000848401525b50505050565b6000601f19601f8301169050919050565b6000611e5a82611def565b611e648185611dfa565b9350611e74818560208601611e0b565b611e7d81611e3e565b840191505092915050565b60006020820190508181036000830152611ea28184611e4f565b905092915050565b6000819050919050565b611ebd81611eaa565b8114611ec857600080fd5b50565b600081359050611eda81611eb4565b92915050565b600060208284031215611ef657611ef5611d2a565b5b6000611f0484828501611ecb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f3882611f0d565b9050919050565b611f4881611f2d565b82525050565b6000602082019050611f636000830184611f3f565b92915050565b611f7281611f2d565b8114611f7d57600080fd5b50565b600081359050611f8f81611f69565b92915050565b60008060408385031215611fac57611fab611d2a565b5b6000611fba85828601611f80565b9250506020611fcb85828601611ecb565b9150509250929050565b611fde81611eaa565b82525050565b6000602082019050611ff96000830184611fd5565b92915050565b60008060006060848603121561201857612017611d2a565b5b600061202686828701611f80565b935050602061203786828701611f80565b925050604061204886828701611ecb565b9150509250925092565b60006020828403121561206857612067611d2a565b5b600061207684828501611f80565b91505092915050565b61208881611db9565b811461209357600080fd5b50565b6000813590506120a58161207f565b92915050565b600080604083850312156120c2576120c1611d2a565b5b60006120d085828601611f80565b92505060206120e185828601612096565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61212d82611e3e565b810181811067ffffffffffffffff8211171561214c5761214b6120f5565b5b80604052505050565b600061215f611d20565b905061216b8282612124565b919050565b600067ffffffffffffffff82111561218b5761218a6120f5565b5b61219482611e3e565b9050602081019050919050565b82818337600083830152505050565b60006121c36121be84612170565b612155565b9050828152602081018484840111156121df576121de6120f0565b5b6121ea8482856121a1565b509392505050565b600082601f830112612207576122066120eb565b5b81356122178482602086016121b0565b91505092915050565b6000806000806080858703121561223a57612239611d2a565b5b600061224887828801611f80565b945050602061225987828801611f80565b935050604061226a87828801611ecb565b925050606085013567ffffffffffffffff81111561228b5761228a611d2f565b5b612297878288016121f2565b91505092959194509250565b600080604083850312156122ba576122b9611d2a565b5b60006122c885828601611f80565b92505060206122d985828601611f80565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061232a57607f821691505b60208210810361233d5761233c6122e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612379602083611dfa565b915061238482612343565b602082019050919050565b600060208201905081810360008301526123a88161236c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123e982611eaa565b91506123f483611eaa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612429576124286123af565b5b828201905092915050565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b600061246a601283611dfa565b915061247582612434565b602082019050919050565b600060208201905081810360008301526124998161245d565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006124d6601683611dfa565b91506124e1826124a0565b602082019050919050565b60006020820190508181036000830152612505816124c9565b9050919050565b600061251782611eaa565b915061252283611eaa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561255b5761255a6123af565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061259c601583611dfa565b91506125a782612566565b602082019050919050565b600060208201905081810360008301526125cb8161258f565b9050919050565b600081905092915050565b60006125e882611def565b6125f281856125d2565b9350612602818560208601611e0b565b80840191505092915050565b600061261a82856125dd565b915061262682846125dd565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061268e602683611dfa565b915061269982612632565b604082019050919050565b600060208201905081810360008301526126bd81612681565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006126eb826126c4565b6126f581856126cf565b9350612705818560208601611e0b565b61270e81611e3e565b840191505092915050565b600060808201905061272e6000830187611f3f565b61273b6020830186611f3f565b6127486040830185611fd5565b818103606083015261275a81846126e0565b905095945050505050565b60008151905061277481611d60565b92915050565b6000602082840312156127905761278f611d2a565b5b600061279e84828501612765565b9150509291505056fea264697066735822122079b5c5017346c997e405191510ae676bfad838efccda612a60d8fd87ebf0aa3064736f6c634300080e0033697066733a2f2f516d596f634234455a7054717436594c4c65646d5a664c753737396557697956583965574a3845336447684372542f

Deployed Bytecode

0x6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461041c578063c87b56dd14610445578063ca0dcf1614610482578063dbe2193f146104ad578063e985e9c5146104d6578063f2fde38b1461051357610140565b806370a082311461032d578063715018a61461036a5780638da5cb5b1461038157806395d89b41146103ac578063a0712d68146103d7578063a22cb465146103f357610140565b806323b872dd1161010857806323b872dd1461023e5780633ccfd60b1461026757806342842e0e14610271578063471a42941461029a5780636352211e146102c55780636c0360eb1461030257610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611d8c565b61053c565b6040516101799190611dd4565b60405180910390f35b34801561018e57600080fd5b506101976105ce565b6040516101a49190611e88565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611ee0565b610660565b6040516101e19190611f4e565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190611f95565b6106dc565b005b34801561021f57600080fd5b50610228610882565b6040516102359190611fe4565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190611fff565b610899565b005b61026f6108a9565b005b34801561027d57600080fd5b5061029860048036038101906102939190611fff565b610975565b005b3480156102a657600080fd5b506102af610995565b6040516102bc9190611dd4565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190611ee0565b6109a8565b6040516102f99190611f4e565b60405180910390f35b34801561030e57600080fd5b506103176109ba565b6040516103249190611e88565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190612052565b610a48565b6040516103619190611fe4565b60405180910390f35b34801561037657600080fd5b5061037f610b00565b005b34801561038d57600080fd5b50610396610b88565b6040516103a39190611f4e565b60405180910390f35b3480156103b857600080fd5b506103c1610bb2565b6040516103ce9190611e88565b60405180910390f35b6103f160048036038101906103ec9190611ee0565b610c44565b005b3480156103ff57600080fd5b5061041a600480360381019061041591906120ab565b610d50565b005b34801561042857600080fd5b50610443600480360381019061043e9190612220565b610ec7565b005b34801561045157600080fd5b5061046c60048036038101906104679190611ee0565b610f3a565b6040516104799190611e88565b60405180910390f35b34801561048e57600080fd5b50610497610fd8565b6040516104a49190611fe4565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190611ee0565b610fde565b005b3480156104e257600080fd5b506104fd60048036038101906104f891906122a3565b611064565b60405161050a9190611dd4565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190612052565b6110f8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105c75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105dd90612312565b80601f016020809104026020016040519081016040528092919081815260200182805461060990612312565b80156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b5050505050905090565b600061066b826111ef565b6106a1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106e78261124e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361074e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076d61131a565b73ffffffffffffffffffffffffffffffffffffffff16146107d0576107998161079461131a565b611064565b6107cf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061088c611322565b6001546000540303905090565b6108a4838383611327565b505050565b6108b16116ce565b73ffffffffffffffffffffffffffffffffffffffff166108cf610b88565b73ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c9061238f565b60405180910390fd5b61092d610b88565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610972573d6000803e3d6000fd5b50565b61099083838360405180602001604052806000815250610ec7565b505050565b600c60009054906101000a900460ff1681565b60006109b38261124e565b9050919050565b600d80546109c790612312565b80601f01602080910402602001604051908101604052809291908181526020018280546109f390612312565b8015610a405780601f10610a1557610100808354040283529160200191610a40565b820191906000526020600020905b815481529060010190602001808311610a2357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aaf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b086116ce565b73ffffffffffffffffffffffffffffffffffffffff16610b26610b88565b73ffffffffffffffffffffffffffffffffffffffff1614610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b739061238f565b60405180910390fd5b610b8660006116d6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bc190612312565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed90612312565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b600954610c503361179c565b82610c5b91906123de565b1115610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390612480565b60405180910390fd5b600a5481610ca8610882565b610cb291906123de565b1115610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea906124ec565b60405180910390fd5b80600b54610d01919061250c565b341015610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906125b2565b60405180910390fd5b610d4d33826117f3565b50565b610d5861131a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610dc961131a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e7661131a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ebb9190611dd4565b60405180910390a35050565b610ed2848484611327565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f3457610efd84848484611811565b610f33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f45826111ef565b610f7b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f85611961565b90506000815103610fa55760405180602001604052806000815250610fd0565b80610faf846119f3565b604051602001610fc092919061260e565b6040516020818303038152906040525b915050919050565b600b5481565b610fe66116ce565b73ffffffffffffffffffffffffffffffffffffffff16611004610b88565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061238f565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111006116ce565b73ffffffffffffffffffffffffffffffffffffffff1661111e610b88565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b9061238f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da906126a4565b60405180910390fd5b6111ec816116d6565b50565b6000816111fa611322565b11158015611209575060005482105b8015611247575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061125d611322565b116112e3576000548110156112e25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036112e0575b600081036112d65760046000836001900393508381526020019081526020016000205490506112ac565b8092505050611315565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006113328261124e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611399576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113ba61131a565b73ffffffffffffffffffffffffffffffffffffffff1614806113e957506113e8856113e361131a565b611064565b5b8061142e57506113f761131a565b73ffffffffffffffffffffffffffffffffffffffff1661141684610660565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611467576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114da8585856001611a4d565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6115d786611a53565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361165f576000600184019050600060046000838152602001908152602001600020540361165d57600054811461165c578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116c78585856001611a5d565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61180d828260405180602001604052806000815250611a63565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261183761131a565b8786866040518563ffffffff1660e01b81526004016118599493929190612719565b6020604051808303816000875af192505050801561189557506040513d601f19601f82011682018060405250810190611892919061277a565b60015b61190e573d80600081146118c5576040519150601f19603f3d011682016040523d82523d6000602084013e6118ca565b606091505b506000815103611906576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461197090612312565b80601f016020809104026020016040519081016040528092919081815260200182805461199c90612312565b80156119e95780601f106119be576101008083540402835291602001916119e9565b820191906000526020600020905b8154815290600101906020018083116119cc57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a3957600183039250600a81066030018353600a81049050611a19565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611acf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611b09576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b166000858386611a4d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611b7b60018514611d16565b901b60a042901b611b8b86611a53565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611c8f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c3f6000878480600101955087611811565b611c75576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611bd0578260005414611c8a57600080fd5b611cfa565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611c90575b816000819055505050611d106000858386611a5d565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d6981611d34565b8114611d7457600080fd5b50565b600081359050611d8681611d60565b92915050565b600060208284031215611da257611da1611d2a565b5b6000611db084828501611d77565b91505092915050565b60008115159050919050565b611dce81611db9565b82525050565b6000602082019050611de96000830184611dc5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e29578082015181840152602081019050611e0e565b83811115611e38576000848401525b50505050565b6000601f19601f8301169050919050565b6000611e5a82611def565b611e648185611dfa565b9350611e74818560208601611e0b565b611e7d81611e3e565b840191505092915050565b60006020820190508181036000830152611ea28184611e4f565b905092915050565b6000819050919050565b611ebd81611eaa565b8114611ec857600080fd5b50565b600081359050611eda81611eb4565b92915050565b600060208284031215611ef657611ef5611d2a565b5b6000611f0484828501611ecb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f3882611f0d565b9050919050565b611f4881611f2d565b82525050565b6000602082019050611f636000830184611f3f565b92915050565b611f7281611f2d565b8114611f7d57600080fd5b50565b600081359050611f8f81611f69565b92915050565b60008060408385031215611fac57611fab611d2a565b5b6000611fba85828601611f80565b9250506020611fcb85828601611ecb565b9150509250929050565b611fde81611eaa565b82525050565b6000602082019050611ff96000830184611fd5565b92915050565b60008060006060848603121561201857612017611d2a565b5b600061202686828701611f80565b935050602061203786828701611f80565b925050604061204886828701611ecb565b9150509250925092565b60006020828403121561206857612067611d2a565b5b600061207684828501611f80565b91505092915050565b61208881611db9565b811461209357600080fd5b50565b6000813590506120a58161207f565b92915050565b600080604083850312156120c2576120c1611d2a565b5b60006120d085828601611f80565b92505060206120e185828601612096565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61212d82611e3e565b810181811067ffffffffffffffff8211171561214c5761214b6120f5565b5b80604052505050565b600061215f611d20565b905061216b8282612124565b919050565b600067ffffffffffffffff82111561218b5761218a6120f5565b5b61219482611e3e565b9050602081019050919050565b82818337600083830152505050565b60006121c36121be84612170565b612155565b9050828152602081018484840111156121df576121de6120f0565b5b6121ea8482856121a1565b509392505050565b600082601f830112612207576122066120eb565b5b81356122178482602086016121b0565b91505092915050565b6000806000806080858703121561223a57612239611d2a565b5b600061224887828801611f80565b945050602061225987828801611f80565b935050604061226a87828801611ecb565b925050606085013567ffffffffffffffff81111561228b5761228a611d2f565b5b612297878288016121f2565b91505092959194509250565b600080604083850312156122ba576122b9611d2a565b5b60006122c885828601611f80565b92505060206122d985828601611f80565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061232a57607f821691505b60208210810361233d5761233c6122e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612379602083611dfa565b915061238482612343565b602082019050919050565b600060208201905081810360008301526123a88161236c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123e982611eaa565b91506123f483611eaa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612429576124286123af565b5b828201905092915050565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b600061246a601283611dfa565b915061247582612434565b602082019050919050565b600060208201905081810360008301526124998161245d565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006124d6601683611dfa565b91506124e1826124a0565b602082019050919050565b60006020820190508181036000830152612505816124c9565b9050919050565b600061251782611eaa565b915061252283611eaa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561255b5761255a6123af565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b600061259c601583611dfa565b91506125a782612566565b602082019050919050565b600060208201905081810360008301526125cb8161258f565b9050919050565b600081905092915050565b60006125e882611def565b6125f281856125d2565b9350612602818560208601611e0b565b80840191505092915050565b600061261a82856125dd565b915061262682846125dd565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061268e602683611dfa565b915061269982612632565b604082019050919050565b600060208201905081810360008301526126bd81612681565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006126eb826126c4565b6126f581856126cf565b9350612705818560208601611e0b565b61270e81611e3e565b840191505092915050565b600060808201905061272e6000830187611f3f565b61273b6020830186611f3f565b6127486040830185611fd5565b818103606083015261275a81846126e0565b905095945050505050565b60008151905061277481611d60565b92915050565b6000602082840312156127905761278f611d2a565b5b600061279e84828501612765565b9150509291505056fea264697066735822122079b5c5017346c997e405191510ae676bfad838efccda612a60d8fd87ebf0aa3064736f6c634300080e0033

Deployed Bytecode Sourcemap

41839:1119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23577:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23037:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15550:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24463:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42621:114;;;:::i;:::-;;24704:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41992:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21298:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42032:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17175:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21678:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42182:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23853:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24960:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21853:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41949:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42851:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24232:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16496:615;16581:4;16896:10;16881:25;;:11;:25;;;;:102;;;;16973:10;16958:25;;:11;:25;;;;16881:102;:179;;;;17050:10;17035:25;;:11;:25;;;;16881:179;16861:199;;16496:615;;;:::o;21509:100::-;21563:13;21596:5;21589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21509:100;:::o;23577:204::-;23645:7;23670:16;23678:7;23670;:16::i;:::-;23665:64;;23695:34;;;;;;;;;;;;;;23665:64;23749:15;:24;23765:7;23749:24;;;;;;;;;;;;;;;;;;;;;23742:31;;23577:204;;;:::o;23037:474::-;23110:13;23142:27;23161:7;23142:18;:27::i;:::-;23110:61;;23192:5;23186:11;;:2;:11;;;23182:48;;23206:24;;;;;;;;;;;;;;23182:48;23270:5;23247:28;;:19;:17;:19::i;:::-;:28;;;23243:175;;23295:44;23312:5;23319:19;:17;:19::i;:::-;23295:16;:44::i;:::-;23290:128;;23367:35;;;;;;;;;;;;;;23290:128;23243:175;23457:2;23430:15;:24;23446:7;23430:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23495:7;23491:2;23475:28;;23484:5;23475:28;;;;;;;;;;;;23099:412;23037:474;;:::o;15550:315::-;15603:7;15831:15;:13;:15::i;:::-;15816:12;;15800:13;;:28;:46;15793:53;;15550:315;:::o;24463:170::-;24597:28;24607:4;24613:2;24617:7;24597:9;:28::i;:::-;24463:170;;;:::o;42621:114::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42687:7:::1;:5;:7::i;:::-;42679:25;;:48;42705:21;42679:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42621:114::o:0;24704:185::-;24842:39;24859:4;24865:2;24869:7;24842:39;;;;;;;;;;;;:16;:39::i;:::-;24704:185;;;:::o;41992:31::-;;;;;;;;;;;;;:::o;21298:144::-;21362:7;21405:27;21424:7;21405:18;:27::i;:::-;21382:52;;21298:144;;;:::o;42032:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17175:224::-;17239:7;17280:1;17263:19;;:5;:19;;;17259:60;;17291:28;;;;;;;;;;;;;;17259:60;12514:13;17337:18;:25;17356:5;17337:25;;;;;;;;;;;;;;;;:54;17330:61;;17175:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;21678:104::-;21734:13;21767:7;21760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21678:104;:::o;42182:433::-;42370:9;;42341:25;42355:10;42341:13;:25::i;:::-;42330:8;:36;;;;:::i;:::-;:49;;42322:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;42449:10;;42437:8;42421:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;42413:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42530:8;42519;;:19;;;;:::i;:::-;42505:9;:34;;42497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42576:31;42586:10;42598:8;42576:9;:31::i;:::-;42182:433;:::o;23853:308::-;23964:19;:17;:19::i;:::-;23952:31;;:8;:31;;;23948:61;;23992:17;;;;;;;;;;;;;;23948:61;24074:8;24022:18;:39;24041:19;:17;:19::i;:::-;24022:39;;;;;;;;;;;;;;;:49;24062:8;24022:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24134:8;24098:55;;24113:19;:17;:19::i;:::-;24098:55;;;24144:8;24098:55;;;;;;:::i;:::-;;;;;;;;23853:308;;:::o;24960:396::-;25127:28;25137:4;25143:2;25147:7;25127:9;:28::i;:::-;25188:1;25170:2;:14;;;:19;25166:183;;25209:56;25240:4;25246:2;25250:7;25259:5;25209:30;:56::i;:::-;25204:145;;25293:40;;;;;;;;;;;;;;25204:145;25166:183;24960:396;;;;:::o;21853:318::-;21926:13;21957:16;21965:7;21957;:16::i;:::-;21952:59;;21982:29;;;;;;;;;;;;;;21952:59;22024:21;22048:10;:8;:10::i;:::-;22024:34;;22101:1;22082:7;22076:21;:26;:87;;;;;;;;;;;;;;;;;22129:7;22138:18;22148:7;22138:9;:18::i;:::-;22112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22076:87;22069:94;;;21853:318;;;:::o;41949:36::-;;;;:::o;42851:96::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42930:9:::1;42919:8;:20;;;;42851:96:::0;:::o;24232:164::-;24329:4;24353:18;:25;24372:5;24353:25;;;;;;;;;;;;;;;:35;24379:8;24353:35;;;;;;;;;;;;;;;;;;;;;;;;;24346:42;;24232:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;::::0;2945:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;25611:273::-;25668:4;25724:7;25705:15;:13;:15::i;:::-;:26;;:66;;;;;25758:13;;25748:7;:23;25705:66;:152;;;;;25856:1;13284:8;25809:17;:26;25827:7;25809:26;;;;;;;;;;;;:43;:48;25705:152;25685:172;;25611:273;;;:::o;18813:1129::-;18880:7;18900:12;18915:7;18900:22;;18983:4;18964:15;:13;:15::i;:::-;:23;18960:915;;19017:13;;19010:4;:20;19006:869;;;19055:14;19072:17;:23;19090:4;19072:23;;;;;;;;;;;;19055:40;;19188:1;13284:8;19161:6;:23;:28;19157:699;;19680:113;19697:1;19687:6;:11;19680:113;;19740:17;:25;19758:6;;;;;;;19740:25;;;;;;;;;;;;19731:34;;19680:113;;;19826:6;19819:13;;;;;;19157:699;19032:843;19006:869;18960:915;19903:31;;;;;;;;;;;;;;18813:1129;;;;:::o;39593:105::-;39653:7;39680:10;39673:17;;39593:105;:::o;15073:92::-;15129:7;15073:92;:::o;30850:2515::-;30965:27;30995;31014:7;30995:18;:27::i;:::-;30965:57;;31080:4;31039:45;;31055:19;31039:45;;;31035:86;;31093:28;;;;;;;;;;;;;;31035:86;31134:22;31183:4;31160:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31204:43;31221:4;31227:19;:17;:19::i;:::-;31204:16;:43::i;:::-;31160:87;:147;;;;31288:19;:17;:19::i;:::-;31264:43;;:20;31276:7;31264:11;:20::i;:::-;:43;;;31160:147;31134:174;;31326:17;31321:66;;31352:35;;;;;;;;;;;;;;31321:66;31416:1;31402:16;;:2;:16;;;31398:52;;31427:23;;;;;;;;;;;;;;31398:52;31463:43;31485:4;31491:2;31495:7;31504:1;31463:21;:43::i;:::-;31579:15;:24;31595:7;31579:24;;;;;;;;;;;;31572:31;;;;;;;;;;;31971:18;:24;31990:4;31971:24;;;;;;;;;;;;;;;;31969:26;;;;;;;;;;;;32040:18;:22;32059:2;32040:22;;;;;;;;;;;;;;;;32038:24;;;;;;;;;;;13566:8;13168:3;32421:15;:41;;32379:21;32397:2;32379:17;:21::i;:::-;:84;:128;32333:17;:26;32351:7;32333:26;;;;;;;;;;;:174;;;;32677:1;13566:8;32627:19;:46;:51;32623:626;;32699:19;32731:1;32721:7;:11;32699:33;;32888:1;32854:17;:30;32872:11;32854:30;;;;;;;;;;;;:35;32850:384;;32992:13;;32977:11;:28;32973:242;;33172:19;33139:17;:30;33157:11;33139:30;;;;;;;;;;;:52;;;;32973:242;32850:384;32680:569;32623:626;33296:7;33292:2;33277:27;;33286:4;33277:27;;;;;;;;;;;;33315:42;33336:4;33342:2;33346:7;33355:1;33315:20;:42::i;:::-;30954:2411;;30850:2515;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;17481:176::-;17542:7;12514:13;12651:2;17570:18;:25;17589:5;17570:25;;;;;;;;;;;;;;;;:49;;17569:80;17562:87;;17481:176;;;:::o;25968:104::-;26037:27;26047:2;26051:8;26037:27;;;;;;;;;;;;:9;:27::i;:::-;25968:104;;:::o;37062:716::-;37225:4;37271:2;37246:45;;;37292:19;:17;:19::i;:::-;37313:4;37319:7;37328:5;37246:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37242:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37546:1;37529:6;:13;:18;37525:235;;37575:40;;;;;;;;;;;;;;37525:235;37718:6;37712:13;37703:6;37699:2;37695:15;37688:38;37242:529;37415:54;;;37405:64;;;:6;:64;;;;37398:71;;;37062:716;;;;;;:::o;42743:100::-;42795:13;42828:7;42821:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42743:100;:::o;39804:1959::-;39861:17;40282:3;40275:4;40269:11;40265:21;40258:28;;40373:3;40367:4;40360:17;40479:3;40936:5;41066:1;41061:3;41057:11;41050:18;;41203:2;41197:4;41193:13;41189:2;41185:22;41180:3;41172:36;41244:2;41238:4;41234:13;41226:21;;40827:682;41263:4;40827:682;;;41438:1;41433:3;41429:11;41422:18;;41489:2;41483:4;41479:13;41475:2;41471:22;41466:3;41458:36;41359:2;41353:4;41349:13;41341:21;;40827:682;;;40831:431;41560:3;41555;41551:13;41675:2;41670:3;41666:12;41659:19;;41738:6;41733:3;41726:19;39900:1856;;39804:1959;;;:::o;38426:159::-;;;;;:::o;22598:148::-;22662:14;22723:5;22713:15;;22598:148;;;:::o;39244:158::-;;;;;:::o;26445:2236::-;26568:20;26591:13;;26568:36;;26633:1;26619:16;;:2;:16;;;26615:48;;26644:19;;;;;;;;;;;;;;26615:48;26690:1;26678:8;:13;26674:44;;26700:18;;;;;;;;;;;;;;26674:44;26731:61;26761:1;26765:2;26769:12;26783:8;26731:21;:61::i;:::-;27335:1;12651:2;27306:1;:25;;27305:31;27293:8;:44;27267:18;:22;27286:2;27267:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13431:3;27736:29;27763:1;27751:8;:13;27736:14;:29::i;:::-;:56;;13168:3;27673:15;:41;;27631:21;27649:2;27631:17;:21::i;:::-;:84;:162;27580:17;:31;27598:12;27580:31;;;;;;;;;;;:213;;;;27810:20;27833:12;27810:35;;27860:11;27889:8;27874:12;:23;27860:37;;27936:1;27918:2;:14;;;:19;27914:635;;27958:313;28014:12;28010:2;27989:38;;28006:1;27989:38;;;;;;;;;;;;28055:69;28094:1;28098:2;28102:14;;;;;;28118:5;28055:30;:69::i;:::-;28050:174;;28160:40;;;;;;;;;;;;;;28050:174;28266:3;28251:12;:18;27958:313;;28352:12;28335:13;;:29;28331:43;;28366:8;;;28331:43;27914:635;;;28415:119;28471:14;;;;;;28467:2;28446:40;;28463:1;28446:40;;;;;;;;;;;;28529:3;28514:12;:18;28415:119;;27914:635;28579:12;28563:13;:28;;;;27044:1559;;28613:60;28642:1;28646:2;28650:12;28664:8;28613:20;:60::i;:::-;26557:2124;26445:2236;;;:::o;22833:142::-;22891:14;22952:5;22942:15;;22833:142;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:182::-;11166:34;11162:1;11154:6;11150:14;11143:58;11026:182;:::o;11214:366::-;11356:3;11377:67;11441:2;11436:3;11377:67;:::i;:::-;11370:74;;11453:93;11542:3;11453:93;:::i;:::-;11571:2;11566:3;11562:12;11555:19;;11214:366;;;:::o;11586:419::-;11752:4;11790:2;11779:9;11775:18;11767:26;;11839:9;11833:4;11829:20;11825:1;11814:9;11810:17;11803:47;11867:131;11993:4;11867:131;:::i;:::-;11859:139;;11586:419;;;:::o;12011:180::-;12059:77;12056:1;12049:88;12156:4;12153:1;12146:15;12180:4;12177:1;12170:15;12197:305;12237:3;12256:20;12274:1;12256:20;:::i;:::-;12251:25;;12290:20;12308:1;12290:20;:::i;:::-;12285:25;;12444:1;12376:66;12372:74;12369:1;12366:81;12363:107;;;12450:18;;:::i;:::-;12363:107;12494:1;12491;12487:9;12480:16;;12197:305;;;;:::o;12508:168::-;12648:20;12644:1;12636:6;12632:14;12625:44;12508:168;:::o;12682:366::-;12824:3;12845:67;12909:2;12904:3;12845:67;:::i;:::-;12838:74;;12921:93;13010:3;12921:93;:::i;:::-;13039:2;13034:3;13030:12;13023:19;;12682:366;;;:::o;13054:419::-;13220:4;13258:2;13247:9;13243:18;13235:26;;13307:9;13301:4;13297:20;13293:1;13282:9;13278:17;13271:47;13335:131;13461:4;13335:131;:::i;:::-;13327:139;;13054:419;;;:::o;13479:172::-;13619:24;13615:1;13607:6;13603:14;13596:48;13479:172;:::o;13657:366::-;13799:3;13820:67;13884:2;13879:3;13820:67;:::i;:::-;13813:74;;13896:93;13985:3;13896:93;:::i;:::-;14014:2;14009:3;14005:12;13998:19;;13657:366;;;:::o;14029:419::-;14195:4;14233:2;14222:9;14218:18;14210:26;;14282:9;14276:4;14272:20;14268:1;14257:9;14253:17;14246:47;14310:131;14436:4;14310:131;:::i;:::-;14302:139;;14029:419;;;:::o;14454:348::-;14494:7;14517:20;14535:1;14517:20;:::i;:::-;14512:25;;14551:20;14569:1;14551:20;:::i;:::-;14546:25;;14739:1;14671:66;14667:74;14664:1;14661:81;14656:1;14649:9;14642:17;14638:105;14635:131;;;14746:18;;:::i;:::-;14635:131;14794:1;14791;14787:9;14776:20;;14454:348;;;;:::o;14808:171::-;14948:23;14944:1;14936:6;14932:14;14925:47;14808:171;:::o;14985:366::-;15127:3;15148:67;15212:2;15207:3;15148:67;:::i;:::-;15141:74;;15224:93;15313:3;15224:93;:::i;:::-;15342:2;15337:3;15333:12;15326:19;;14985:366;;;:::o;15357:419::-;15523:4;15561:2;15550:9;15546:18;15538:26;;15610:9;15604:4;15600:20;15596:1;15585:9;15581:17;15574:47;15638:131;15764:4;15638:131;:::i;:::-;15630:139;;15357:419;;;:::o;15782:148::-;15884:11;15921:3;15906:18;;15782:148;;;;:::o;15936:377::-;16042:3;16070:39;16103:5;16070:39;:::i;:::-;16125:89;16207:6;16202:3;16125:89;:::i;:::-;16118:96;;16223:52;16268:6;16263:3;16256:4;16249:5;16245:16;16223:52;:::i;:::-;16300:6;16295:3;16291:16;16284:23;;16046:267;15936:377;;;;:::o;16319:435::-;16499:3;16521:95;16612:3;16603:6;16521:95;:::i;:::-;16514:102;;16633:95;16724:3;16715:6;16633:95;:::i;:::-;16626:102;;16745:3;16738:10;;16319:435;;;;;:::o;16760:225::-;16900:34;16896:1;16888:6;16884:14;16877:58;16969:8;16964:2;16956:6;16952:15;16945:33;16760:225;:::o;16991:366::-;17133:3;17154:67;17218:2;17213:3;17154:67;:::i;:::-;17147:74;;17230:93;17319:3;17230:93;:::i;:::-;17348:2;17343:3;17339:12;17332:19;;16991:366;;;:::o;17363:419::-;17529:4;17567:2;17556:9;17552:18;17544:26;;17616:9;17610:4;17606:20;17602:1;17591:9;17587:17;17580:47;17644:131;17770:4;17644:131;:::i;:::-;17636:139;;17363:419;;;:::o;17788:98::-;17839:6;17873:5;17867:12;17857:22;;17788:98;;;:::o;17892:168::-;17975:11;18009:6;18004:3;17997:19;18049:4;18044:3;18040:14;18025:29;;17892:168;;;;:::o;18066:360::-;18152:3;18180:38;18212:5;18180:38;:::i;:::-;18234:70;18297:6;18292:3;18234:70;:::i;:::-;18227:77;;18313:52;18358:6;18353:3;18346:4;18339:5;18335:16;18313:52;:::i;:::-;18390:29;18412:6;18390:29;:::i;:::-;18385:3;18381:39;18374:46;;18156:270;18066:360;;;;:::o;18432:640::-;18627:4;18665:3;18654:9;18650:19;18642:27;;18679:71;18747:1;18736:9;18732:17;18723:6;18679:71;:::i;:::-;18760:72;18828:2;18817:9;18813:18;18804:6;18760:72;:::i;:::-;18842;18910:2;18899:9;18895:18;18886:6;18842:72;:::i;:::-;18961:9;18955:4;18951:20;18946:2;18935:9;18931:18;18924:48;18989:76;19060:4;19051:6;18989:76;:::i;:::-;18981:84;;18432:640;;;;;;;:::o;19078:141::-;19134:5;19165:6;19159:13;19150:22;;19181:32;19207:5;19181:32;:::i;:::-;19078:141;;;;:::o;19225:349::-;19294:6;19343:2;19331:9;19322:7;19318:23;19314:32;19311:119;;;19349:79;;:::i;:::-;19311:119;19469:1;19494:63;19549:7;19540:6;19529:9;19525:22;19494:63;:::i;:::-;19484:73;;19440:127;19225:349;;;;:::o

Swarm Source

ipfs://79b5c5017346c997e405191510ae676bfad838efccda612a60d8fd87ebf0aa30
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.