ETH Price: $3,479.17 (+3.21%)
Gas: 4 Gwei

Token

Rice Courier NFT (RiceCNFT)
 

Overview

Max Total Supply

2,325 RiceCNFT

Holders

475

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 RiceCNFT
0xba5626a31c4844ac03ddc5e93aa7fa3045d43bc5
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:
RiceCourier

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 11 of 13: RiceCourier.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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

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

    uint256 public maxPerTx = 20;
    uint256 public maxPerTxFree = 3;
    uint256 public maxSupply = 2500;
    uint256 public freeMintMax = 2223;
    uint256 public price = 0.0025 ether;

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

    bool public paused = true;
    error freeMintIsOver();

    constructor() ERC721A("Rice Courier NFT", "RiceCNFT") {
         _safeMint(msg.sender, 5);
    }

    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.");
        
        if(freeMintMax >= totalSupply()){
            require(maxPerTxFree >= _amount , "Minting would exceed maxPerTxFree.");
        }else{
            require(maxPerTx >= _amount , "Minting would exceed maxPerTx.");
            require(_amount * price == msg.value, "Insufficient value.");
        }
        _safeMint(_caller, _amount);
    }

    function setMaxFreeMint(uint256 _max) public onlyOwner {
        freeMintMax = _max;
    }

    function setMaxTrxForAll(uint256 _max) public onlyOwner {
        maxPerTx = _max;
    }

    function setMaxTrxFree(uint256 _max) public onlyOwner {
        maxPerTxFree = _max;
    }

    function setMaxxSupply(uint256 _max) public onlyOwner {
        maxSupply = _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 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 12 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 13 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":[],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxFree","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":"_max","type":"uint256"}],"name":"setMaxTrxForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxTrxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxxSupply","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"}]

