ETH Price: $2,787.38 (-1.14%)

Token

Demon Warriors (DW Baliverse)
 

Overview

Max Total Supply

630 DW Baliverse

Holders

133

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DW Baliverse
0x6c4d003bdfc698772086c29a3465664248a6bcb9
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:
DemonWarriosNFT

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

pragma solidity ^0.8.12;

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

contract DemonWarriosNFT is ERC721A, Ownable {

    using SafeMath for uint256;
    using Strings for uint256;
    error freeMintIsOver();

    uint256 public freeItems = 5;
    uint256 public maxBuyLimit = 10;
    uint256 public maxSupply = 1000;
    uint256 public freeMintMax = 555;
    uint256 public price = 0.002 ether;

    bool public paused = false;
    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmZnxgVrdJ44McX83eZVoUQYkvNiQDkm6q4VoZhYFcFQWx/";
    string public constant baseExtension = ".json";

    constructor() ERC721A("Demon Warriors", "DW Baliverse") {
        _safeMint(msg.sender, 10);
    }

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

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

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

        _safeMint(_caller, _amount);
    }

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

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

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

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

    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 togglePaused(bool _state) external onlyOwner {
        paused = _state;
    }

    function setFreeItems(uint256 _newFreeItems) public onlyOwner {
        freeItems = _newFreeItems;
    }

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

    function setItems(uint256 _max) public onlyOwner {
        maxSupply = _max;
    }

    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 4 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 5 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 6 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 7 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 8 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 9 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 10 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 11 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":"freeItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyLimit","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":"_newFreeItems","type":"uint256"}],"name":"setFreeItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","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":"bool","name":"_state","type":"bool"}],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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"}]

