ETH Price: $2,401.40 (-1.69%)

Token

The Saudi Workers (TSW)
 

Overview

Max Total Supply

81 TSW

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TSW
0xDf85cCbd0FfBdB22132559282Cab59972877d7E3
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:
TheSaudiWorkers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-14
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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);
}

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


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

pragma solidity ^0.8.0;


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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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.isContract() && !_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 &&
            !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (safe && to.isContract()) {
                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 Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert 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 {}
}






pragma solidity >=0.7.0 <0.9.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);
    }
}

contract TheSaudiWorkers is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public cost = 0 ether;
    uint256 public maxSupply = 3333;
    uint256 public maxFree = 3333;
    uint256 public maxMintAmountPublic = 1;
    uint256 public nftPerAddressLimitWL = 1;

    bool public revealed = true;
    mapping(address => uint256) public addressMintedBalance;

    uint256 public currentState = 0;

    constructor() ERC721A("The Saudi Workers", "TSW") {
        mint(3);
    }

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

    function mint(uint256 _mintAmount)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            require(currentState > 0, "the contract is paused");
            uint256 minterMintedCount = addressMintedBalance[msg.sender];
            require(
                _mintAmount <= maxMintAmountPublic,
                "max mint amount per session exceeded"
            );
            require(
                minterMintedCount + _mintAmount <= nftPerAddressLimitWL,
                "max NFT per address exceeded"
            );
            if (currentState == 1) {
                require(
                    supply + _mintAmount <= maxFree,
                    "max free reached"
                );
            } else if (currentState == 2) {
                require(
                    msg.value >= cost * _mintAmount,
                    "insufficient funds"
                );
            } 
        }

        _safeMint(msg.sender, _mintAmount);
        addressMintedBalance[msg.sender] += _mintAmount;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

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

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNftPerAddressLimitWL(uint256 _limit) public onlyOwner {
        nftPerAddressLimitWL = _limit;
    }

    function setmaxMintAmountPublic(uint256 _newmaxMintAmount)
        public
        onlyOwner
    {
        maxMintAmountPublic = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause() public onlyOwner {
        currentState = 0;
    }

    function setFreeMintStage() public onlyOwner {
        currentState = 1;
    }

    function setPublicPaidMintStage() public onlyOwner {
        currentState = 2;
    }

    function setPublicCost(uint256 _price) public onlyOwner {
        cost = _price;
    }

    function withdraw() public payable onlyOwner {
        // This will payout the owner the contract balance.
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }
}

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"},{"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFreeMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicPaidMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPublic","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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000bd7565b506000600c55610d05600d55610d05600e556001600f5560016010556001601160006101000a81548160ff02191690831515021790555060006013553480156200009a57600080fd5b506040518060400160405280601181526020017f54686520536175646920576f726b6572730000000000000000000000000000008152506040518060400160405280600381526020017f545357000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011f92919062000bd7565b5080600390805190602001906200013892919062000bd7565b50620001496200018960201b60201c565b600081905550505062000171620001656200018e60201b60201c565b6200019660201b60201c565b6200018360036200025c60201b60201c565b6200131a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200026e620005b160201b60201c565b905060008211620002b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ad9062000f64565b60405180910390fd5b600d548282620002c7919062000fb3565b11156200030b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003029062000eba565b60405180910390fd5b6200031b620005d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620005435760006013541162000396576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038d9062000efe565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f5483111562000422576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004199062000edc565b60405180910390fd5b601054838262000433919062000fb3565b111562000477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046e9062000e98565b60405180910390fd5b60016013541415620004de57600e54838362000494919062000fb3565b1115620004d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cf9062000f42565b60405180910390fd5b62000541565b60026013541415620005405782600c54620004fa919062001010565b3410156200053f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005369062000f20565b60405180910390fd5b5b5b505b620005553383620005fa60201b60201c565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005a6919062000fb3565b925050819055505050565b6000620005c36200018960201b60201c565b6001546000540303905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200061c8282604051806020016040528060008152506200062060201b60201c565b5050565b6200063583838360016200063a60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620006a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415620006e4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620006f9600086838762000a3660201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620008d15750620008d08773ffffffffffffffffffffffffffffffffffffffff1662000a3c60201b62001e9d1760201c565b5b15620009a4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200094f600088848060010195508862000a5f60201b60201c565b62000986576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620008d85782600054146200099e57600080fd5b62000a11565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620009a5575b81600081905550505062000a2f600086838762000bd160201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a8d6200018e60201b60201c565b8786866040518563ffffffff1660e01b815260040162000ab1949392919062000e44565b602060405180830381600087803b15801562000acc57600080fd5b505af192505050801562000b0057506040513d601f19601f8201168201806040525081019062000afd919062000c9e565b60015b62000b7e573d806000811462000b33576040519150601f19603f3d011682016040523d82523d6000602084013e62000b38565b606091505b5060008151141562000b76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000be59062001111565b90600052602060002090601f01602090048101928262000c09576000855562000c55565b82601f1062000c2457805160ff191683800117855562000c55565b8280016001018555821562000c55579182015b8281111562000c5457825182559160200191906001019062000c37565b5b50905062000c64919062000c68565b5090565b5b8082111562000c8357600081600090555060010162000c69565b5090565b60008151905062000c988162001300565b92915050565b60006020828403121562000cb75762000cb6620011a5565b5b600062000cc78482850162000c87565b91505092915050565b62000cdb8162001071565b82525050565b600062000cee8262000f86565b62000cfa818562000f91565b935062000d0c818560208601620010db565b62000d1781620011aa565b840191505092915050565b600062000d31601c8362000fa2565b915062000d3e82620011bb565b602082019050919050565b600062000d5860168362000fa2565b915062000d6582620011e4565b602082019050919050565b600062000d7f60248362000fa2565b915062000d8c826200120d565b604082019050919050565b600062000da660168362000fa2565b915062000db3826200125c565b602082019050919050565b600062000dcd60128362000fa2565b915062000dda8262001285565b602082019050919050565b600062000df460108362000fa2565b915062000e0182620012ae565b602082019050919050565b600062000e1b601b8362000fa2565b915062000e2882620012d7565b602082019050919050565b62000e3e81620010d1565b82525050565b600060808201905062000e5b600083018762000cd0565b62000e6a602083018662000cd0565b62000e79604083018562000e33565b818103606083015262000e8d818462000ce1565b905095945050505050565b6000602082019050818103600083015262000eb38162000d22565b9050919050565b6000602082019050818103600083015262000ed58162000d49565b9050919050565b6000602082019050818103600083015262000ef78162000d70565b9050919050565b6000602082019050818103600083015262000f198162000d97565b9050919050565b6000602082019050818103600083015262000f3b8162000dbe565b9050919050565b6000602082019050818103600083015262000f5d8162000de5565b9050919050565b6000602082019050818103600083015262000f7f8162000e0c565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000fc082620010d1565b915062000fcd83620010d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001005576200100462001147565b5b828201905092915050565b60006200101d82620010d1565b91506200102a83620010d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001066576200106562001147565b5b828202905092915050565b60006200107e82620010b1565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010fb578082015181840152602081019050620010de565b838111156200110b576000848401525b50505050565b600060028204905060018216806200112a57607f821691505b6020821081141562001141576200114062001176565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6d61782066726565207265616368656400000000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6200130b8162001085565b81146200131757600080fd5b50565b6140b9806200132a6000396000f3fe60806040526004361061023b5760003560e01c8063670d8dd61161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107e7578063da3ef23f14610812578063e985e9c51461083b578063f2c4ce1e14610878578063f2fde38b146108a15761023b565b8063a22cb46514610716578063a475b5dd1461073f578063b88d4fde14610756578063c66828621461077f578063c87b56dd146107aa5761023b565b80638456cb59116100f25780638456cb5914610662578063872d10ea146106795780638da5cb5b146106a457806395d89b41146106cf578063a0712d68146106fa5761023b565b8063670d8dd6146105a35780636c0360eb146105ba57806370a08231146105e5578063715018a614610622578063811d2437146106395761023b565b806318cae269116101bc57806342842e0e1161018057806342842e0e146104be578063485a68a3146104e7578063518302271461051257806355f804b31461053d5780636352211e146105665761023b565b806318cae269146103fc578063231878d11461043957806323b872dd146104625780633c59b86a1461048b5780633ccfd60b146104b45761023b565b8063095ea7b311610203578063095ea7b3146103275780630c3f6acf1461035057806313faede61461037b57806317f7bece146103a657806318160ddd146103d15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063081c8c44146102e5578063083ca7b114610310575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613391565b6108ca565b60405161027491906137de565b60405180910390f35b34801561028957600080fd5b506102926109ac565b60405161029f91906137f9565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613434565b610a3e565b6040516102dc9190613777565b60405180910390f35b3480156102f157600080fd5b506102fa610aba565b60405161030791906137f9565b60405180910390f35b34801561031c57600080fd5b50610325610b48565b005b34801561033357600080fd5b5061034e60048036038101906103499190613351565b610bce565b005b34801561035c57600080fd5b50610365610cd9565b604051610372919061395b565b60405180910390f35b34801561038757600080fd5b50610390610cdf565b60405161039d919061395b565b60405180910390f35b3480156103b257600080fd5b506103bb610ce5565b6040516103c8919061395b565b60405180910390f35b3480156103dd57600080fd5b506103e6610ceb565b6040516103f3919061395b565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e91906131ce565b610d02565b604051610430919061395b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613434565b610d1a565b005b34801561046e57600080fd5b506104896004803603810190610484919061323b565b610da0565b005b34801561049757600080fd5b506104b260048036038101906104ad9190613434565b610db0565b005b6104bc610e36565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061323b565b610f32565b005b3480156104f357600080fd5b506104fc610f52565b604051610509919061395b565b60405180910390f35b34801561051e57600080fd5b50610527610f58565b60405161053491906137de565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f91906133eb565b610f6b565b005b34801561057257600080fd5b5061058d60048036038101906105889190613434565b611001565b60405161059a9190613777565b60405180910390f35b3480156105af57600080fd5b506105b8611017565b005b3480156105c657600080fd5b506105cf61109d565b6040516105dc91906137f9565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906131ce565b61112b565b604051610619919061395b565b60405180910390f35b34801561062e57600080fd5b506106376111fb565b005b34801561064557600080fd5b50610660600480360381019061065b9190613434565b611283565b005b34801561066e57600080fd5b50610677611309565b005b34801561068557600080fd5b5061068e61138f565b60405161069b919061395b565b60405180910390f35b3480156106b057600080fd5b506106b9611395565b6040516106c69190613777565b60405180910390f35b3480156106db57600080fd5b506106e46113bf565b6040516106f191906137f9565b60405180910390f35b610714600480360381019061070f9190613434565b611451565b005b34801561072257600080fd5b5061073d60048036038101906107389190613311565b61176b565b005b34801561074b57600080fd5b506107546118e3565b005b34801561076257600080fd5b5061077d6004803603810190610778919061328e565b61197c565b005b34801561078b57600080fd5b506107946119f8565b6040516107a191906137f9565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613434565b611a86565b6040516107de91906137f9565b60405180910390f35b3480156107f357600080fd5b506107fc611bdf565b604051610809919061395b565b60405180910390f35b34801561081e57600080fd5b50610839600480360381019061083491906133eb565b611be5565b005b34801561084757600080fd5b50610862600480360381019061085d91906131fb565b611c7b565b60405161086f91906137de565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906133eb565b611d0f565b005b3480156108ad57600080fd5b506108c860048036038101906108c391906131ce565b611da5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a557506109a482611ec0565b5b9050919050565b6060600280546109bb90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546109e790613c2b565b8015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b5050505050905090565b6000610a4982611f2a565b610a7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610ac790613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610af390613c2b565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b505050505081565b610b50611f78565b73ffffffffffffffffffffffffffffffffffffffff16610b6e611395565b73ffffffffffffffffffffffffffffffffffffffff1614610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb9061389b565b60405180910390fd5b6002601381905550565b6000610bd982611001565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c41576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c60611f78565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c925750610c9081610c8b611f78565b611c7b565b155b15610cc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd4838383611f80565b505050565b60135481565b600c5481565b600f5481565b6000610cf5612032565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610d22611f78565b73ffffffffffffffffffffffffffffffffffffffff16610d40611395565b73ffffffffffffffffffffffffffffffffffffffff1614610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d9061389b565b60405180910390fd5b80600f8190555050565b610dab838383612037565b505050565b610db8611f78565b73ffffffffffffffffffffffffffffffffffffffff16610dd6611395565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061389b565b60405180910390fd5b8060108190555050565b610e3e611f78565b73ffffffffffffffffffffffffffffffffffffffff16610e5c611395565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061389b565b60405180910390fd5b6000610ebc611395565b73ffffffffffffffffffffffffffffffffffffffff1647604051610edf90613762565b60006040518083038185875af1925050503d8060008114610f1c576040519150601f19603f3d011682016040523d82523d6000602084013e610f21565b606091505b5050905080610f2f57600080fd5b50565b610f4d8383836040518060200160405280600081525061197c565b505050565b600e5481565b601160009054906101000a900460ff1681565b610f73611f78565b73ffffffffffffffffffffffffffffffffffffffff16610f91611395565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061389b565b60405180910390fd5b8060099080519060200190610ffd929190612f9f565b5050565b600061100c826124ed565b600001519050919050565b61101f611f78565b73ffffffffffffffffffffffffffffffffffffffff1661103d611395565b73ffffffffffffffffffffffffffffffffffffffff1614611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a9061389b565b60405180910390fd5b6001601381905550565b600980546110aa90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546110d690613c2b565b80156111235780601f106110f857610100808354040283529160200191611123565b820191906000526020600020905b81548152906001019060200180831161110657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611193576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611203611f78565b73ffffffffffffffffffffffffffffffffffffffff16611221611395565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061389b565b60405180910390fd5b611281600061277c565b565b61128b611f78565b73ffffffffffffffffffffffffffffffffffffffff166112a9611395565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061389b565b60405180910390fd5b80600c8190555050565b611311611f78565b73ffffffffffffffffffffffffffffffffffffffff1661132f611395565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061389b565b60405180910390fd5b6000601381905550565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113ce90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546113fa90613c2b565b80156114475780601f1061141c57610100808354040283529160200191611447565b820191906000526020600020905b81548152906001019060200180831161142a57829003601f168201915b5050505050905090565b600061145b610ceb565b9050600082116114a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114979061393b565b60405180910390fd5b600d5482826114af9190613a60565b11156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061385b565b60405180910390fd5b6114f8611395565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117075760006013541161156f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611566906138bb565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548311156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef9061387b565b60405180910390fd5b60105483826116079190613a60565b1115611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f9061383b565b60405180910390fd5b600160135414156116a857600e5483836116629190613a60565b11156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a9061391b565b60405180910390fd5b611705565b600260135414156117045782600c546116c19190613ae7565b341015611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa906138fb565b60405180910390fd5b5b5b505b6117113383612842565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117609190613a60565b925050819055505050565b611773611f78565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117e5611f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611892611f78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d791906137de565b60405180910390a35050565b6118eb611f78565b73ffffffffffffffffffffffffffffffffffffffff16611909611395565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119569061389b565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b611987848484612037565b6119a68373ffffffffffffffffffffffffffffffffffffffff16611e9d565b80156119bb57506119b984848484612860565b155b156119f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a8054611a0590613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3190613c2b565b8015611a7e5780601f10611a5357610100808354040283529160200191611a7e565b820191906000526020600020905b815481529060010190602001808311611a6157829003601f168201915b505050505081565b6060611a9182611f2a565b611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906138db565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611b7e57600b8054611af990613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2590613c2b565b8015611b725780601f10611b4757610100808354040283529160200191611b72565b820191906000526020600020905b815481529060010190602001808311611b5557829003601f168201915b50505050509050611bda565b6000611b886129c0565b90506000815111611ba85760405180602001604052806000815250611bd6565b80611bb284612a52565b600a604051602001611bc693929190613731565b6040516020818303038152906040525b9150505b919050565b600d5481565b611bed611f78565b73ffffffffffffffffffffffffffffffffffffffff16611c0b611395565b73ffffffffffffffffffffffffffffffffffffffff1614611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c589061389b565b60405180910390fd5b80600a9080519060200190611c77929190612f9f565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d17611f78565b73ffffffffffffffffffffffffffffffffffffffff16611d35611395565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d829061389b565b60405180910390fd5b80600b9080519060200190611da1929190612f9f565b5050565b611dad611f78565b73ffffffffffffffffffffffffffffffffffffffff16611dcb611395565b73ffffffffffffffffffffffffffffffffffffffff1614611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e189061389b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e889061381b565b60405180910390fd5b611e9a8161277c565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f35612032565b11158015611f44575060005482105b8015611f71575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612042826124ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120ce611f78565b73ffffffffffffffffffffffffffffffffffffffff1614806120fd57506120fc856120f7611f78565b611c7b565b5b80612142575061210b611f78565b73ffffffffffffffffffffffffffffffffffffffff1661212a84610a3e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061217b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121ef8585856001612bb3565b6121fb60008487611f80565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561247b57600054821461247a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e68585856001612bb9565b5050505050565b6124f5613025565b600082905080612503612032565b11158015612512575060005481105b15612745576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161274357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612627578092505050612777565b5b60011561274257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461273d578092505050612777565b612628565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61285c828260405180602001604052806000815250612bbf565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612886611f78565b8786866040518563ffffffff1660e01b81526004016128a89493929190613792565b602060405180830381600087803b1580156128c257600080fd5b505af19250505080156128f357506040513d601f19601f820116820180604052508101906128f091906133be565b60015b61296d573d8060008114612923576040519150601f19603f3d011682016040523d82523d6000602084013e612928565b606091505b50600081511415612965576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546129cf90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546129fb90613c2b565b8015612a485780601f10612a1d57610100808354040283529160200191612a48565b820191906000526020600020905b815481529060010190602001808311612a2b57829003601f168201915b5050505050905090565b60606000821415612a9a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bae565b600082905060005b60008214612acc578080612ab590613c8e565b915050600a82612ac59190613ab6565b9150612aa2565b60008167ffffffffffffffff811115612ae857612ae7613dc4565b5b6040519080825280601f01601f191660200182016040528015612b1a5781602001600182028036833780820191505090505b5090505b60008514612ba757600182612b339190613b41565b9150600a85612b429190613cd7565b6030612b4e9190613a60565b60f81b818381518110612b6457612b63613d95565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba09190613ab6565b9450612b1e565b8093505050505b919050565b50505050565b50505050565b612bcc8383836001612bd1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c79576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c866000868387612bb3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e505750612e4f8773ffffffffffffffffffffffffffffffffffffffff16611e9d565b5b15612f16575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec56000888480600101955088612860565b612efb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e56578260005414612f1157600080fd5b612f82565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f17575b816000819055505050612f986000868387612bb9565b5050505050565b828054612fab90613c2b565b90600052602060002090601f016020900481019282612fcd5760008555613014565b82601f10612fe657805160ff1916838001178555613014565b82800160010185558215613014579182015b82811115613013578251825591602001919060010190612ff8565b5b5090506130219190613068565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613081576000816000905550600101613069565b5090565b60006130986130938461399b565b613976565b9050828152602081018484840111156130b4576130b3613df8565b5b6130bf848285613be9565b509392505050565b60006130da6130d5846139cc565b613976565b9050828152602081018484840111156130f6576130f5613df8565b5b613101848285613be9565b509392505050565b60008135905061311881614027565b92915050565b60008135905061312d8161403e565b92915050565b60008135905061314281614055565b92915050565b60008151905061315781614055565b92915050565b600082601f83011261317257613171613df3565b5b8135613182848260208601613085565b91505092915050565b600082601f8301126131a05761319f613df3565b5b81356131b08482602086016130c7565b91505092915050565b6000813590506131c88161406c565b92915050565b6000602082840312156131e4576131e3613e02565b5b60006131f284828501613109565b91505092915050565b6000806040838503121561321257613211613e02565b5b600061322085828601613109565b925050602061323185828601613109565b9150509250929050565b60008060006060848603121561325457613253613e02565b5b600061326286828701613109565b935050602061327386828701613109565b9250506040613284868287016131b9565b9150509250925092565b600080600080608085870312156132a8576132a7613e02565b5b60006132b687828801613109565b94505060206132c787828801613109565b93505060406132d8878288016131b9565b925050606085013567ffffffffffffffff8111156132f9576132f8613dfd565b5b6133058782880161315d565b91505092959194509250565b6000806040838503121561332857613327613e02565b5b600061333685828601613109565b92505060206133478582860161311e565b9150509250929050565b6000806040838503121561336857613367613e02565b5b600061337685828601613109565b9250506020613387858286016131b9565b9150509250929050565b6000602082840312156133a7576133a6613e02565b5b60006133b584828501613133565b91505092915050565b6000602082840312156133d4576133d3613e02565b5b60006133e284828501613148565b91505092915050565b60006020828403121561340157613400613e02565b5b600082013567ffffffffffffffff81111561341f5761341e613dfd565b5b61342b8482850161318b565b91505092915050565b60006020828403121561344a57613449613e02565b5b6000613458848285016131b9565b91505092915050565b61346a81613b75565b82525050565b61347981613b87565b82525050565b600061348a82613a12565b6134948185613a28565b93506134a4818560208601613bf8565b6134ad81613e07565b840191505092915050565b60006134c382613a1d565b6134cd8185613a44565b93506134dd818560208601613bf8565b6134e681613e07565b840191505092915050565b60006134fc82613a1d565b6135068185613a55565b9350613516818560208601613bf8565b80840191505092915050565b6000815461352f81613c2b565b6135398186613a55565b94506001821660008114613554576001811461356557613598565b60ff19831686528186019350613598565b61356e856139fd565b60005b8381101561359057815481890152600182019150602081019050613571565b838801955050505b50505092915050565b60006135ae602683613a44565b91506135b982613e18565b604082019050919050565b60006135d1601c83613a44565b91506135dc82613e67565b602082019050919050565b60006135f4601683613a44565b91506135ff82613e90565b602082019050919050565b6000613617602483613a44565b915061362282613eb9565b604082019050919050565b600061363a602083613a44565b915061364582613f08565b602082019050919050565b600061365d601683613a44565b915061366882613f31565b602082019050919050565b6000613680602f83613a44565b915061368b82613f5a565b604082019050919050565b60006136a3600083613a39565b91506136ae82613fa9565b600082019050919050565b60006136c6601283613a44565b91506136d182613fac565b602082019050919050565b60006136e9601083613a44565b91506136f482613fd5565b602082019050919050565b600061370c601b83613a44565b915061371782613ffe565b602082019050919050565b61372b81613bdf565b82525050565b600061373d82866134f1565b915061374982856134f1565b91506137558284613522565b9150819050949350505050565b600061376d82613696565b9150819050919050565b600060208201905061378c6000830184613461565b92915050565b60006080820190506137a76000830187613461565b6137b46020830186613461565b6137c16040830185613722565b81810360608301526137d3818461347f565b905095945050505050565b60006020820190506137f36000830184613470565b92915050565b6000602082019050818103600083015261381381846134b8565b905092915050565b60006020820190508181036000830152613834816135a1565b9050919050565b60006020820190508181036000830152613854816135c4565b9050919050565b60006020820190508181036000830152613874816135e7565b9050919050565b600060208201905081810360008301526138948161360a565b9050919050565b600060208201905081810360008301526138b48161362d565b9050919050565b600060208201905081810360008301526138d481613650565b9050919050565b600060208201905081810360008301526138f481613673565b9050919050565b60006020820190508181036000830152613914816136b9565b9050919050565b60006020820190508181036000830152613934816136dc565b9050919050565b60006020820190508181036000830152613954816136ff565b9050919050565b60006020820190506139706000830184613722565b92915050565b6000613980613991565b905061398c8282613c5d565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b6576139b5613dc4565b5b6139bf82613e07565b9050602081019050919050565b600067ffffffffffffffff8211156139e7576139e6613dc4565b5b6139f082613e07565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6b82613bdf565b9150613a7683613bdf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aab57613aaa613d08565b5b828201905092915050565b6000613ac182613bdf565b9150613acc83613bdf565b925082613adc57613adb613d37565b5b828204905092915050565b6000613af282613bdf565b9150613afd83613bdf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b3657613b35613d08565b5b828202905092915050565b6000613b4c82613bdf565b9150613b5783613bdf565b925082821015613b6a57613b69613d08565b5b828203905092915050565b6000613b8082613bbf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c16578082015181840152602081019050613bfb565b83811115613c25576000848401525b50505050565b60006002820490506001821680613c4357607f821691505b60208210811415613c5757613c56613d66565b5b50919050565b613c6682613e07565b810181811067ffffffffffffffff82111715613c8557613c84613dc4565b5b80604052505050565b6000613c9982613bdf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ccc57613ccb613d08565b5b600182019050919050565b6000613ce282613bdf565b9150613ced83613bdf565b925082613cfd57613cfc613d37565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6d61782066726565207265616368656400000000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61403081613b75565b811461403b57600080fd5b50565b61404781613b87565b811461405257600080fd5b50565b61405e81613b93565b811461406957600080fd5b50565b61407581613bdf565b811461408057600080fd5b5056fea2646970667358221220cb6b0530723a83062cf7e320ac2e4667c00ec4fde6b3643d971f97bf1f30689f64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063670d8dd61161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107e7578063da3ef23f14610812578063e985e9c51461083b578063f2c4ce1e14610878578063f2fde38b146108a15761023b565b8063a22cb46514610716578063a475b5dd1461073f578063b88d4fde14610756578063c66828621461077f578063c87b56dd146107aa5761023b565b80638456cb59116100f25780638456cb5914610662578063872d10ea146106795780638da5cb5b146106a457806395d89b41146106cf578063a0712d68146106fa5761023b565b8063670d8dd6146105a35780636c0360eb146105ba57806370a08231146105e5578063715018a614610622578063811d2437146106395761023b565b806318cae269116101bc57806342842e0e1161018057806342842e0e146104be578063485a68a3146104e7578063518302271461051257806355f804b31461053d5780636352211e146105665761023b565b806318cae269146103fc578063231878d11461043957806323b872dd146104625780633c59b86a1461048b5780633ccfd60b146104b45761023b565b8063095ea7b311610203578063095ea7b3146103275780630c3f6acf1461035057806313faede61461037b57806317f7bece146103a657806318160ddd146103d15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063081c8c44146102e5578063083ca7b114610310575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613391565b6108ca565b60405161027491906137de565b60405180910390f35b34801561028957600080fd5b506102926109ac565b60405161029f91906137f9565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613434565b610a3e565b6040516102dc9190613777565b60405180910390f35b3480156102f157600080fd5b506102fa610aba565b60405161030791906137f9565b60405180910390f35b34801561031c57600080fd5b50610325610b48565b005b34801561033357600080fd5b5061034e60048036038101906103499190613351565b610bce565b005b34801561035c57600080fd5b50610365610cd9565b604051610372919061395b565b60405180910390f35b34801561038757600080fd5b50610390610cdf565b60405161039d919061395b565b60405180910390f35b3480156103b257600080fd5b506103bb610ce5565b6040516103c8919061395b565b60405180910390f35b3480156103dd57600080fd5b506103e6610ceb565b6040516103f3919061395b565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e91906131ce565b610d02565b604051610430919061395b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613434565b610d1a565b005b34801561046e57600080fd5b506104896004803603810190610484919061323b565b610da0565b005b34801561049757600080fd5b506104b260048036038101906104ad9190613434565b610db0565b005b6104bc610e36565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061323b565b610f32565b005b3480156104f357600080fd5b506104fc610f52565b604051610509919061395b565b60405180910390f35b34801561051e57600080fd5b50610527610f58565b60405161053491906137de565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f91906133eb565b610f6b565b005b34801561057257600080fd5b5061058d60048036038101906105889190613434565b611001565b60405161059a9190613777565b60405180910390f35b3480156105af57600080fd5b506105b8611017565b005b3480156105c657600080fd5b506105cf61109d565b6040516105dc91906137f9565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906131ce565b61112b565b604051610619919061395b565b60405180910390f35b34801561062e57600080fd5b506106376111fb565b005b34801561064557600080fd5b50610660600480360381019061065b9190613434565b611283565b005b34801561066e57600080fd5b50610677611309565b005b34801561068557600080fd5b5061068e61138f565b60405161069b919061395b565b60405180910390f35b3480156106b057600080fd5b506106b9611395565b6040516106c69190613777565b60405180910390f35b3480156106db57600080fd5b506106e46113bf565b6040516106f191906137f9565b60405180910390f35b610714600480360381019061070f9190613434565b611451565b005b34801561072257600080fd5b5061073d60048036038101906107389190613311565b61176b565b005b34801561074b57600080fd5b506107546118e3565b005b34801561076257600080fd5b5061077d6004803603810190610778919061328e565b61197c565b005b34801561078b57600080fd5b506107946119f8565b6040516107a191906137f9565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613434565b611a86565b6040516107de91906137f9565b60405180910390f35b3480156107f357600080fd5b506107fc611bdf565b604051610809919061395b565b60405180910390f35b34801561081e57600080fd5b50610839600480360381019061083491906133eb565b611be5565b005b34801561084757600080fd5b50610862600480360381019061085d91906131fb565b611c7b565b60405161086f91906137de565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906133eb565b611d0f565b005b3480156108ad57600080fd5b506108c860048036038101906108c391906131ce565b611da5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a557506109a482611ec0565b5b9050919050565b6060600280546109bb90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546109e790613c2b565b8015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b5050505050905090565b6000610a4982611f2a565b610a7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610ac790613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610af390613c2b565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b505050505081565b610b50611f78565b73ffffffffffffffffffffffffffffffffffffffff16610b6e611395565b73ffffffffffffffffffffffffffffffffffffffff1614610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb9061389b565b60405180910390fd5b6002601381905550565b6000610bd982611001565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c41576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c60611f78565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c925750610c9081610c8b611f78565b611c7b565b155b15610cc9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd4838383611f80565b505050565b60135481565b600c5481565b600f5481565b6000610cf5612032565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610d22611f78565b73ffffffffffffffffffffffffffffffffffffffff16610d40611395565b73ffffffffffffffffffffffffffffffffffffffff1614610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d9061389b565b60405180910390fd5b80600f8190555050565b610dab838383612037565b505050565b610db8611f78565b73ffffffffffffffffffffffffffffffffffffffff16610dd6611395565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061389b565b60405180910390fd5b8060108190555050565b610e3e611f78565b73ffffffffffffffffffffffffffffffffffffffff16610e5c611395565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea99061389b565b60405180910390fd5b6000610ebc611395565b73ffffffffffffffffffffffffffffffffffffffff1647604051610edf90613762565b60006040518083038185875af1925050503d8060008114610f1c576040519150601f19603f3d011682016040523d82523d6000602084013e610f21565b606091505b5050905080610f2f57600080fd5b50565b610f4d8383836040518060200160405280600081525061197c565b505050565b600e5481565b601160009054906101000a900460ff1681565b610f73611f78565b73ffffffffffffffffffffffffffffffffffffffff16610f91611395565b73ffffffffffffffffffffffffffffffffffffffff1614610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde9061389b565b60405180910390fd5b8060099080519060200190610ffd929190612f9f565b5050565b600061100c826124ed565b600001519050919050565b61101f611f78565b73ffffffffffffffffffffffffffffffffffffffff1661103d611395565b73ffffffffffffffffffffffffffffffffffffffff1614611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a9061389b565b60405180910390fd5b6001601381905550565b600980546110aa90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546110d690613c2b565b80156111235780601f106110f857610100808354040283529160200191611123565b820191906000526020600020905b81548152906001019060200180831161110657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611193576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611203611f78565b73ffffffffffffffffffffffffffffffffffffffff16611221611395565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061389b565b60405180910390fd5b611281600061277c565b565b61128b611f78565b73ffffffffffffffffffffffffffffffffffffffff166112a9611395565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061389b565b60405180910390fd5b80600c8190555050565b611311611f78565b73ffffffffffffffffffffffffffffffffffffffff1661132f611395565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061389b565b60405180910390fd5b6000601381905550565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113ce90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546113fa90613c2b565b80156114475780601f1061141c57610100808354040283529160200191611447565b820191906000526020600020905b81548152906001019060200180831161142a57829003601f168201915b5050505050905090565b600061145b610ceb565b9050600082116114a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114979061393b565b60405180910390fd5b600d5482826114af9190613a60565b11156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061385b565b60405180910390fd5b6114f8611395565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117075760006013541161156f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611566906138bb565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548311156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef9061387b565b60405180910390fd5b60105483826116079190613a60565b1115611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f9061383b565b60405180910390fd5b600160135414156116a857600e5483836116629190613a60565b11156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a9061391b565b60405180910390fd5b611705565b600260135414156117045782600c546116c19190613ae7565b341015611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa906138fb565b60405180910390fd5b5b5b505b6117113383612842565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117609190613a60565b925050819055505050565b611773611f78565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117e5611f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611892611f78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d791906137de565b60405180910390a35050565b6118eb611f78565b73ffffffffffffffffffffffffffffffffffffffff16611909611395565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119569061389b565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b611987848484612037565b6119a68373ffffffffffffffffffffffffffffffffffffffff16611e9d565b80156119bb57506119b984848484612860565b155b156119f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a8054611a0590613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3190613c2b565b8015611a7e5780601f10611a5357610100808354040283529160200191611a7e565b820191906000526020600020905b815481529060010190602001808311611a6157829003601f168201915b505050505081565b6060611a9182611f2a565b611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906138db565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611b7e57600b8054611af990613c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2590613c2b565b8015611b725780601f10611b4757610100808354040283529160200191611b72565b820191906000526020600020905b815481529060010190602001808311611b5557829003601f168201915b50505050509050611bda565b6000611b886129c0565b90506000815111611ba85760405180602001604052806000815250611bd6565b80611bb284612a52565b600a604051602001611bc693929190613731565b6040516020818303038152906040525b9150505b919050565b600d5481565b611bed611f78565b73ffffffffffffffffffffffffffffffffffffffff16611c0b611395565b73ffffffffffffffffffffffffffffffffffffffff1614611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c589061389b565b60405180910390fd5b80600a9080519060200190611c77929190612f9f565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d17611f78565b73ffffffffffffffffffffffffffffffffffffffff16611d35611395565b73ffffffffffffffffffffffffffffffffffffffff1614611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d829061389b565b60405180910390fd5b80600b9080519060200190611da1929190612f9f565b5050565b611dad611f78565b73ffffffffffffffffffffffffffffffffffffffff16611dcb611395565b73ffffffffffffffffffffffffffffffffffffffff1614611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e189061389b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e889061381b565b60405180910390fd5b611e9a8161277c565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f35612032565b11158015611f44575060005482105b8015611f71575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612042826124ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120ad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166120ce611f78565b73ffffffffffffffffffffffffffffffffffffffff1614806120fd57506120fc856120f7611f78565b611c7b565b5b80612142575061210b611f78565b73ffffffffffffffffffffffffffffffffffffffff1661212a84610a3e565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061217b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121ef8585856001612bb3565b6121fb60008487611f80565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561247b57600054821461247a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e68585856001612bb9565b5050505050565b6124f5613025565b600082905080612503612032565b11158015612512575060005481105b15612745576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161274357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612627578092505050612777565b5b60011561274257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461273d578092505050612777565b612628565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61285c828260405180602001604052806000815250612bbf565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612886611f78565b8786866040518563ffffffff1660e01b81526004016128a89493929190613792565b602060405180830381600087803b1580156128c257600080fd5b505af19250505080156128f357506040513d601f19601f820116820180604052508101906128f091906133be565b60015b61296d573d8060008114612923576040519150601f19603f3d011682016040523d82523d6000602084013e612928565b606091505b50600081511415612965576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546129cf90613c2b565b80601f01602080910402602001604051908101604052809291908181526020018280546129fb90613c2b565b8015612a485780601f10612a1d57610100808354040283529160200191612a48565b820191906000526020600020905b815481529060010190602001808311612a2b57829003601f168201915b5050505050905090565b60606000821415612a9a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bae565b600082905060005b60008214612acc578080612ab590613c8e565b915050600a82612ac59190613ab6565b9150612aa2565b60008167ffffffffffffffff811115612ae857612ae7613dc4565b5b6040519080825280601f01601f191660200182016040528015612b1a5781602001600182028036833780820191505090505b5090505b60008514612ba757600182612b339190613b41565b9150600a85612b429190613cd7565b6030612b4e9190613a60565b60f81b818381518110612b6457612b63613d95565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba09190613ab6565b9450612b1e565b8093505050505b919050565b50505050565b50505050565b612bcc8383836001612bd1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c79576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c866000868387612bb3565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e505750612e4f8773ffffffffffffffffffffffffffffffffffffffff16611e9d565b5b15612f16575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ec56000888480600101955088612860565b612efb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e56578260005414612f1157600080fd5b612f82565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f17575b816000819055505050612f986000868387612bb9565b5050505050565b828054612fab90613c2b565b90600052602060002090601f016020900481019282612fcd5760008555613014565b82601f10612fe657805160ff1916838001178555613014565b82800160010185558215613014579182015b82811115613013578251825591602001919060010190612ff8565b5b5090506130219190613068565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613081576000816000905550600101613069565b5090565b60006130986130938461399b565b613976565b9050828152602081018484840111156130b4576130b3613df8565b5b6130bf848285613be9565b509392505050565b60006130da6130d5846139cc565b613976565b9050828152602081018484840111156130f6576130f5613df8565b5b613101848285613be9565b509392505050565b60008135905061311881614027565b92915050565b60008135905061312d8161403e565b92915050565b60008135905061314281614055565b92915050565b60008151905061315781614055565b92915050565b600082601f83011261317257613171613df3565b5b8135613182848260208601613085565b91505092915050565b600082601f8301126131a05761319f613df3565b5b81356131b08482602086016130c7565b91505092915050565b6000813590506131c88161406c565b92915050565b6000602082840312156131e4576131e3613e02565b5b60006131f284828501613109565b91505092915050565b6000806040838503121561321257613211613e02565b5b600061322085828601613109565b925050602061323185828601613109565b9150509250929050565b60008060006060848603121561325457613253613e02565b5b600061326286828701613109565b935050602061327386828701613109565b9250506040613284868287016131b9565b9150509250925092565b600080600080608085870312156132a8576132a7613e02565b5b60006132b687828801613109565b94505060206132c787828801613109565b93505060406132d8878288016131b9565b925050606085013567ffffffffffffffff8111156132f9576132f8613dfd565b5b6133058782880161315d565b91505092959194509250565b6000806040838503121561332857613327613e02565b5b600061333685828601613109565b92505060206133478582860161311e565b9150509250929050565b6000806040838503121561336857613367613e02565b5b600061337685828601613109565b9250506020613387858286016131b9565b9150509250929050565b6000602082840312156133a7576133a6613e02565b5b60006133b584828501613133565b91505092915050565b6000602082840312156133d4576133d3613e02565b5b60006133e284828501613148565b91505092915050565b60006020828403121561340157613400613e02565b5b600082013567ffffffffffffffff81111561341f5761341e613dfd565b5b61342b8482850161318b565b91505092915050565b60006020828403121561344a57613449613e02565b5b6000613458848285016131b9565b91505092915050565b61346a81613b75565b82525050565b61347981613b87565b82525050565b600061348a82613a12565b6134948185613a28565b93506134a4818560208601613bf8565b6134ad81613e07565b840191505092915050565b60006134c382613a1d565b6134cd8185613a44565b93506134dd818560208601613bf8565b6134e681613e07565b840191505092915050565b60006134fc82613a1d565b6135068185613a55565b9350613516818560208601613bf8565b80840191505092915050565b6000815461352f81613c2b565b6135398186613a55565b94506001821660008114613554576001811461356557613598565b60ff19831686528186019350613598565b61356e856139fd565b60005b8381101561359057815481890152600182019150602081019050613571565b838801955050505b50505092915050565b60006135ae602683613a44565b91506135b982613e18565b604082019050919050565b60006135d1601c83613a44565b91506135dc82613e67565b602082019050919050565b60006135f4601683613a44565b91506135ff82613e90565b602082019050919050565b6000613617602483613a44565b915061362282613eb9565b604082019050919050565b600061363a602083613a44565b915061364582613f08565b602082019050919050565b600061365d601683613a44565b915061366882613f31565b602082019050919050565b6000613680602f83613a44565b915061368b82613f5a565b604082019050919050565b60006136a3600083613a39565b91506136ae82613fa9565b600082019050919050565b60006136c6601283613a44565b91506136d182613fac565b602082019050919050565b60006136e9601083613a44565b91506136f482613fd5565b602082019050919050565b600061370c601b83613a44565b915061371782613ffe565b602082019050919050565b61372b81613bdf565b82525050565b600061373d82866134f1565b915061374982856134f1565b91506137558284613522565b9150819050949350505050565b600061376d82613696565b9150819050919050565b600060208201905061378c6000830184613461565b92915050565b60006080820190506137a76000830187613461565b6137b46020830186613461565b6137c16040830185613722565b81810360608301526137d3818461347f565b905095945050505050565b60006020820190506137f36000830184613470565b92915050565b6000602082019050818103600083015261381381846134b8565b905092915050565b60006020820190508181036000830152613834816135a1565b9050919050565b60006020820190508181036000830152613854816135c4565b9050919050565b60006020820190508181036000830152613874816135e7565b9050919050565b600060208201905081810360008301526138948161360a565b9050919050565b600060208201905081810360008301526138b48161362d565b9050919050565b600060208201905081810360008301526138d481613650565b9050919050565b600060208201905081810360008301526138f481613673565b9050919050565b60006020820190508181036000830152613914816136b9565b9050919050565b60006020820190508181036000830152613934816136dc565b9050919050565b60006020820190508181036000830152613954816136ff565b9050919050565b60006020820190506139706000830184613722565b92915050565b6000613980613991565b905061398c8282613c5d565b919050565b6000604051905090565b600067ffffffffffffffff8211156139b6576139b5613dc4565b5b6139bf82613e07565b9050602081019050919050565b600067ffffffffffffffff8211156139e7576139e6613dc4565b5b6139f082613e07565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6b82613bdf565b9150613a7683613bdf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aab57613aaa613d08565b5b828201905092915050565b6000613ac182613bdf565b9150613acc83613bdf565b925082613adc57613adb613d37565b5b828204905092915050565b6000613af282613bdf565b9150613afd83613bdf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b3657613b35613d08565b5b828202905092915050565b6000613b4c82613bdf565b9150613b5783613bdf565b925082821015613b6a57613b69613d08565b5b828203905092915050565b6000613b8082613bbf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c16578082015181840152602081019050613bfb565b83811115613c25576000848401525b50505050565b60006002820490506001821680613c4357607f821691505b60208210811415613c5757613c56613d66565b5b50919050565b613c6682613e07565b810181811067ffffffffffffffff82111715613c8557613c84613dc4565b5b80604052505050565b6000613c9982613bdf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ccc57613ccb613d08565b5b600182019050919050565b6000613ce282613bdf565b9150613ced83613bdf565b925082613cfd57613cfc613d37565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6d61782066726565207265616368656400000000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61403081613b75565b811461403b57600080fd5b50565b61404781613b87565b811461405257600080fd5b50565b61405e81613b93565b811461406957600080fd5b50565b61407581613bdf565b811461408057600080fd5b5056fea2646970667358221220cb6b0530723a83062cf7e320ac2e4667c00ec4fde6b3643d971f97bf1f30689f64736f6c63430008070033