608060405260146009556003600a556109c4600b556108af600c556608e1bc9bf04000600d556040518060800160405280605181526020016200486660519139600e90805190602001906200005692919062000813565b506001600f60006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280601081526020017f5269636520436f7572696572204e4654000000000000000000000000000000008152506040518060400160405280600881526020017f52696365434e465400000000000000000000000000000000000000000000000081525081600290805190602001906200010492919062000813565b5080600390805190602001906200011d92919062000813565b506200012e6200016f60201b60201c565b6000819055505050620001566200014a6200017860201b60201c565b6200018060201b60201c565b620001693360056200024660201b60201c565b62000b14565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002688282604051806020016040528060008152506200026c60201b60201c565b5050565b6200028183838360016200028660201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620002f4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000330576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200034560008683876200068260201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200051d57506200051c8773ffffffffffffffffffffffffffffffffffffffff166200068860201b620019c91760201c565b5b15620005f0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200059b6000888480600101955088620006ab60201b60201c565b620005d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141562000524578260005414620005ea57600080fd5b6200065d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620005f1575b8160008190555050506200067b60008683876200080d60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006d96200017860201b60201c565b8786866040518563ffffffff1660e01b8152600401620006fd9493929190620009c7565b6020604051808303816000875af19250505080156200073c57506040513d601f19601f8201168201806040525081019062000739919062000a7d565b60015b620007ba573d80600081146200076f576040519150601f19603f3d011682016040523d82523d6000602084013e62000774565b606091505b50600081511415620007b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620008219062000ade565b90600052602060002090601f01602090048101928262000845576000855562000891565b82601f106200086057805160ff191683800117855562000891565b8280016001018555821562000891579182015b828111156200089057825182559160200191906001019062000873565b5b509050620008a09190620008a4565b5090565b5b80821115620008bf576000816000905550600101620008a5565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008f082620008c3565b9050919050565b6200090281620008e3565b82525050565b6000819050919050565b6200091d8162000908565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200095f57808201518184015260208101905062000942565b838111156200096f576000848401525b50505050565b6000601f19601f8301169050919050565b6000620009938262000923565b6200099f81856200092e565b9350620009b18185602086016200093f565b620009bc8162000975565b840191505092915050565b6000608082019050620009de6000830187620008f7565b620009ed6020830186620008f7565b620009fc604083018562000912565b818103606083015262000a10818462000986565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000a578162000a20565b811462000a6357600080fd5b50565b60008151905062000a778162000a4c565b92915050565b60006020828403121562000a965762000a9562000a1b565b5b600062000aa68482850162000a66565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000af757607f821691505b6020821081141562000b0e5762000b0d62000aaf565b5b50919050565b613d428062000b246000396000f3fe6080604052600436106102045760003560e01c8063742a4c9b11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063e985e9c51461075d578063f2fde38b1461079a578063f6a95709146107c3578063f968adbe146107ec57610204565b8063b88d4fde14610678578063bedb86fb146106a1578063c6682862146106ca578063c87b56dd146106f557610204565b806395d89b41116100e757806395d89b41146105b2578063980a70d2146105dd578063a035b1fe14610608578063a0712d6814610633578063a22cb4651461064f57610204565b8063742a4c9b1461051e578063853828b6146105475780638da5cb5b1461055e57806391b7f5ed1461058957610204565b80633f7ffac91161019b5780635c975abb1161016a5780635c975abb146104375780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633f7ffac91461039157806342842e0e146103ba5780634a91d1b8146103e357806355f804b31461040e57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631e7269c51461032b57806323b872dd1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc1461027157806308a5d16a146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612c9b565b610817565b60405161023d9190612ce3565b60405180910390f35b34801561025257600080fd5b5061025b6108f9565b6040516102689190612d97565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612def565b61098b565b6040516102a59190612e5d565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612def565b610a07565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612ea4565b610a8d565b005b34801561030c57600080fd5b50610315610b98565b6040516103229190612ef3565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612f0e565b610baf565b60405161035f9190612ef3565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612f3b565b610bc1565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612def565b610bd1565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612f3b565b610c57565b005b3480156103ef57600080fd5b506103f8610c77565b6040516104059190612ef3565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906130c3565b610c7d565b005b34801561044357600080fd5b5061044c610d13565b6040516104599190612ce3565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190612def565b610d26565b6040516104969190612e5d565b60405180910390f35b3480156104ab57600080fd5b506104b4610d3c565b6040516104c19190612d97565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612f0e565b610dca565b6040516104fe9190612ef3565b60405180910390f35b34801561051357600080fd5b5061051c610e9a565b005b34801561052a57600080fd5b5061054560048036038101906105409190612def565b610f22565b005b34801561055357600080fd5b5061055c610fa8565b005b34801561056a57600080fd5b50610573611080565b6040516105809190612e5d565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612def565b6110aa565b005b3480156105be57600080fd5b506105c7611130565b6040516105d49190612d97565b60405180910390f35b3480156105e957600080fd5b506105f26111c2565b6040516105ff9190612ef3565b60405180910390f35b34801561061457600080fd5b5061061d6111c8565b60405161062a9190612ef3565b60405180910390f35b61064d60048036038101906106489190612def565b6111ce565b005b34801561065b57600080fd5b5061067660048036038101906106719190613138565b611406565b005b34801561068457600080fd5b5061069f600480360381019061069a9190613219565b61157e565b005b3480156106ad57600080fd5b506106c860048036038101906106c3919061329c565b6115fa565b005b3480156106d657600080fd5b506106df611693565b6040516106ec9190612d97565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190612def565b6116cc565b6040516107299190612d97565b60405180910390f35b34801561073e57600080fd5b506107476117ab565b6040516107549190612ef3565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906132c9565b6117b1565b6040516107919190612ce3565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190612f0e565b611845565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190612def565b61193d565b005b3480156107f857600080fd5b506108016119c3565b60405161080e9190612ef3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f1826119ec565b5b9050919050565b60606002805461090890613338565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613338565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611a56565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a0f611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610a2d611080565b73ffffffffffffffffffffffffffffffffffffffff1614610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906133b6565b60405180910390fd5b8060098190555050565b6000610a9882610d26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b00576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1f611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b515750610b4f81610b4a611aa4565b6117b1565b155b15610b88576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b93838383611aac565b505050565b6000610ba2611b5e565b6001546000540303905090565b6000610bba82611b67565b9050919050565b610bcc838383611bd1565b505050565b610bd9611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610bf7611080565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c44906133b6565b60405180910390fd5b80600b8190555050565b610c728383836040518060200160405280600081525061157e565b505050565b600c5481565b610c85611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610ca3611080565b73ffffffffffffffffffffffffffffffffffffffff1614610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906133b6565b60405180910390fd5b80600e9080519060200190610d0f929190612b49565b5050565b600f60009054906101000a900460ff1681565b6000610d3182612087565b600001519050919050565b600e8054610d4990613338565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7590613338565b8015610dc25780601f10610d9757610100808354040283529160200191610dc2565b820191906000526020600020905b815481529060010190602001808311610da557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ea2611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610ec0611080565b73ffffffffffffffffffffffffffffffffffffffff1614610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d906133b6565b60405180910390fd5b610f206000612316565b565b610f2a611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610f48611080565b73ffffffffffffffffffffffffffffffffffffffff1614610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f95906133b6565b60405180910390fd5b80600c8190555050565b610fb0611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610fce611080565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b906133b6565b60405180910390fd5b60004790506000811161106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390613422565b60405180910390fd5b61107d611077611aa4565b476123dc565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110b2611aa4565b73ffffffffffffffffffffffffffffffffffffffff166110d0611080565b73ffffffffffffffffffffffffffffffffffffffff1614611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d906133b6565b60405180910390fd5b80600d8190555050565b60606003805461113f90613338565b80601f016020809104026020016040519081016040528092919081815260200182805461116b90613338565b80156111b85780601f1061118d576101008083540402835291602001916111b8565b820191906000526020600020905b81548152906001019060200180831161119b57829003601f168201915b5050505050905090565b600a5481565b600d5481565b60006111d8611aa4565b9050600f60009054906101000a900460ff161561122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061348e565b60405180910390fd5b81611233610b98565b61123d91906134dd565b600b541015611281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112789061357f565b60405180910390fd5b600082116112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906135eb565b60405180910390fd5b816009541015611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613657565b60405180910390fd5b611311610b98565b600c54106113635781600a54101561135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906136e9565b60405180910390fd5b6113f8565b8160095410156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613755565b60405180910390fd5b34600d54836113b79190613775565b146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee9061381b565b60405180910390fd5b5b611402818361248d565b5050565b61140e611aa4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611473576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611480611aa4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152d611aa4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115729190612ce3565b60405180910390a35050565b611589848484611bd1565b6115a88373ffffffffffffffffffffffffffffffffffffffff166119c9565b80156115bd57506115bb848484846124ab565b155b156115f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611602611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611620611080565b73ffffffffffffffffffffffffffffffffffffffff1614611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906133b6565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116d782611a56565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613887565b60405180910390fd5b6000600e805461172590613338565b90501161174157604051806020016040528060008152506117a4565b600e61174c836125fc565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161179493929190613977565b6040516020818303038152906040525b9050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d611aa4565b73ffffffffffffffffffffffffffffffffffffffff1661186b611080565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b8906133b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613a1a565b60405180910390fd5b61193a81612316565b50565b611945611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611963611080565b73ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906133b6565b60405180910390fd5b80600a8190555050565b60095481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a61611b5e565b11158015611a70575060005482105b8015611a9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611bdc82612087565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c68611aa4565b73ffffffffffffffffffffffffffffffffffffffff161480611c975750611c9685611c91611aa4565b6117b1565b5b80611cdc5750611ca5611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611cc48461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d15576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d89858585600161275d565b611d9560008487611aac565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561201557600054821461201457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120808585856001612763565b5050505050565b61208f612bcf565b60008290508061209d611b5e565b111580156120ac575060005481105b156122df576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122dd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121c1578092505050612311565b5b6001156122dc57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d7578092505050612311565b6121c2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161240290613a6b565b60006040518083038185875af1925050503d806000811461243f576040519150601f19603f3d011682016040523d82523d6000602084013e612444565b606091505b5050905080612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90613acc565b60405180910390fd5b505050565b6124a7828260405180602001604052806000815250612769565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d1611aa4565b8786866040518563ffffffff1660e01b81526004016124f39493929190613b41565b6020604051808303816000875af192505050801561252f57506040513d601f19601f8201168201806040525081019061252c9190613ba2565b60015b6125a9573d806000811461255f576040519150601f19603f3d011682016040523d82523d6000602084013e612564565b606091505b506000815114156125a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612644576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612758565b600082905060005b6000821461267657808061265f90613bcf565b915050600a8261266f9190613c47565b915061264c565b60008167ffffffffffffffff81111561269257612691612f98565b5b6040519080825280601f01601f1916602001820160405280156126c45781602001600182028036833780820191505090505b5090505b60008514612751576001826126dd9190613c78565b9150600a856126ec9190613cac565b60306126f891906134dd565b60f81b81838151811061270e5761270d613cdd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274a9190613c47565b94506126c8565b8093505050505b919050565b50505050565b50505050565b612776838383600161277b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612823576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612830600086838761275d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129fa57506129f98773ffffffffffffffffffffffffffffffffffffffff166119c9565b5b15612ac0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a6f60008884806001019550886124ab565b612aa5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a00578260005414612abb57600080fd5b612b2c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ac1575b816000819055505050612b426000868387612763565b5050505050565b828054612b5590613338565b90600052602060002090601f016020900481019282612b775760008555612bbe565b82601f10612b9057805160ff1916838001178555612bbe565b82800160010185558215612bbe579182015b82811115612bbd578251825591602001919060010190612ba2565b5b509050612bcb9190612c12565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c2b576000816000905550600101612c13565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c7881612c43565b8114612c8357600080fd5b50565b600081359050612c9581612c6f565b92915050565b600060208284031215612cb157612cb0612c39565b5b6000612cbf84828501612c86565b91505092915050565b60008115159050919050565b612cdd81612cc8565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d38578082015181840152602081019050612d1d565b83811115612d47576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d6982612cfe565b612d738185612d09565b9350612d83818560208601612d1a565b612d8c81612d4d565b840191505092915050565b60006020820190508181036000830152612db18184612d5e565b905092915050565b6000819050919050565b612dcc81612db9565b8114612dd757600080fd5b50565b600081359050612de981612dc3565b92915050565b600060208284031215612e0557612e04612c39565b5b6000612e1384828501612dda565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e4782612e1c565b9050919050565b612e5781612e3c565b82525050565b6000602082019050612e726000830184612e4e565b92915050565b612e8181612e3c565b8114612e8c57600080fd5b50565b600081359050612e9e81612e78565b92915050565b60008060408385031215612ebb57612eba612c39565b5b6000612ec985828601612e8f565b9250506020612eda85828601612dda565b9150509250929050565b612eed81612db9565b82525050565b6000602082019050612f086000830184612ee4565b92915050565b600060208284031215612f2457612f23612c39565b5b6000612f3284828501612e8f565b91505092915050565b600080600060608486031215612f5457612f53612c39565b5b6000612f6286828701612e8f565b9350506020612f7386828701612e8f565b9250506040612f8486828701612dda565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fd082612d4d565b810181811067ffffffffffffffff82111715612fef57612fee612f98565b5b80604052505050565b6000613002612c2f565b905061300e8282612fc7565b919050565b600067ffffffffffffffff82111561302e5761302d612f98565b5b61303782612d4d565b9050602081019050919050565b82818337600083830152505050565b600061306661306184613013565b612ff8565b90508281526020810184848401111561308257613081612f93565b5b61308d848285613044565b509392505050565b600082601f8301126130aa576130a9612f8e565b5b81356130ba848260208601613053565b91505092915050565b6000602082840312156130d9576130d8612c39565b5b600082013567ffffffffffffffff8111156130f7576130f6612c3e565b5b61310384828501613095565b91505092915050565b61311581612cc8565b811461312057600080fd5b50565b6000813590506131328161310c565b92915050565b6000806040838503121561314f5761314e612c39565b5b600061315d85828601612e8f565b925050602061316e85828601613123565b9150509250929050565b600067ffffffffffffffff82111561319357613192612f98565b5b61319c82612d4d565b9050602081019050919050565b60006131bc6131b784613178565b612ff8565b9050828152602081018484840111156131d8576131d7612f93565b5b6131e3848285613044565b509392505050565b600082601f830112613200576131ff612f8e565b5b81356132108482602086016131a9565b91505092915050565b6000806000806080858703121561323357613232612c39565b5b600061324187828801612e8f565b945050602061325287828801612e8f565b935050604061326387828801612dda565b925050606085013567ffffffffffffffff81111561328457613283612c3e565b5b613290878288016131eb565b91505092959194509250565b6000602082840312156132b2576132b1612c39565b5b60006132c084828501613123565b91505092915050565b600080604083850312156132e0576132df612c39565b5b60006132ee85828601612e8f565b92505060206132ff85828601612e8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061335057607f821691505b6020821081141561336457613363613309565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a0602083612d09565b91506133ab8261336a565b602082019050919050565b600060208201905081810360008301526133cf81613393565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b600061340c601383612d09565b9150613417826133d6565b602082019050919050565b6000602082019050818103600083015261343b816133ff565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b6000613478601083612d09565b915061348382613442565b602082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134e882612db9565b91506134f383612db9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613528576135276134ae565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b6000613569601f83612d09565b915061357482613533565b602082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b60006135d5601d83612d09565b91506135e08261359f565b602082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b7f4d757374206d696e74206c657373207468616e206d617850657254782e000000600082015250565b6000613641601d83612d09565b915061364c8261360b565b602082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178506572547846726560008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d3602283612d09565b91506136de82613677565b604082019050919050565b60006020820190508181036000830152613702816136c6565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d617850657254782e0000600082015250565b600061373f601e83612d09565b915061374a82613709565b602082019050919050565b6000602082019050818103600083015261376e81613732565b9050919050565b600061378082612db9565b915061378b83612db9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c4576137c36134ae565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b6000613805601383612d09565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b6000613871601383612d09565b915061387c8261383b565b602082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138d481613338565b6138de81866138a7565b945060018216600081146138f9576001811461390a5761393d565b60ff1983168652818601935061393d565b613913856138b2565b60005b8381101561393557815481890152600182019150602081019050613916565b838801955050505b50505092915050565b600061395182612cfe565b61395b81856138a7565b935061396b818560208601612d1a565b80840191505092915050565b600061398382866138c7565b915061398f8285613946565b915061399b8284613946565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a04602683612d09565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b600081905092915050565b50565b6000613a55600083613a3a565b9150613a6082613a45565b600082019050919050565b6000613a7682613a48565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613ab6601883612d09565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b1382613aec565b613b1d8185613af7565b9350613b2d818560208601612d1a565b613b3681612d4d565b840191505092915050565b6000608082019050613b566000830187612e4e565b613b636020830186612e4e565b613b706040830185612ee4565b8181036060830152613b828184613b08565b905095945050505050565b600081519050613b9c81612c6f565b92915050565b600060208284031215613bb857613bb7612c39565b5b6000613bc684828501613b8d565b91505092915050565b6000613bda82612db9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0d57613c0c6134ae565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c5282612db9565b9150613c5d83612db9565b925082613c6d57613c6c613c18565b5b828204905092915050565b6000613c8382612db9565b9150613c8e83612db9565b925082821015613ca157613ca06134ae565b5b828203905092915050565b6000613cb782612db9565b9150613cc283612db9565b925082613cd257613cd1613c18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208ca7bc9fd72991b5cd11aa69d2aa8ae333bb58b7151caff119d72f99226296cf64736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d585052724d456643716b486f576f57474c393868374756454d4571676e3642694c4e6a6432564d6d397054752f

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063742a4c9b11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610732578063e985e9c51461075d578063f2fde38b1461079a578063f6a95709146107c3578063f968adbe146107ec57610204565b8063b88d4fde14610678578063bedb86fb146106a1578063c6682862146106ca578063c87b56dd146106f557610204565b806395d89b41116100e757806395d89b41146105b2578063980a70d2146105dd578063a035b1fe14610608578063a0712d6814610633578063a22cb4651461064f57610204565b8063742a4c9b1461051e578063853828b6146105475780638da5cb5b1461055e57806391b7f5ed1461058957610204565b80633f7ffac91161019b5780635c975abb1161016a5780635c975abb146104375780636352211e146104625780636c0360eb1461049f57806370a08231146104ca578063715018a61461050757610204565b80633f7ffac91461039157806342842e0e146103ba5780634a91d1b8146103e357806355f804b31461040e57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631e7269c51461032b57806323b872dd1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc1461027157806308a5d16a146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612c9b565b610817565b60405161023d9190612ce3565b60405180910390f35b34801561025257600080fd5b5061025b6108f9565b6040516102689190612d97565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612def565b61098b565b6040516102a59190612e5d565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612def565b610a07565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612ea4565b610a8d565b005b34801561030c57600080fd5b50610315610b98565b6040516103229190612ef3565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612f0e565b610baf565b60405161035f9190612ef3565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612f3b565b610bc1565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612def565b610bd1565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612f3b565b610c57565b005b3480156103ef57600080fd5b506103f8610c77565b6040516104059190612ef3565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906130c3565b610c7d565b005b34801561044357600080fd5b5061044c610d13565b6040516104599190612ce3565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190612def565b610d26565b6040516104969190612e5d565b60405180910390f35b3480156104ab57600080fd5b506104b4610d3c565b6040516104c19190612d97565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612f0e565b610dca565b6040516104fe9190612ef3565b60405180910390f35b34801561051357600080fd5b5061051c610e9a565b005b34801561052a57600080fd5b5061054560048036038101906105409190612def565b610f22565b005b34801561055357600080fd5b5061055c610fa8565b005b34801561056a57600080fd5b50610573611080565b6040516105809190612e5d565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612def565b6110aa565b005b3480156105be57600080fd5b506105c7611130565b6040516105d49190612d97565b60405180910390f35b3480156105e957600080fd5b506105f26111c2565b6040516105ff9190612ef3565b60405180910390f35b34801561061457600080fd5b5061061d6111c8565b60405161062a9190612ef3565b60405180910390f35b61064d60048036038101906106489190612def565b6111ce565b005b34801561065b57600080fd5b5061067660048036038101906106719190613138565b611406565b005b34801561068457600080fd5b5061069f600480360381019061069a9190613219565b61157e565b005b3480156106ad57600080fd5b506106c860048036038101906106c3919061329c565b6115fa565b005b3480156106d657600080fd5b506106df611693565b6040516106ec9190612d97565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190612def565b6116cc565b6040516107299190612d97565b60405180910390f35b34801561073e57600080fd5b506107476117ab565b6040516107549190612ef3565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906132c9565b6117b1565b6040516107919190612ce3565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190612f0e565b611845565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190612def565b61193d565b005b3480156107f857600080fd5b506108016119c3565b60405161080e9190612ef3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f1826119ec565b5b9050919050565b60606002805461090890613338565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613338565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611a56565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a0f611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610a2d611080565b73ffffffffffffffffffffffffffffffffffffffff1614610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906133b6565b60405180910390fd5b8060098190555050565b6000610a9882610d26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b00576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1f611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b515750610b4f81610b4a611aa4565b6117b1565b155b15610b88576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b93838383611aac565b505050565b6000610ba2611b5e565b6001546000540303905090565b6000610bba82611b67565b9050919050565b610bcc838383611bd1565b505050565b610bd9611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610bf7611080565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c44906133b6565b60405180910390fd5b80600b8190555050565b610c728383836040518060200160405280600081525061157e565b505050565b600c5481565b610c85611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610ca3611080565b73ffffffffffffffffffffffffffffffffffffffff1614610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906133b6565b60405180910390fd5b80600e9080519060200190610d0f929190612b49565b5050565b600f60009054906101000a900460ff1681565b6000610d3182612087565b600001519050919050565b600e8054610d4990613338565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7590613338565b8015610dc25780601f10610d9757610100808354040283529160200191610dc2565b820191906000526020600020905b815481529060010190602001808311610da557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ea2611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610ec0611080565b73ffffffffffffffffffffffffffffffffffffffff1614610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d906133b6565b60405180910390fd5b610f206000612316565b565b610f2a611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610f48611080565b73ffffffffffffffffffffffffffffffffffffffff1614610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f95906133b6565b60405180910390fd5b80600c8190555050565b610fb0611aa4565b73ffffffffffffffffffffffffffffffffffffffff16610fce611080565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b906133b6565b60405180910390fd5b60004790506000811161106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390613422565b60405180910390fd5b61107d611077611aa4565b476123dc565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110b2611aa4565b73ffffffffffffffffffffffffffffffffffffffff166110d0611080565b73ffffffffffffffffffffffffffffffffffffffff1614611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d906133b6565b60405180910390fd5b80600d8190555050565b60606003805461113f90613338565b80601f016020809104026020016040519081016040528092919081815260200182805461116b90613338565b80156111b85780601f1061118d576101008083540402835291602001916111b8565b820191906000526020600020905b81548152906001019060200180831161119b57829003601f168201915b5050505050905090565b600a5481565b600d5481565b60006111d8611aa4565b9050600f60009054906101000a900460ff161561122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061348e565b60405180910390fd5b81611233610b98565b61123d91906134dd565b600b541015611281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112789061357f565b60405180910390fd5b600082116112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906135eb565b60405180910390fd5b816009541015611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613657565b60405180910390fd5b611311610b98565b600c54106113635781600a54101561135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906136e9565b60405180910390fd5b6113f8565b8160095410156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613755565b60405180910390fd5b34600d54836113b79190613775565b146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee9061381b565b60405180910390fd5b5b611402818361248d565b5050565b61140e611aa4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611473576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611480611aa4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152d611aa4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115729190612ce3565b60405180910390a35050565b611589848484611bd1565b6115a88373ffffffffffffffffffffffffffffffffffffffff166119c9565b80156115bd57506115bb848484846124ab565b155b156115f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611602611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611620611080565b73ffffffffffffffffffffffffffffffffffffffff1614611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d906133b6565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116d782611a56565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613887565b60405180910390fd5b6000600e805461172590613338565b90501161174157604051806020016040528060008152506117a4565b600e61174c836125fc565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161179493929190613977565b6040516020818303038152906040525b9050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d611aa4565b73ffffffffffffffffffffffffffffffffffffffff1661186b611080565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b8906133b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613a1a565b60405180910390fd5b61193a81612316565b50565b611945611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611963611080565b73ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906133b6565b60405180910390fd5b80600a8190555050565b60095481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a61611b5e565b11158015611a70575060005482105b8015611a9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611bdc82612087565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c47576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c68611aa4565b73ffffffffffffffffffffffffffffffffffffffff161480611c975750611c9685611c91611aa4565b6117b1565b5b80611cdc5750611ca5611aa4565b73ffffffffffffffffffffffffffffffffffffffff16611cc48461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d15576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d89858585600161275d565b611d9560008487611aac565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561201557600054821461201457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120808585856001612763565b5050505050565b61208f612bcf565b60008290508061209d611b5e565b111580156120ac575060005481105b156122df576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122dd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121c1578092505050612311565b5b6001156122dc57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d7578092505050612311565b6121c2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161240290613a6b565b60006040518083038185875af1925050503d806000811461243f576040519150601f19603f3d011682016040523d82523d6000602084013e612444565b606091505b5050905080612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f90613acc565b60405180910390fd5b505050565b6124a7828260405180602001604052806000815250612769565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d1611aa4565b8786866040518563ffffffff1660e01b81526004016124f39493929190613b41565b6020604051808303816000875af192505050801561252f57506040513d601f19601f8201168201806040525081019061252c9190613ba2565b60015b6125a9573d806000811461255f576040519150601f19603f3d011682016040523d82523d6000602084013e612564565b606091505b506000815114156125a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612644576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612758565b600082905060005b6000821461267657808061265f90613bcf565b915050600a8261266f9190613c47565b915061264c565b60008167ffffffffffffffff81111561269257612691612f98565b5b6040519080825280601f01601f1916602001820160405280156126c45781602001600182028036833780820191505090505b5090505b60008514612751576001826126dd9190613c78565b9150600a856126ec9190613cac565b60306126f891906134dd565b60f81b81838151811061270e5761270d613cdd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274a9190613c47565b94506126c8565b8093505050505b919050565b50505050565b50505050565b612776838383600161277b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612823576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612830600086838761275d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129fa57506129f98773ffffffffffffffffffffffffffffffffffffffff166119c9565b5b15612ac0575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a6f60008884806001019550886124ab565b612aa5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a00578260005414612abb57600080fd5b612b2c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ac1575b816000819055505050612b426000868387612763565b5050505050565b828054612b5590613338565b90600052602060002090601f016020900481019282612b775760008555612bbe565b82601f10612b9057805160ff1916838001178555612bbe565b82800160010185558215612bbe579182015b82811115612bbd578251825591602001919060010190612ba2565b5b509050612bcb9190612c12565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c2b576000816000905550600101612c13565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c7881612c43565b8114612c8357600080fd5b50565b600081359050612c9581612c6f565b92915050565b600060208284031215612cb157612cb0612c39565b5b6000612cbf84828501612c86565b91505092915050565b60008115159050919050565b612cdd81612cc8565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d38578082015181840152602081019050612d1d565b83811115612d47576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d6982612cfe565b612d738185612d09565b9350612d83818560208601612d1a565b612d8c81612d4d565b840191505092915050565b60006020820190508181036000830152612db18184612d5e565b905092915050565b6000819050919050565b612dcc81612db9565b8114612dd757600080fd5b50565b600081359050612de981612dc3565b92915050565b600060208284031215612e0557612e04612c39565b5b6000612e1384828501612dda565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e4782612e1c565b9050919050565b612e5781612e3c565b82525050565b6000602082019050612e726000830184612e4e565b92915050565b612e8181612e3c565b8114612e8c57600080fd5b50565b600081359050612e9e81612e78565b92915050565b60008060408385031215612ebb57612eba612c39565b5b6000612ec985828601612e8f565b9250506020612eda85828601612dda565b9150509250929050565b612eed81612db9565b82525050565b6000602082019050612f086000830184612ee4565b92915050565b600060208284031215612f2457612f23612c39565b5b6000612f3284828501612e8f565b91505092915050565b600080600060608486031215612f5457612f53612c39565b5b6000612f6286828701612e8f565b9350506020612f7386828701612e8f565b9250506040612f8486828701612dda565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fd082612d4d565b810181811067ffffffffffffffff82111715612fef57612fee612f98565b5b80604052505050565b6000613002612c2f565b905061300e8282612fc7565b919050565b600067ffffffffffffffff82111561302e5761302d612f98565b5b61303782612d4d565b9050602081019050919050565b82818337600083830152505050565b600061306661306184613013565b612ff8565b90508281526020810184848401111561308257613081612f93565b5b61308d848285613044565b509392505050565b600082601f8301126130aa576130a9612f8e565b5b81356130ba848260208601613053565b91505092915050565b6000602082840312156130d9576130d8612c39565b5b600082013567ffffffffffffffff8111156130f7576130f6612c3e565b5b61310384828501613095565b91505092915050565b61311581612cc8565b811461312057600080fd5b50565b6000813590506131328161310c565b92915050565b6000806040838503121561314f5761314e612c39565b5b600061315d85828601612e8f565b925050602061316e85828601613123565b9150509250929050565b600067ffffffffffffffff82111561319357613192612f98565b5b61319c82612d4d565b9050602081019050919050565b60006131bc6131b784613178565b612ff8565b9050828152602081018484840111156131d8576131d7612f93565b5b6131e3848285613044565b509392505050565b600082601f830112613200576131ff612f8e565b5b81356132108482602086016131a9565b91505092915050565b6000806000806080858703121561323357613232612c39565b5b600061324187828801612e8f565b945050602061325287828801612e8f565b935050604061326387828801612dda565b925050606085013567ffffffffffffffff81111561328457613283612c3e565b5b613290878288016131eb565b91505092959194509250565b6000602082840312156132b2576132b1612c39565b5b60006132c084828501613123565b91505092915050565b600080604083850312156132e0576132df612c39565b5b60006132ee85828601612e8f565b92505060206132ff85828601612e8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061335057607f821691505b6020821081141561336457613363613309565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a0602083612d09565b91506133ab8261336a565b602082019050919050565b600060208201905081810360008301526133cf81613393565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b600061340c601383612d09565b9150613417826133d6565b602082019050919050565b6000602082019050818103600083015261343b816133ff565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b6000613478601083612d09565b915061348382613442565b602082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134e882612db9565b91506134f383612db9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613528576135276134ae565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b6000613569601f83612d09565b915061357482613533565b602082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b60006135d5601d83612d09565b91506135e08261359f565b602082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b7f4d757374206d696e74206c657373207468616e206d617850657254782e000000600082015250565b6000613641601d83612d09565b915061364c8261360b565b602082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178506572547846726560008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d3602283612d09565b91506136de82613677565b604082019050919050565b60006020820190508181036000830152613702816136c6565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d617850657254782e0000600082015250565b600061373f601e83612d09565b915061374a82613709565b602082019050919050565b6000602082019050818103600083015261376e81613732565b9050919050565b600061378082612db9565b915061378b83612db9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c4576137c36134ae565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b6000613805601383612d09565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b6000613871601383612d09565b915061387c8261383b565b602082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138d481613338565b6138de81866138a7565b945060018216600081146138f9576001811461390a5761393d565b60ff1983168652818601935061393d565b613913856138b2565b60005b8381101561393557815481890152600182019150602081019050613916565b838801955050505b50505092915050565b600061395182612cfe565b61395b81856138a7565b935061396b818560208601612d1a565b80840191505092915050565b600061398382866138c7565b915061398f8285613946565b915061399b8284613946565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a04602683612d09565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b600081905092915050565b50565b6000613a55600083613a3a565b9150613a6082613a45565b600082019050919050565b6000613a7682613a48565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613ab6601883612d09565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b1382613aec565b613b1d8185613af7565b9350613b2d818560208601612d1a565b613b3681612d4d565b840191505092915050565b6000608082019050613b566000830187612e4e565b613b636020830186612e4e565b613b706040830185612ee4565b8181036060830152613b828184613b08565b905095945050505050565b600081519050613b9c81612c6f565b92915050565b600060208284031215613bb857613bb7612c39565b5b6000613bc684828501613b8d565b91505092915050565b6000613bda82612db9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0d57613c0c6134ae565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c5282612db9565b9150613c5d83612db9565b925082613c6d57613c6c613c18565b5b828204905092915050565b6000613c8382612db9565b9150613c8e83612db9565b925082821015613ca157613ca06134ae565b5b828203905092915050565b6000613cb782612db9565b9150613cc283612db9565b925082613cd257613cd1613c18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208ca7bc9fd72991b5cd11aa69d2aa8ae333bb58b7151caff119d72f99226296cf64736f6c634300080c0033