60806040526005600955600a80556103e8600b5561022b600c5566071afd498d0000600d556000600e60006101000a81548160ff0219169083151502179055506040518060800160405280605181526020016200491260519139600f90805190602001906200007092919062000812565b503480156200007e57600080fd5b506040518060400160405280600e81526020017f44656d6f6e2057617272696f72730000000000000000000000000000000000008152506040518060400160405280600c81526020017f44572042616c697665727365000000000000000000000000000000000000000081525081600290805190602001906200010392919062000812565b5080600390805190602001906200011c92919062000812565b506200012d6200016e60201b60201c565b600081905550505062000155620001496200017760201b60201c565b6200017f60201b60201c565b6200016833600a6200024560201b60201c565b62000b13565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002678282604051806020016040528060008152506200026b60201b60201c565b5050565b6200028083838360016200028560201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620002f3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200032f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200034460008683876200068160201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200051c57506200051b8773ffffffffffffffffffffffffffffffffffffffff166200068760201b62001a3b1760201c565b5b15620005ef575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200059a6000888480600101955088620006aa60201b60201c565b620005d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141562000523578260005414620005e957600080fd5b6200065c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620005f0575b8160008190555050506200067a60008683876200080c60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006d86200017760201b60201c565b8786866040518563ffffffff1660e01b8152600401620006fc9493929190620009c6565b6020604051808303816000875af19250505080156200073b57506040513d601f19601f8201168201806040525081019062000738919062000a7c565b60015b620007b9573d80600081146200076e576040519150601f19603f3d011682016040523d82523d6000602084013e62000773565b606091505b50600081511415620007b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620008209062000add565b90600052602060002090601f01602090048101928262000844576000855562000890565b82601f106200085f57805160ff191683800117855562000890565b8280016001018555821562000890579182015b828111156200088f57825182559160200191906001019062000872565b5b5090506200089f9190620008a3565b5090565b5b80821115620008be576000816000905550600101620008a4565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008ef82620008c2565b9050919050565b6200090181620008e2565b82525050565b6000819050919050565b6200091c8162000907565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200095e57808201518184015260208101905062000941565b838111156200096e576000848401525b50505050565b6000601f19601f8301169050919050565b6000620009928262000922565b6200099e81856200092d565b9350620009b08185602086016200093e565b620009bb8162000974565b840191505092915050565b6000608082019050620009dd6000830187620008f6565b620009ec6020830186620008f6565b620009fb604083018562000911565b818103606083015262000a0f818462000985565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000a568162000a1f565b811462000a6257600080fd5b50565b60008151905062000a768162000a4b565b92915050565b60006020828403121562000a955762000a9462000a1a565b5b600062000aa58482850162000a65565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000af657607f821691505b6020821081141562000b0d5762000b0c62000aae565b5b50919050565b613def8062000b236000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610737578063d5abeb0114610774578063da541e091461079f578063e985e9c5146107c8578063f2fde38b146108055761020f565b8063a22cb4651461068f578063b88d4fde146106b8578063c2d05a6e146106e1578063c66828621461070c5761020f565b80638da5cb5b116100e75780638da5cb5b146105c957806391b7f5ed146105f457806395d89b411461061d578063a035b1fe14610648578063a0712d68146106735761020f565b8063715018a614610549578063742a4c9b1461056057806384a1fb6414610589578063853828b6146105b25761020f565b806342842e0e1161019b5780635c975abb1161016a5780635c975abb1461044e5780636352211e146104795780636aa5b37f146104b65780636c0360eb146104e157806370a082311461050c5761020f565b806342842e0e146103c75780634a91d1b8146103f057806355f804b31461041b5780635b70ea9f146104445761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806318c95310146103365780631e7269c51461036157806323b872dd1461039e5761020f565b806301ffc9a71461021457806302d085071461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612dda565b61082e565b6040516102489190612e22565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612e73565b610910565b005b34801561028657600080fd5b5061028f610996565b60405161029c9190612f39565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612e73565b610a28565b6040516102d99190612f9c565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612fe3565b610aa4565b005b34801561031757600080fd5b50610320610baf565b60405161032d9190613032565b60405180910390f35b34801561034257600080fd5b5061034b610bc6565b6040516103589190613032565b60405180910390f35b34801561036d57600080fd5b506103886004803603810190610383919061304d565b610bcc565b6040516103959190613032565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c0919061307a565b610bde565b005b3480156103d357600080fd5b506103ee60048036038101906103e9919061307a565b610bee565b005b3480156103fc57600080fd5b50610405610c0e565b6040516104129190613032565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613202565b610c14565b005b61044c610caa565b005b34801561045a57600080fd5b50610463610e18565b6040516104709190612e22565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612e73565b610e2b565b6040516104ad9190612f9c565b60405180910390f35b3480156104c257600080fd5b506104cb610e41565b6040516104d89190613032565b60405180910390f35b3480156104ed57600080fd5b506104f6610e47565b6040516105039190612f39565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061304d565b610ed5565b6040516105409190613032565b60405180910390f35b34801561055557600080fd5b5061055e610fa5565b005b34801561056c57600080fd5b5061058760048036038101906105829190612e73565b61102d565b005b34801561059557600080fd5b506105b060048036038101906105ab9190612e73565b6110b3565b005b3480156105be57600080fd5b506105c7611139565b005b3480156105d557600080fd5b506105de611211565b6040516105eb9190612f9c565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612e73565b61123b565b005b34801561062957600080fd5b506106326112c1565b60405161063f9190612f39565b60405180910390f35b34801561065457600080fd5b5061065d611353565b60405161066a9190613032565b60405180910390f35b61068d60048036038101906106889190612e73565b611359565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613277565b6114f1565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613358565b611669565b005b3480156106ed57600080fd5b506106f66116e5565b6040516107039190612e22565b60405180910390f35b34801561071857600080fd5b506107216116f8565b60405161072e9190612f39565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612e73565b611731565b60405161076b9190612f39565b60405180910390f35b34801561078057600080fd5b50610789611810565b6040516107969190613032565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c191906133db565b611816565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613408565b6118af565b6040516107fc9190612e22565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061304d565b611943565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610909575061090882611a5e565b5b9050919050565b610918611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610936611211565b73ffffffffffffffffffffffffffffffffffffffff161461098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390613494565b60405180910390fd5b8060098190555050565b6060600280546109a5906134e3565b80601f01602080910402602001604051908101604052809291908181526020018280546109d1906134e3565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000610a3382611ad0565b610a69576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aaf82610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b36611ac8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b685750610b6681610b61611ac8565b6118af565b155b15610b9f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610baa838383611b1e565b505050565b6000610bb9611bd0565b6001546000540303905090565b60095481565b6000610bd782611bd9565b9050919050565b610be9838383611c43565b505050565b610c0983838360405180602001604052806000815250611669565b505050565b600c5481565b610c1c611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610c3a611211565b73ffffffffffffffffffffffffffffffffffffffff1614610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790613494565b60405180910390fd5b80600f9080519060200190610ca6929190612c88565b5050565b6000610cb4611ac8565b9050610cbe6116e5565b610cf4576040517fe3184be600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60009054906101000a900460ff1615610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613561565b60405180910390fd5b6001610d4e610baf565b610d5891906135b0565b600b541015610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9390613652565b60405180910390fd5b6005610da7826120f9565b67ffffffffffffffff16610dbb91906135b0565b6009541015610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df6906136be565b60405180910390fd5b610e0a816005612159565b610e158160056121c6565b50565b600e60009054906101000a900460ff1681565b6000610e36826121e4565b600001519050919050565b600a5481565b600f8054610e54906134e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e80906134e3565b8015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b820191906000526020600020905b815481529060010190602001808311610eb057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fad611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610fcb611211565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613494565b60405180910390fd5b61102b6000612473565b565b611035611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611053611211565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613494565b60405180910390fd5b80600c8190555050565b6110bb611ac8565b73ffffffffffffffffffffffffffffffffffffffff166110d9611211565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613494565b60405180910390fd5b80600b8190555050565b611141611ac8565b73ffffffffffffffffffffffffffffffffffffffff1661115f611211565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613494565b60405180910390fd5b6000479050600081116111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f49061372a565b60405180910390fd5b61120e611208611ac8565b47612539565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611243611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611261611211565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613494565b60405180910390fd5b80600d8190555050565b6060600380546112d0906134e3565b80601f01602080910402602001604051908101604052809291908181526020018280546112fc906134e3565b80156113495780601f1061131e57610100808354040283529160200191611349565b820191906000526020600020905b81548152906001019060200180831161132c57829003601f168201915b5050505050905090565b600d5481565b6000611363611ac8565b9050600e60009054906101000a900460ff16156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90613561565b60405180910390fd5b816113be610baf565b6113c891906135b0565b600b54101561140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613652565b60405180910390fd5b6000821161144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690613796565b60405180910390fd5b81600a541015611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b90613802565b60405180910390fd5b34600d54836114a39190613822565b146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906138c8565b60405180910390fd5b6114ed81836121c6565b5050565b6114f9611ac8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061156b611ac8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611618611ac8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165d9190612e22565b60405180910390a35050565b611674848484611c43565b6116938373ffffffffffffffffffffffffffffffffffffffff16611a3b565b80156116a857506116a6848484846125ea565b155b156116df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600c546116f2610baf565b10905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061173c82611ad0565b61177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613934565b60405180910390fd5b6000600f805461178a906134e3565b9050116117a65760405180602001604052806000815250611809565b600f6117b18361273b565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117f993929190613a24565b6040516020818303038152906040525b9050919050565b600b5481565b61181e611ac8565b73ffffffffffffffffffffffffffffffffffffffff1661183c611211565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613494565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61194b611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611969611211565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613494565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613ac7565b60405180910390fd5b611a3881612473565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611adb611bd0565b11158015611aea575060005482105b8015611b17575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c4e826121e4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cda611ac8565b73ffffffffffffffffffffffffffffffffffffffff161480611d095750611d0885611d03611ac8565b6118af565b5b80611d4e5750611d17611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611d3684610a28565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d87576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dee576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dfb858585600161289c565b611e0760008487611b1e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561208757600054821461208657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120f285858560016128a2565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6121e08282604051806020016040528060008152506128a8565b5050565b6121ec612d0e565b6000829050806121fa611bd0565b11158015612209575060005481105b1561243c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231e57809250505061246e565b5b60011561243957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461243457809250505061246e565b61231f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161255f90613b18565b60006040518083038185875af1925050503d806000811461259c576040519150601f19603f3d011682016040523d82523d6000602084013e6125a1565b606091505b50509050806125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90613b79565b60405180910390fd5b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612610611ac8565b8786866040518563ffffffff1660e01b81526004016126329493929190613bee565b6020604051808303816000875af192505050801561266e57506040513d601f19601f8201168201806040525081019061266b9190613c4f565b60015b6126e8573d806000811461269e576040519150601f19603f3d011682016040523d82523d6000602084013e6126a3565b606091505b506000815114156126e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612783576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612897565b600082905060005b600082146127b557808061279e90613c7c565b915050600a826127ae9190613cf4565b915061278b565b60008167ffffffffffffffff8111156127d1576127d06130d7565b5b6040519080825280601f01601f1916602001820160405280156128035781602001600182028036833780820191505090505b5090505b600085146128905760018261281c9190613d25565b9150600a8561282b9190613d59565b603061283791906135b0565b60f81b81838151811061284d5761284c613d8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128899190613cf4565b9450612807565b8093505050505b919050565b50505050565b50505050565b6128b583838360016128ba565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612927576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612962576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61296f600086838761289c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b395750612b388773ffffffffffffffffffffffffffffffffffffffff16611a3b565b5b15612bff575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bae60008884806001019550886125ea565b612be4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b3f578260005414612bfa57600080fd5b612c6b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c00575b816000819055505050612c8160008683876128a2565b5050505050565b828054612c94906134e3565b90600052602060002090601f016020900481019282612cb65760008555612cfd565b82601f10612ccf57805160ff1916838001178555612cfd565b82800160010185558215612cfd579182015b82811115612cfc578251825591602001919060010190612ce1565b5b509050612d0a9190612d51565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d6a576000816000905550600101612d52565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612db781612d82565b8114612dc257600080fd5b50565b600081359050612dd481612dae565b92915050565b600060208284031215612df057612def612d78565b5b6000612dfe84828501612dc5565b91505092915050565b60008115159050919050565b612e1c81612e07565b82525050565b6000602082019050612e376000830184612e13565b92915050565b6000819050919050565b612e5081612e3d565b8114612e5b57600080fd5b50565b600081359050612e6d81612e47565b92915050565b600060208284031215612e8957612e88612d78565b5b6000612e9784828501612e5e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eda578082015181840152602081019050612ebf565b83811115612ee9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0b82612ea0565b612f158185612eab565b9350612f25818560208601612ebc565b612f2e81612eef565b840191505092915050565b60006020820190508181036000830152612f538184612f00565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f8682612f5b565b9050919050565b612f9681612f7b565b82525050565b6000602082019050612fb16000830184612f8d565b92915050565b612fc081612f7b565b8114612fcb57600080fd5b50565b600081359050612fdd81612fb7565b92915050565b60008060408385031215612ffa57612ff9612d78565b5b600061300885828601612fce565b925050602061301985828601612e5e565b9150509250929050565b61302c81612e3d565b82525050565b60006020820190506130476000830184613023565b92915050565b60006020828403121561306357613062612d78565b5b600061307184828501612fce565b91505092915050565b60008060006060848603121561309357613092612d78565b5b60006130a186828701612fce565b93505060206130b286828701612fce565b92505060406130c386828701612e5e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310f82612eef565b810181811067ffffffffffffffff8211171561312e5761312d6130d7565b5b80604052505050565b6000613141612d6e565b905061314d8282613106565b919050565b600067ffffffffffffffff82111561316d5761316c6130d7565b5b61317682612eef565b9050602081019050919050565b82818337600083830152505050565b60006131a56131a084613152565b613137565b9050828152602081018484840111156131c1576131c06130d2565b5b6131cc848285613183565b509392505050565b600082601f8301126131e9576131e86130cd565b5b81356131f9848260208601613192565b91505092915050565b60006020828403121561321857613217612d78565b5b600082013567ffffffffffffffff81111561323657613235612d7d565b5b613242848285016131d4565b91505092915050565b61325481612e07565b811461325f57600080fd5b50565b6000813590506132718161324b565b92915050565b6000806040838503121561328e5761328d612d78565b5b600061329c85828601612fce565b92505060206132ad85828601613262565b9150509250929050565b600067ffffffffffffffff8211156132d2576132d16130d7565b5b6132db82612eef565b9050602081019050919050565b60006132fb6132f6846132b7565b613137565b905082815260208101848484011115613317576133166130d2565b5b613322848285613183565b509392505050565b600082601f83011261333f5761333e6130cd565b5b813561334f8482602086016132e8565b91505092915050565b6000806000806080858703121561337257613371612d78565b5b600061338087828801612fce565b945050602061339187828801612fce565b93505060406133a287828801612e5e565b925050606085013567ffffffffffffffff8111156133c3576133c2612d7d565b5b6133cf8782880161332a565b91505092959194509250565b6000602082840312156133f1576133f0612d78565b5b60006133ff84828501613262565b91505092915050565b6000806040838503121561341f5761341e612d78565b5b600061342d85828601612fce565b925050602061343e85828601612fce565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061347e602083612eab565b915061348982613448565b602082019050919050565b600060208201905081810360008301526134ad81613471565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fb57607f821691505b6020821081141561350f5761350e6134b4565b5b50919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b600061354b601083612eab565b915061355682613515565b602082019050919050565b6000602082019050818103600083015261357a8161353e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135bb82612e3d565b91506135c683612e3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fb576135fa613581565b5b828201905092915050565b7f4d696e74696e6720657863656564206d6178537570706c792e00000000000000600082015250565b600061363c601983612eab565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b9050919050565b7f4d696e742065786365656420667265654974656d732e00000000000000000000600082015250565b60006136a8601683612eab565b91506136b382613672565b602082019050919050565b600060208201905081810360008301526136d78161369b565b9050919050565b7f496e737566666963656e742062616c616e636521000000000000000000000000600082015250565b6000613714601483612eab565b915061371f826136de565b602082019050919050565b6000602082019050818103600083015261374381613707565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b6000613780601d83612eab565b915061378b8261374a565b602082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f4d757374206d696e74206c657373207468616e206d61784275794c696d69742e600082015250565b60006137ec602083612eab565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b600061382d82612e3d565b915061383883612e3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387157613870613581565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b60006138b2601383612eab565b91506138bd8261387c565b602082019050919050565b600060208201905081810360008301526138e1816138a5565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b600061391e601383612eab565b9150613929826138e8565b602082019050919050565b6000602082019050818103600083015261394d81613911565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613981816134e3565b61398b8186613954565b945060018216600081146139a657600181146139b7576139ea565b60ff198316865281860193506139ea565b6139c08561395f565b60005b838110156139e2578154818901526001820191506020810190506139c3565b838801955050505b50505092915050565b60006139fe82612ea0565b613a088185613954565b9350613a18818560208601612ebc565b80840191505092915050565b6000613a308286613974565b9150613a3c82856139f3565b9150613a4882846139f3565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ab1602683612eab565b9150613abc82613a55565b604082019050919050565b60006020820190508181036000830152613ae081613aa4565b9050919050565b600081905092915050565b50565b6000613b02600083613ae7565b9150613b0d82613af2565b600082019050919050565b6000613b2382613af5565b9150819050919050565b7f4661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000613b63601283612eab565b9150613b6e82613b2d565b602082019050919050565b60006020820190508181036000830152613b9281613b56565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bc082613b99565b613bca8185613ba4565b9350613bda818560208601612ebc565b613be381612eef565b840191505092915050565b6000608082019050613c036000830187612f8d565b613c106020830186612f8d565b613c1d6040830185613023565b8181036060830152613c2f8184613bb5565b905095945050505050565b600081519050613c4981612dae565b92915050565b600060208284031215613c6557613c64612d78565b5b6000613c7384828501613c3a565b91505092915050565b6000613c8782612e3d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cba57613cb9613581565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cff82612e3d565b9150613d0a83612e3d565b925082613d1a57613d19613cc5565b5b828204905092915050565b6000613d3082612e3d565b9150613d3b83612e3d565b925082821015613d4e57613d4d613581565b5b828203905092915050565b6000613d6482612e3d565b9150613d6f83612e3d565b925082613d7f57613d7e613cc5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202fbb9fe6a0df875886423c28ccfc4e48888aae2840633595b7afaf07f248882964736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a6e78675672644a34344d63583833655a566f5551596b764e6951446b6d367134566f5a68594663465157782f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610737578063d5abeb0114610774578063da541e091461079f578063e985e9c5146107c8578063f2fde38b146108055761020f565b8063a22cb4651461068f578063b88d4fde146106b8578063c2d05a6e146106e1578063c66828621461070c5761020f565b80638da5cb5b116100e75780638da5cb5b146105c957806391b7f5ed146105f457806395d89b411461061d578063a035b1fe14610648578063a0712d68146106735761020f565b8063715018a614610549578063742a4c9b1461056057806384a1fb6414610589578063853828b6146105b25761020f565b806342842e0e1161019b5780635c975abb1161016a5780635c975abb1461044e5780636352211e146104795780636aa5b37f146104b65780636c0360eb146104e157806370a082311461050c5761020f565b806342842e0e146103c75780634a91d1b8146103f057806355f804b31461041b5780635b70ea9f146104445761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806318c95310146103365780631e7269c51461036157806323b872dd1461039e5761020f565b806301ffc9a71461021457806302d085071461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612dda565b61082e565b6040516102489190612e22565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612e73565b610910565b005b34801561028657600080fd5b5061028f610996565b60405161029c9190612f39565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612e73565b610a28565b6040516102d99190612f9c565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612fe3565b610aa4565b005b34801561031757600080fd5b50610320610baf565b60405161032d9190613032565b60405180910390f35b34801561034257600080fd5b5061034b610bc6565b6040516103589190613032565b60405180910390f35b34801561036d57600080fd5b506103886004803603810190610383919061304d565b610bcc565b6040516103959190613032565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c0919061307a565b610bde565b005b3480156103d357600080fd5b506103ee60048036038101906103e9919061307a565b610bee565b005b3480156103fc57600080fd5b50610405610c0e565b6040516104129190613032565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613202565b610c14565b005b61044c610caa565b005b34801561045a57600080fd5b50610463610e18565b6040516104709190612e22565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612e73565b610e2b565b6040516104ad9190612f9c565b60405180910390f35b3480156104c257600080fd5b506104cb610e41565b6040516104d89190613032565b60405180910390f35b3480156104ed57600080fd5b506104f6610e47565b6040516105039190612f39565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061304d565b610ed5565b6040516105409190613032565b60405180910390f35b34801561055557600080fd5b5061055e610fa5565b005b34801561056c57600080fd5b5061058760048036038101906105829190612e73565b61102d565b005b34801561059557600080fd5b506105b060048036038101906105ab9190612e73565b6110b3565b005b3480156105be57600080fd5b506105c7611139565b005b3480156105d557600080fd5b506105de611211565b6040516105eb9190612f9c565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190612e73565b61123b565b005b34801561062957600080fd5b506106326112c1565b60405161063f9190612f39565b60405180910390f35b34801561065457600080fd5b5061065d611353565b60405161066a9190613032565b60405180910390f35b61068d60048036038101906106889190612e73565b611359565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613277565b6114f1565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613358565b611669565b005b3480156106ed57600080fd5b506106f66116e5565b6040516107039190612e22565b60405180910390f35b34801561071857600080fd5b506107216116f8565b60405161072e9190612f39565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612e73565b611731565b60405161076b9190612f39565b60405180910390f35b34801561078057600080fd5b50610789611810565b6040516107969190613032565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c191906133db565b611816565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190613408565b6118af565b6040516107fc9190612e22565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061304d565b611943565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610909575061090882611a5e565b5b9050919050565b610918611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610936611211565b73ffffffffffffffffffffffffffffffffffffffff161461098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390613494565b60405180910390fd5b8060098190555050565b6060600280546109a5906134e3565b80601f01602080910402602001604051908101604052809291908181526020018280546109d1906134e3565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b6000610a3382611ad0565b610a69576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aaf82610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b36611ac8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b685750610b6681610b61611ac8565b6118af565b155b15610b9f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610baa838383611b1e565b505050565b6000610bb9611bd0565b6001546000540303905090565b60095481565b6000610bd782611bd9565b9050919050565b610be9838383611c43565b505050565b610c0983838360405180602001604052806000815250611669565b505050565b600c5481565b610c1c611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610c3a611211565b73ffffffffffffffffffffffffffffffffffffffff1614610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790613494565b60405180910390fd5b80600f9080519060200190610ca6929190612c88565b5050565b6000610cb4611ac8565b9050610cbe6116e5565b610cf4576040517fe3184be600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60009054906101000a900460ff1615610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613561565b60405180910390fd5b6001610d4e610baf565b610d5891906135b0565b600b541015610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9390613652565b60405180910390fd5b6005610da7826120f9565b67ffffffffffffffff16610dbb91906135b0565b6009541015610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df6906136be565b60405180910390fd5b610e0a816005612159565b610e158160056121c6565b50565b600e60009054906101000a900460ff1681565b6000610e36826121e4565b600001519050919050565b600a5481565b600f8054610e54906134e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e80906134e3565b8015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b820191906000526020600020905b815481529060010190602001808311610eb057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f3d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fad611ac8565b73ffffffffffffffffffffffffffffffffffffffff16610fcb611211565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613494565b60405180910390fd5b61102b6000612473565b565b611035611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611053611211565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613494565b60405180910390fd5b80600c8190555050565b6110bb611ac8565b73ffffffffffffffffffffffffffffffffffffffff166110d9611211565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613494565b60405180910390fd5b80600b8190555050565b611141611ac8565b73ffffffffffffffffffffffffffffffffffffffff1661115f611211565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613494565b60405180910390fd5b6000479050600081116111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f49061372a565b60405180910390fd5b61120e611208611ac8565b47612539565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611243611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611261611211565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613494565b60405180910390fd5b80600d8190555050565b6060600380546112d0906134e3565b80601f01602080910402602001604051908101604052809291908181526020018280546112fc906134e3565b80156113495780601f1061131e57610100808354040283529160200191611349565b820191906000526020600020905b81548152906001019060200180831161132c57829003601f168201915b5050505050905090565b600d5481565b6000611363611ac8565b9050600e60009054906101000a900460ff16156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90613561565b60405180910390fd5b816113be610baf565b6113c891906135b0565b600b54101561140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390613652565b60405180910390fd5b6000821161144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690613796565b60405180910390fd5b81600a541015611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b90613802565b60405180910390fd5b34600d54836114a39190613822565b146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906138c8565b60405180910390fd5b6114ed81836121c6565b5050565b6114f9611ac8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061156b611ac8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611618611ac8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165d9190612e22565b60405180910390a35050565b611674848484611c43565b6116938373ffffffffffffffffffffffffffffffffffffffff16611a3b565b80156116a857506116a6848484846125ea565b155b156116df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600c546116f2610baf565b10905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061173c82611ad0565b61177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613934565b60405180910390fd5b6000600f805461178a906134e3565b9050116117a65760405180602001604052806000815250611809565b600f6117b18361273b565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117f993929190613a24565b6040516020818303038152906040525b9050919050565b600b5481565b61181e611ac8565b73ffffffffffffffffffffffffffffffffffffffff1661183c611211565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613494565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61194b611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611969611211565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613494565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613ac7565b60405180910390fd5b611a3881612473565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611adb611bd0565b11158015611aea575060005482105b8015611b17575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c4e826121e4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cda611ac8565b73ffffffffffffffffffffffffffffffffffffffff161480611d095750611d0885611d03611ac8565b6118af565b5b80611d4e5750611d17611ac8565b73ffffffffffffffffffffffffffffffffffffffff16611d3684610a28565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d87576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dee576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dfb858585600161289c565b611e0760008487611b1e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561208757600054821461208657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120f285858560016128a2565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6121e08282604051806020016040528060008152506128a8565b5050565b6121ec612d0e565b6000829050806121fa611bd0565b11158015612209575060005481105b1561243c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161243a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231e57809250505061246e565b5b60011561243957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461243457809250505061246e565b61231f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161255f90613b18565b60006040518083038185875af1925050503d806000811461259c576040519150601f19603f3d011682016040523d82523d6000602084013e6125a1565b606091505b50509050806125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90613b79565b60405180910390fd5b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612610611ac8565b8786866040518563ffffffff1660e01b81526004016126329493929190613bee565b6020604051808303816000875af192505050801561266e57506040513d601f19601f8201168201806040525081019061266b9190613c4f565b60015b6126e8573d806000811461269e576040519150601f19603f3d011682016040523d82523d6000602084013e6126a3565b606091505b506000815114156126e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612783576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612897565b600082905060005b600082146127b557808061279e90613c7c565b915050600a826127ae9190613cf4565b915061278b565b60008167ffffffffffffffff8111156127d1576127d06130d7565b5b6040519080825280601f01601f1916602001820160405280156128035781602001600182028036833780820191505090505b5090505b600085146128905760018261281c9190613d25565b9150600a8561282b9190613d59565b603061283791906135b0565b60f81b81838151811061284d5761284c613d8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128899190613cf4565b9450612807565b8093505050505b919050565b50505050565b50505050565b6128b583838360016128ba565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612927576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612962576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61296f600086838761289c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b395750612b388773ffffffffffffffffffffffffffffffffffffffff16611a3b565b5b15612bff575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bae60008884806001019550886125ea565b612be4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b3f578260005414612bfa57600080fd5b612c6b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c00575b816000819055505050612c8160008683876128a2565b5050505050565b828054612c94906134e3565b90600052602060002090601f016020900481019282612cb65760008555612cfd565b82601f10612ccf57805160ff1916838001178555612cfd565b82800160010185558215612cfd579182015b82811115612cfc578251825591602001919060010190612ce1565b5b509050612d0a9190612d51565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d6a576000816000905550600101612d52565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612db781612d82565b8114612dc257600080fd5b50565b600081359050612dd481612dae565b92915050565b600060208284031215612df057612def612d78565b5b6000612dfe84828501612dc5565b91505092915050565b60008115159050919050565b612e1c81612e07565b82525050565b6000602082019050612e376000830184612e13565b92915050565b6000819050919050565b612e5081612e3d565b8114612e5b57600080fd5b50565b600081359050612e6d81612e47565b92915050565b600060208284031215612e8957612e88612d78565b5b6000612e9784828501612e5e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eda578082015181840152602081019050612ebf565b83811115612ee9576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0b82612ea0565b612f158185612eab565b9350612f25818560208601612ebc565b612f2e81612eef565b840191505092915050565b60006020820190508181036000830152612f538184612f00565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f8682612f5b565b9050919050565b612f9681612f7b565b82525050565b6000602082019050612fb16000830184612f8d565b92915050565b612fc081612f7b565b8114612fcb57600080fd5b50565b600081359050612fdd81612fb7565b92915050565b60008060408385031215612ffa57612ff9612d78565b5b600061300885828601612fce565b925050602061301985828601612e5e565b9150509250929050565b61302c81612e3d565b82525050565b60006020820190506130476000830184613023565b92915050565b60006020828403121561306357613062612d78565b5b600061307184828501612fce565b91505092915050565b60008060006060848603121561309357613092612d78565b5b60006130a186828701612fce565b93505060206130b286828701612fce565b92505060406130c386828701612e5e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310f82612eef565b810181811067ffffffffffffffff8211171561312e5761312d6130d7565b5b80604052505050565b6000613141612d6e565b905061314d8282613106565b919050565b600067ffffffffffffffff82111561316d5761316c6130d7565b5b61317682612eef565b9050602081019050919050565b82818337600083830152505050565b60006131a56131a084613152565b613137565b9050828152602081018484840111156131c1576131c06130d2565b5b6131cc848285613183565b509392505050565b600082601f8301126131e9576131e86130cd565b5b81356131f9848260208601613192565b91505092915050565b60006020828403121561321857613217612d78565b5b600082013567ffffffffffffffff81111561323657613235612d7d565b5b613242848285016131d4565b91505092915050565b61325481612e07565b811461325f57600080fd5b50565b6000813590506132718161324b565b92915050565b6000806040838503121561328e5761328d612d78565b5b600061329c85828601612fce565b92505060206132ad85828601613262565b9150509250929050565b600067ffffffffffffffff8211156132d2576132d16130d7565b5b6132db82612eef565b9050602081019050919050565b60006132fb6132f6846132b7565b613137565b905082815260208101848484011115613317576133166130d2565b5b613322848285613183565b509392505050565b600082601f83011261333f5761333e6130cd565b5b813561334f8482602086016132e8565b91505092915050565b6000806000806080858703121561337257613371612d78565b5b600061338087828801612fce565b945050602061339187828801612fce565b93505060406133a287828801612e5e565b925050606085013567ffffffffffffffff8111156133c3576133c2612d7d565b5b6133cf8782880161332a565b91505092959194509250565b6000602082840312156133f1576133f0612d78565b5b60006133ff84828501613262565b91505092915050565b6000806040838503121561341f5761341e612d78565b5b600061342d85828601612fce565b925050602061343e85828601612fce565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061347e602083612eab565b915061348982613448565b602082019050919050565b600060208201905081810360008301526134ad81613471565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fb57607f821691505b6020821081141561350f5761350e6134b4565b5b50919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b600061354b601083612eab565b915061355682613515565b602082019050919050565b6000602082019050818103600083015261357a8161353e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135bb82612e3d565b91506135c683612e3d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fb576135fa613581565b5b828201905092915050565b7f4d696e74696e6720657863656564206d6178537570706c792e00000000000000600082015250565b600061363c601983612eab565b915061364782613606565b602082019050919050565b6000602082019050818103600083015261366b8161362f565b9050919050565b7f4d696e742065786365656420667265654974656d732e00000000000000000000600082015250565b60006136a8601683612eab565b91506136b382613672565b602082019050919050565b600060208201905081810360008301526136d78161369b565b9050919050565b7f496e737566666963656e742062616c616e636521000000000000000000000000600082015250565b6000613714601483612eab565b915061371f826136de565b602082019050919050565b6000602082019050818103600083015261374381613707565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b6000613780601d83612eab565b915061378b8261374a565b602082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f4d757374206d696e74206c657373207468616e206d61784275794c696d69742e600082015250565b60006137ec602083612eab565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b600061382d82612e3d565b915061383883612e3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387157613870613581565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b60006138b2601383612eab565b91506138bd8261387c565b602082019050919050565b600060208201905081810360008301526138e1816138a5565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b600061391e601383612eab565b9150613929826138e8565b602082019050919050565b6000602082019050818103600083015261394d81613911565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613981816134e3565b61398b8186613954565b945060018216600081146139a657600181146139b7576139ea565b60ff198316865281860193506139ea565b6139c08561395f565b60005b838110156139e2578154818901526001820191506020810190506139c3565b838801955050505b50505092915050565b60006139fe82612ea0565b613a088185613954565b9350613a18818560208601612ebc565b80840191505092915050565b6000613a308286613974565b9150613a3c82856139f3565b9150613a4882846139f3565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ab1602683612eab565b9150613abc82613a55565b604082019050919050565b60006020820190508181036000830152613ae081613aa4565b9050919050565b600081905092915050565b50565b6000613b02600083613ae7565b9150613b0d82613af2565b600082019050919050565b6000613b2382613af5565b9150819050919050565b7f4661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000613b63601283612eab565b9150613b6e82613b2d565b602082019050919050565b60006020820190508181036000830152613b9281613b56565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bc082613b99565b613bca8185613ba4565b9350613bda818560208601612ebc565b613be381612eef565b840191505092915050565b6000608082019050613c036000830187612f8d565b613c106020830186612f8d565b613c1d6040830185613023565b8181036060830152613c2f8184613bb5565b905095945050505050565b600081519050613c4981612dae565b92915050565b600060208284031215613c6557613c64612d78565b5b6000613c7384828501613c3a565b91505092915050565b6000613c8782612e3d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cba57613cb9613581565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cff82612e3d565b9150613d0a83612e3d565b925082613d1a57613d19613cc5565b5b828204905092915050565b6000613d3082612e3d565b9150613d3b83612e3d565b925082821015613d4e57613d4d613581565b5b828203905092915050565b6000613d6482612e3d565b9150613d6f83612e3d565b925082613d7f57613d7e613cc5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202fbb9fe6a0df875886423c28ccfc4e48888aae2840633595b7afaf07f248882964736f6c634300080c0033