Deployed Bytecode Sourcemap

44725:4368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24471:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27584:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29087:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44883:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48419:86;;;;;;;;;;;;;:::i;:::-;;28650:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45219:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44918:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45028:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23720:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45155:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47684:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29952:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47562:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48609:481;;;:::i;:::-;;30193:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44992:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45121:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47849:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27392:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48331:80;;;;;;;;;;;;;:::i;:::-;;44811:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24840:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43871:103;;;;;;;;;;;;;:::i;:::-;;48513:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48254:69;;;;;;;;;;;;;:::i;:::-;;45073:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43220:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27753:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45476:1250;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29363:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47485:69;;;;;;;;;;;;;:::i;:::-;;30449:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44839:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46734:725;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44954:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47961:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29721:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48120:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44129:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24471:305;24573:4;24625:25;24610:40;;;:11;:40;;;;:105;;;;24682:33;24667:48;;;:11;:48;;;;24610:105;:158;;;;24732:36;24756:11;24732:23;:36::i;:::-;24610:158;24590:178;;24471:305;;;:::o;27584:100::-;27638:13;27671:5;27664:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27584:100;:::o;29087:204::-;29155:7;29180:16;29188:7;29180;:16::i;:::-;29175:64;;29205:34;;;;;;;;;;;;;;29175:64;29259:15;:24;29275:7;29259:24;;;;;;;;;;;;;;;;;;;;;29252:31;;29087:204;;;:::o;44883:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48419:86::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48496:1:::1;48481:12;:16;;;;48419:86::o:0;28650:371::-;28723:13;28739:24;28755:7;28739:15;:24::i;:::-;28723:40;;28784:5;28778:11;;:2;:11;;;28774:48;;;28798:24;;;;;;;;;;;;;;28774:48;28855:5;28839:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28865:37;28882:5;28889:12;:10;:12::i;:::-;28865:16;:37::i;:::-;28864:38;28839:63;28835:138;;;28926:35;;;;;;;;;;;;;;28835:138;28985:28;28994:2;28998:7;29007:5;28985:8;:28::i;:::-;28712:309;28650:371;;:::o;45219:31::-;;;;:::o;44918:29::-;;;;:::o;45028:38::-;;;;:::o;23720:303::-;23764:7;23989:15;:13;:15::i;:::-;23974:12;;23958:13;;:28;:46;23951:53;;23720:303;:::o;45155:55::-;;;;;;;;;;;;;;;;;:::o;47684:157::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47816:17:::1;47794:19;:39;;;;47684:157:::0;:::o;29952:170::-;30086:28;30096:4;30102:2;30106:7;30086:9;:28::i;:::-;29952:170;;;:::o;47562:114::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47662:6:::1;47639:20;:29;;;;47562:114:::0;:::o;48609:481::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48902:7:::1;48923;:5;:7::i;:::-;48915:21;;48944;48915:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48901:69;;;48989:2;48981:11;;;::::0;::::1;;48654:436;48609:481::o:0;30193:185::-;30331:39;30348:4;30354:2;30358:7;30331:39;;;;;;;;;;;;:16;:39::i;:::-;30193:185;;;:::o;44992:29::-;;;;:::o;45121:27::-;;;;;;;;;;;;;:::o;47849:104::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47934:11:::1;47924:7;:21;;;;;;;;;;;;:::i;:::-;;47849:104:::0;:::o;27392:125::-;27456:7;27483:21;27496:7;27483:12;:21::i;:::-;:26;;;27476:33;;27392:125;;;:::o;48331:80::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48402:1:::1;48387:12;:16;;;;48331:80::o:0;44811:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24840:206::-;24904:7;24945:1;24928:19;;:5;:19;;;24924:60;;;24956:28;;;;;;;;;;;;;;24924:60;25010:12;:19;25023:5;25010:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25002:36;;24995:43;;24840:206;;;:::o;43871:103::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43936:30:::1;43963:1;43936:18;:30::i;:::-;43871:103::o:0;48513:88::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48587:6:::1;48580:4;:13;;;;48513:88:::0;:::o;48254:69::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48314:1:::1;48299:12;:16;;;;48254:69::o:0;45073:39::-;;;;:::o;43220:87::-;43266:7;43293:6;;;;;;;;;;;43286:13;;43220:87;:::o;27753:104::-;27809:13;27842:7;27835:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27753:104;:::o;45476:1250::-;45560:14;45577:13;:11;:13::i;:::-;45560:30;;45623:1;45609:11;:15;45601:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45699:9;;45684:11;45675:6;:20;;;;:::i;:::-;:33;;45667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45764:7;:5;:7::i;:::-;45750:21;;:10;:21;;;45746:868;;45811:1;45796:12;;:16;45788:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;45854:25;45882:20;:32;45903:10;45882:32;;;;;;;;;;;;;;;;45854:60;;45970:19;;45955:11;:34;;45929:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;46137:20;;46122:11;46102:17;:31;;;;:::i;:::-;:55;;46076:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;46256:1;46240:12;;:17;46236:366;;;46332:7;;46317:11;46308:6;:20;;;;:::i;:::-;:31;;46278:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;46236:366;;;46441:1;46425:12;;:17;46421:181;;;46513:11;46506:4;;:18;;;;:::i;:::-;46493:9;:31;;46463:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;46421:181;46236:366;45773:841;45746:868;46626:34;46636:10;46648:11;46626:9;:34::i;:::-;46707:11;46671:20;:32;46692:10;46671:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;45549:1177;45476:1250;:::o;29363:287::-;29474:12;:10;:12::i;:::-;29462:24;;:8;:24;;;29458:54;;;29495:17;;;;;;;;;;;;;;29458:54;29570:8;29525:18;:32;29544:12;:10;:12::i;:::-;29525:32;;;;;;;;;;;;;;;:42;29558:8;29525:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29623:8;29594:48;;29609:12;:10;:12::i;:::-;29594:48;;;29633:8;29594:48;;;;;;:::i;:::-;;;;;;;;29363:287;;:::o;47485:69::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47542:4:::1;47531:8;;:15;;;;;;;;;;;;;;;;;;47485:69::o:0;30449:369::-;30616:28;30626:4;30632:2;30636:7;30616:9;:28::i;:::-;30659:15;:2;:13;;;:15::i;:::-;:76;;;;;30679:56;30710:4;30716:2;30720:7;30729:5;30679:30;:56::i;:::-;30678:57;30659:76;30655:156;;;30759:40;;;;;;;;;;;;;;30655:156;30449:369;;;;:::o;44839:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46734:725::-;46852:13;46905:16;46913:7;46905;:16::i;:::-;46883:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47025:5;47013:17;;:8;;;;;;;;;;;:17;;;47009:71;;;47054:14;47047:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47009:71;47092:28;47123:10;:8;:10::i;:::-;47092:41;;47195:1;47170:14;47164:28;:32;:287;;;;;;;;;;;;;;;;;47288:14;47329:18;:7;:16;:18::i;:::-;47374:13;47245:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47164:287;47144:307;;;46734:725;;;;:::o;44954:31::-;;;;:::o;47961:151::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48087:17:::1;48071:13;:33;;;;;;;;;;;;:::i;:::-;;47961:151:::0;:::o;29721:164::-;29818:4;29842:18;:25;29861:5;29842:25;;;;;;;;;;;;;;;:35;29868:8;29842:35;;;;;;;;;;;;;;;;;;;;;;;;;29835:42;;29721:164;;;;:::o;48120:126::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48223:15:::1;48206:14;:32;;;;;;;;;;;;:::i;:::-;;48120:126:::0;:::o;44129:238::-;43451:12;:10;:12::i;:::-;43440:23;;:7;:5;:7::i;:::-;:23;;;43432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44252:1:::1;44232:22;;:8;:22;;;;44210:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44331:28;44350:8;44331:18;:28::i;:::-;44129:238:::0;:::o;4283:326::-;4343:4;4600:1;4578:7;:19;;;:23;4571:30;;4283:326;;;:::o;14389:157::-;14474:4;14513:25;14498:40;;;:11;:40;;;;14491:47;;14389:157;;;:::o;31073:187::-;31130:4;31173:7;31154:15;:13;:15::i;:::-;:26;;:53;;;;;31194:13;;31184:7;:23;31154:53;:98;;;;;31225:11;:20;31237:7;31225:20;;;;;;;;;;;:27;;;;;;;;;;;;31224:28;31154:98;31147:105;;31073:187;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;39243:196::-;39385:2;39358:15;:24;39374:7;39358:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39423:7;39419:2;39403:28;;39412:5;39403:28;;;;;;;;;;;;39243:196;;;:::o;23494:92::-;23550:7;23494:92;:::o;34186:2130::-;34301:35;34339:21;34352:7;34339:12;:21::i;:::-;34301:59;;34399:4;34377:26;;:13;:18;;;:26;;;34373:67;;34412:28;;;;;;;;;;;;;;34373:67;34453:22;34495:4;34479:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34516:36;34533:4;34539:12;:10;:12::i;:::-;34516:16;:36::i;:::-;34479:73;:126;;;;34593:12;:10;:12::i;:::-;34569:36;;:20;34581:7;34569:11;:20::i;:::-;:36;;;34479:126;34453:153;;34624:17;34619:66;;34650:35;;;;;;;;;;;;;;34619:66;34714:1;34700:16;;:2;:16;;;34696:52;;;34725:23;;;;;;;;;;;;;;34696:52;34761:43;34783:4;34789:2;34793:7;34802:1;34761:21;:43::i;:::-;34869:35;34886:1;34890:7;34899:4;34869:8;:35::i;:::-;35230:1;35200:12;:18;35213:4;35200:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35274:1;35246:12;:16;35259:2;35246:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35292:31;35326:11;:20;35338:7;35326:20;;;;;;;;;;;35292:54;;35377:2;35361:8;:13;;;:18;;;;;;;;;;;;;;;;;;35427:15;35394:8;:23;;;:49;;;;;;;;;;;;;;;;;;35695:19;35727:1;35717:7;:11;35695:33;;35743:31;35777:11;:24;35789:11;35777:24;;;;;;;;;;;35743:58;;35845:1;35820:27;;:8;:13;;;;;;;;;;;;:27;;;35816:384;;;36030:13;;36015:11;:28;36011:174;;36084:4;36068:8;:13;;;:20;;;;;;;;;;;;;;;;;;36137:13;:28;;;36111:8;:23;;;:54;;;;;;;;;;;;;;;;;;36011:174;35816:384;35175:1036;;;36247:7;36243:2;36228:27;;36237:4;36228:27;;;;;;;;;;;;36266:42;36287:4;36293:2;36297:7;36306:1;36266:20;:42::i;:::-;34290:2026;;34186:2130;;;:::o;26221:1109::-;26283:21;;:::i;:::-;26317:12;26332:7;26317:22;;26400:4;26381:15;:13;:15::i;:::-;:23;;:47;;;;;26415:13;;26408:4;:20;26381:47;26377:886;;;26449:31;26483:11;:17;26495:4;26483:17;;;;;;;;;;;26449:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26524:9;:16;;;26519:729;;26595:1;26569:28;;:9;:14;;;:28;;;26565:101;;26633:9;26626:16;;;;;;26565:101;26968:261;26975:4;26968:261;;;27008:6;;;;;;;;27053:11;:17;27065:4;27053:17;;;;;;;;;;;27041:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27127:1;27101:28;;:9;:14;;;:28;;;27097:109;;27169:9;27162:16;;;;;;27097:109;26968:261;;;26519:729;26430:833;26377:886;27291:31;;;;;;;;;;;;;;26221:1109;;;;:::o;44527:191::-;44601:16;44620:6;;;;;;;;;;;44601:25;;44646:8;44637:6;;:17;;;;;;;;;;;;;;;;;;44701:8;44670:40;;44691:8;44670:40;;;;;;;;;;;;44590:128;44527:191;:::o;31268:104::-;31337:27;31347:2;31351:8;31337:27;;;;;;;;;;;;:9;:27::i;:::-;31268:104;;:::o;39931:667::-;40094:4;40131:2;40115:36;;;40152:12;:10;:12::i;:::-;40166:4;40172:7;40181:5;40115:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40111:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40366:1;40349:6;:13;:18;40345:235;;;40395:40;;;;;;;;;;;;;;40345:235;40538:6;40532:13;40523:6;40519:2;40515:15;40508:38;40111:480;40244:45;;;40234:55;;;:6;:55;;;;40227:62;;;39931:667;;;;;;:::o;45360:108::-;45420:13;45453:7;45446:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45360:108;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;41246:159::-;;;;;:::o;42064:158::-;;;;;:::o;31735:163::-;31858:32;31864:2;31868:8;31878:5;31885:4;31858:5;:32::i;:::-;31735:163;;;:::o;32157:1775::-;32296:20;32319:13;;32296:36;;32361:1;32347:16;;:2;:16;;;32343:48;;;32372:19;;;;;;;;;;;;;;32343:48;32418:1;32406:8;:13;32402:44;;;32428:18;;;;;;;;;;;;;;32402:44;32459:61;32489:1;32493:2;32497:12;32511:8;32459:21;:61::i;:::-;32832:8;32797:12;:16;32810:2;32797:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32896:8;32856:12;:16;32869:2;32856:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32955:2;32922:11;:25;32934:12;32922:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33022:15;32972:11;:25;32984:12;32972:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33055:20;33078:12;33055:35;;33105:11;33134:8;33119:12;:23;33105:37;;33163:4;:23;;;;;33171:15;:2;:13;;;:15::i;:::-;33163:23;33159:641;;;33207:314;33263:12;33259:2;33238:38;;33255:1;33238:38;;;;;;;;;;;;33304:69;33343:1;33347:2;33351:14;;;;;;33367:5;33304:30;:69::i;:::-;33299:174;;33409:40;;;;;;;;;;;;;;33299:174;33516:3;33500:12;:19;;33207:314;;33602:12;33585:13;;:29;33581:43;;33616:8;;;33581:43;33159:641;;;33665:120;33721:14;;;;;;33717:2;33696:40;;33713:1;33696:40;;;;;;;;;;;;33780:3;33764:12;:19;;33665:120;;33159:641;33830:12;33814:13;:28;;;;32772:1082;;33864:60;33893:1;33897:2;33901:12;33915:8;33864:20;:60::i;:::-;32285:1647;32157:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:398::-;12154:3;12175:83;12256:1;12251:3;12175:83;:::i;:::-;12168:90;;12267:93;12356:3;12267:93;:::i;:::-;12385:1;12380:3;12376:11;12369:18;;11995:398;;;:::o;12399:366::-;12541:3;12562:67;12626:2;12621:3;12562:67;:::i;:::-;12555:74;;12638:93;12727:3;12638:93;:::i;:::-;12756:2;12751:3;12747:12;12740:19;;12399:366;;;:::o;12771:::-;12913:3;12934:67;12998:2;12993:3;12934:67;:::i;:::-;12927:74;;13010:93;13099:3;13010:93;:::i;:::-;13128:2;13123:3;13119:12;13112:19;;12771:366;;;:::o;13143:::-;13285:3;13306:67;13370:2;13365:3;13306:67;:::i;:::-;13299:74;;13382:93;13471:3;13382:93;:::i;:::-;13500:2;13495:3;13491:12;13484:19;;13143:366;;;:::o;13515:118::-;13602:24;13620:5;13602:24;:::i;:::-;13597:3;13590:37;13515:118;;:::o;13639:589::-;13864:3;13886:95;13977:3;13968:6;13886:95;:::i;:::-;13879:102;;13998:95;14089:3;14080:6;13998:95;:::i;:::-;13991:102;;14110:92;14198:3;14189:6;14110:92;:::i;:::-;14103:99;;14219:3;14212:10;;13639:589;;;;;;:::o;14234:379::-;14418:3;14440:147;14583:3;14440:147;:::i;:::-;14433:154;;14604:3;14597:10;;14234:379;;;:::o;14619:222::-;14712:4;14750:2;14739:9;14735:18;14727:26;;14763:71;14831:1;14820:9;14816:17;14807:6;14763:71;:::i;:::-;14619:222;;;;:::o;14847:640::-;15042:4;15080:3;15069:9;15065:19;15057:27;;15094:71;15162:1;15151:9;15147:17;15138:6;15094:71;:::i;:::-;15175:72;15243:2;15232:9;15228:18;15219:6;15175:72;:::i;:::-;15257;15325:2;15314:9;15310:18;15301:6;15257:72;:::i;:::-;15376:9;15370:4;15366:20;15361:2;15350:9;15346:18;15339:48;15404:76;15475:4;15466:6;15404:76;:::i;:::-;15396:84;;14847:640;;;;;;;:::o;15493:210::-;15580:4;15618:2;15607:9;15603:18;15595:26;;15631:65;15693:1;15682:9;15678:17;15669:6;15631:65;:::i;:::-;15493:210;;;;:::o;15709:313::-;15822:4;15860:2;15849:9;15845:18;15837:26;;15909:9;15903:4;15899:20;15895:1;15884:9;15880:17;15873:47;15937:78;16010:4;16001:6;15937:78;:::i;:::-;15929:86;;15709:313;;;;:::o;16028:419::-;16194:4;16232:2;16221:9;16217:18;16209:26;;16281:9;16275:4;16271:20;16267:1;16256:9;16252:17;16245:47;16309:131;16435:4;16309:131;:::i;:::-;16301:139;;16028:419;;;:::o;16453:::-;16619:4;16657:2;16646:9;16642:18;16634:26;;16706:9;16700:4;16696:20;16692:1;16681:9;16677:17;16670:47;16734:131;16860:4;16734:131;:::i;:::-;16726:139;;16453:419;;;:::o;16878:::-;17044:4;17082:2;17071:9;17067:18;17059:26;;17131:9;17125:4;17121:20;17117:1;17106:9;17102:17;17095:47;17159:131;17285:4;17159:131;:::i;:::-;17151:139;;16878:419;;;:::o;17303:::-;17469:4;17507:2;17496:9;17492:18;17484:26;;17556:9;17550:4;17546:20;17542:1;17531:9;17527:17;17520:47;17584:131;17710:4;17584:131;:::i;:::-;17576:139;;17303:419;;;:::o;17728:::-;17894:4;17932:2;17921:9;17917:18;17909:26;;17981:9;17975:4;17971:20;17967:1;17956:9;17952:17;17945:47;18009:131;18135:4;18009:131;:::i;:::-;18001:139;;17728:419;;;:::o;18153:::-;18319:4;18357:2;18346:9;18342:18;18334:26;;18406:9;18400:4;18396:20;18392:1;18381:9;18377:17;18370:47;18434:131;18560:4;18434:131;:::i;:::-;18426:139;;18153:419;;;:::o;18578:::-;18744:4;18782:2;18771:9;18767:18;18759:26;;18831:9;18825:4;18821:20;18817:1;18806:9;18802:17;18795:47;18859:131;18985:4;18859:131;:::i;:::-;18851:139;;18578:419;;;:::o;19003:::-;19169:4;19207:2;19196:9;19192:18;19184:26;;19256:9;19250:4;19246:20;19242:1;19231:9;19227:17;19220:47;19284:131;19410:4;19284:131;:::i;:::-;19276:139;;19003:419;;;:::o;19428:::-;19594:4;19632:2;19621:9;19617:18;19609:26;;19681:9;19675:4;19671:20;19667:1;19656:9;19652:17;19645:47;19709:131;19835:4;19709:131;:::i;:::-;19701:139;;19428:419;;;:::o;19853:::-;20019:4;20057:2;20046:9;20042:18;20034:26;;20106:9;20100:4;20096:20;20092:1;20081:9;20077:17;20070:47;20134:131;20260:4;20134:131;:::i;:::-;20126:139;;19853:419;;;:::o;20278:222::-;20371:4;20409:2;20398:9;20394:18;20386:26;;20422:71;20490:1;20479:9;20475:17;20466:6;20422:71;:::i;:::-;20278:222;;;;:::o;20506:129::-;20540:6;20567:20;;:::i;:::-;20557:30;;20596:33;20624:4;20616:6;20596:33;:::i;:::-;20506:129;;;:::o;20641:75::-;20674:6;20707:2;20701:9;20691:19;;20641:75;:::o;20722:307::-;20783:4;20873:18;20865:6;20862:30;20859:56;;;20895:18;;:::i;:::-;20859:56;20933:29;20955:6;20933:29;:::i;:::-;20925:37;;21017:4;21011;21007:15;20999:23;;20722:307;;;:::o;21035:308::-;21097:4;21187:18;21179:6;21176:30;21173:56;;;21209:18;;:::i;:::-;21173:56;21247:29;21269:6;21247:29;:::i;:::-;21239:37;;21331:4;21325;21321:15;21313:23;;21035:308;;;:::o;21349:141::-;21398:4;21421:3;21413:11;;21444:3;21441:1;21434:14;21478:4;21475:1;21465:18;21457:26;;21349:141;;;:::o;21496:98::-;21547:6;21581:5;21575:12;21565:22;;21496:98;;;:::o;21600:99::-;21652:6;21686:5;21680:12;21670:22;;21600:99;;;:::o;21705:168::-;21788:11;21822:6;21817:3;21810:19;21862:4;21857:3;21853:14;21838:29;;21705:168;;;;:::o;21879:147::-;21980:11;22017:3;22002:18;;21879:147;;;;:::o;22032:169::-;22116:11;22150:6;22145:3;22138:19;22190:4;22185:3;22181:14;22166:29;;22032:169;;;;:::o;22207:148::-;22309:11;22346:3;22331:18;;22207:148;;;;:::o;22361:305::-;22401:3;22420:20;22438:1;22420:20;:::i;:::-;22415:25;;22454:20;22472:1;22454:20;:::i;:::-;22449:25;;22608:1;22540:66;22536:74;22533:1;22530:81;22527:107;;;22614:18;;:::i;:::-;22527:107;22658:1;22655;22651:9;22644:16;;22361:305;;;;:::o;22672:185::-;22712:1;22729:20;22747:1;22729:20;:::i;:::-;22724:25;;22763:20;22781:1;22763:20;:::i;:::-;22758:25;;22802:1;22792:35;;22807:18;;:::i;:::-;22792:35;22849:1;22846;22842:9;22837:14;;22672:185;;;;:::o;22863:348::-;22903:7;22926:20;22944:1;22926:20;:::i;:::-;22921:25;;22960:20;22978:1;22960:20;:::i;:::-;22955:25;;23148:1;23080:66;23076:74;23073:1;23070:81;23065:1;23058:9;23051:17;23047:105;23044:131;;;23155:18;;:::i;:::-;23044:131;23203:1;23200;23196:9;23185:20;;22863:348;;;;:::o;23217:191::-;23257:4;23277:20;23295:1;23277:20;:::i;:::-;23272:25;;23311:20;23329:1;23311:20;:::i;:::-;23306:25;;23350:1;23347;23344:8;23341:34;;;23355:18;;:::i;:::-;23341:34;23400:1;23397;23393:9;23385:17;;23217:191;;;;:::o;23414:96::-;23451:7;23480:24;23498:5;23480:24;:::i;:::-;23469:35;;23414:96;;;:::o;23516:90::-;23550:7;23593:5;23586:13;23579:21;23568:32;;23516:90;;;:::o;23612:149::-;23648:7;23688:66;23681:5;23677:78;23666:89;;23612:149;;;:::o;23767:126::-;23804:7;23844:42;23837:5;23833:54;23822:65;;23767:126;;;:::o;23899:77::-;23936:7;23965:5;23954:16;;23899:77;;;:::o;23982:154::-;24066:6;24061:3;24056;24043:30;24128:1;24119:6;24114:3;24110:16;24103:27;23982:154;;;:::o;24142:307::-;24210:1;24220:113;24234:6;24231:1;24228:13;24220:113;;;24319:1;24314:3;24310:11;24304:18;24300:1;24295:3;24291:11;24284:39;24256:2;24253:1;24249:10;24244:15;;24220:113;;;24351:6;24348:1;24345:13;24342:101;;;24431:1;24422:6;24417:3;24413:16;24406:27;24342:101;24191:258;24142:307;;;:::o;24455:320::-;24499:6;24536:1;24530:4;24526:12;24516:22;;24583:1;24577:4;24573:12;24604:18;24594:81;;24660:4;24652:6;24648:17;24638:27;;24594:81;24722:2;24714:6;24711:14;24691:18;24688:38;24685:84;;;24741:18;;:::i;:::-;24685:84;24506:269;24455:320;;;:::o;24781:281::-;24864:27;24886:4;24864:27;:::i;:::-;24856:6;24852:40;24994:6;24982:10;24979:22;24958:18;24946:10;24943:34;24940:62;24937:88;;;25005:18;;:::i;:::-;24937:88;25045:10;25041:2;25034:22;24824:238;24781:281;;:::o;25068:233::-;25107:3;25130:24;25148:5;25130:24;:::i;:::-;25121:33;;25176:66;25169:5;25166:77;25163:103;;;25246:18;;:::i;:::-;25163:103;25293:1;25286:5;25282:13;25275:20;;25068:233;;;:::o;25307:176::-;25339:1;25356:20;25374:1;25356:20;:::i;:::-;25351:25;;25390:20;25408:1;25390:20;:::i;:::-;25385:25;;25429:1;25419:35;;25434:18;;:::i;:::-;25419:35;25475:1;25472;25468:9;25463:14;;25307:176;;;;:::o;25489:180::-;25537:77;25534:1;25527:88;25634:4;25631:1;25624:15;25658:4;25655:1;25648:15;25675:180;25723:77;25720:1;25713:88;25820:4;25817:1;25810:15;25844:4;25841:1;25834:15;25861:180;25909:77;25906:1;25899:88;26006:4;26003:1;25996:15;26030:4;26027:1;26020:15;26047:180;26095:77;26092:1;26085:88;26192:4;26189:1;26182:15;26216:4;26213:1;26206:15;26233:180;26281:77;26278:1;26271:88;26378:4;26375:1;26368:15;26402:4;26399:1;26392:15;26419:117;26528:1;26525;26518:12;26542:117;26651:1;26648;26641:12;26665:117;26774:1;26771;26764:12;26788:117;26897:1;26894;26887:12;26911:102;26952:6;27003:2;26999:7;26994:2;26987:5;26983:14;26979:28;26969:38;;26911:102;;;:::o;27019:225::-;27159:34;27155:1;27147:6;27143:14;27136:58;27228:8;27223:2;27215:6;27211:15;27204:33;27019:225;:::o;27250:178::-;27390:30;27386:1;27378:6;27374:14;27367:54;27250:178;:::o;27434:172::-;27574:24;27570:1;27562:6;27558:14;27551:48;27434:172;:::o;27612:223::-;27752:34;27748:1;27740:6;27736:14;27729:58;27821:6;27816:2;27808:6;27804:15;27797:31;27612:223;:::o;27841:182::-;27981:34;27977:1;27969:6;27965:14;27958:58;27841:182;:::o;28029:172::-;28169:24;28165:1;28157:6;28153:14;28146:48;28029:172;:::o;28207:234::-;28347:34;28343:1;28335:6;28331:14;28324:58;28416:17;28411:2;28403:6;28399:15;28392:42;28207:234;:::o;28447:114::-;;:::o;28567:168::-;28707:20;28703:1;28695:6;28691:14;28684:44;28567:168;:::o;28741:166::-;28881:18;28877:1;28869:6;28865:14;28858:42;28741:166;:::o;28913:177::-;29053:29;29049:1;29041:6;29037:14;29030:53;28913:177;:::o;29096:122::-;29169:24;29187:5;29169:24;:::i;:::-;29162:5;29159:35;29149:63;;29208:1;29205;29198:12;29149:63;29096:122;:::o;29224:116::-;29294:21;29309:5;29294:21;:::i;:::-;29287:5;29284:32;29274:60;;29330:1;29327;29320:12;29274:60;29224:116;:::o;29346:120::-;29418:23;29435:5;29418:23;:::i;:::-;29411:5;29408:34;29398:62;;29456:1;29453;29446:12;29398:62;29346:120;:::o;29472:122::-;29545:24;29563:5;29545:24;:::i;:::-;29538:5;29535:35;29525:63;;29584:1;29581;29574:12;29525:63;29472:122;:::o

Swarm Source

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