ETH Price: $3,301.39 (-3.22%)
Gas: 20 Gwei

Token

Tetris Game NFT (TGNFT)
 

Overview

Max Total Supply

2,000 TGNFT

Holders

941

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*未名只打金狗.eth
Balance
2 TGNFT
0xa9c2837064acd4f66028940279cdf001580a60a8
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:
TetrisGameNFT

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 13: TetrisGameNFT.sol
// SPDX-License-Identifier: MIT

// ████████████████████████████████████
// █─▄─▄─█▄─▄▄─█─▄─▄─██─▄▄▀█▄─▄█─▄▄▄▄██
// ███─████─▄█▀███─████─▄─▄██─██▄▄▄▄─██
// ██▄▄▄██▄▄▄▄▄██▄▄▄██▄▄█▄▄█▄▄▄█▄▄▄▄▄██
// █████████████████████████████
// ██─▄▄▄▄██─▄─██▄─▀█▀─▄█▄─▄▄▄██
// ██─██▄─██─▀─███─█▄█─███─▄▄███
// ██▄▄▄▄▄█▄▄█▄▄█▄▄▄█▄▄▄█▄▄▄▄▄██
// ███████████████████████
// ██▄─▀█▄─▄█▄─▄▄▄█─▄─▄─██
// ███─█▄▀─███─▄▄████─████
// ██▄▄▄██▄▄█▄▄▄████▄▄▄███
// ███████████████████████


pragma solidity ^0.8.12;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

contract TetrisGameNFT is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public maxFreePerWallet = 2;
    uint256 public maxPerTx = 10;
    uint256 public maxSupply = 2000;
    uint256 public freeMintMax = 1500;
    uint256 public price = 0.005 ether;

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmeHg5KSgwFv1VeMP37EVwEcBJ6gjJJnrTwTzEwirJN3uk/";
    string public constant baseExtension = ".json";

    bool public paused = true;
    error freeMintIsOver();

    constructor() ERC721A("Tetris Game NFT", "TGNFT") {}

    function freeMint() external payable {
        address _caller = _msgSender();
        if(!isFreeMint()) revert freeMintIsOver();
        require(!paused, "Contract Paused.");
        require(maxSupply >= totalSupply() + 2, "Minting would exceed maxSupply.");
        require(maxFreePerWallet >= uint256(_getAux(_caller)) + 2, "Mint would exceed maxFreePerWallet.");

        _setAux(_caller, 2);
        _safeMint(_caller, 2);
    }

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Contract Paused.");
        require(maxSupply >= totalSupply() + _amount, "Minting would exceed maxSupply.");
        require(_amount > 0, "Must mint at least one token.");
        require(maxPerTx >= _amount , "Must mint less than maxPerTx.");
        require(_amount * price == msg.value, "Insufficient value.");

        _safeMint(_caller, _amount);
    }

    function devMint(uint256 _number) external onlyOwner {
        require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply");
        _safeMint(_msgSender(), _number);
    }

    function isFreeMint() public view returns (bool) {
        return totalSupply() < freeMintMax;
    }

    function setMaxFreeMint(uint256 _max) public onlyOwner {
        freeMintMax = _max;
    }
    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        
        _withdraw(_msgSender(), address(this).balance);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxFreePerWallet(uint256 _newMaxFreePerWallet) public onlyOwner {
        maxFreePerWallet = _newMaxFreePerWallet;
    }

    function setPause(bool _state) external onlyOwner {
        paused = _state;
    }

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

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// 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 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './IERC721Enumerable.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

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 See {IERC721Enumerable-totalSupply}.
     * @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 {}
}

File 5 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// 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 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

File 7 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