Deployed Bytecode Sourcemap

166:3205:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522:305:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:106:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7635:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9138:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8701:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3771:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;316:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2051:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10003:170:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10244:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;427:32:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2890:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;819:416;;;:::i;:::-;;509:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7443:125:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;351:31:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;542:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4891:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:10;;;;;;;;;;;;;:::i;:::-;;1844:92:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2998:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2358:220;;;;;;;;;;;;;:::i;:::-;;1063:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2586:86:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7804:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;466:34:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1243:483;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9414:287:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10500:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1734:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;656:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3090:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;389:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2680:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9772:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4522:305:4;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;2776:106:2:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2861:13:2::1;2849:9;:25;;;;2776:106:::0;:::o;7635:100:4:-;7689:13;7722:5;7715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7635:100;:::o;9138:204::-;9206:7;9231:16;9239:7;9231;:16::i;:::-;9226:64;;9256:34;;;;;;;;;;;;;;9226:64;9310:15;:24;9326:7;9310:24;;;;;;;;;;;;;;;;;;;;;9303:31;;9138:204;;;:::o;8701:371::-;8774:13;8790:24;8806:7;8790:15;:24::i;:::-;8774:40;;8835:5;8829:11;;:2;:11;;;8825:48;;;8849:24;;;;;;;;;;;;;;8825:48;8906:5;8890:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8916:37;8933:5;8940:12;:10;:12::i;:::-;8916:16;:37::i;:::-;8915:38;8890:63;8886:138;;;8977:35;;;;;;;;;;;;;;8886:138;9036:28;9045:2;9049:7;9058:5;9036:8;:28::i;:::-;8763:309;8701:371;;:::o;3771:303::-;3815:7;4040:15;:13;:15::i;:::-;4025:12;;4009:13;;:28;:46;4002:53;;3771:303;:::o;316:28:2:-;;;;:::o;2051:109::-;2104:7;2131:21;2145:6;2131:13;:21::i;:::-;2124:28;;2051:109;;;:::o;10003:170:4:-;10137:28;10147:4;10153:2;10157:7;10137:9;:28::i;:::-;10003:170;;;:::o;10244:185::-;10382:39;10399:4;10405:2;10409:7;10382:39;;;;;;;;;;;;:16;:39::i;:::-;10244:185;;;:::o;427:32:2:-;;;;:::o;2890:100::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2974:8:2::1;2964:7;:18;;;;;;;;;;;;:::i;:::-;;2890:100:::0;:::o;819:416::-;867:15;885:12;:10;:12::i;:::-;867:30;;912:12;:10;:12::i;:::-;908:41;;933:16;;;;;;;;;;;;;;908:41;969:6;;;;;;;;;;;968:7;960:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1044:1;1028:13;:11;:13::i;:::-;:17;;;;:::i;:::-;1015:9;;:30;;1007:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1135:1;1115:16;1123:7;1115;:16::i;:::-;1107:25;;:29;;;;:::i;:::-;1094:9;;:42;;1086:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1176:19;1184:7;1193:1;1176:7;:19::i;:::-;1206:21;1216:7;1225:1;1206:9;:21::i;:::-;856:379;819:416::o;509:26::-;;;;;;;;;;;;;:::o;7443:125:4:-;7507:7;7534:21;7547:7;7534:12;:21::i;:::-;:26;;;7527:33;;7443:125;;;:::o;351:31:2:-;;;;:::o;542:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4891:206:4:-;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:10:-;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;1844:92:2:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1924:4:2::1;1910:11;:18;;;;1844:92:::0;:::o;2998:84::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3070:4:2::1;3058:9;:16;;;;2998:84:::0;:::o;2358:220::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2409:15:2::1;2427:21;2409:39;;2477:1;2467:7;:11;2459:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;2524:46;2534:12;:10;:12::i;:::-;2548:21;2524:9;:46::i;:::-;2398:180;2358:220::o:0;1063:87:10:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;2586:86:2:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2658:6:2::1;2650:5;:14;;;;2586:86:::0;:::o;7804:104:4:-;7860:13;7893:7;7886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804:104;:::o;466:34:2:-;;;;:::o;1243:483::-;1302:15;1320:12;:10;:12::i;:::-;1302:30;;1352:6;;;;;;;;;;;1351:7;1343:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;1427:7;1411:13;:11;:13::i;:::-;:23;;;;:::i;:::-;1398:9;;:36;;1390:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1493:1;1483:7;:11;1475:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1562:7;1547:11;;:22;;1539:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1645:9;1636:5;;1626:7;:15;;;;:::i;:::-;:28;1618:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1691:27;1701:7;1710;1691:9;:27::i;:::-;1291:435;1243:483;:::o;9414:287:4:-;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;1734:102:2:-;1777:4;1817:11;;1801:13;:11;:13::i;:::-;:27;1794:34;;1734:102;:::o;656:46::-;;;;;;;;;;;;;;;;;;;:::o;3090:278::-;3156:13;3190:17;3198:8;3190:7;:17::i;:::-;3182:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3273:1;3255:7;3249:21;;;;;:::i;:::-;;;:25;:111;;;;;;;;;;;;;;;;;3303:7;3312:26;3329:8;3312:16;:26::i;:::-;3340:13;;;;;;;;;;;;;;;;;3285:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3249:111;3242:118;;3090:278;;;:::o;389:31::-;;;;:::o;2680:88::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2754:6:2::1;2745;;:15;;;;;;;;;;;;;;;;;;2680:88:::0;:::o;9772:164:4:-;9869:4;9893:18;:25;9912:5;9893:25;;;;;;;;;;;;;;;:35;9919:8;9893:35;;;;;;;;;;;;;;;;;;;;;;;;;9886:42;;9772:164;;;;:::o;1972:201:10:-;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;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;854:157:3:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;11124:187:4:-;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;19294:196::-;19436:2;19409:15;:24;19425:7;19409:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19474:7;19470:2;19454:28;;19463:5;19454:28;;;;;;;;;;;;19294:196;;;:::o;1942:101:2:-;2007:7;2034:1;2027:8;;1942:101;:::o;5179:137:4:-;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;5669:112::-;5724:6;5750:12;:19;5763:5;5750:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;5743:30;;5669:112;;;:::o;5969:101::-;6059:3;6033:12;:19;6046:5;6033:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;5969:101;;:::o;11319:104::-;11388:27;11398:2;11402:8;11388:27;;;;;;;;;;;;:9;:27::i;:::-;11319:104;;:::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:10:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;2168:182:2:-;2242:12;2260:8;:13;;2281:7;2260:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2241:52;;;2312:7;2304:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2230:120;2168:182;;:::o;19982:667:4:-;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:4:-;;;;;:::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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::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:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:166::-;14087:18;14083:1;14075:6;14071:14;14064:42;13947:166;:::o;14119:366::-;14261:3;14282:67;14346:2;14341:3;14282:67;:::i;:::-;14275:74;;14358:93;14447:3;14358:93;:::i;:::-;14476:2;14471:3;14467:12;14460:19;;14119:366;;;:::o;14491:419::-;14657:4;14695:2;14684:9;14680:18;14672:26;;14744:9;14738:4;14734:20;14730:1;14719:9;14715:17;14708:47;14772:131;14898:4;14772:131;:::i;:::-;14764:139;;14491:419;;;:::o;14916:180::-;14964:77;14961:1;14954:88;15061:4;15058:1;15051:15;15085:4;15082:1;15075:15;15102:305;15142:3;15161:20;15179:1;15161:20;:::i;:::-;15156:25;;15195:20;15213:1;15195:20;:::i;:::-;15190:25;;15349:1;15281:66;15277:74;15274:1;15271:81;15268:107;;;15355:18;;:::i;:::-;15268:107;15399:1;15396;15392:9;15385:16;;15102:305;;;;:::o;15413:175::-;15553:27;15549:1;15541:6;15537:14;15530:51;15413:175;:::o;15594:366::-;15736:3;15757:67;15821:2;15816:3;15757:67;:::i;:::-;15750:74;;15833:93;15922:3;15833:93;:::i;:::-;15951:2;15946:3;15942:12;15935:19;;15594:366;;;:::o;15966:419::-;16132:4;16170:2;16159:9;16155:18;16147:26;;16219:9;16213:4;16209:20;16205:1;16194:9;16190:17;16183:47;16247:131;16373:4;16247:131;:::i;:::-;16239:139;;15966:419;;;:::o;16391:172::-;16531:24;16527:1;16519:6;16515:14;16508:48;16391:172;:::o;16569:366::-;16711:3;16732:67;16796:2;16791:3;16732:67;:::i;:::-;16725:74;;16808:93;16897:3;16808:93;:::i;:::-;16926:2;16921:3;16917:12;16910:19;;16569:366;;;:::o;16941:419::-;17107:4;17145:2;17134:9;17130:18;17122:26;;17194:9;17188:4;17184:20;17180:1;17169:9;17165:17;17158:47;17222:131;17348:4;17222:131;:::i;:::-;17214:139;;16941:419;;;:::o;17366:170::-;17506:22;17502:1;17494:6;17490:14;17483:46;17366:170;:::o;17542:366::-;17684:3;17705:67;17769:2;17764:3;17705:67;:::i;:::-;17698:74;;17781:93;17870:3;17781:93;:::i;:::-;17899:2;17894:3;17890:12;17883:19;;17542:366;;;:::o;17914:419::-;18080:4;18118:2;18107:9;18103:18;18095:26;;18167:9;18161:4;18157:20;18153:1;18142:9;18138:17;18131:47;18195:131;18321:4;18195:131;:::i;:::-;18187:139;;17914:419;;;:::o;18339:179::-;18479:31;18475:1;18467:6;18463:14;18456:55;18339:179;:::o;18524:366::-;18666:3;18687:67;18751:2;18746:3;18687:67;:::i;:::-;18680:74;;18763:93;18852:3;18763:93;:::i;:::-;18881:2;18876:3;18872:12;18865:19;;18524:366;;;:::o;18896:419::-;19062:4;19100:2;19089:9;19085:18;19077:26;;19149:9;19143:4;19139:20;19135:1;19124:9;19120:17;19113:47;19177:131;19303:4;19177:131;:::i;:::-;19169:139;;18896:419;;;:::o;19321:182::-;19461:34;19457:1;19449:6;19445:14;19438:58;19321:182;:::o;19509:366::-;19651:3;19672:67;19736:2;19731:3;19672:67;:::i;:::-;19665:74;;19748:93;19837:3;19748:93;:::i;:::-;19866:2;19861:3;19857:12;19850:19;;19509:366;;;:::o;19881:419::-;20047:4;20085:2;20074:9;20070:18;20062:26;;20134:9;20128:4;20124:20;20120:1;20109:9;20105:17;20098:47;20162:131;20288:4;20162:131;:::i;:::-;20154:139;;19881:419;;;:::o;20306:348::-;20346:7;20369:20;20387:1;20369:20;:::i;:::-;20364:25;;20403:20;20421:1;20403:20;:::i;:::-;20398:25;;20591:1;20523:66;20519:74;20516:1;20513:81;20508:1;20501:9;20494:17;20490:105;20487:131;;;20598:18;;:::i;:::-;20487:131;20646:1;20643;20639:9;20628:20;;20306:348;;;;:::o;20660:169::-;20800:21;20796:1;20788:6;20784:14;20777:45;20660:169;:::o;20835:366::-;20977:3;20998:67;21062:2;21057:3;20998:67;:::i;:::-;20991:74;;21074:93;21163:3;21074:93;:::i;:::-;21192:2;21187:3;21183:12;21176:19;;20835:366;;;:::o;21207:419::-;21373:4;21411:2;21400:9;21396:18;21388:26;;21460:9;21454:4;21450:20;21446:1;21435:9;21431:17;21424:47;21488:131;21614:4;21488:131;:::i;:::-;21480:139;;21207:419;;;:::o;21632:169::-;21772:21;21768:1;21760:6;21756:14;21749:45;21632:169;:::o;21807:366::-;21949:3;21970:67;22034:2;22029:3;21970:67;:::i;:::-;21963:74;;22046:93;22135:3;22046:93;:::i;:::-;22164:2;22159:3;22155:12;22148:19;;21807:366;;;:::o;22179:419::-;22345:4;22383:2;22372:9;22368:18;22360:26;;22432:9;22426:4;22422:20;22418:1;22407:9;22403:17;22396:47;22460:131;22586:4;22460:131;:::i;:::-;22452:139;;22179:419;;;:::o;22604:148::-;22706:11;22743:3;22728:18;;22604:148;;;;:::o;22758:141::-;22807:4;22830:3;22822:11;;22853:3;22850:1;22843:14;22887:4;22884:1;22874:18;22866:26;;22758:141;;;:::o;22929:845::-;23032:3;23069:5;23063:12;23098:36;23124:9;23098:36;:::i;:::-;23150:89;23232:6;23227:3;23150:89;:::i;:::-;23143:96;;23270:1;23259:9;23255:17;23286:1;23281:137;;;;23432:1;23427:341;;;;23248:520;;23281:137;23365:4;23361:9;23350;23346:25;23341:3;23334:38;23401:6;23396:3;23392:16;23385:23;;23281:137;;23427:341;23494:38;23526:5;23494:38;:::i;:::-;23554:1;23568:154;23582:6;23579:1;23576:13;23568:154;;;23656:7;23650:14;23646:1;23641:3;23637:11;23630:35;23706:1;23697:7;23693:15;23682:26;;23604:4;23601:1;23597:12;23592:17;;23568:154;;;23751:6;23746:3;23742:16;23735:23;;23434:334;;23248:520;;23036:738;;22929:845;;;;:::o;23780:377::-;23886:3;23914:39;23947:5;23914:39;:::i;:::-;23969:89;24051:6;24046:3;23969:89;:::i;:::-;23962:96;;24067:52;24112:6;24107:3;24100:4;24093:5;24089:16;24067:52;:::i;:::-;24144:6;24139:3;24135:16;24128:23;;23890:267;23780:377;;;;:::o;24163:589::-;24388:3;24410:92;24498:3;24489:6;24410:92;:::i;:::-;24403:99;;24519:95;24610:3;24601:6;24519:95;:::i;:::-;24512:102;;24631:95;24722:3;24713:6;24631:95;:::i;:::-;24624:102;;24743:3;24736:10;;24163:589;;;;;;:::o;24758:225::-;24898:34;24894:1;24886:6;24882:14;24875:58;24967:8;24962:2;24954:6;24950:15;24943:33;24758:225;:::o;24989:366::-;25131:3;25152:67;25216:2;25211:3;25152:67;:::i;:::-;25145:74;;25228:93;25317:3;25228:93;:::i;:::-;25346:2;25341:3;25337:12;25330:19;;24989:366;;;:::o;25361:419::-;25527:4;25565:2;25554:9;25550:18;25542:26;;25614:9;25608:4;25604:20;25600:1;25589:9;25585:17;25578:47;25642:131;25768:4;25642:131;:::i;:::-;25634:139;;25361:419;;;:::o;25786:147::-;25887:11;25924:3;25909:18;;25786:147;;;;:::o;25939:114::-;;:::o;26059:398::-;26218:3;26239:83;26320:1;26315:3;26239:83;:::i;:::-;26232:90;;26331:93;26420:3;26331:93;:::i;:::-;26449:1;26444:3;26440:11;26433:18;;26059:398;;;:::o;26463:379::-;26647:3;26669:147;26812:3;26669:147;:::i;:::-;26662:154;;26833:3;26826:10;;26463:379;;;:::o;26848:168::-;26988:20;26984:1;26976:6;26972:14;26965:44;26848:168;:::o;27022:366::-;27164:3;27185:67;27249:2;27244:3;27185:67;:::i;:::-;27178:74;;27261:93;27350:3;27261:93;:::i;:::-;27379:2;27374:3;27370:12;27363:19;;27022:366;;;:::o;27394:419::-;27560:4;27598:2;27587:9;27583:18;27575:26;;27647:9;27641:4;27637:20;27633:1;27622:9;27618:17;27611:47;27675:131;27801:4;27675:131;:::i;:::-;27667:139;;27394:419;;;:::o;27819:98::-;27870:6;27904:5;27898:12;27888:22;;27819:98;;;:::o;27923:168::-;28006:11;28040:6;28035:3;28028:19;28080:4;28075:3;28071:14;28056:29;;27923:168;;;;:::o;28097:360::-;28183:3;28211:38;28243:5;28211:38;:::i;:::-;28265:70;28328:6;28323:3;28265:70;:::i;:::-;28258:77;;28344:52;28389:6;28384:3;28377:4;28370:5;28366:16;28344:52;:::i;:::-;28421:29;28443:6;28421:29;:::i;:::-;28416:3;28412:39;28405:46;;28187:270;28097:360;;;;:::o;28463:640::-;28658:4;28696:3;28685:9;28681:19;28673:27;;28710:71;28778:1;28767:9;28763:17;28754:6;28710:71;:::i;:::-;28791:72;28859:2;28848:9;28844:18;28835:6;28791:72;:::i;:::-;28873;28941:2;28930:9;28926:18;28917:6;28873:72;:::i;:::-;28992:9;28986:4;28982:20;28977:2;28966:9;28962:18;28955:48;29020:76;29091:4;29082:6;29020:76;:::i;:::-;29012:84;;28463:640;;;;;;;:::o;29109:141::-;29165:5;29196:6;29190:13;29181:22;;29212:32;29238:5;29212:32;:::i;:::-;29109:141;;;;:::o;29256:349::-;29325:6;29374:2;29362:9;29353:7;29349:23;29345:32;29342:119;;;29380:79;;:::i;:::-;29342:119;29500:1;29525:63;29580:7;29571:6;29560:9;29556:22;29525:63;:::i;:::-;29515:73;;29471:127;29256:349;;;;:::o;29611:233::-;29650:3;29673:24;29691:5;29673:24;:::i;:::-;29664:33;;29719:66;29712:5;29709:77;29706:103;;;29789:18;;:::i;:::-;29706:103;29836:1;29829:5;29825:13;29818:20;;29611:233;;;:::o;29850:180::-;29898:77;29895:1;29888:88;29995:4;29992:1;29985:15;30019:4;30016:1;30009:15;30036:185;30076:1;30093:20;30111:1;30093:20;:::i;:::-;30088:25;;30127:20;30145:1;30127:20;:::i;:::-;30122:25;;30166:1;30156:35;;30171:18;;:::i;:::-;30156:35;30213:1;30210;30206:9;30201:14;;30036:185;;;;:::o;30227:191::-;30267:4;30287:20;30305:1;30287:20;:::i;:::-;30282:25;;30321:20;30339:1;30321:20;:::i;:::-;30316:25;;30360:1;30357;30354:8;30351:34;;;30365:18;;:::i;:::-;30351:34;30410:1;30407;30403:9;30395:17;;30227:191;;;;:::o;30424:176::-;30456:1;30473:20;30491:1;30473:20;:::i;:::-;30468:25;;30507:20;30525:1;30507:20;:::i;:::-;30502:25;;30546:1;30536:35;;30551:18;;:::i;:::-;30536:35;30592:1;30589;30585:9;30580:14;;30424:176;;;;:::o;30606:180::-;30654:77;30651:1;30644:88;30751:4;30748:1;30741:15;30775:4;30772:1;30765:15

Swarm Source

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