Deployed Bytecode Sourcemap

166:3004:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522:305:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9138:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1651:90:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8701:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3771:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2055:109:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10003:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1849:89:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10244:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;392:33:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2781:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;645:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7443:125:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;476:107:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4891:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:9;;;;;;;;;;;;;:::i;:::-;;1551:92:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2368:219;;;;;;;;;;;;;:::i;:::-;;1063:87:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2595:86:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7804:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;316:31:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;432:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;814:729;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9414:287:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10500:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2689:84:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;590:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2889:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;354:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9772:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1749:92:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;281:28;;;;;;;;;;;;;:::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;1651:90:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1729:4:10::1;1718:8;:15;;;;1651:90:::0;:::o;8701:371:3:-;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;2055:109:10:-;2108:7;2135:21;2149:6;2135:13;:21::i;:::-;2128:28;;2055:109;;;:::o;10003:170:3:-;10137:28;10147:4;10153:2;10157:7;10137:9;:28::i;:::-;10003:170;;;:::o;1849:89:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1926:4:10::1;1914:9;:16;;;;1849:89:::0;:::o;10244:185:3:-;10382:39;10399:4;10405:2;10409:7;10382:39;;;;;;;;;;;;:16;:39::i;:::-;10244:185;;;:::o;392:33:10:-;;;;:::o;2781:100::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2865:8:10::1;2855:7;:18;;;;;;;;;;;;:::i;:::-;;2781:100:::0;:::o;645:25::-;;;;;;;;;;;;;:::o;7443:125:3:-;7507:7;7534:21;7547:7;7534:12;:21::i;:::-;:26;;;7527:33;;7443:125;;;:::o;476:107:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;1551:92:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1631:4:10::1;1617:11;:18;;;;1551:92:::0;:::o;2368:219::-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2419:15:10::1;2437:21;2419:39;;2487:1;2477:7;:11;2469:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;2533:46;2543:12;:10;:12::i;:::-;2557:21;2533:9;:46::i;:::-;2408:179;2368:219::o:0;1063:87:9:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;2595:86:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2667:6:10::1;2659:5;:14;;;;2595:86:::0;:::o;7804:104:3:-;7860:13;7893:7;7886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804:104;:::o;316:31:10:-;;;;:::o;432:35::-;;;;:::o;814:729::-;873:15;891:12;:10;:12::i;:::-;873:30;;923:6;;;;;;;;;;;922:7;914:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;998:7;982:13;:11;:13::i;:::-;:23;;;;:::i;:::-;969:9;;:36;;961:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1070:1;1060:7;:11;1052:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1136:7;1124:8;;:19;;1116:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1217:13;:11;:13::i;:::-;1202:11;;:28;1199:299;;1270:7;1254:12;;:23;;1246:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1199:299;;;1368:7;1356:8;;:19;;1348:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1453:9;1444:5;;1434:7;:15;;;;:::i;:::-;:28;1426:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1199:299;1508:27;1518:7;1527;1508:9;:27::i;:::-;862:681;814:729;:::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;10500:369::-;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;2689:84:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2759:6:10::1;2750;;:15;;;;;;;;;;;;;;;;;;2689:84:::0;:::o;590:46::-;;;;;;;;;;;;;;;;;;;:::o;2889:278::-;2955:13;2989:17;2997:8;2989:7;:17::i;:::-;2981:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3072:1;3054:7;3048:21;;;;;:::i;:::-;;;:25;:111;;;;;;;;;;;;;;;;;3102:7;3111:26;3128:8;3111:16;:26::i;:::-;3139:13;;;;;;;;;;;;;;;;;3084:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3048:111;3041:118;;2889:278;;;:::o;354: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;1749:92:10:-;1294:12:9;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1829:4:10::1;1814:12;:19;;;;1749:92:::0;:::o;281:28::-;;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::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;1946:101:10:-;2011:7;2038:1;2031:8;;1946: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;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;2172:188:10:-;2246:12;2264:8;:13;;2285:7;2264:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2245:52;;;2316:7;2308:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;2234:126;2172:188;;:::o;11319:104:3:-;11388:27;11398:2;11402:8;11388:27;;;;;;;;;;;;:9;:27::i;:::-;11319:104;;:::o;19982:667::-;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:12:-;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:169::-;14087:21;14083:1;14075:6;14071:14;14064:45;13947:169;:::o;14122:366::-;14264:3;14285:67;14349:2;14344:3;14285:67;:::i;:::-;14278:74;;14361:93;14450:3;14361:93;:::i;:::-;14479:2;14474:3;14470:12;14463:19;;14122:366;;;:::o;14494:419::-;14660:4;14698:2;14687:9;14683:18;14675:26;;14747:9;14741:4;14737:20;14733:1;14722:9;14718:17;14711:47;14775:131;14901:4;14775:131;:::i;:::-;14767:139;;14494:419;;;:::o;14919:166::-;15059:18;15055:1;15047:6;15043:14;15036:42;14919:166;:::o;15091:366::-;15233:3;15254:67;15318:2;15313:3;15254:67;:::i;:::-;15247:74;;15330:93;15419:3;15330:93;:::i;:::-;15448:2;15443:3;15439:12;15432:19;;15091:366;;;:::o;15463:419::-;15629:4;15667:2;15656:9;15652:18;15644:26;;15716:9;15710:4;15706:20;15702:1;15691:9;15687:17;15680:47;15744:131;15870:4;15744:131;:::i;:::-;15736:139;;15463:419;;;:::o;15888:180::-;15936:77;15933:1;15926:88;16033:4;16030:1;16023:15;16057:4;16054:1;16047:15;16074:305;16114:3;16133:20;16151:1;16133:20;:::i;:::-;16128:25;;16167:20;16185:1;16167:20;:::i;:::-;16162:25;;16321:1;16253:66;16249:74;16246:1;16243:81;16240:107;;;16327:18;;:::i;:::-;16240:107;16371:1;16368;16364:9;16357:16;;16074:305;;;;:::o;16385:181::-;16525:33;16521:1;16513:6;16509:14;16502:57;16385:181;:::o;16572:366::-;16714:3;16735:67;16799:2;16794:3;16735:67;:::i;:::-;16728:74;;16811:93;16900:3;16811:93;:::i;:::-;16929:2;16924:3;16920:12;16913:19;;16572:366;;;:::o;16944:419::-;17110:4;17148:2;17137:9;17133:18;17125:26;;17197:9;17191:4;17187:20;17183:1;17172:9;17168:17;17161:47;17225:131;17351:4;17225:131;:::i;:::-;17217:139;;16944:419;;;:::o;17369:179::-;17509:31;17505:1;17497:6;17493:14;17486:55;17369:179;:::o;17554:366::-;17696:3;17717:67;17781:2;17776:3;17717:67;:::i;:::-;17710:74;;17793:93;17882:3;17793:93;:::i;:::-;17911:2;17906:3;17902:12;17895:19;;17554:366;;;:::o;17926:419::-;18092:4;18130:2;18119:9;18115:18;18107:26;;18179:9;18173:4;18169:20;18165:1;18154:9;18150:17;18143:47;18207:131;18333:4;18207:131;:::i;:::-;18199:139;;17926:419;;;:::o;18351:179::-;18491:31;18487:1;18479:6;18475:14;18468:55;18351:179;:::o;18536:366::-;18678:3;18699:67;18763:2;18758:3;18699:67;:::i;:::-;18692:74;;18775:93;18864:3;18775:93;:::i;:::-;18893:2;18888:3;18884:12;18877:19;;18536:366;;;:::o;18908:419::-;19074:4;19112:2;19101:9;19097:18;19089:26;;19161:9;19155:4;19151:20;19147:1;19136:9;19132:17;19125:47;19189:131;19315:4;19189:131;:::i;:::-;19181:139;;18908:419;;;:::o;19333:221::-;19473:34;19469:1;19461:6;19457:14;19450:58;19542:4;19537:2;19529:6;19525:15;19518:29;19333:221;:::o;19560:366::-;19702:3;19723:67;19787:2;19782:3;19723:67;:::i;:::-;19716:74;;19799:93;19888:3;19799:93;:::i;:::-;19917:2;19912:3;19908:12;19901:19;;19560:366;;;:::o;19932:419::-;20098:4;20136:2;20125:9;20121:18;20113:26;;20185:9;20179:4;20175:20;20171:1;20160:9;20156:17;20149:47;20213:131;20339:4;20213:131;:::i;:::-;20205:139;;19932:419;;;:::o;20357:180::-;20497:32;20493:1;20485:6;20481:14;20474:56;20357:180;:::o;20543:366::-;20685:3;20706:67;20770:2;20765:3;20706:67;:::i;:::-;20699:74;;20782:93;20871:3;20782:93;:::i;:::-;20900:2;20895:3;20891:12;20884:19;;20543:366;;;:::o;20915:419::-;21081:4;21119:2;21108:9;21104:18;21096:26;;21168:9;21162:4;21158:20;21154:1;21143:9;21139:17;21132:47;21196:131;21322:4;21196:131;:::i;:::-;21188:139;;20915:419;;;:::o;21340:348::-;21380:7;21403:20;21421:1;21403:20;:::i;:::-;21398:25;;21437:20;21455:1;21437:20;:::i;:::-;21432:25;;21625:1;21557:66;21553:74;21550:1;21547:81;21542:1;21535:9;21528:17;21524:105;21521:131;;;21632:18;;:::i;:::-;21521:131;21680:1;21677;21673:9;21662:20;;21340:348;;;;:::o;21694:169::-;21834:21;21830:1;21822:6;21818:14;21811:45;21694:169;:::o;21869:366::-;22011:3;22032:67;22096:2;22091:3;22032:67;:::i;:::-;22025:74;;22108:93;22197:3;22108:93;:::i;:::-;22226:2;22221:3;22217:12;22210:19;;21869:366;;;:::o;22241:419::-;22407:4;22445:2;22434:9;22430:18;22422:26;;22494:9;22488:4;22484:20;22480:1;22469:9;22465:17;22458:47;22522:131;22648:4;22522:131;:::i;:::-;22514:139;;22241:419;;;:::o;22666:169::-;22806:21;22802:1;22794:6;22790:14;22783:45;22666:169;:::o;22841:366::-;22983:3;23004:67;23068:2;23063:3;23004:67;:::i;:::-;22997:74;;23080:93;23169:3;23080:93;:::i;:::-;23198:2;23193:3;23189:12;23182:19;;22841:366;;;:::o;23213:419::-;23379:4;23417:2;23406:9;23402:18;23394:26;;23466:9;23460:4;23456:20;23452:1;23441:9;23437:17;23430:47;23494:131;23620:4;23494:131;:::i;:::-;23486:139;;23213:419;;;:::o;23638:148::-;23740:11;23777:3;23762:18;;23638:148;;;;:::o;23792:141::-;23841:4;23864:3;23856:11;;23887:3;23884:1;23877:14;23921:4;23918:1;23908:18;23900:26;;23792:141;;;:::o;23963:845::-;24066:3;24103:5;24097:12;24132:36;24158:9;24132:36;:::i;:::-;24184:89;24266:6;24261:3;24184:89;:::i;:::-;24177:96;;24304:1;24293:9;24289:17;24320:1;24315:137;;;;24466:1;24461:341;;;;24282:520;;24315:137;24399:4;24395:9;24384;24380:25;24375:3;24368:38;24435:6;24430:3;24426:16;24419:23;;24315:137;;24461:341;24528:38;24560:5;24528:38;:::i;:::-;24588:1;24602:154;24616:6;24613:1;24610:13;24602:154;;;24690:7;24684:14;24680:1;24675:3;24671:11;24664:35;24740:1;24731:7;24727:15;24716:26;;24638:4;24635:1;24631:12;24626:17;;24602:154;;;24785:6;24780:3;24776:16;24769:23;;24468:334;;24282:520;;24070:738;;23963:845;;;;:::o;24814:377::-;24920:3;24948:39;24981:5;24948:39;:::i;:::-;25003:89;25085:6;25080:3;25003:89;:::i;:::-;24996:96;;25101:52;25146:6;25141:3;25134:4;25127:5;25123:16;25101:52;:::i;:::-;25178:6;25173:3;25169:16;25162:23;;24924:267;24814:377;;;;:::o;25197:589::-;25422:3;25444:92;25532:3;25523:6;25444:92;:::i;:::-;25437:99;;25553:95;25644:3;25635:6;25553:95;:::i;:::-;25546:102;;25665:95;25756:3;25747:6;25665:95;:::i;:::-;25658:102;;25777:3;25770:10;;25197:589;;;;;;:::o;25792:225::-;25932:34;25928:1;25920:6;25916:14;25909:58;26001:8;25996:2;25988:6;25984:15;25977:33;25792:225;:::o;26023:366::-;26165:3;26186:67;26250:2;26245:3;26186:67;:::i;:::-;26179:74;;26262:93;26351:3;26262:93;:::i;:::-;26380:2;26375:3;26371:12;26364:19;;26023:366;;;:::o;26395:419::-;26561:4;26599:2;26588:9;26584:18;26576:26;;26648:9;26642:4;26638:20;26634:1;26623:9;26619:17;26612:47;26676:131;26802:4;26676:131;:::i;:::-;26668:139;;26395:419;;;:::o;26820:147::-;26921:11;26958:3;26943:18;;26820:147;;;;:::o;26973:114::-;;:::o;27093:398::-;27252:3;27273:83;27354:1;27349:3;27273:83;:::i;:::-;27266:90;;27365:93;27454:3;27365:93;:::i;:::-;27483:1;27478:3;27474:11;27467:18;;27093:398;;;:::o;27497:379::-;27681:3;27703:147;27846:3;27703:147;:::i;:::-;27696:154;;27867:3;27860:10;;27497:379;;;:::o;27882:174::-;28022:26;28018:1;28010:6;28006:14;27999:50;27882:174;:::o;28062:366::-;28204:3;28225:67;28289:2;28284:3;28225:67;:::i;:::-;28218:74;;28301:93;28390:3;28301:93;:::i;:::-;28419:2;28414:3;28410:12;28403:19;;28062:366;;;:::o;28434:419::-;28600:4;28638:2;28627:9;28623:18;28615:26;;28687:9;28681:4;28677:20;28673:1;28662:9;28658:17;28651:47;28715:131;28841:4;28715:131;:::i;:::-;28707:139;;28434:419;;;:::o;28859:98::-;28910:6;28944:5;28938:12;28928:22;;28859:98;;;:::o;28963:168::-;29046:11;29080:6;29075:3;29068:19;29120:4;29115:3;29111:14;29096:29;;28963:168;;;;:::o;29137:360::-;29223:3;29251:38;29283:5;29251:38;:::i;:::-;29305:70;29368:6;29363:3;29305:70;:::i;:::-;29298:77;;29384:52;29429:6;29424:3;29417:4;29410:5;29406:16;29384:52;:::i;:::-;29461:29;29483:6;29461:29;:::i;:::-;29456:3;29452:39;29445:46;;29227:270;29137:360;;;;:::o;29503:640::-;29698:4;29736:3;29725:9;29721:19;29713:27;;29750:71;29818:1;29807:9;29803:17;29794:6;29750:71;:::i;:::-;29831:72;29899:2;29888:9;29884:18;29875:6;29831:72;:::i;:::-;29913;29981:2;29970:9;29966:18;29957:6;29913:72;:::i;:::-;30032:9;30026:4;30022:20;30017:2;30006:9;30002:18;29995:48;30060:76;30131:4;30122:6;30060:76;:::i;:::-;30052:84;;29503:640;;;;;;;:::o;30149:141::-;30205:5;30236:6;30230:13;30221:22;;30252:32;30278:5;30252:32;:::i;:::-;30149:141;;;;:::o;30296:349::-;30365:6;30414:2;30402:9;30393:7;30389:23;30385:32;30382:119;;;30420:79;;:::i;:::-;30382:119;30540:1;30565:63;30620:7;30611:6;30600:9;30596:22;30565:63;:::i;:::-;30555:73;;30511:127;30296:349;;;;:::o;30651:233::-;30690:3;30713:24;30731:5;30713:24;:::i;:::-;30704:33;;30759:66;30752:5;30749:77;30746:103;;;30829:18;;:::i;:::-;30746:103;30876:1;30869:5;30865:13;30858:20;;30651:233;;;:::o;30890:180::-;30938:77;30935:1;30928:88;31035:4;31032:1;31025:15;31059:4;31056:1;31049:15;31076:185;31116:1;31133:20;31151:1;31133:20;:::i;:::-;31128:25;;31167:20;31185:1;31167:20;:::i;:::-;31162:25;;31206:1;31196:35;;31211:18;;:::i;:::-;31196:35;31253:1;31250;31246:9;31241:14;;31076:185;;;;:::o;31267:191::-;31307:4;31327:20;31345:1;31327:20;:::i;:::-;31322:25;;31361:20;31379:1;31361:20;:::i;:::-;31356:25;;31400:1;31397;31394:8;31391:34;;;31405:18;;:::i;:::-;31391:34;31450:1;31447;31443:9;31435:17;;31267:191;;;;:::o;31464:176::-;31496:1;31513:20;31531:1;31513:20;:::i;:::-;31508:25;;31547:20;31565:1;31547:20;:::i;:::-;31542:25;;31586:1;31576:35;;31591:18;;:::i;:::-;31576:35;31632:1;31629;31625:9;31620:14;;31464:176;;;;:::o;31646:180::-;31694:77;31691:1;31684:88;31791:4;31788:1;31781:15;31815:4;31812:1;31805:15

Swarm Source

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