File 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 11 of 13: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 12 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"freeMintIsOver","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintMax","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":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreePerWallet","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526002600955600a80556107d0600b556105dc600c556611c37937e08000600d556040518060800160405280605181526020016200423960519139600e90805190602001906200005592919062000232565b506001600f60006101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040518060400160405280600f81526020017f5465747269732047616d65204e465400000000000000000000000000000000008152506040518060400160405280600581526020017f54474e465400000000000000000000000000000000000000000000000000000081525081600290805190602001906200010392919062000232565b5080600390805190602001906200011c92919062000232565b506200012d6200015b60201b60201c565b600081905550505062000155620001496200016460201b60201c565b6200016c60201b60201c565b62000347565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002409062000311565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032a57607f821691505b60208210811415620003415762000340620002e2565b5b50919050565b613ee280620003576000396000f3fe60806040526004361061020f5760003560e01c8063742a4c9b11610118578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd14610735578063d5abeb0114610772578063e985e9c51461079d578063f2fde38b146107da578063f968adbe146108035761020f565b8063b88d4fde1461068d578063bedb86fb146106b6578063c2d05a6e146106df578063c66828621461070a5761020f565b806395d89b41116100e757806395d89b41146105c7578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063a7027357146106625761020f565b8063742a4c9b14610533578063853828b61461055c5780638da5cb5b1461057357806391b7f5ed1461059e5761020f565b80634a91d1b81161019b5780636352211e1161016a5780636352211e1461044e5780636c0360eb1461048b5780636d7c4a4b146104b657806370a08231146104df578063715018a61461051c5761020f565b80634a91d1b8146103c557806355f804b3146103f05780635b70ea9f146104195780635c975abb146104235761020f565b806318160ddd116101e257806318160ddd146102e25780631e7269c51461030d57806323b872dd1461034a578063375a069a1461037357806342842e0e1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612e3b565b61082e565b6040516102489190612e83565b60405180910390f35b34801561025d57600080fd5b50610266610910565b6040516102739190612f37565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f8f565b6109a2565b6040516102b09190612ffd565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613044565b610a1e565b005b3480156102ee57600080fd5b506102f7610b29565b6040516103049190613093565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906130ae565b610b40565b6040516103419190613093565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c91906130db565b610b52565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612f8f565b610b62565b005b3480156103a857600080fd5b506103c360048036038101906103be91906130db565b610c49565b005b3480156103d157600080fd5b506103da610c69565b6040516103e79190613093565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613263565b610c6f565b005b610421610d05565b005b34801561042f57600080fd5b50610438610e73565b6040516104459190612e83565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612f8f565b610e86565b6040516104829190612ffd565b60405180910390f35b34801561049757600080fd5b506104a0610e9c565b6040516104ad9190612f37565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612f8f565b610f2a565b005b3480156104eb57600080fd5b50610506600480360381019061050191906130ae565b610fb0565b6040516105139190613093565b60405180910390f35b34801561052857600080fd5b50610531611080565b005b34801561053f57600080fd5b5061055a60048036038101906105559190612f8f565b611108565b005b34801561056857600080fd5b5061057161118e565b005b34801561057f57600080fd5b50610588611266565b6040516105959190612ffd565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612f8f565b611290565b005b3480156105d357600080fd5b506105dc611316565b6040516105e99190612f37565b60405180910390f35b3480156105fe57600080fd5b506106076113a8565b6040516106149190613093565b60405180910390f35b61063760048036038101906106329190612f8f565b6113ae565b005b34801561064557600080fd5b50610660600480360381019061065b91906132d8565b611546565b005b34801561066e57600080fd5b506106776116be565b6040516106849190613093565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906133b9565b6116c4565b005b3480156106c257600080fd5b506106dd60048036038101906106d8919061343c565b611740565b005b3480156106eb57600080fd5b506106f46117d9565b6040516107019190612e83565b60405180910390f35b34801561071657600080fd5b5061071f6117ec565b60405161072c9190612f37565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190612f8f565b611825565b6040516107699190612f37565b60405180910390f35b34801561077e57600080fd5b50610787611904565b6040516107949190613093565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613469565b61190a565b6040516107d19190612e83565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc91906130ae565b61199e565b005b34801561080f57600080fd5b50610818611a96565b6040516108259190613093565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610909575061090882611a9c565b5b9050919050565b60606002805461091f906134d8565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906134d8565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad82611b06565b6109e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2982610e86565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab0611b54565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae25750610ae081610adb611b54565b61190a565b155b15610b19576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b24838383611b5c565b505050565b6000610b33611c0e565b6001546000540303905090565b6000610b4b82611c17565b9050919050565b610b5d838383611c81565b505050565b610b6a611b54565b73ffffffffffffffffffffffffffffffffffffffff16610b88611266565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613556565b60405180910390fd5b600b5481610bea610b29565b610bf491906135a5565b1115610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613647565b60405180910390fd5b610c46610c40611b54565b82612137565b50565b610c64838383604051806020016040528060008152506116c4565b505050565b600c5481565b610c77611b54565b73ffffffffffffffffffffffffffffffffffffffff16610c95611266565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613556565b60405180910390fd5b80600e9080519060200190610d01929190612ce9565b5050565b6000610d0f611b54565b9050610d196117d9565b610d4f576040517fe3184be600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60009054906101000a900460ff1615610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d96906136b3565b60405180910390fd5b6002610da9610b29565b610db391906135a5565b600b541015610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061371f565b60405180910390fd5b6002610e0282612155565b67ffffffffffffffff16610e1691906135a5565b6009541015610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906137b1565b60405180910390fd5b610e658160026121b5565b610e70816002612137565b50565b600f60009054906101000a900460ff1681565b6000610e9182612222565b600001519050919050565b600e8054610ea9906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed5906134d8565b8015610f225780601f10610ef757610100808354040283529160200191610f22565b820191906000526020600020905b815481529060010190602001808311610f0557829003601f168201915b505050505081565b610f32611b54565b73ffffffffffffffffffffffffffffffffffffffff16610f50611266565b73ffffffffffffffffffffffffffffffffffffffff1614610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613556565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611088611b54565b73ffffffffffffffffffffffffffffffffffffffff166110a6611266565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613556565b60405180910390fd5b61110660006124b1565b565b611110611b54565b73ffffffffffffffffffffffffffffffffffffffff1661112e611266565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90613556565b60405180910390fd5b80600c8190555050565b611196611b54565b73ffffffffffffffffffffffffffffffffffffffff166111b4611266565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613556565b60405180910390fd5b600047905060008111611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061381d565b60405180910390fd5b61126361125d611b54565b47612577565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611298611b54565b73ffffffffffffffffffffffffffffffffffffffff166112b6611266565b73ffffffffffffffffffffffffffffffffffffffff161461130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613556565b60405180910390fd5b80600d8190555050565b606060038054611325906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906134d8565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b5050505050905090565b600d5481565b60006113b8611b54565b9050600f60009054906101000a900460ff161561140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611401906136b3565b60405180910390fd5b81611413610b29565b61141d91906135a5565b600b541015611461576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114589061371f565b60405180910390fd5b600082116114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613889565b60405180910390fd5b81600a5410156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906138f5565b60405180910390fd5b34600d54836114f89190613915565b14611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906139bb565b60405180910390fd5b6115428183612137565b5050565b61154e611b54565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c0611b54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611b54565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b29190612e83565b60405180910390a35050565b60095481565b6116cf848484611c81565b6116ee8373ffffffffffffffffffffffffffffffffffffffff16612628565b801561170357506117018484848461264b565b155b1561173a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611748611b54565b73ffffffffffffffffffffffffffffffffffffffff16611766611266565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613556565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600c546117e6610b29565b10905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061183082611b06565b61186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613a27565b60405180910390fd5b6000600e805461187e906134d8565b90501161189a57604051806020016040528060008152506118fd565b600e6118a58361279c565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118ed93929190613b17565b6040516020818303038152906040525b9050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a6611b54565b73ffffffffffffffffffffffffffffffffffffffff166119c4611266565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613556565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190613bba565b60405180910390fd5b611a93816124b1565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b11611c0e565b11158015611b20575060005482105b8015611b4d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c8c82612222565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cf7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d18611b54565b73ffffffffffffffffffffffffffffffffffffffff161480611d475750611d4685611d41611b54565b61190a565b5b80611d8c5750611d55611b54565b73ffffffffffffffffffffffffffffffffffffffff16611d74846109a2565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dc5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e3985858560016128fd565b611e4560008487611b5c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120c55760005482146120c457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121308585856001612903565b5050505050565b612151828260405180602001604052806000815250612909565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61222a612d6f565b600082905080612238611c0e565b11158015612247575060005481105b1561247a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461235c5780925050506124ac565b5b60011561247757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124725780925050506124ac565b61235d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161259d90613c0b565b60006040518083038185875af1925050503d80600081146125da576040519150601f19603f3d011682016040523d82523d6000602084013e6125df565b606091505b5050905080612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a90613c6c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612671611b54565b8786866040518563ffffffff1660e01b81526004016126939493929190613ce1565b6020604051808303816000875af19250505080156126cf57506040513d601f19601f820116820180604052508101906126cc9190613d42565b60015b612749573d80600081146126ff576040519150601f19603f3d011682016040523d82523d6000602084013e612704565b606091505b50600081511415612741576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156127e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f8565b600082905060005b600082146128165780806127ff90613d6f565b915050600a8261280f9190613de7565b91506127ec565b60008167ffffffffffffffff81111561283257612831613138565b5b6040519080825280601f01601f1916602001820160405280156128645781602001600182028036833780820191505090505b5090505b600085146128f15760018261287d9190613e18565b9150600a8561288c9190613e4c565b603061289891906135a5565b60f81b8183815181106128ae576128ad613e7d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128ea9190613de7565b9450612868565b8093505050505b919050565b50505050565b50505050565b612916838383600161291b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612988576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129d060008683876128fd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b9a5750612b998773ffffffffffffffffffffffffffffffffffffffff16612628565b5b15612c60575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c0f600088848060010195508861264b565b612c45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ba0578260005414612c5b57600080fd5b612ccc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c61575b816000819055505050612ce26000868387612903565b5050505050565b828054612cf5906134d8565b90600052602060002090601f016020900481019282612d175760008555612d5e565b82601f10612d3057805160ff1916838001178555612d5e565b82800160010185558215612d5e579182015b82811115612d5d578251825591602001919060010190612d42565b5b509050612d6b9190612db2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612dcb576000816000905550600101612db3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1881612de3565b8114612e2357600080fd5b50565b600081359050612e3581612e0f565b92915050565b600060208284031215612e5157612e50612dd9565b5b6000612e5f84828501612e26565b91505092915050565b60008115159050919050565b612e7d81612e68565b82525050565b6000602082019050612e986000830184612e74565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed8578082015181840152602081019050612ebd565b83811115612ee7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0982612e9e565b612f138185612ea9565b9350612f23818560208601612eba565b612f2c81612eed565b840191505092915050565b60006020820190508181036000830152612f518184612efe565b905092915050565b6000819050919050565b612f6c81612f59565b8114612f7757600080fd5b50565b600081359050612f8981612f63565b92915050565b600060208284031215612fa557612fa4612dd9565b5b6000612fb384828501612f7a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fe782612fbc565b9050919050565b612ff781612fdc565b82525050565b60006020820190506130126000830184612fee565b92915050565b61302181612fdc565b811461302c57600080fd5b50565b60008135905061303e81613018565b92915050565b6000806040838503121561305b5761305a612dd9565b5b60006130698582860161302f565b925050602061307a85828601612f7a565b9150509250929050565b61308d81612f59565b82525050565b60006020820190506130a86000830184613084565b92915050565b6000602082840312156130c4576130c3612dd9565b5b60006130d28482850161302f565b91505092915050565b6000806000606084860312156130f4576130f3612dd9565b5b60006131028682870161302f565b93505060206131138682870161302f565b925050604061312486828701612f7a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61317082612eed565b810181811067ffffffffffffffff8211171561318f5761318e613138565b5b80604052505050565b60006131a2612dcf565b90506131ae8282613167565b919050565b600067ffffffffffffffff8211156131ce576131cd613138565b5b6131d782612eed565b9050602081019050919050565b82818337600083830152505050565b6000613206613201846131b3565b613198565b90508281526020810184848401111561322257613221613133565b5b61322d8482856131e4565b509392505050565b600082601f83011261324a5761324961312e565b5b813561325a8482602086016131f3565b91505092915050565b60006020828403121561327957613278612dd9565b5b600082013567ffffffffffffffff81111561329757613296612dde565b5b6132a384828501613235565b91505092915050565b6132b581612e68565b81146132c057600080fd5b50565b6000813590506132d2816132ac565b92915050565b600080604083850312156132ef576132ee612dd9565b5b60006132fd8582860161302f565b925050602061330e858286016132c3565b9150509250929050565b600067ffffffffffffffff82111561333357613332613138565b5b61333c82612eed565b9050602081019050919050565b600061335c61335784613318565b613198565b90508281526020810184848401111561337857613377613133565b5b6133838482856131e4565b509392505050565b600082601f8301126133a05761339f61312e565b5b81356133b0848260208601613349565b91505092915050565b600080600080608085870312156133d3576133d2612dd9565b5b60006133e18782880161302f565b94505060206133f28782880161302f565b935050604061340387828801612f7a565b925050606085013567ffffffffffffffff81111561342457613423612dde565b5b6134308782880161338b565b91505092959194509250565b60006020828403121561345257613451612dd9565b5b6000613460848285016132c3565b91505092915050565b600080604083850312156134805761347f612dd9565b5b600061348e8582860161302f565b925050602061349f8582860161302f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134f057607f821691505b60208210811415613504576135036134a9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613540602083612ea9565b915061354b8261350a565b602082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135b082612f59565b91506135bb83612f59565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f0576135ef613576565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c790000600082015250565b6000613631601e83612ea9565b915061363c826135fb565b602082019050919050565b6000602082019050818103600083015261366081613624565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b600061369d601083612ea9565b91506136a882613667565b602082019050919050565b600060208201905081810360008301526136cc81613690565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b6000613709601f83612ea9565b9150613714826136d3565b602082019050919050565b60006020820190508181036000830152613738816136fc565b9050919050565b7f4d696e7420776f756c6420657863656564206d61784672656550657257616c6c60008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b600061379b602383612ea9565b91506137a68261373f565b604082019050919050565b600060208201905081810360008301526137ca8161378e565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b6000613807601383612ea9565b9150613812826137d1565b602082019050919050565b60006020820190508181036000830152613836816137fa565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b6000613873601d83612ea9565b915061387e8261383d565b602082019050919050565b600060208201905081810360008301526138a281613866565b9050919050565b7f4d757374206d696e74206c657373207468616e206d617850657254782e000000600082015250565b60006138df601d83612ea9565b91506138ea826138a9565b602082019050919050565b6000602082019050818103600083015261390e816138d2565b9050919050565b600061392082612f59565b915061392b83612f59565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396457613963613576565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b60006139a5601383612ea9565b91506139b08261396f565b602082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b6000613a11601383612ea9565b9150613a1c826139db565b602082019050919050565b60006020820190508181036000830152613a4081613a04565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a74816134d8565b613a7e8186613a47565b94506001821660008114613a995760018114613aaa57613add565b60ff19831686528186019350613add565b613ab385613a52565b60005b83811015613ad557815481890152600182019150602081019050613ab6565b838801955050505b50505092915050565b6000613af182612e9e565b613afb8185613a47565b9350613b0b818560208601612eba565b80840191505092915050565b6000613b238286613a67565b9150613b2f8285613ae6565b9150613b3b8284613ae6565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ba4602683612ea9565b9150613baf82613b48565b604082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b600081905092915050565b50565b6000613bf5600083613bda565b9150613c0082613be5565b600082019050919050565b6000613c1682613be8565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613c56601883612ea9565b9150613c6182613c20565b602082019050919050565b60006020820190508181036000830152613c8581613c49565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cb382613c8c565b613cbd8185613c97565b9350613ccd818560208601612eba565b613cd681612eed565b840191505092915050565b6000608082019050613cf66000830187612fee565b613d036020830186612fee565b613d106040830185613084565b8181036060830152613d228184613ca8565b905095945050505050565b600081519050613d3c81612e0f565b92915050565b600060208284031215613d5857613d57612dd9565b5b6000613d6684828501613d2d565b91505092915050565b6000613d7a82612f59565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dad57613dac613576565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613df282612f59565b9150613dfd83612f59565b925082613e0d57613e0c613db8565b5b828204905092915050565b6000613e2382612f59565b9150613e2e83612f59565b925082821015613e4157613e40613576565b5b828203905092915050565b6000613e5782612f59565b9150613e6283612f59565b925082613e7257613e71613db8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208685023ed6fb6e6646e68ec4cf72f6af26e230534ceb15e83af58f7b47a9194564736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d654867354b53677746763156654d5033374556774563424a36676a4a4a6e725477547a457769724a4e33756b2f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063742a4c9b11610118578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd14610735578063d5abeb0114610772578063e985e9c51461079d578063f2fde38b146107da578063f968adbe146108035761020f565b8063b88d4fde1461068d578063bedb86fb146106b6578063c2d05a6e146106df578063c66828621461070a5761020f565b806395d89b41116100e757806395d89b41146105c7578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063a7027357146106625761020f565b8063742a4c9b14610533578063853828b61461055c5780638da5cb5b1461057357806391b7f5ed1461059e5761020f565b80634a91d1b81161019b5780636352211e1161016a5780636352211e1461044e5780636c0360eb1461048b5780636d7c4a4b146104b657806370a08231146104df578063715018a61461051c5761020f565b80634a91d1b8146103c557806355f804b3146103f05780635b70ea9f146104195780635c975abb146104235761020f565b806318160ddd116101e257806318160ddd146102e25780631e7269c51461030d57806323b872dd1461034a578063375a069a1461037357806342842e0e1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612e3b565b61082e565b6040516102489190612e83565b60405180910390f35b34801561025d57600080fd5b50610266610910565b6040516102739190612f37565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f8f565b6109a2565b6040516102b09190612ffd565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613044565b610a1e565b005b3480156102ee57600080fd5b506102f7610b29565b6040516103049190613093565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906130ae565b610b40565b6040516103419190613093565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c91906130db565b610b52565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612f8f565b610b62565b005b3480156103a857600080fd5b506103c360048036038101906103be91906130db565b610c49565b005b3480156103d157600080fd5b506103da610c69565b6040516103e79190613093565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613263565b610c6f565b005b610421610d05565b005b34801561042f57600080fd5b50610438610e73565b6040516104459190612e83565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612f8f565b610e86565b6040516104829190612ffd565b60405180910390f35b34801561049757600080fd5b506104a0610e9c565b6040516104ad9190612f37565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612f8f565b610f2a565b005b3480156104eb57600080fd5b50610506600480360381019061050191906130ae565b610fb0565b6040516105139190613093565b60405180910390f35b34801561052857600080fd5b50610531611080565b005b34801561053f57600080fd5b5061055a60048036038101906105559190612f8f565b611108565b005b34801561056857600080fd5b5061057161118e565b005b34801561057f57600080fd5b50610588611266565b6040516105959190612ffd565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612f8f565b611290565b005b3480156105d357600080fd5b506105dc611316565b6040516105e99190612f37565b60405180910390f35b3480156105fe57600080fd5b506106076113a8565b6040516106149190613093565b60405180910390f35b61063760048036038101906106329190612f8f565b6113ae565b005b34801561064557600080fd5b50610660600480360381019061065b91906132d8565b611546565b005b34801561066e57600080fd5b506106776116be565b6040516106849190613093565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af91906133b9565b6116c4565b005b3480156106c257600080fd5b506106dd60048036038101906106d8919061343c565b611740565b005b3480156106eb57600080fd5b506106f46117d9565b6040516107019190612e83565b60405180910390f35b34801561071657600080fd5b5061071f6117ec565b60405161072c9190612f37565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190612f8f565b611825565b6040516107699190612f37565b60405180910390f35b34801561077e57600080fd5b50610787611904565b6040516107949190613093565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613469565b61190a565b6040516107d19190612e83565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc91906130ae565b61199e565b005b34801561080f57600080fd5b50610818611a96565b6040516108259190613093565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610909575061090882611a9c565b5b9050919050565b60606002805461091f906134d8565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906134d8565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad82611b06565b6109e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2982610e86565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab0611b54565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae25750610ae081610adb611b54565b61190a565b155b15610b19576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b24838383611b5c565b505050565b6000610b33611c0e565b6001546000540303905090565b6000610b4b82611c17565b9050919050565b610b5d838383611c81565b505050565b610b6a611b54565b73ffffffffffffffffffffffffffffffffffffffff16610b88611266565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613556565b60405180910390fd5b600b5481610bea610b29565b610bf491906135a5565b1115610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613647565b60405180910390fd5b610c46610c40611b54565b82612137565b50565b610c64838383604051806020016040528060008152506116c4565b505050565b600c5481565b610c77611b54565b73ffffffffffffffffffffffffffffffffffffffff16610c95611266565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613556565b60405180910390fd5b80600e9080519060200190610d01929190612ce9565b5050565b6000610d0f611b54565b9050610d196117d9565b610d4f576040517fe3184be600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60009054906101000a900460ff1615610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d96906136b3565b60405180910390fd5b6002610da9610b29565b610db391906135a5565b600b541015610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061371f565b60405180910390fd5b6002610e0282612155565b67ffffffffffffffff16610e1691906135a5565b6009541015610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906137b1565b60405180910390fd5b610e658160026121b5565b610e70816002612137565b50565b600f60009054906101000a900460ff1681565b6000610e9182612222565b600001519050919050565b600e8054610ea9906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed5906134d8565b8015610f225780601f10610ef757610100808354040283529160200191610f22565b820191906000526020600020905b815481529060010190602001808311610f0557829003601f168201915b505050505081565b610f32611b54565b73ffffffffffffffffffffffffffffffffffffffff16610f50611266565b73ffffffffffffffffffffffffffffffffffffffff1614610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613556565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611018576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611088611b54565b73ffffffffffffffffffffffffffffffffffffffff166110a6611266565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613556565b60405180910390fd5b61110660006124b1565b565b611110611b54565b73ffffffffffffffffffffffffffffffffffffffff1661112e611266565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90613556565b60405180910390fd5b80600c8190555050565b611196611b54565b73ffffffffffffffffffffffffffffffffffffffff166111b4611266565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613556565b60405180910390fd5b600047905060008111611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061381d565b60405180910390fd5b61126361125d611b54565b47612577565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611298611b54565b73ffffffffffffffffffffffffffffffffffffffff166112b6611266565b73ffffffffffffffffffffffffffffffffffffffff161461130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390613556565b60405180910390fd5b80600d8190555050565b606060038054611325906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906134d8565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b5050505050905090565b600d5481565b60006113b8611b54565b9050600f60009054906101000a900460ff161561140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611401906136b3565b60405180910390fd5b81611413610b29565b61141d91906135a5565b600b541015611461576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114589061371f565b60405180910390fd5b600082116114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613889565b60405180910390fd5b81600a5410156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906138f5565b60405180910390fd5b34600d54836114f89190613915565b14611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906139bb565b60405180910390fd5b6115428183612137565b5050565b61154e611b54565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c0611b54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611b54565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b29190612e83565b60405180910390a35050565b60095481565b6116cf848484611c81565b6116ee8373ffffffffffffffffffffffffffffffffffffffff16612628565b801561170357506117018484848461264b565b155b1561173a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611748611b54565b73ffffffffffffffffffffffffffffffffffffffff16611766611266565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613556565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600c546117e6610b29565b10905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061183082611b06565b61186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613a27565b60405180910390fd5b6000600e805461187e906134d8565b90501161189a57604051806020016040528060008152506118fd565b600e6118a58361279c565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118ed93929190613b17565b6040516020818303038152906040525b9050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a6611b54565b73ffffffffffffffffffffffffffffffffffffffff166119c4611266565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613556565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190613bba565b60405180910390fd5b611a93816124b1565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b11611c0e565b11158015611b20575060005482105b8015611b4d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c8c82612222565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cf7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d18611b54565b73ffffffffffffffffffffffffffffffffffffffff161480611d475750611d4685611d41611b54565b61190a565b5b80611d8c5750611d55611b54565b73ffffffffffffffffffffffffffffffffffffffff16611d74846109a2565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dc5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e3985858560016128fd565b611e4560008487611b5c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120c55760005482146120c457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121308585856001612903565b5050505050565b612151828260405180602001604052806000815250612909565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61222a612d6f565b600082905080612238611c0e565b11158015612247575060005481105b1561247a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461235c5780925050506124ac565b5b60011561247757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124725780925050506124ac565b61235d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161259d90613c0b565b60006040518083038185875af1925050503d80600081146125da576040519150601f19603f3d011682016040523d82523d6000602084013e6125df565b606091505b5050905080612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a90613c6c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612671611b54565b8786866040518563ffffffff1660e01b81526004016126939493929190613ce1565b6020604051808303816000875af19250505080156126cf57506040513d601f19601f820116820180604052508101906126cc9190613d42565b60015b612749573d80600081146126ff576040519150601f19603f3d011682016040523d82523d6000602084013e612704565b606091505b50600081511415612741576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156127e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f8565b600082905060005b600082146128165780806127ff90613d6f565b915050600a8261280f9190613de7565b91506127ec565b60008167ffffffffffffffff81111561283257612831613138565b5b6040519080825280601f01601f1916602001820160405280156128645781602001600182028036833780820191505090505b5090505b600085146128f15760018261287d9190613e18565b9150600a8561288c9190613e4c565b603061289891906135a5565b60f81b8183815181106128ae576128ad613e7d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128ea9190613de7565b9450612868565b8093505050505b919050565b50505050565b50505050565b612916838383600161291b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612988576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129d060008683876128fd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b9a5750612b998773ffffffffffffffffffffffffffffffffffffffff16612628565b5b15612c60575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c0f600088848060010195508861264b565b612c45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ba0578260005414612c5b57600080fd5b612ccc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c61575b816000819055505050612ce26000868387612903565b5050505050565b828054612cf5906134d8565b90600052602060002090601f016020900481019282612d175760008555612d5e565b82601f10612d3057805160ff1916838001178555612d5e565b82800160010185558215612d5e579182015b82811115612d5d578251825591602001919060010190612d42565b5b509050612d6b9190612db2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612dcb576000816000905550600101612db3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1881612de3565b8114612e2357600080fd5b50565b600081359050612e3581612e0f565b92915050565b600060208284031215612e5157612e50612dd9565b5b6000612e5f84828501612e26565b91505092915050565b60008115159050919050565b612e7d81612e68565b82525050565b6000602082019050612e986000830184612e74565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed8578082015181840152602081019050612ebd565b83811115612ee7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0982612e9e565b612f138185612ea9565b9350612f23818560208601612eba565b612f2c81612eed565b840191505092915050565b60006020820190508181036000830152612f518184612efe565b905092915050565b6000819050919050565b612f6c81612f59565b8114612f7757600080fd5b50565b600081359050612f8981612f63565b92915050565b600060208284031215612fa557612fa4612dd9565b5b6000612fb384828501612f7a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fe782612fbc565b9050919050565b612ff781612fdc565b82525050565b60006020820190506130126000830184612fee565b92915050565b61302181612fdc565b811461302c57600080fd5b50565b60008135905061303e81613018565b92915050565b6000806040838503121561305b5761305a612dd9565b5b60006130698582860161302f565b925050602061307a85828601612f7a565b9150509250929050565b61308d81612f59565b82525050565b60006020820190506130a86000830184613084565b92915050565b6000602082840312156130c4576130c3612dd9565b5b60006130d28482850161302f565b91505092915050565b6000806000606084860312156130f4576130f3612dd9565b5b60006131028682870161302f565b93505060206131138682870161302f565b925050604061312486828701612f7a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61317082612eed565b810181811067ffffffffffffffff8211171561318f5761318e613138565b5b80604052505050565b60006131a2612dcf565b90506131ae8282613167565b919050565b600067ffffffffffffffff8211156131ce576131cd613138565b5b6131d782612eed565b9050602081019050919050565b82818337600083830152505050565b6000613206613201846131b3565b613198565b90508281526020810184848401111561322257613221613133565b5b61322d8482856131e4565b509392505050565b600082601f83011261324a5761324961312e565b5b813561325a8482602086016131f3565b91505092915050565b60006020828403121561327957613278612dd9565b5b600082013567ffffffffffffffff81111561329757613296612dde565b5b6132a384828501613235565b91505092915050565b6132b581612e68565b81146132c057600080fd5b50565b6000813590506132d2816132ac565b92915050565b600080604083850312156132ef576132ee612dd9565b5b60006132fd8582860161302f565b925050602061330e858286016132c3565b9150509250929050565b600067ffffffffffffffff82111561333357613332613138565b5b61333c82612eed565b9050602081019050919050565b600061335c61335784613318565b613198565b90508281526020810184848401111561337857613377613133565b5b6133838482856131e4565b509392505050565b600082601f8301126133a05761339f61312e565b5b81356133b0848260208601613349565b91505092915050565b600080600080608085870312156133d3576133d2612dd9565b5b60006133e18782880161302f565b94505060206133f28782880161302f565b935050604061340387828801612f7a565b925050606085013567ffffffffffffffff81111561342457613423612dde565b5b6134308782880161338b565b91505092959194509250565b60006020828403121561345257613451612dd9565b5b6000613460848285016132c3565b91505092915050565b600080604083850312156134805761347f612dd9565b5b600061348e8582860161302f565b925050602061349f8582860161302f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134f057607f821691505b60208210811415613504576135036134a9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613540602083612ea9565b915061354b8261350a565b602082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135b082612f59565b91506135bb83612f59565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135f0576135ef613576565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c790000600082015250565b6000613631601e83612ea9565b915061363c826135fb565b602082019050919050565b6000602082019050818103600083015261366081613624565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b600061369d601083612ea9565b91506136a882613667565b602082019050919050565b600060208201905081810360008301526136cc81613690565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b6000613709601f83612ea9565b9150613714826136d3565b602082019050919050565b60006020820190508181036000830152613738816136fc565b9050919050565b7f4d696e7420776f756c6420657863656564206d61784672656550657257616c6c60008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b600061379b602383612ea9565b91506137a68261373f565b604082019050919050565b600060208201905081810360008301526137ca8161378e565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b6000613807601383612ea9565b9150613812826137d1565b602082019050919050565b60006020820190508181036000830152613836816137fa565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b6000613873601d83612ea9565b915061387e8261383d565b602082019050919050565b600060208201905081810360008301526138a281613866565b9050919050565b7f4d757374206d696e74206c657373207468616e206d617850657254782e000000600082015250565b60006138df601d83612ea9565b91506138ea826138a9565b602082019050919050565b6000602082019050818103600083015261390e816138d2565b9050919050565b600061392082612f59565b915061392b83612f59565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396457613963613576565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b60006139a5601383612ea9565b91506139b08261396f565b602082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b6000613a11601383612ea9565b9150613a1c826139db565b602082019050919050565b60006020820190508181036000830152613a4081613a04565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a74816134d8565b613a7e8186613a47565b94506001821660008114613a995760018114613aaa57613add565b60ff19831686528186019350613add565b613ab385613a52565b60005b83811015613ad557815481890152600182019150602081019050613ab6565b838801955050505b50505092915050565b6000613af182612e9e565b613afb8185613a47565b9350613b0b818560208601612eba565b80840191505092915050565b6000613b238286613a67565b9150613b2f8285613ae6565b9150613b3b8284613ae6565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ba4602683612ea9565b9150613baf82613b48565b604082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b600081905092915050565b50565b6000613bf5600083613bda565b9150613c0082613be5565b600082019050919050565b6000613c1682613be8565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613c56601883612ea9565b9150613c6182613c20565b602082019050919050565b60006020820190508181036000830152613c8581613c49565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cb382613c8c565b613cbd8185613c97565b9350613ccd818560208601612eba565b613cd681612eed565b840191505092915050565b6000608082019050613cf66000830187612fee565b613d036020830186612fee565b613d106040830185613084565b8181036060830152613d228184613ca8565b905095945050505050565b600081519050613d3c81612e0f565b92915050565b600060208284031215613d5857613d57612dd9565b5b6000613d6684828501613d2d565b91505092915050565b6000613d7a82612f59565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dad57613dac613576565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613df282612f59565b9150613dfd83612f59565b925082613e0d57613e0c613db8565b5b828204905092915050565b6000613e2382612f59565b9150613e2e83612f59565b925082821015613e4157613e40613576565b5b828203905092915050565b6000613e5782612f59565b9150613e6283612f59565b925082613e7257613e71613db8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208685023ed6fb6e6646e68ec4cf72f6af26e230534ceb15e83af58f7b47a9194564736f6c634300080c0033

Deployed Bytecode Sourcemap

1360:3324:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522:305:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9138:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8701:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3771:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3427:109:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10003:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2908:194:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10244:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1592:33:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4295:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1967:442;;;:::i;:::-;;1844:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7443:125:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1675:107:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4061:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4891:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;3220:92:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3740:219;;;;;;;;;;;;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3967:86:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7804:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1632:34:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2417:483;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9414:287:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1477:35:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10500:369:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4203:84:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3110:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1789:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4403:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1554:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9772:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1519:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4522:305:3;4624:4;4676:25;4661:40;;;:11;:40;;;;:105;;;;4733:33;4718:48;;;:11;:48;;;;4661:105;:158;;;;4783:36;4807:11;4783:23;:36::i;:::-;4661:158;4641:178;;4522:305;;;:::o;7635:100::-;7689:13;7722:5;7715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7635:100;:::o;9138:204::-;9206:7;9231:16;9239:7;9231;:16::i;:::-;9226:64;;9256:34;;;;;;;;;;;;;;9226:64;9310:15;:24;9326:7;9310:24;;;;;;;;;;;;;;;;;;;;;9303:31;;9138:204;;;:::o;8701:371::-;8774:13;8790:24;8806:7;8790:15;:24::i;:::-;8774:40;;8835:5;8829:11;;:2;:11;;;8825:48;;;8849:24;;;;;;;;;;;;;;8825:48;8906:5;8890:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8916:37;8933:5;8940:12;:10;:12::i;:::-;8916:16;:37::i;:::-;8915:38;8890:63;8886:138;;;8977:35;;;;;;;;;;;;;;8886:138;9036:28;9045:2;9049:7;9058:5;9036:8;:28::i;:::-;8763:309;8701:371;;:::o;3771:303::-;3815:7;4040:15;:13;:15::i;:::-;4025:12;;4009:13;;:28;:46;4002:53;;3771:303;:::o;3427:109:12:-;3480:7;3507:21;3521:6;3507:13;:21::i;:::-;3500:28;;3427:109;;;:::o;10003:170:3:-;10137:28;10147:4;10153:2;10157:7;10137:9;:28::i;:::-;10003:170;;;:::o;2908:194:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3007:9:12::1;;2996:7;2980:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;2972:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:32;3072:12;:10;:12::i;:::-;3086:7;3062:9;:32::i;:::-;2908:194:::0;:::o;10244:185:3:-;10382:39;10399:4;10405:2;10409:7;10382:39;;;;;;;;;;;;:16;:39::i;:::-;10244:185;;;:::o;1592:33:12:-;;;;:::o;4295:100::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4379:8:12::1;4369:7;:18;;;;;;;;;;;;:::i;:::-;;4295:100:::0;:::o;1967:442::-;2015:15;2033:12;:10;:12::i;:::-;2015:30;;2060:12;:10;:12::i;:::-;2056:41;;2081:16;;;;;;;;;;;;;;2056:41;2117:6;;;;;;;;;;;2116:7;2108:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2192:1;2176:13;:11;:13::i;:::-;:17;;;;:::i;:::-;2163:9;;:30;;2155:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2296:1;2276:16;2284:7;2276;:16::i;:::-;2268:25;;:29;;;;:::i;:::-;2248:16;;:49;;2240:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;2350:19;2358:7;2367:1;2350:7;:19::i;:::-;2380:21;2390:7;2399:1;2380:9;:21::i;:::-;2004:405;1967:442::o;1844:25::-;;;;;;;;;;;;;:::o;7443:125:3:-;7507:7;7534:21;7547:7;7534:12;:21::i;:::-;:26;;;7527:33;;7443:125;;;:::o;1675:107:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4061:134::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4167:20:12::1;4148:16;:39;;;;4061:134:::0;:::o;4891:206:3:-;4955:7;4996:1;4979:19;;:5;:19;;;4975:60;;;5007:28;;;;;;;;;;;;;;4975:60;5061:12;:19;5074:5;5061:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5053:36;;5046:43;;4891:206;;;:::o;1714:103:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;3220:92:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3300:4:12::1;3286:11;:18;;;;3220:92:::0;:::o;3740:219::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3791:15:12::1;3809:21;3791:39;;3859:1;3849:7;:11;3841:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;3905:46;3915:12;:10;:12::i;:::-;3929:21;3905:9;:46::i;:::-;3780:179;3740:219::o:0;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;3967:86:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4039:6:12::1;4031:5;:14;;;;3967:86:::0;:::o;7804:104:3:-;7860:13;7893:7;7886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804:104;:::o;1632:34:12:-;;;;:::o;2417:483::-;2476:15;2494:12;:10;:12::i;:::-;2476:30;;2526:6;;;;;;;;;;;2525:7;2517:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2601:7;2585:13;:11;:13::i;:::-;:23;;;;:::i;:::-;2572:9;;:36;;2564:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2673:1;2663:7;:11;2655:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;2739:7;2727:8;;:19;;2719:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2819:9;2810:5;;2800:7;:15;;;;:::i;:::-;:28;2792:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2865:27;2875:7;2884;2865:9;:27::i;:::-;2465:435;2417:483;:::o;9414:287:3:-;9525:12;:10;:12::i;:::-;9513:24;;:8;:24;;;9509:54;;;9546:17;;;;;;;;;;;;;;9509:54;9621:8;9576:18;:32;9595:12;:10;:12::i;:::-;9576:32;;;;;;;;;;;;;;;:42;9609:8;9576:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9674:8;9645:48;;9660:12;:10;:12::i;:::-;9645:48;;;9684:8;9645:48;;;;;;:::i;:::-;;;;;;;;9414:287;;:::o;1477:35:12:-;;;;:::o;10500:369:3:-;10667:28;10677:4;10683:2;10687:7;10667:9;:28::i;:::-;10710:15;:2;:13;;;:15::i;:::-;:76;;;;;10730:56;10761:4;10767:2;10771:7;10780:5;10730:30;:56::i;:::-;10729:57;10710:76;10706:156;;;10810:40;;;;;;;;;;;;;;10706:156;10500:369;;;;:::o;4203:84:12:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4273:6:12::1;4264;;:15;;;;;;;;;;;;;;;;;;4203:84:::0;:::o;3110:102::-;3153:4;3193:11;;3177:13;:11;:13::i;:::-;:27;3170:34;;3110:102;:::o;1789:46::-;;;;;;;;;;;;;;;;;;;:::o;4403:278::-;4469:13;4503:17;4511:8;4503:7;:17::i;:::-;4495:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4586:1;4568:7;4562:21;;;;;:::i;:::-;;;:25;:111;;;;;;;;;;;;;;;;;4616:7;4625:26;4642:8;4625:16;:26::i;:::-;4653:13;;;;;;;;;;;;;;;;;4598:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4562:111;4555:118;;4403:278;;;:::o;1554:31::-;;;;:::o;9772:164:3:-;9869:4;9893:18;:25;9912:5;9893:25;;;;;;;;;;;;;;;:35;9919:8;9893:35;;;;;;;;;;;;;;;;;;;;;;;;;9886:42;;9772:164;;;;:::o;1972:201:9:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;1519:28:12:-;;;;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;11124:187:3:-;11181:4;11224:7;11205:15;:13;:15::i;:::-;:26;;:53;;;;;11245:13;;11235:7;:23;11205:53;:98;;;;;11276:11;:20;11288:7;11276:20;;;;;;;;;;;:27;;;;;;;;;;;;11275:28;11205:98;11198:105;;11124:187;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;19294:196:3:-;19436:2;19409:15;:24;19425:7;19409:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19474:7;19470:2;19454:28;;19463:5;19454:28;;;;;;;;;;;;19294:196;;;:::o;3318:101:12:-;3383:7;3410:1;3403:8;;3318:101;:::o;5179:137:3:-;5240:7;5275:12;:19;5288:5;5275:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5267:41;;5260:48;;5179:137;;;:::o;14237:2130::-;14352:35;14390:21;14403:7;14390:12;:21::i;:::-;14352:59;;14450:4;14428:26;;:13;:18;;;:26;;;14424:67;;14463:28;;;;;;;;;;;;;;14424:67;14504:22;14546:4;14530:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;14567:36;14584:4;14590:12;:10;:12::i;:::-;14567:16;:36::i;:::-;14530:73;:126;;;;14644:12;:10;:12::i;:::-;14620:36;;:20;14632:7;14620:11;:20::i;:::-;:36;;;14530:126;14504:153;;14675:17;14670:66;;14701:35;;;;;;;;;;;;;;14670:66;14765:1;14751:16;;:2;:16;;;14747:52;;;14776:23;;;;;;;;;;;;;;14747:52;14812:43;14834:4;14840:2;14844:7;14853:1;14812:21;:43::i;:::-;14920:35;14937:1;14941:7;14950:4;14920:8;:35::i;:::-;15281:1;15251:12;:18;15264:4;15251:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15325:1;15297:12;:16;15310:2;15297:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15343:31;15377:11;:20;15389:7;15377:20;;;;;;;;;;;15343:54;;15428:2;15412:8;:13;;;:18;;;;;;;;;;;;;;;;;;15478:15;15445:8;:23;;;:49;;;;;;;;;;;;;;;;;;15746:19;15778:1;15768:7;:11;15746:33;;15794:31;15828:11;:24;15840:11;15828:24;;;;;;;;;;;15794:58;;15896:1;15871:27;;:8;:13;;;;;;;;;;;;:27;;;15867:384;;;16081:13;;16066:11;:28;16062:174;;16135:4;16119:8;:13;;;:20;;;;;;;;;;;;;;;;;;16188:13;:28;;;16162:8;:23;;;:54;;;;;;;;;;;;;;;;;;16062:174;15867:384;15226:1036;;;16298:7;16294:2;16279:27;;16288:4;16279:27;;;;;;;;;;;;16317:42;16338:4;16344:2;16348:7;16357:1;16317:20;:42::i;:::-;14341:2026;;14237:2130;;;:::o;11319:104::-;11388:27;11398:2;11402:8;11388:27;;;;;;;;;;;;:9;:27::i;:::-;11319:104;;:::o;5669:112::-;5724:6;5750:12;:19;5763:5;5750:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;5743:30;;5669:112;;;:::o;5969:101::-;6059:3;6033:12;:19;6046:5;6033:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;5969:101;;:::o;6272:1109::-;6334:21;;:::i;:::-;6368:12;6383:7;6368:22;;6451:4;6432:15;:13;:15::i;:::-;:23;;:47;;;;;6466:13;;6459:4;:20;6432:47;6428:886;;;6500:31;6534:11;:17;6546:4;6534:17;;;;;;;;;;;6500:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6575:9;:16;;;6570:729;;6646:1;6620:28;;:9;:14;;;:28;;;6616:101;;6684:9;6677:16;;;;;;6616:101;7019:261;7026:4;7019:261;;;7059:6;;;;;;;;7104:11;:17;7116:4;7104:17;;;;;;;;;;;7092:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7178:1;7152:28;;:9;:14;;;:28;;;7148:109;;7220:9;7213:16;;;;;;7148:109;7019:261;;;6570:729;6481:833;6428:886;7342:31;;;;;;;;;;;;;;6272:1109;;;;:::o;2333:191:9:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;3544:188:12:-;3618:12;3636:8;:13;;3657:7;3636:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3617:52;;;3688:7;3680:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;3606:126;3544:188;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;19982:667:3:-;20145:4;20182:2;20166:36;;;20203:12;:10;:12::i;:::-;20217:4;20223:7;20232:5;20166:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20162:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20417:1;20400:6;:13;:18;20396:235;;;20446:40;;;;;;;;;;;;;;20396:235;20589:6;20583:13;20574:6;20570:2;20566:15;20559:38;20162:480;20295:45;;;20285:55;;;:6;:55;;;;20278:62;;;19982:667;;;;;;:::o;342:723:11:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21297:159:3:-;;;;;:::o;22115:158::-;;;;;:::o;11786:163::-;11909:32;11915:2;11919:8;11929:5;11936:4;11909:5;:32::i;:::-;11786:163;;;:::o;12208:1775::-;12347:20;12370:13;;12347:36;;12412:1;12398:16;;:2;:16;;;12394:48;;;12423:19;;;;;;;;;;;;;;12394:48;12469:1;12457:8;:13;12453:44;;;12479:18;;;;;;;;;;;;;;12453:44;12510:61;12540:1;12544:2;12548:12;12562:8;12510:21;:61::i;:::-;12883:8;12848:12;:16;12861:2;12848:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12947:8;12907:12;:16;12920:2;12907:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13006:2;12973:11;:25;12985:12;12973:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13073:15;13023:11;:25;13035:12;13023:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13106:20;13129:12;13106:35;;13156:11;13185:8;13170:12;:23;13156:37;;13214:4;:23;;;;;13222:15;:2;:13;;;:15::i;:::-;13214:23;13210:641;;;13258:314;13314:12;13310:2;13289:38;;13306:1;13289:38;;;;;;;;;;;;13355:69;13394:1;13398:2;13402:14;;;;;;13418:5;13355:30;:69::i;:::-;13350:174;;13460:40;;;;;;;;;;;;;;13350:174;13567:3;13551:12;:19;;13258:314;;13653:12;13636:13;;:29;13632:43;;13667:8;;;13632:43;13210:641;;;13716:120;13772:14;;;;;;13768:2;13747:40;;13764:1;13747:40;;;;;;;;;;;;13831:3;13815:12;:19;;13716:120;;13210:641;13881:12;13865:13;:28;;;;12823:1082;;13915:60;13944:1;13948:2;13952:12;13966:8;13915:20;:60::i;:::-;12336:1647;12208:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:13:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:180::-;13995:77;13992:1;13985:88;14092:4;14089:1;14082:15;14116:4;14113:1;14106:15;14133:305;14173:3;14192:20;14210:1;14192:20;:::i;:::-;14187:25;;14226:20;14244:1;14226:20;:::i;:::-;14221:25;;14380:1;14312:66;14308:74;14305:1;14302:81;14299:107;;;14386:18;;:::i;:::-;14299:107;14430:1;14427;14423:9;14416:16;;14133:305;;;;:::o;14444:180::-;14584:32;14580:1;14572:6;14568:14;14561:56;14444:180;:::o;14630:366::-;14772:3;14793:67;14857:2;14852:3;14793:67;:::i;:::-;14786:74;;14869:93;14958:3;14869:93;:::i;:::-;14987:2;14982:3;14978:12;14971:19;;14630:366;;;:::o;15002:419::-;15168:4;15206:2;15195:9;15191:18;15183:26;;15255:9;15249:4;15245:20;15241:1;15230:9;15226:17;15219:47;15283:131;15409:4;15283:131;:::i;:::-;15275:139;;15002:419;;;:::o;15427:166::-;15567:18;15563:1;15555:6;15551:14;15544:42;15427:166;:::o;15599:366::-;15741:3;15762:67;15826:2;15821:3;15762:67;:::i;:::-;15755:74;;15838:93;15927:3;15838:93;:::i;:::-;15956:2;15951:3;15947:12;15940:19;;15599:366;;;:::o;15971:419::-;16137:4;16175:2;16164:9;16160:18;16152:26;;16224:9;16218:4;16214:20;16210:1;16199:9;16195:17;16188:47;16252:131;16378:4;16252:131;:::i;:::-;16244:139;;15971:419;;;:::o;16396:181::-;16536:33;16532:1;16524:6;16520:14;16513:57;16396:181;:::o;16583:366::-;16725:3;16746:67;16810:2;16805:3;16746:67;:::i;:::-;16739:74;;16822:93;16911:3;16822:93;:::i;:::-;16940:2;16935:3;16931:12;16924:19;;16583:366;;;:::o;16955:419::-;17121:4;17159:2;17148:9;17144:18;17136:26;;17208:9;17202:4;17198:20;17194:1;17183:9;17179:17;17172:47;17236:131;17362:4;17236:131;:::i;:::-;17228:139;;16955:419;;;:::o;17380:222::-;17520:34;17516:1;17508:6;17504:14;17497:58;17589:5;17584:2;17576:6;17572:15;17565:30;17380:222;:::o;17608:366::-;17750:3;17771:67;17835:2;17830:3;17771:67;:::i;:::-;17764:74;;17847:93;17936:3;17847:93;:::i;:::-;17965:2;17960:3;17956:12;17949:19;;17608:366;;;:::o;17980:419::-;18146:4;18184:2;18173:9;18169:18;18161:26;;18233:9;18227:4;18223:20;18219:1;18208:9;18204:17;18197:47;18261:131;18387:4;18261:131;:::i;:::-;18253:139;;17980:419;;;:::o;18405:169::-;18545:21;18541:1;18533:6;18529:14;18522:45;18405:169;:::o;18580:366::-;18722:3;18743:67;18807:2;18802:3;18743:67;:::i;:::-;18736:74;;18819:93;18908:3;18819:93;:::i;:::-;18937:2;18932:3;18928:12;18921:19;;18580:366;;;:::o;18952:419::-;19118:4;19156:2;19145:9;19141:18;19133:26;;19205:9;19199:4;19195:20;19191:1;19180:9;19176:17;19169:47;19233:131;19359:4;19233:131;:::i;:::-;19225:139;;18952:419;;;:::o;19377:179::-;19517:31;19513:1;19505:6;19501:14;19494:55;19377:179;:::o;19562:366::-;19704:3;19725:67;19789:2;19784:3;19725:67;:::i;:::-;19718:74;;19801:93;19890:3;19801:93;:::i;:::-;19919:2;19914:3;19910:12;19903:19;;19562:366;;;:::o;19934:419::-;20100:4;20138:2;20127:9;20123:18;20115:26;;20187:9;20181:4;20177:20;20173:1;20162:9;20158:17;20151:47;20215:131;20341:4;20215:131;:::i;:::-;20207:139;;19934:419;;;:::o;20359:179::-;20499:31;20495:1;20487:6;20483:14;20476:55;20359:179;:::o;20544:366::-;20686:3;20707:67;20771:2;20766:3;20707:67;:::i;:::-;20700:74;;20783:93;20872:3;20783:93;:::i;:::-;20901:2;20896:3;20892:12;20885:19;;20544:366;;;:::o;20916:419::-;21082:4;21120:2;21109:9;21105:18;21097:26;;21169:9;21163:4;21159:20;21155:1;21144:9;21140:17;21133:47;21197:131;21323:4;21197:131;:::i;:::-;21189:139;;20916:419;;;:::o;21341:348::-;21381:7;21404:20;21422:1;21404:20;:::i;:::-;21399:25;;21438:20;21456:1;21438:20;:::i;:::-;21433:25;;21626:1;21558:66;21554:74;21551:1;21548:81;21543:1;21536:9;21529:17;21525:105;21522:131;;;21633:18;;:::i;:::-;21522:131;21681:1;21678;21674:9;21663:20;;21341:348;;;;:::o;21695:169::-;21835:21;21831:1;21823:6;21819:14;21812:45;21695:169;:::o;21870:366::-;22012:3;22033:67;22097:2;22092:3;22033:67;:::i;:::-;22026:74;;22109:93;22198:3;22109:93;:::i;:::-;22227:2;22222:3;22218:12;22211:19;;21870:366;;;:::o;22242:419::-;22408:4;22446:2;22435:9;22431:18;22423:26;;22495:9;22489:4;22485:20;22481:1;22470:9;22466:17;22459:47;22523:131;22649:4;22523:131;:::i;:::-;22515:139;;22242:419;;;:::o;22667:169::-;22807:21;22803:1;22795:6;22791:14;22784:45;22667:169;:::o;22842:366::-;22984:3;23005:67;23069:2;23064:3;23005:67;:::i;:::-;22998:74;;23081:93;23170:3;23081:93;:::i;:::-;23199:2;23194:3;23190:12;23183:19;;22842:366;;;:::o;23214:419::-;23380:4;23418:2;23407:9;23403:18;23395:26;;23467:9;23461:4;23457:20;23453:1;23442:9;23438:17;23431:47;23495:131;23621:4;23495:131;:::i;:::-;23487:139;;23214:419;;;:::o;23639:148::-;23741:11;23778:3;23763:18;;23639:148;;;;:::o;23793:141::-;23842:4;23865:3;23857:11;;23888:3;23885:1;23878:14;23922:4;23919:1;23909:18;23901:26;;23793:141;;;:::o;23964:845::-;24067:3;24104:5;24098:12;24133:36;24159:9;24133:36;:::i;:::-;24185:89;24267:6;24262:3;24185:89;:::i;:::-;24178:96;;24305:1;24294:9;24290:17;24321:1;24316:137;;;;24467:1;24462:341;;;;24283:520;;24316:137;24400:4;24396:9;24385;24381:25;24376:3;24369:38;24436:6;24431:3;24427:16;24420:23;;24316:137;;24462:341;24529:38;24561:5;24529:38;:::i;:::-;24589:1;24603:154;24617:6;24614:1;24611:13;24603:154;;;24691:7;24685:14;24681:1;24676:3;24672:11;24665:35;24741:1;24732:7;24728:15;24717:26;;24639:4;24636:1;24632:12;24627:17;;24603:154;;;24786:6;24781:3;24777:16;24770:23;;24469:334;;24283:520;;24071:738;;23964:845;;;;:::o;24815:377::-;24921:3;24949:39;24982:5;24949:39;:::i;:::-;25004:89;25086:6;25081:3;25004:89;:::i;:::-;24997:96;;25102:52;25147:6;25142:3;25135:4;25128:5;25124:16;25102:52;:::i;:::-;25179:6;25174:3;25170:16;25163:23;;24925:267;24815:377;;;;:::o;25198:589::-;25423:3;25445:92;25533:3;25524:6;25445:92;:::i;:::-;25438:99;;25554:95;25645:3;25636:6;25554:95;:::i;:::-;25547:102;;25666:95;25757:3;25748:6;25666:95;:::i;:::-;25659:102;;25778:3;25771:10;;25198:589;;;;;;:::o;25793:225::-;25933:34;25929:1;25921:6;25917:14;25910:58;26002:8;25997:2;25989:6;25985:15;25978:33;25793:225;:::o;26024:366::-;26166:3;26187:67;26251:2;26246:3;26187:67;:::i;:::-;26180:74;;26263:93;26352:3;26263:93;:::i;:::-;26381:2;26376:3;26372:12;26365:19;;26024:366;;;:::o;26396:419::-;26562:4;26600:2;26589:9;26585:18;26577:26;;26649:9;26643:4;26639:20;26635:1;26624:9;26620:17;26613:47;26677:131;26803:4;26677:131;:::i;:::-;26669:139;;26396:419;;;:::o;26821:147::-;26922:11;26959:3;26944:18;;26821:147;;;;:::o;26974:114::-;;:::o;27094:398::-;27253:3;27274:83;27355:1;27350:3;27274:83;:::i;:::-;27267:90;;27366:93;27455:3;27366:93;:::i;:::-;27484:1;27479:3;27475:11;27468:18;;27094:398;;;:::o;27498:379::-;27682:3;27704:147;27847:3;27704:147;:::i;:::-;27697:154;;27868:3;27861:10;;27498:379;;;:::o;27883:174::-;28023:26;28019:1;28011:6;28007:14;28000:50;27883:174;:::o;28063:366::-;28205:3;28226:67;28290:2;28285:3;28226:67;:::i;:::-;28219:74;;28302:93;28391:3;28302:93;:::i;:::-;28420:2;28415:3;28411:12;28404:19;;28063:366;;;:::o;28435:419::-;28601:4;28639:2;28628:9;28624:18;28616:26;;28688:9;28682:4;28678:20;28674:1;28663:9;28659:17;28652:47;28716:131;28842:4;28716:131;:::i;:::-;28708:139;;28435:419;;;:::o;28860:98::-;28911:6;28945:5;28939:12;28929:22;;28860:98;;;:::o;28964:168::-;29047:11;29081:6;29076:3;29069:19;29121:4;29116:3;29112:14;29097:29;;28964:168;;;;:::o;29138:360::-;29224:3;29252:38;29284:5;29252:38;:::i;:::-;29306:70;29369:6;29364:3;29306:70;:::i;:::-;29299:77;;29385:52;29430:6;29425:3;29418:4;29411:5;29407:16;29385:52;:::i;:::-;29462:29;29484:6;29462:29;:::i;:::-;29457:3;29453:39;29446:46;;29228:270;29138:360;;;;:::o;29504:640::-;29699:4;29737:3;29726:9;29722:19;29714:27;;29751:71;29819:1;29808:9;29804:17;29795:6;29751:71;:::i;:::-;29832:72;29900:2;29889:9;29885:18;29876:6;29832:72;:::i;:::-;29914;29982:2;29971:9;29967:18;29958:6;29914:72;:::i;:::-;30033:9;30027:4;30023:20;30018:2;30007:9;30003:18;29996:48;30061:76;30132:4;30123:6;30061:76;:::i;:::-;30053:84;;29504:640;;;;;;;:::o;30150:141::-;30206:5;30237:6;30231:13;30222:22;;30253:32;30279:5;30253:32;:::i;:::-;30150:141;;;;:::o;30297:349::-;30366:6;30415:2;30403:9;30394:7;30390:23;30386:32;30383:119;;;30421:79;;:::i;:::-;30383:119;30541:1;30566:63;30621:7;30612:6;30601:9;30597:22;30566:63;:::i;:::-;30556:73;;30512:127;30297:349;;;;:::o;30652:233::-;30691:3;30714:24;30732:5;30714:24;:::i;:::-;30705:33;;30760:66;30753:5;30750:77;30747:103;;;30830:18;;:::i;:::-;30747:103;30877:1;30870:5;30866:13;30859:20;;30652:233;;;:::o;30891:180::-;30939:77;30936:1;30929:88;31036:4;31033:1;31026:15;31060:4;31057:1;31050:15;31077:185;31117:1;31134:20;31152:1;31134:20;:::i;:::-;31129:25;;31168:20;31186:1;31168:20;:::i;:::-;31163:25;;31207:1;31197:35;;31212:18;;:::i;:::-;31197:35;31254:1;31251;31247:9;31242:14;;31077:185;;;;:::o;31268:191::-;31308:4;31328:20;31346:1;31328:20;:::i;:::-;31323:25;;31362:20;31380:1;31362:20;:::i;:::-;31357:25;;31401:1;31398;31395:8;31392:34;;;31406:18;;:::i;:::-;31392:34;31451:1;31448;31444:9;31436:17;;31268:191;;;;:::o;31465:176::-;31497:1;31514:20;31532:1;31514:20;:::i;:::-;31509:25;;31548:20;31566:1;31548:20;:::i;:::-;31543:25;;31587:1;31577:35;;31592:18;;:::i;:::-;31577:35;31633:1;31630;31626:9;31621:14;;31465:176;;;;:::o;31647:180::-;31695:77;31692:1;31685:88;31792:4;31789:1;31782:15;31816:4;31813:1;31806:15

Swarm Source

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